diff --git a/.gitignore b/.gitignore index cc4dde11..6fc9a76d 100644 --- a/.gitignore +++ b/.gitignore @@ -71,12 +71,26 @@ venv/ .idea/ # built binaries -tests/fixtures/unit_test_app*/build/ -!tests/fixtures/**/bootloader.bin -!tests/fixtures/**/partition-table.bin -!tests/fixtures/**/sdkconfig.json -!tests/fixtures/**/flasher_args.json -!tests/fixtures/unit_test_app_*/build/**/case_tester_example.bin +tests/fixtures/*/build/* +!tests/fixtures/*_coredump_*/build/gdbinit/ +tests/fixtures/*_coredump_*/build/gdbinit/* +!tests/fixtures/*_coredump_*/build/gdbinit/prefix_map +!tests/fixtures/*_coredump_*/build/*.elf + +!tests/fixtures/*_panic/build/gdbinit/ +tests/fixtures/*_panic/build/gdbinit/* +!tests/fixtures/*_panic/build/gdbinit/prefix_map +!tests/fixtures/*_panic/build/*.elf + +!tests/fixtures/*/build/bootloader/ +tests/fixtures/*/build/bootloader/* +!tests/fixtures/*/build/bootloader/*.bin +!tests/fixtures/*/build/partition_table/ +!tests/fixtures/*/build/config/ +tests/fixtures/*/build/config/* +!tests/fixtures/*/build/config/sdkconfig.json +!tests/fixtures/*/build/flasher_args.json +!tests/fixtures/*/build/*.bin sdkconfig sdkconfig.old diff --git a/pytest-embedded-idf/pytest_embedded_idf/app.py b/pytest-embedded-idf/pytest_embedded_idf/app.py index 942e4285..b2e3a029 100644 --- a/pytest-embedded-idf/pytest_embedded_idf/app.py +++ b/pytest-embedded-idf/pytest_embedded_idf/app.py @@ -35,6 +35,8 @@ class IdfApp(App): 'esp32p4', 'esp32h2', 'esp32c61', + 'esp32h21', + 'esp32h4', ] FLASH_ARGS_FILENAME = 'flash_args' diff --git a/pytest-embedded-idf/pytest_embedded_idf/dut.py b/pytest-embedded-idf/pytest_embedded_idf/dut.py index 92a3f0df..a0e325c2 100644 --- a/pytest-embedded-idf/pytest_embedded_idf/dut.py +++ b/pytest-embedded-idf/pytest_embedded_idf/dut.py @@ -1,4 +1,3 @@ -import importlib.util import logging import os import re @@ -27,6 +26,7 @@ class IdfDut(IdfUnityDutMixin, SerialDut): Attributes: target (str): target chip type skip_check_coredump (bool): skip check core dumped or not while dut teardown if set to True + skip_decode_panic (bool): skip decode panic output or not while dut teardown if set to True """ XTENSA_TARGETS = IdfApp.XTENSA_TARGETS @@ -47,13 +47,12 @@ def __init__( self, app: IdfApp, skip_check_coredump: bool = False, - panic_output_decode_script: str | None = None, + skip_decode_panic: bool = False, **kwargs, ) -> None: self.target = app.target self.skip_check_coredump = skip_check_coredump - self._panic_output_decode_script = panic_output_decode_script - + self.skip_decode_panic = skip_decode_panic super().__init__(app=app, **kwargs) self._hard_reset_func = self.serial.hard_reset @@ -71,26 +70,6 @@ def toolchain_prefix(self) -> str: else: raise ValueError(f'Unknown target: {self.target}') - @property - def panic_output_decode_script(self) -> str | None: - """ - Returns: - Panic output decode script path - """ - - script_filepath = self._panic_output_decode_script - if not script_filepath or not os.path.isfile(script_filepath): - module = importlib.util.find_spec('esp_idf_panic_decoder.gdb_panic_server') - if not module: - raise ValueError( - 'Panic output decode script not found. ' - 'Please use the --panic-output-decode-script flag to provide a script ' - 'or install esp-idf-panic-decoder using the command: `pip install esp-idf-panic-decoder` .' - ) - script_filepath = module.origin - - return os.path.realpath(script_filepath) - def _get_prefix_map_path(self) -> str: primary = os.path.join(self.app.binary_path, 'gdbinit', 'prefix_map') fallback = os.path.join(self.app.binary_path, 'prefix_map_gdbinit') @@ -99,7 +78,11 @@ def _get_prefix_map_path(self) -> str: return primary return fallback - def _check_panic_decode_trigger(self): # type: () -> None + def _decode_panic(self): # type: () -> None + if self.target not in self.RISCV32_TARGETS: + logging.debug('panic decode only supported for riscv32 targets') + return + if not self.app.elf_file: logging.warning('No elf file found. Skipping decode panic output...') return @@ -118,25 +101,27 @@ def _check_panic_decode_trigger(self): # type: () -> None with tempfile.NamedTemporaryFile(mode='wb', delete=False) as panic_output_file: panic_output_file.write(panic_output) panic_output_file.flush() + + cmd = [ + f'{self.toolchain_prefix}gdb', + '--command', + self._get_prefix_map_path(), + '--batch', + '-n', + self.app.elf_file, + '-ex', + f'target remote | "{sys.executable}" -m esp_idf_panic_decoder --target {self.target} "{panic_output_file.name}"', # noqa: E501 + '-ex', + 'bt', + ] try: - cmd = [ - f'{self.toolchain_prefix}-gdb', - '--command', - self._get_prefix_map_path(), - '--batch', - '-n', - self.app.elf_file, - '-ex', - f'target remote | "{sys.executable}" "{self.panic_output_decode_script}" --target {self.target} "{panic_output_file.name}"', # noqa: E501 - '-ex', - 'bt', - ] - output = subprocess.check_output(cmd, stderr=subprocess.STDOUT) - logging.info('\n\nBacktrace:\n') - logging.info(output.decode()) + output = subprocess.check_output(cmd, stderr=subprocess.STDOUT).decode('utf-8') + logging.info(f'Backtrace:\n{output}') + with open(self.logfile.replace('dut', 'panic_decoded', 1), 'w') as fw: + fw.write(output) + logging.info(f'Please check decoded panic output file at: {fw.name}') except subprocess.CalledProcessError as e: - logging.debug(f'Failed to run gdb_panic_server.py script: {e}\n{e.output}\n\n') - logging.info(panic_output.decode()) + logging.error(f'Failed to decode panic output: {e.output}. Command was: \n{" ".join(cmd)}') finally: if panic_output_file is not None: try: @@ -160,8 +145,6 @@ def _check_coredump(self) -> None: Returns: None """ - if self.target in self.RISCV32_TARGETS: - self._check_panic_decode_trigger() # need IDF_PATH if self.app.sdkconfig.get('ESP_COREDUMP_ENABLE_TO_UART', False): self._dump_b64_coredumps() elif self.app.sdkconfig.get('ESP_COREDUMP_ENABLE_TO_FLASH', False): @@ -189,12 +172,14 @@ def _dump_b64_coredumps(self) -> None: coredump = CoreDump( chip=self.target, core=coredump_file.name, - core_format='b64', prog=self.app.elf_file, ) - with open(os.path.join(self._meta.logdir, f'coredump_output_{i}'), 'w') as fw: + with open(self.logfile.replace('dut', 'coredump', 1), 'w') as fw: with redirect_stdout(fw): coredump.info_corefile() + logging.info(f'Please check coredump output file at: {fw.name}') + except Exception as e: + logging.error(f'Error dumping b64 coredump {i} for target: {self.target}: {e}') finally: if coredump_file: os.remove(coredump_file.name) @@ -206,30 +191,30 @@ def _dump_flash_coredump(self) -> None: from esp_coredump import CoreDump # need IDF_PATH - if self.app.sdkconfig['ESP_COREDUMP_DATA_FORMAT_ELF']: - core_format = 'elf' - elif self.app.sdkconfig['ESP_COREDUMP_DATA_FORMAT_BIN']: - core_format = 'raw' - else: - raise ValueError('Invalid coredump format. Use _parse_b64_coredump for UART') - - with self.serial.disable_redirect_thread(): + self.serial.close() + with redirect_stdout(self._q): coredump = CoreDump( chip=self.target, - core_format=core_format, port=self.serial.port, prog=self.app.elf_file, ) - with open(os.path.join(self._meta.logdir, 'coredump_output'), 'w') as fw: + with open(self.logfile.replace('dut', 'coredump', 1), 'w') as fw: with redirect_stdout(fw): coredump.info_corefile() + logging.info(f'Please check coredump output file at: {fw.name}') def close(self) -> None: + if not self.skip_decode_panic: + try: + self._decode_panic() + except Exception as e: + logging.error(f'Error decoding panic output for target: {self.target}: {e}') + if not self.skip_check_coredump: try: self._check_coredump() except Exception as e: - logging.debug(e) + logging.error(f'Error checking coredump for target: {self.target}: {e}') super().close() def write(self, data: t.AnyStr) -> None: diff --git a/pytest-embedded-idf/tests/test_idf.py b/pytest-embedded-idf/tests/test_idf.py index 3b9316b5..1c1b0c9d 100644 --- a/pytest-embedded-idf/tests/test_idf.py +++ b/pytest-embedded-idf/tests/test_idf.py @@ -562,13 +562,44 @@ def test_unity_tester_with_linux(dut): @toolchain_required -def test_check_coredump(testdir, caplog, first_index_of_messages): +@pytest.mark.parametrize( + 'coredump_type', + ['flash', 'uart'], +) +def test_check_coredump(testdir, coredump_type, caplog, first_index_of_messages): + testdir.makepyfile(rf""" + import pexpect + import pytest + def test_check_coredump_{coredump_type}(dut): + dut.expect(pexpect.TIMEOUT, timeout=3) + """) + + result = testdir.runpytest( + '-s', + '--embedded-services', + 'esp,idf', + '--app-path', + f'{os.path.join(testdir.tmpdir, f"hello_world_esp32_coredump_{coredump_type}")}', + '--target', + 'esp32', + '--log-cli-level', + 'INFO', + ) + first_index_of_messages( + re.compile('Please check coredump output file at:.+', re.MULTILINE), + caplog.messages, + ) + result.assert_outcomes(passed=1) + + +@toolchain_required +def test_check_panic(testdir, caplog, first_index_of_messages): testdir.makepyfile(r""" import pexpect import pytest - def test_check_coredump(dut): - dut.expect(pexpect.TIMEOUT, timeout=10) + def test_check_panic(dut): + dut.expect(pexpect.TIMEOUT, timeout=3) """) result = testdir.runpytest( @@ -579,13 +610,15 @@ def test_check_coredump(dut): f'{os.path.join(testdir.tmpdir, "hello_world_esp32c3_panic")}', '--target', 'esp32c3', - '--panic-output-decode-script', - os.path.join(testdir.tmpdir, 'gdb_panic_server.py'), '--log-cli-level', 'INFO', ) first_index_of_messages( - re.compile(r'app_main \(\) at /COMPONENT_MAIN_DIR/hello_world_main.c:17', re.MULTILINE), + re.compile(r'Backtrace:\napp_main \(\) at /COMPONENT_MAIN_DIR/hello_world_main.c:17', re.MULTILINE), + caplog.messages, + ) + first_index_of_messages( + re.compile(r'Please check decoded panic output file at:.+', re.MULTILINE), caplog.messages, ) @@ -608,8 +641,6 @@ def test_skip_check_coredump(dut): 'esp,idf', '--app-path', f'{os.path.join(testdir.tmpdir, "hello_world_esp32c3_panic")}', - '--panic-output-decode-script', - os.path.join(testdir.tmpdir, 'gdb_panic_server.py'), '--skip-check-coredump', 'True', '--log-cli-level', diff --git a/pytest-embedded-serial/pytest_embedded_serial/serial.py b/pytest-embedded-serial/pytest_embedded_serial/serial.py index ec4f789f..8ab70195 100644 --- a/pytest-embedded-serial/pytest_embedded_serial/serial.py +++ b/pytest-embedded-serial/pytest_embedded_serial/serial.py @@ -144,7 +144,7 @@ def close(self): logging.debug(f'released {port}') @contextlib.contextmanager - def disable_redirect_thread(self) -> bool: + def disable_redirect_thread(self, kill_port: bool = False) -> bool: """ kill the redirect thread, and start a new one after got yield back @@ -152,10 +152,14 @@ def disable_redirect_thread(self) -> bool: True if redirect serial thread has been terminated """ killed = self.stop_redirect_thread() + if kill_port: + self.proc.close() yield killed if killed: + if kill_port: + self._start() self.start_redirect_thread() diff --git a/pytest-embedded/pytest_embedded/dut_factory.py b/pytest-embedded/pytest_embedded/dut_factory.py index 1613a443..4e552b1b 100644 --- a/pytest-embedded/pytest_embedded/dut_factory.py +++ b/pytest-embedded/pytest_embedded/dut_factory.py @@ -128,7 +128,7 @@ def _fixture_classes_and_options_fn( confirm_target_elf_sha256, erase_nvs, skip_check_coredump, - panic_output_decode_script, + skip_decode_panic, openocd_prog_path, openocd_cli_args, gdb_prog_path, @@ -404,7 +404,7 @@ def _fixture_classes_and_options_fn( kwargs[fixture].update( { 'skip_check_coredump': skip_check_coredump, - 'panic_output_decode_script': panic_output_decode_script, + 'skip_decode_panic': skip_decode_panic, } ) elif 'esp' in _services and 'nuttx' in _services: @@ -667,7 +667,7 @@ def create( confirm_target_elf_sha256: bool | None = None, erase_nvs: bool | None = None, skip_check_coredump: bool | None = None, - panic_output_decode_script: str | None = None, + skip_decode_panic: bool | None = None, openocd_prog_path: str | None = None, openocd_cli_args: str | None = None, gdb_prog_path: str | None = None, @@ -714,7 +714,7 @@ def create( confirm_target_elf_sha256: Confirm target ELF SHA256. erase_nvs: Erase NVS flag. skip_check_coredump: Skip coredump check flag. - panic_output_decode_script: Panic output decode script. + skip_decode_panic: TODO openocd_prog_path: OpenOCD program path. openocd_cli_args: OpenOCD CLI arguments. gdb_prog_path: GDB program path. @@ -782,7 +782,7 @@ def create( 'confirm_target_elf_sha256': confirm_target_elf_sha256, 'erase_nvs': erase_nvs, 'skip_check_coredump': skip_check_coredump, - 'panic_output_decode_script': panic_output_decode_script, + 'skip_decode_panic': skip_decode_panic, 'openocd_prog_path': openocd_prog_path, 'openocd_cli_args': openocd_cli_args, 'gdb_prog_path': gdb_prog_path, diff --git a/pytest-embedded/pytest_embedded/plugin.py b/pytest-embedded/pytest_embedded/plugin.py index 0be553a5..3bd79139 100644 --- a/pytest-embedded/pytest_embedded/plugin.py +++ b/pytest-embedded/pytest_embedded/plugin.py @@ -238,11 +238,6 @@ def pytest_addoption(parser): 'and panic handler support while teardown the failing test case. ' 'Requires valid partition tool, project_description.json under the build dir. (Default: False)', ) - idf_group.addoption( - '--panic-output-decode-script', - help='Panic output decode script that is used in conjunction with the check-panic-coredump option ' - 'to parse panic output. (Default: $IDF_PATH/tools/gdb_panic_server.py)', - ) jtag_group = parser.getgroup('embedded-jtag') jtag_group.addoption('--gdb-prog-path', help='GDB program path. (Default: "xtensa-esp32-elf-gdb")') @@ -947,9 +942,9 @@ def skip_check_coredump(request: FixtureRequest) -> bool | None: @pytest.fixture @multi_dut_argument -def panic_output_decode_script(request: FixtureRequest) -> bool | None: +def skip_decode_panic(request: FixtureRequest) -> bool | None: """Enable parametrization for the same cli option""" - return _request_param_or_config_option_or_default(request, 'panic_output_decode_script', None) + return _request_param_or_config_option_or_default(request, 'skip_decode_panic', None) ######## @@ -1104,7 +1099,7 @@ def parametrize_fixtures( confirm_target_elf_sha256, erase_nvs, skip_check_coredump, - panic_output_decode_script, + skip_decode_panic, openocd_prog_path, openocd_cli_args, gdb_prog_path, diff --git a/tests/fixtures/gdb_panic_server.py b/tests/fixtures/gdb_panic_server.py deleted file mode 100644 index fab5b59d..00000000 --- a/tests/fixtures/gdb_panic_server.py +++ /dev/null @@ -1,294 +0,0 @@ -#!/usr/bin/env python -# coding=utf-8 -# -# A script which parses ESP-IDF panic handler output (registers & stack dump), -# and then acts as a GDB server over stdin/stdout, presenting the information -# from the panic handler to GDB. -# This allows for generating backtraces out of raw stack dumps on architectures -# where backtracing on the target side is not possible. -# -# Note that the "act as a GDB server" approach is somewhat a hack. -# A much nicer solution would have been to convert the panic handler output -# into a core file, and point GDB to the core file. -# However, RISC-V baremetal GDB currently lacks core dump support. -# -# The approach is inspired by Cesanta's ESP8266 GDB server: -# https://github.com/cesanta/mongoose-os/blob/27777c8977/platforms/esp8266/tools/serve_core.py -# -# Copyright 2020 Espressif Systems (Shanghai) Co. Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - - -import argparse -import binascii -import logging -import struct -import sys -from builtins import bytes -from collections import namedtuple - -# Used for type annotations only. Silence linter warnings. -from pyparsing import (Combine, Group, Literal, OneOrMore, ParserElement, # noqa: F401 # pylint: disable=unused-import - ParseResults, Word, nums, srange) - -try: - import typing # noqa: F401 # pylint: disable=unused-import -except ImportError: - pass - -# pyparsing helper -hexnumber = srange('[0-9a-f]') - - -# List of registers to be passed to GDB, in the order GDB expects. -# The names should match those used in IDF panic handler. -# Registers not present in IDF panic handler output (like X0) will be assumed to be 0. -GDB_REGS_INFO_RISCV_ILP32 = [ - 'X0', 'RA', 'SP', 'GP', - 'TP', 'T0', 'T1', 'T2', - 'S0/FP', 'S1', 'A0', 'A1', - 'A2', 'A3', 'A4', 'A5', - 'A6', 'A7', 'S2', 'S3', - 'S4', 'S5', 'S6', 'S7', - 'S8', 'S9', 'S10', 'S11', - 'T3', 'T4', 'T5', 'T6', - 'MEPC' -] - - -GDB_REGS_INFO = { - 'esp32c3': GDB_REGS_INFO_RISCV_ILP32 -} - -PanicInfo = namedtuple('PanicInfo', 'core_id regs stack_base_addr stack_data') - - -def build_riscv_panic_output_parser(): # type: () -> typing.Type[ParserElement] - """Builds a parser for the panic handler output using pyparsing""" - - # We don't match the first line, since "Guru Meditation" will not be printed in case of an abort: - # Guru Meditation Error: Core 0 panic'ed (Store access fault). Exception was unhandled. - - # Core 0 register dump: - reg_dump_header = Group(Literal('Core') + - Word(nums)('core_id') + - Literal('register dump:'))('reg_dump_header') - - # MEPC : 0x4200232c RA : 0x42009694 SP : 0x3fc93a80 GP : 0x3fc8b320 - reg_name = Word(srange('[A-Z_0-9/-]'))('name') - hexnumber_with_0x = Combine(Literal('0x') + Word(hexnumber)) - reg_value = hexnumber_with_0x('value') - reg_dump_one_reg = Group(reg_name + Literal(':') + reg_value) # not named because there will be OneOrMore - reg_dump_all_regs = Group(OneOrMore(reg_dump_one_reg))('regs') - reg_dump = Group(reg_dump_header + reg_dump_all_regs) # not named because there will be OneOrMore - reg_dumps = Group(OneOrMore(reg_dump))('reg_dumps') - - # Stack memory: - # 3fc93a80: 0x00000030 0x00000021 0x3fc8aedc 0x4200232a 0xa5a5a5a5 0xa5a5a5a5 0x3fc8aedc 0x420099b0 - stack_line = Group(Word(hexnumber)('base') + Literal(':') + - Group(OneOrMore(hexnumber_with_0x))('data')) - stack_dump = Group(Literal('Stack memory:') + - Group(OneOrMore(stack_line))('lines'))('stack_dump') - - # Parser for the complete panic output: - panic_output = reg_dumps + stack_dump - return panic_output - - -def get_stack_addr_and_data(res): # type: (ParseResults) -> typing.Tuple[int, bytes] - """ Extract base address and bytes from the parsed stack dump """ - stack_base_addr = 0 # First reported address in the dump - base_addr = 0 # keeps track of the address for the given line of the dump - bytes_in_line = 0 # bytes of stack parsed on the previous line; used to validate the next base address - stack_data = bytes(b'') # accumulates all the dumped stack data - for line in res.stack_dump.lines: - # update and validate the base address - prev_base_addr = base_addr - base_addr = int(line.base, 16) - if stack_base_addr == 0: - stack_base_addr = base_addr - else: - assert base_addr == prev_base_addr + bytes_in_line - - # convert little-endian hex words to byte representation - words = [int(w, 16) for w in line.data] - line_data = bytes(b''.join([struct.pack(' PanicInfo - """ Decode panic handler output from a file """ - panic_output = build_riscv_panic_output_parser() - results = panic_output.searchString(panic_text) - if len(results) != 1: - raise ValueError("Couldn't parse panic handler output") - res = results[0] - - if len(res.reg_dumps) > 1: - raise NotImplementedError('Handling of multi-core register dumps not implemented') - - # Build a dict of register names/values - rd = res.reg_dumps[0] - core_id = int(rd.reg_dump_header.core_id) - regs = dict() - for reg in rd.regs: - reg_value = int(reg.value, 16) - regs[reg.name] = reg_value - - stack_base_addr, stack_data = get_stack_addr_and_data(res) - - return PanicInfo(core_id=core_id, - regs=regs, - stack_base_addr=stack_base_addr, - stack_data=stack_data) - - -PANIC_OUTPUT_PARSERS = { - 'esp32c3': parse_idf_riscv_panic_output -} - - -class GdbServer(object): - def __init__(self, panic_info, target, log_file=None): # type: (PanicInfo, str, str) -> None - self.panic_info = panic_info - self.in_stream = sys.stdin - self.out_stream = sys.stdout - self.reg_list = GDB_REGS_INFO[target] - - self.logger = logging.getLogger('GdbServer') - if log_file: - handler = logging.FileHandler(log_file, 'w+') - self.logger.setLevel(logging.DEBUG) - formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') - handler.setFormatter(formatter) - self.logger.addHandler(handler) - - def run(self): # type: () -> None - """ Process GDB commands from stdin until GDB tells us to quit """ - buffer = '' - while True: - buffer += self.in_stream.read(1) - if len(buffer) > 3 and buffer[-3] == '#': - self._handle_command(buffer) - buffer = '' - - def _handle_command(self, buffer): # type: (str) -> None - command = buffer[1:-3] # ignore checksums - # Acknowledge the command - self.out_stream.write('+') - self.out_stream.flush() - self.logger.debug('Got command: %s', command) - if command == '?': - # report sigtrap as the stop reason; the exact reason doesn't matter for backtracing - self._respond('T05') - elif command.startswith('Hg') or command.startswith('Hc'): - # Select thread command - self._respond('OK') - elif command == 'qfThreadInfo': - # Get list of threads. - # Only one thread for now, can be extended to show one thread for each core, - # if we dump both cores (e.g. on an interrupt watchdog) - self._respond('m1') - elif command == 'qC': - # That single thread is selected. - self._respond('QC1') - elif command == 'g': - # Registers read - self._respond_regs() - elif command.startswith('m'): - # Memory read - addr, size = [int(v, 16) for v in command[1:].split(',')] - self._respond_mem(addr, size) - elif command.startswith('vKill') or command == 'k': - # Quit - self._respond('OK') - raise SystemExit(0) - else: - # Empty response required for any unknown command - self._respond('') - - def _respond(self, data): # type: (str) -> None - # calculate checksum - data_bytes = bytes(data.encode('ascii')) # bytes() for Py2 compatibility - checksum = sum(data_bytes) & 0xff - # format and write the response - res = '${}#{:02x}'.format(data, checksum) - self.logger.debug('Wrote: %s', res) - self.out_stream.write(res) - self.out_stream.flush() - # get the result ('+' or '-') - ret = self.in_stream.read(1) - self.logger.debug('Response: %s', ret) - if ret != '+': - sys.stderr.write("GDB responded with '-' to {}".format(res)) - raise SystemExit(1) - - def _respond_regs(self): # type: () -> None - response = '' - for reg_name in self.reg_list: - # register values are reported as hexadecimal strings - # in target byte order (i.e. LSB first for RISC-V) - reg_val = self.panic_info.regs.get(reg_name, 0) - reg_bytes = struct.pack(' None - stack_addr_min = self.panic_info.stack_base_addr - stack_data = self.panic_info.stack_data - stack_len = len(self.panic_info.stack_data) - stack_addr_max = stack_addr_min + stack_len - - # For any memory address that is not on the stack, pretend the value is 0x00. - # GDB should never ask us for program memory, it will be obtained from the ELF file. - def in_stack(addr): - return stack_addr_min <= addr < stack_addr_max - - result = '' - for addr in range(start_addr, start_addr + size): - if not in_stack(addr): - result += '00' - else: - result += '{:02x}'.format(stack_data[addr - stack_addr_min]) - - self._respond(result) - - -def main(): - parser = argparse.ArgumentParser() - parser.add_argument('input_file', type=argparse.FileType('r'), - help='File containing the panic handler output') - parser.add_argument('--target', choices=GDB_REGS_INFO.keys(), - help='Chip to use (determines the architecture)') - parser.add_argument('--gdb-log', default=None, - help='If specified, the file for logging GDB server debug information') - args = parser.parse_args() - - panic_info = PANIC_OUTPUT_PARSERS[args.target](args.input_file.read()) - - server = GdbServer(panic_info, target=args.target, log_file=args.gdb_log) - try: - server.run() - except KeyboardInterrupt: - sys.exit(0) - - -if __name__ == '__main__': - main() diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/CMakeLists.txt b/tests/fixtures/hello_world_esp32_coredump_flash/CMakeLists.txt new file mode 100644 index 00000000..3a8afc30 --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_flash/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.16) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +idf_build_set_property(MINIMAL_BUILD ON) +project(hello_world) diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/build/bootloader/bootloader.bin b/tests/fixtures/hello_world_esp32_coredump_flash/build/bootloader/bootloader.bin new file mode 100644 index 00000000..314f798c Binary files /dev/null and b/tests/fixtures/hello_world_esp32_coredump_flash/build/bootloader/bootloader.bin differ diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/build/config/sdkconfig.json b/tests/fixtures/hello_world_esp32_coredump_flash/build/config/sdkconfig.json new file mode 100644 index 00000000..e017ffa0 --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_flash/build/config/sdkconfig.json @@ -0,0 +1,789 @@ +{ + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_RAM": false, + "APP_BUILD_USE_FLASH_SECTIONS": true, + "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, + "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false, + "APP_EXCLUDE_PROJECT_NAME_VAR": false, + "APP_EXCLUDE_PROJECT_VER_VAR": false, + "APP_NO_BLOBS": false, + "APP_PROJECT_VER_FROM_CONFIG": false, + "APP_REPRODUCIBLE_BUILD": true, + "APP_RETRIEVE_LEN_ELF_SHA": 9, + "BOOTLOADER_APP_ROLLBACK_ENABLE": false, + "BOOTLOADER_APP_TEST": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_CPU_CLK_FREQ_MHZ": 80, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_DC_AWARE": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "BOOTLOADER_LOG_COLORS": false, + "BOOTLOADER_LOG_LEVEL": 3, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": true, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": false, + "BOOTLOADER_LOG_MODE_TEXT": true, + "BOOTLOADER_LOG_MODE_TEXT_EN": true, + "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, + "BOOTLOADER_LOG_VERSION": 1, + "BOOTLOADER_LOG_VERSION_1": true, + "BOOTLOADER_OFFSET_IN_FLASH": 4096, + "BOOTLOADER_PROJECT_VER": 1, + "BOOTLOADER_REGION_PROTECTION_ENABLE": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, + "BOOTLOADER_VDDSDIO_BOOST_1_8V": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "COMPILER_ASSERT_NDEBUG_EVALUATE": false, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE": true, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": false, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_WARNINGS": false, + "COMPILER_DISABLE_GCC15_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "COMPILER_NO_MERGE_CONSTANTS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, + "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, + "COMPILER_OPTIMIZATION_DEBUG": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_ORPHAN_SECTIONS_ERROR": true, + "COMPILER_ORPHAN_SECTIONS_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": false, + "COMPILER_RT_LIB_GCCLIB": true, + "COMPILER_RT_LIB_NAME": "gcc", + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_STATIC_ANALYZER": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "EFUSE_CODE_SCHEME_COMPAT_3_4": true, + "EFUSE_CODE_SCHEME_COMPAT_NONE": false, + "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 192, + "EFUSE_VIRTUAL": false, + "ESP32_DISABLE_BASIC_ROM_CONSOLE": false, + "ESP32_REV_MAX_FULL": 399, + "ESP32_REV_MIN": 0, + "ESP32_REV_MIN_0": true, + "ESP32_REV_MIN_1": false, + "ESP32_REV_MIN_1_1": false, + "ESP32_REV_MIN_2": false, + "ESP32_REV_MIN_3": false, + "ESP32_REV_MIN_3_1": false, + "ESP32_REV_MIN_FULL": 0, + "ESP32_TRACEMEM_RESERVE_DRAM": 0, + "ESP32_TRAX": false, + "ESP32_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32_USE_FIXED_STATIC_RAM_SIZE": false, + "ESPTOOLPY_AFTER": "hard-reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BEFORE": "default-reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "40m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_26M": false, + "ESPTOOLPY_FLASHFREQ_40M": true, + "ESPTOOLPY_FLASHFREQ_80M": false, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 0, + "ESP_BROWNOUT_DET_LVL_SEL_0": true, + "ESP_BROWNOUT_DET_LVL_SEL_1": false, + "ESP_BROWNOUT_DET_LVL_SEL_2": false, + "ESP_BROWNOUT_DET_LVL_SEL_3": false, + "ESP_BROWNOUT_DET_LVL_SEL_4": false, + "ESP_BROWNOUT_DET_LVL_SEL_5": false, + "ESP_BROWNOUT_DET_LVL_SEL_6": false, + "ESP_BROWNOUT_DET_LVL_SEL_7": false, + "ESP_BROWNOUT_USE_INTR": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_UART": true, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_COREDUMP_CAPTURE_DRAM": false, + "ESP_COREDUMP_CHECK_BOOT": true, + "ESP_COREDUMP_ENABLE": true, + "ESP_COREDUMP_ENABLE_TO_FLASH": true, + "ESP_COREDUMP_ENABLE_TO_NONE": false, + "ESP_COREDUMP_ENABLE_TO_UART": false, + "ESP_COREDUMP_FLASH_NO_OVERWRITE": false, + "ESP_COREDUMP_LOGS": true, + "ESP_COREDUMP_MAX_TASKS_NUM": 64, + "ESP_COREDUMP_STACK_SIZE": 0, + "ESP_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_240": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_EFUSE_BLOCK_REV_MAX_FULL": 99, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_INTR_IN_IRAM": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_ENABLE": true, + "ESP_IPC_ISR_ENABLE": true, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "ESP_IPC_USES_CALLERS_PRIORITY": true, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAC_IGNORE_MAC_CRC_ERROR": false, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, + "ESP_MAIN_TASK_AFFINITY": 0, + "ESP_MAIN_TASK_AFFINITY_CPU0": true, + "ESP_MAIN_TASK_AFFINITY_CPU1": false, + "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, + "ESP_MAIN_TASK_STACK_SIZE": 3584, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_PERIPH_CTRL_FUNC_IN_IRAM": true, + "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, + "ESP_REV_MAX_FULL": 399, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_MZ_CRC32": true, + "ESP_ROM_HAS_NEWLIB": true, + "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, + "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, + "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_UART_BUF_SWITCH": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_PRINT_IN_IRAM": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_USB_OTG_NUM": -1, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": -1, + "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, + "ESP_SLEEP_DEBUG": false, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, + "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, + "ESP_SLEEP_GPIO_RESET_WORKAROUND": false, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, + "ESP_SLEEP_SET_FLASH_DPD": false, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_5": false, + "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": false, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_IN_IRAM": true, + "ESP_SYSTEM_PANIC_PRINT_HALT": false, + "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, + "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, + "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, + "ESP_TASK_WDT_EN": true, + "ESP_TASK_WDT_INIT": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "ESP_TIMER_IMPL_TG0_LAC": true, + "ESP_TIMER_INTERRUPT_LEVEL": 1, + "ESP_TIMER_IN_IRAM": true, + "ESP_TIMER_ISR_AFFINITY_CPU0": true, + "ESP_TIMER_PROFILING": false, + "ESP_TIMER_SHOW_EXPERIMENTAL": false, + "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, + "ESP_TIMER_TASK_AFFINITY": 0, + "ESP_TIMER_TASK_AFFINITY_CPU0": true, + "ESP_TIMER_TASK_STACK_SIZE": 3584, + "ESP_TIME_FUNCS_USE_ESP_TIMER": true, + "ESP_TIME_FUNCS_USE_RTC_TIMER": true, + "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, + "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, + "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, + "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, + "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, + "FREERTOS_CORETIMER_0": true, + "FREERTOS_CORETIMER_1": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_FPU_IN_ISR": false, + "FREERTOS_GENERATE_RUN_TIME_STATS": false, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_IN_IRAM": false, + "FREERTOS_ISR_STACKSIZE": 2096, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_NUMBER_OF_CORES": 2, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_CCOUNT": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, + "FREERTOS_TASK_PRE_DELETION_HOOK": false, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_CORETIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, + "FREERTOS_TIMER_TASK_AFFINITY_CPU1": false, + "FREERTOS_TIMER_TASK_NO_AFFINITY": true, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_TLSP_DELETION_CALLBACKS": true, + "FREERTOS_UNICORE": false, + "FREERTOS_USE_APPLICATION_TASK_TAG": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TIMERS": true, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GPIO_CTRL_FUNC_IN_IRAM": false, + "HAL_ASSERTION_DISABLE": false, + "HAL_ASSERTION_ENABLE": false, + "HAL_ASSERTION_EQUALS_SYSTEM": true, + "HAL_ASSERTION_SILENT": false, + "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "HAL_GPIO_USE_ROM_IMPL": true, + "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, + "HEAP_HAS_EXEC_HEAP": true, + "HEAP_PLACE_FUNCTION_INTO_FLASH": false, + "HEAP_POISONING_COMPREHENSIVE": false, + "HEAP_POISONING_DISABLED": true, + "HEAP_POISONING_LIGHT": false, + "HEAP_TASK_TRACKING": false, + "HEAP_TRACING_OFF": true, + "HEAP_TRACING_STANDALONE": false, + "HEAP_TRACING_TOHOST": false, + "HEAP_USE_HOOKS": false, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 0, + "IDF_INIT_VERSION": "6.1.0", + "IDF_TARGET": "esp32", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LIBC_ASSERT_BUFFER_SIZE": 200, + "LIBC_LOCKS_PLACE_IN_IRAM": true, + "LIBC_MISC_IN_IRAM": true, + "LIBC_NEWLIB": false, + "LIBC_PICOLIBC": true, + "LIBC_PICOLIBC_NEWLIB_COMPATIBILITY": true, + "LIBC_TIME_SYSCALL_USE_HRT": false, + "LIBC_TIME_SYSCALL_USE_NONE": false, + "LIBC_TIME_SYSCALL_USE_RTC": false, + "LIBC_TIME_SYSCALL_USE_RTC_HRT": true, + "LOG_COLORS": false, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_DYNAMIC_LEVEL_CONTROL": true, + "LOG_IN_IRAM": true, + "LOG_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_MODE_TEXT": true, + "LOG_MODE_TEXT_EN": true, + "LOG_TAG_LEVEL_CACHE_ARRAY": false, + "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, + "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, + "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, + "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, + "LOG_TAG_LEVEL_IMPL_NONE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LOG_VERSION": 1, + "LOG_VERSION_1": true, + "LOG_VERSION_2": false, + "MBEDTLS_AES_C": true, + "MBEDTLS_AES_FEWER_TABLES": false, + "MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH": false, + "MBEDTLS_AES_ROM_TABLES": true, + "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION": false, + "MBEDTLS_ARIA_C": true, + "MBEDTLS_ASN1_PARSE_C": true, + "MBEDTLS_ASN1_WRITE_C": true, + "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, + "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, + "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, + "MBEDTLS_BASE64_C": true, + "MBEDTLS_BIGNUM_C": true, + "MBEDTLS_BLOWFISH_C": false, + "MBEDTLS_CAMELLIA_C": false, + "MBEDTLS_CCM_C": true, + "MBEDTLS_CERTIFICATE_BUNDLE": true, + "MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": true, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST": false, + "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": 200, + "MBEDTLS_CHACHA20_C": false, + "MBEDTLS_CIPHER_C": true, + "MBEDTLS_CIPHER_MODE_CBC": true, + "MBEDTLS_CIPHER_MODE_CFB": true, + "MBEDTLS_CIPHER_MODE_CTR": true, + "MBEDTLS_CIPHER_MODE_OFB": true, + "MBEDTLS_CIPHER_MODE_XTS": true, + "MBEDTLS_CIPHER_PADDING": true, + "MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS": true, + "MBEDTLS_CIPHER_PADDING_PKCS7": true, + "MBEDTLS_CIPHER_PADDING_ZEROS": true, + "MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN": true, + "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, + "MBEDTLS_CMAC_C": true, + "MBEDTLS_COMPILER_OPTIMIZATION_NONE": true, + "MBEDTLS_COMPILER_OPTIMIZATION_PERF": false, + "MBEDTLS_COMPILER_OPTIMIZATION_SIZE": false, + "MBEDTLS_CTR_DRBG_C": true, + "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": false, + "MBEDTLS_CUSTOM_MEM_ALLOC": false, + "MBEDTLS_DEBUG": false, + "MBEDTLS_DEFAULT_MEM_ALLOC": false, + "MBEDTLS_DES_C": false, + "MBEDTLS_DHM_C": true, + "MBEDTLS_DYNAMIC_BUFFER": false, + "MBEDTLS_ECDH_C": true, + "MBEDTLS_ECDSA_C": true, + "MBEDTLS_ECDSA_DETERMINISTIC": true, + "MBEDTLS_ECJPAKE_C": false, + "MBEDTLS_ECP_C": true, + "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, + "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, + "MBEDTLS_ECP_FIXED_POINT_OPTIM": false, + "MBEDTLS_ECP_NIST_OPTIM": true, + "MBEDTLS_ECP_RESTARTABLE": false, + "MBEDTLS_ENTROPY_C": true, + "MBEDTLS_ENTROPY_FORCE_SHA256": false, + "MBEDTLS_ERROR_STRINGS": true, + "MBEDTLS_GCM_C": true, + "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, + "MBEDTLS_GENPRIME": true, + "MBEDTLS_HARDWARE_AES": true, + "MBEDTLS_HARDWARE_MPI": true, + "MBEDTLS_HARDWARE_SHA": true, + "MBEDTLS_HAVE_TIME": true, + "MBEDTLS_HAVE_TIME_DATE": false, + "MBEDTLS_HKDF_C": false, + "MBEDTLS_HMAC_DRBG_C": true, + "MBEDTLS_INTERNAL_MEM_ALLOC": true, + "MBEDTLS_KEY_EXCHANGE_DHE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, + "MBEDTLS_KEY_EXCHANGE_RSA": true, + "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": false, + "MBEDTLS_MD5_C": true, + "MBEDTLS_MD_C": true, + "MBEDTLS_NIST_KW_C": false, + "MBEDTLS_OID_C": true, + "MBEDTLS_PEM_PARSE_C": true, + "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PKCS12_C": true, + "MBEDTLS_PKCS1_V15": true, + "MBEDTLS_PKCS1_V21": true, + "MBEDTLS_PKCS5_C": true, + "MBEDTLS_PKCS7_C": true, + "MBEDTLS_PK_C": true, + "MBEDTLS_PK_PARSE_C": true, + "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, + "MBEDTLS_PK_PARSE_EC_EXTENDED": true, + "MBEDTLS_PK_RSA_ALT_SUPPORT": true, + "MBEDTLS_PK_WRITE_C": true, + "MBEDTLS_PLATFORM_TIME_ALT": false, + "MBEDTLS_POLY1305_C": false, + "MBEDTLS_PSK_MODES": false, + "MBEDTLS_RIPEMD160_C": false, + "MBEDTLS_ROM_MD5": true, + "MBEDTLS_RSA_C": true, + "MBEDTLS_SELF_TEST": true, + "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, + "MBEDTLS_SHA1_C": true, + "MBEDTLS_SHA224_C": false, + "MBEDTLS_SHA256_C": true, + "MBEDTLS_SHA384_C": true, + "MBEDTLS_SHA3_C": true, + "MBEDTLS_SHA512_C": true, + "MBEDTLS_SSL_ALL_ALERT_MESSAGES": true, + "MBEDTLS_SSL_ALPN": true, + "MBEDTLS_SSL_CACHE_C": true, + "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, + "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, + "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": false, + "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT": false, + "MBEDTLS_SSL_MAX_FRAGMENT_LENGTH": true, + "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, + "MBEDTLS_SSL_PROTO_DTLS": false, + "MBEDTLS_SSL_PROTO_GMTSSL1_1": false, + "MBEDTLS_SSL_PROTO_TLS1_2": true, + "MBEDTLS_SSL_PROTO_TLS1_3": false, + "MBEDTLS_SSL_RENEGOTIATION": true, + "MBEDTLS_SSL_SERVER_NAME_INDICATION": true, + "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": false, + "MBEDTLS_THREADING_C": false, + "MBEDTLS_TLS_CLIENT": true, + "MBEDTLS_TLS_CLIENT_ONLY": false, + "MBEDTLS_TLS_DISABLED": false, + "MBEDTLS_TLS_ENABLED": true, + "MBEDTLS_TLS_SERVER": true, + "MBEDTLS_TLS_SERVER_AND_CLIENT": true, + "MBEDTLS_TLS_SERVER_ONLY": false, + "MBEDTLS_VERSION_C": true, + "MBEDTLS_VERSION_FEATURES": false, + "MBEDTLS_VER_4_X_SUPPORT": false, + "MBEDTLS_X509_CREATE_C": false, + "MBEDTLS_X509_CRL_PARSE_C": true, + "MBEDTLS_X509_CRT_PARSE_C": true, + "MBEDTLS_X509_CSR_PARSE_C": true, + "MBEDTLS_X509_REMOVE_INFO": false, + "MBEDTLS_X509_RSASSA_PSS_SUPPORT": true, + "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, + "MBEDTLS_X509_USE_C": true, + "MBEDTLS_XTEA_C": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "PARTITION_TABLE_CUSTOM": false, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", + "PARTITION_TABLE_FILENAME": "partitions_singleapp_coredump.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": true, + "PARTITION_TABLE_SINGLE_APP_LARGE": false, + "PARTITION_TABLE_TWO_OTA": false, + "PARTITION_TABLE_TWO_OTA_LARGE": false, + "PM_ENABLE": false, + "PM_SLEEP_FUNC_IN_IRAM": true, + "PM_SLP_IRAM_OPT": true, + "PTHREAD_DEFAULT_CORE_0": false, + "PTHREAD_DEFAULT_CORE_1": false, + "PTHREAD_DEFAULT_CORE_NO_AFFINITY": true, + "PTHREAD_STACK_MIN": 768, + "PTHREAD_TASK_CORE_DEFAULT": -1, + "PTHREAD_TASK_NAME_DEFAULT": "pthread", + "PTHREAD_TASK_PRIO_DEFAULT": 5, + "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, + "RTC_CLK_CAL_CYCLES": 1024, + "RTC_CLK_SRC_EXT_CRYS": false, + "RTC_CLK_SRC_EXT_OSC": false, + "RTC_CLK_SRC_INT_8MD256": false, + "RTC_CLK_SRC_INT_RC": true, + "SECURE_BOOT": false, + "SECURE_BOOT_V1_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 9, + "SOC_ADC_DIGI_MONITOR_NUM": 0, + "SOC_ADC_DIGI_RESULT_BYTES": 2, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_PATT_LEN_MAX": 16, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 9, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 2000000, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 20000, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_192": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_MULTI_CONN_OPTIMIZATION": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_CLASSIC_SUPPORTED": true, + "SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CAPS_ECO_VER_MAX": 301, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_APLL_SUPPORTED": true, + "SOC_CLK_LP_FAST_SUPPORT_XTAL_D4": true, + "SOC_CLK_RC_FAST_D256_SUPPORTED": true, + "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, + "SOC_CLK_TREE_SUPPORTED": true, + "SOC_CLK_XTAL32K_SUPPORTED": true, + "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true, + "SOC_CPU_BREAKPOINTS_NUM": 2, + "SOC_CPU_CORES_NUM": 2, + "SOC_CPU_HAS_FPU": true, + "SOC_CPU_INTR_NUM": 32, + "SOC_CPU_WATCHPOINTS_NUM": 2, + "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 64, + "SOC_DAC_CHAN_NUM": 2, + "SOC_DAC_DMA_16BIT_ALIGN": true, + "SOC_DAC_RESOLUTION": 8, + "SOC_DAC_SUPPORTED": true, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": 5, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 1, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK": true, + "SOC_EMAC_SUPPORTED": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_IN_RANGE_MAX": 39, + "SOC_GPIO_OUT_RANGE_MAX": 33, + "SOC_GPIO_PIN_COUNT": 40, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 15667178, + "SOC_GPIO_VALID_GPIO_MASK": 1099511627775, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_HP_I2C_NUM": 2, + "SOC_I2C_CMD_REG_NUM": 16, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_STOP_INDEPENDENT": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_APB": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2S_HW_VERSION_1": true, + "SOC_I2S_I80_LCD_SUPPORTED": true, + "SOC_I2S_PDM_MAX_RX_LINES": 1, + "SOC_I2S_PDM_MAX_TX_LINES": 1, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_APLL": true, + "SOC_I2S_SUPPORTS_PCM2PDM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM2PCM": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_IDCACHE_PER_CORE": true, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": true, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_HS_MODE": true, + "SOC_LEDC_SUPPORT_REF_TICK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 20, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_PERIPH_SHARE_INTERRUPT": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 3, + "SOC_MMU_PERIPH_NUM": 2, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 1, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MPU_SUPPORTED": true, + "SOC_PCNT_SUPPORTED": true, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PM_MODEM_PD_BY_SW": true, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_FAST_MEM_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 64, + "SOC_RMT_SUPPORTED": true, + "SOC_RNG_SUPPORTED": true, + "SOC_RSA_MAX_BIT_LEN": 4096, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 18, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_FAST_MEM_SUPPORTED": true, + "SOC_RTC_MEM_SUPPORTED": true, + "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, + "SOC_RTC_SLOW_MEM_SUPPORTED": true, + "SOC_SDIO_SLAVE_SUPPORTED": true, + "SOC_SDMMC_DATA_WIDTH_MAX": 8, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_USE_IOMUX": true, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V1": true, + "SOC_SHARED_IDCACHE_SUPPORTED": true, + "SOC_SHA_ENDIANNESS_BE": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_PARALLEL_ENG": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPI_EXTERNAL_NOR_FLASH_SUPPORTED": true, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_HD_BOTH_INOUT_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_TOUCH_MAX_CHAN_ID": 9, + "SOC_TOUCH_MIN_CHAN_ID": 0, + "SOC_TOUCH_SAMPLE_CFG_NUM": 1, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_SENSOR_VERSION": 1, + "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_MASK_FILTER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_HP_NUM": 3, + "SOC_UART_NUM": 3, + "SOC_UART_SUPPORTED": true, + "SOC_UART_SUPPORT_APB_CLK": true, + "SOC_UART_SUPPORT_REF_TICK": true, + "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_NAN_SUPPORT": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_26M": true, + "SOC_XTAL_SUPPORT_40M": true, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND": false, + "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, + "SPI_FLASH_SHARE_SPI1_BUS": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": false, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": false, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true, + "SPI_FLASH_VERIFY_WRITE": false, + "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, + "SPI_FLASH_YIELD_DURING_ERASE": true, + "XTAL_FREQ": 40, + "XTAL_FREQ_26": false, + "XTAL_FREQ_32": false, + "XTAL_FREQ_40": true, + "XTAL_FREQ_AUTO": false +} \ No newline at end of file diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/build/flasher_args.json b/tests/fixtures/hello_world_esp32_coredump_flash/build/flasher_args.json new file mode 100644 index 00000000..3bfc7058 --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_flash/build/flasher_args.json @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash-mode", "dio", + "--flash-size", "2MB", + "--flash-freq", "40m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "40m" + }, + "flash_files" : { + "0x1000" : "bootloader/bootloader.bin", + "0x8000" : "partition_table/partition-table.bin", + "0x10000" : "hello_world.bin" + }, + "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "hello_world.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard-reset", + "before" : "default-reset", + "stub" : true, + "chip" : "esp32" + } +} diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/build/gdbinit/prefix_map b/tests/fixtures/hello_world_esp32_coredump_flash/build/gdbinit/prefix_map new file mode 100644 index 00000000..8262b69e --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_flash/build/gdbinit/prefix_map @@ -0,0 +1,45 @@ +set substitute-path /COMPONENT_XTENSA_DIR /Users/fuhanxi/esp/esp-idf/components/xtensa +set substitute-path /COMPONENT_ESP_STDIO_DIR /Users/fuhanxi/esp/esp-idf/components/esp_stdio +set substitute-path /COMPONENT_ESP_HAL_TIMG_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_timg +set substitute-path /COMPONENT_ESP_TIMER_DIR /Users/fuhanxi/esp/esp-idf/components/esp_timer +set substitute-path /COMPONENT_ESP_MM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_mm +set substitute-path /COMPONENT_ESP_HAL_GPIO_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_gpio +set substitute-path /COMPONENT_ESP_HAL_GPSPI_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_gpspi +set substitute-path /COMPONENT_ESP_HAL_MSPI_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_mspi +set substitute-path /COMPONENT_ESP_HAL_WDT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_wdt +set substitute-path /COMPONENT_ESP_BLOCKDEV_DIR /Users/fuhanxi/esp/esp-idf/components/esp_blockdev +set substitute-path /COMPONENT_BOOTLOADER_DIR /Users/fuhanxi/esp/esp-idf/components/bootloader +set substitute-path /COMPONENT_ESPTOOL_PY_DIR /Users/fuhanxi/esp/esp-idf/components/esptool_py +set substitute-path /COMPONENT_PARTITION_TABLE_DIR /Users/fuhanxi/esp/esp-idf/components/partition_table +set substitute-path /COMPONENT_ESP_APP_FORMAT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_app_format +set substitute-path /COMPONENT_ESP_BOOTLOADER_FORMAT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_bootloader_format +set substitute-path /COMPONENT_APP_UPDATE_DIR /Users/fuhanxi/esp/esp-idf/components/app_update +set substitute-path /COMPONENT_ESP_PARTITION_DIR /Users/fuhanxi/esp/esp-idf/components/esp_partition +set substitute-path /COMPONENT_EFUSE_DIR /Users/fuhanxi/esp/esp-idf/components/efuse +set substitute-path /COMPONENT_ESP_SECURITY_DIR /Users/fuhanxi/esp/esp-idf/components/esp_security +set substitute-path /COMPONENT_ESP_DRIVER_GPIO_DIR /Users/fuhanxi/esp/esp-idf/components/esp_driver_gpio +set substitute-path /COMPONENT_ESP_PM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_pm +set substitute-path /COMPONENT_MBEDTLS_DIR /Users/fuhanxi/esp/esp-idf/components/mbedtls +set substitute-path /COMPONENT_ESP_HAL_I2S_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_i2s +set substitute-path /COMPONENT_ESP_HAL_ANA_CONV_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_ana_conv +set substitute-path /COMPONENT_BOOTLOADER_SUPPORT_DIR /Users/fuhanxi/esp/esp-idf/components/bootloader_support +set substitute-path /COMPONENT_ESP_USB_CDC_ROM_CONSOLE_DIR /Users/fuhanxi/esp/esp-idf/components/esp_usb_cdc_rom_console +set substitute-path /COMPONENT_ESP_SYSTEM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_system +set substitute-path /COMPONENT_ESP_COMMON_DIR /Users/fuhanxi/esp/esp-idf/components/esp_common +set substitute-path /COMPONENT_ESP_ROM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_rom +set substitute-path /COMPONENT_LOG_DIR /Users/fuhanxi/esp/esp-idf/components/log +set substitute-path /COMPONENT_HEAP_DIR /Users/fuhanxi/esp/esp-idf/components/heap +set substitute-path /COMPONENT_SOC_DIR /Users/fuhanxi/esp/esp-idf/components/soc +set substitute-path /COMPONENT_ESP_HAL_DMA_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_dma +set substitute-path /COMPONENT_ESP_HAL_USB_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_usb +set substitute-path /COMPONENT_ESP_HAL_TOUCH_SENS_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_touch_sens +set substitute-path /COMPONENT_ESP_HW_SUPPORT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hw_support +set substitute-path /COMPONENT_FREERTOS_DIR /Users/fuhanxi/esp/esp-idf/components/freertos +set substitute-path /COMPONENT_ESP_LIBC_DIR /Users/fuhanxi/esp/esp-idf/components/esp_libc +set substitute-path /COMPONENT_PTHREAD_DIR /Users/fuhanxi/esp/esp-idf/components/pthread +set substitute-path /COMPONENT_CXX_DIR /Users/fuhanxi/esp/esp-idf/components/cxx +set substitute-path /COMPONENT_HAL_DIR /Users/fuhanxi/esp/esp-idf/components/hal +set substitute-path /COMPONENT_SPI_FLASH_DIR /Users/fuhanxi/esp/esp-idf/components/spi_flash +set substitute-path /COMPONENT_ESPCOREDUMP_DIR /Users/fuhanxi/esp/esp-idf/components/espcoredump +set substitute-path /COMPONENT_MAIN_DIR /Users/fuhanxi/esp/pytest-embedded/tests/fixtures/hello_world_esp32_coredump_flash/main +set substitute-path /TOOLCHAIN /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/build/hello_world.bin b/tests/fixtures/hello_world_esp32_coredump_flash/build/hello_world.bin new file mode 100644 index 00000000..3196709c Binary files /dev/null and b/tests/fixtures/hello_world_esp32_coredump_flash/build/hello_world.bin differ diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/build/hello_world.elf b/tests/fixtures/hello_world_esp32_coredump_flash/build/hello_world.elf new file mode 100755 index 00000000..19e37267 Binary files /dev/null and b/tests/fixtures/hello_world_esp32_coredump_flash/build/hello_world.elf differ diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/build/hello_world.map b/tests/fixtures/hello_world_esp32_coredump_flash/build/hello_world.map new file mode 100644 index 00000000..242f2fe7 --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_flash/build/hello_world.map @@ -0,0 +1,25339 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + (esp_timer_init_include_func) +esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) (esp_timer_impl_init_system_time) +esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (esp_timer_impl_get_time) +esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) (s_time_update_lock) +esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + (esp_app_desc) +esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + (esp_efuse_startup_include_func) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (esp_efuse_check_errors) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_fill_buff) +esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_get_coding_scheme) +esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) (ESP_EFUSE_RD_DIS_BLOCK3) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (range_read_addr_blocks) +esp-idf/esp_security/libesp_security.a(init.c.obj) + (esp_security_init_include_impl) +esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (esp_register_shutdown_handler) +esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (g_startup_time) +esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + (esp_system_include_startup_funcs) +esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + (__ubsan_include) +esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (startup_resume_other_cores) +esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (esp_system_abort) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_ipc_isr_stall_other_cpu) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) (esp_ipc_isr_port_init) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) (esp_ipc_isr_waiting_for_finish_cmd) +esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + (ld_include_highint_hdl) +esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rtc_init) +esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (esp_restart_noos) +esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_cache_err_int_init) +esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (int_wdt_cpu1_ticked) +esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (panic_abort) +esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (panicHandler) +esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (esp_ipc_isr_handler) +esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (panic_print_registers) +esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_backtrace_print_from_frame) +esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) (esp_backtrace_get_start) +esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) (esp_ipc_call) +esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) (esp_register_freertos_tick_hook_for_cpu) +esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_rom_output_tx_wait_idle) +esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (esp_log_timestamp) +esp-idf/log/liblog.a(util.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_log_util_set_cache_enabled_cb) +esp-idf/log/liblog.a(log.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) (esp_log) +esp-idf/log/liblog.a(log_write.c.obj) + esp-idf/log/liblog.a(log.c.obj) (esp_log_vprint_func) +esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) (esp_log_default_level) +esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/log/liblog.a(log_level.c.obj) (esp_log_level_get_timeout) +esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_linked_list_set_level) +esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_cache_set_level) +esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) (esp_log_impl_lock) +esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (heap_caps_get_free_size) +esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (registered_heaps) +esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (multi_heap_get_allocated_size) +esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) (tlsf_check) +esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) +esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) +esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) (heap_caps_free) +esp-idf/soc/libsoc.a(dport_access.c.obj) + (esp_dport_access_reg_read) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (esp_cpu_stall) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) (esp_ptr_executable) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_clk_cpu_freq) +esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) (esp_intr_enable_source) +esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) (periph_rcc_acquire_enter) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (rtc_isr_noniram_disable) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_clk_tree_initialize) +esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) (esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) (esp_clk_tree_rc_fast_d256_get_freq_hz) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_deep_sleep_wakeup_io_reset) +esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_brownout_init) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_32k_enable) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_init) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (rtc_clk_cal) +esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_chip_info) +esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (sar_periph_ctrl_init) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_cpu_intr_get_desc) +esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (regi2c_ctrl_read_reg_mask) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_sleep_sub_mode_config) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (esp_sleep_execute_event_callbacks) +esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_sleep_get_default_config) +esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (sleep_modem_reject_triggers) +esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_startup_start_app) +esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) (xQueueGenericCreateStatic) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (vTaskSuspendAll) +esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (port_xSchedulerRunning) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_frxt_dispatch) +esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (_xt_tick_divisor) +esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (pvPortMalloc) +esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (vApplicationGetIdleTaskMemory) +esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (vPortSetupTimer) +esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (vListInitialise) +esp-idf/esp_libc/libesp_libc.a(init.c.obj) + (esp_libc_init_funcs) +esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (abort) +esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + (__assert_func) +esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) (malloc) +esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (_lock_acquire_recursive) +esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + (esp_libc_include_pthread_impl) +esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + (esp_libc_include_getentropy_impl) +esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (esp_libc_time_init) +esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + (esp_libc_include_syscalls_impl) +esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) (_getpid_r) +esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) (esp_time_impl_get_time_since_boot) +esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(init.c.obj) (esp_libc_init) +esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) (errno) +esp-idf/esp_libc/libesp_libc.a(random.c.obj) + esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) (getrandom) +esp-idf/pthread/libpthread.a(pthread.c.obj) + (pthread_include_pthread_impl) +esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + (pthread_include_pthread_cond_var_impl) +esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) +esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + (pthread_include_pthread_rwlock_impl) +esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + (pthread_include_pthread_semaphore_impl) +esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + (__cxa_guard_dummy) +esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + (__cxx_init_dummy) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) (efuse_hal_chip_revision) +esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version) +esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (mmu_hal_ctx_init) +esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (cache_hal_init) +esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) (clk_hal_lp_slow_get_freq_hz) +esp-idf/hal/libhal.a(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_hw_support/libesp_hw_support.a(brownout.c.obj) (brownout_hal_config) +esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) (spi_flash_needs_reset_check) +esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (spi_flash_disable_cache) +esp-idf/spi_flash/libspi_flash.a(flash_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_spi_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.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_spi_init.c.obj) (esp_flash_noos_functions) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_chip_list_check) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_generic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_issi) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_mxic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_gd) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) (spi_flash_chip_winbond_page_program) +esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_init_pointers) +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_check_and_flush_cache) +esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_init_main) +esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + (esp_system_include_coredump_init) +esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) (esp_core_dump_init) +esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) (esp_core_dump_write_elf) +esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) (esp_core_dump_elf_version) +esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) (esp_core_dump_print_write_start) +esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) (esp_core_dump_port_init) +esp-idf/main/libmain.a(hello_world_main.c.obj) + (app_main) +esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) (_xt_context_save) +esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xt_ints_on) +esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) (xt_unhandled_interrupt) +esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_xt_user_exit) +esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) (_write_r) +esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) (esp_system_console_put_char) +esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_mmu_map_init) +esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (g_mmu_mem_regions) +esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) (esp_cache_suspend_ext_mem_cache) +esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) (cache_sync) +esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) (esp_heap_adjust_alignment_to_hw) +esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) (esp_cache_get_alignment) +esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (rtc_io_desc) +esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) +esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_init) +esp-idf/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) (wdt_hal_init) +esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) (esp_partition_find_first) +esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) (esp_partition_write) +esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) (gpio_sleep_set_direction) +esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (rtc_gpio_is_valid_gpio) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (bootloader_common_get_sha256_of_partition) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_init_mem) +esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) (esp_flash_encryption_enabled) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_mmap) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_flash_contents) +esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_image_get_metadata) +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_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) (bootloader_common_get_chip_ver_pkg) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) +esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (_esp_error_check_failed) +esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) (esp_crosscore_int_init) +esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) (g_twdt_isr) +esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) (esp_task_wdt_impl_timer_allocate) +esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) (_xt_panic) +esp-idf/esp_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_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (esp_rom_set_cpu_ticks_per_us) +esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_rom_spiflash_wait_idle) +esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_rom_gpio_connect_out_signal) +esp-idf/soc/libsoc.a(interrupts.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (esp_isr_names) +esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (GPIO_HOLD_MASK) +esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) (touch_hal_prepare_deep_sleep) +esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection) +esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_libc/libesp_libc.a(random.c.obj) (esp_fill_random) +esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_gpio_reserve) +esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_bus_lock_register_dev) +esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) (xSemaphoreCreateGenericWithCaps) +esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) (xStreamBufferGenericCreateStatic) +esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) (__atomic_fetch_and_8) +esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) (mpu_hal_set_region_access) +/Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +/Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (xthal_set_intclear) +/Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) (Xthal_intlevel) +/Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_restore_extra_nw) +/Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) (xthal_save_extra_nw) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) (mbedtls_sha256_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) (mbedtls_sha512_init) +esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) (esp_sha_try_lock_engine) +esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) +esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) (esp_ota_get_running_partition) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_disable_rom_download_mode) +esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (sha_hal_set_mode) +esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) (esp_dport_access_read_buffer) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/hal/libhal.a(sha_hal.c.obj) (__bswapsi2) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divsf3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__adddf3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__muldf3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__divdf3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixdfsi) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__fixunsdfsi) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__floatunsidf) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) (__extendsfdf2) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) (__divdi3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) (__moddi3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + esp-idf/esp_system/libesp_system.a(clk.c.obj) (__udivdi3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) (__umoddi3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) (memcpy) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (memset) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + esp-idf/log/liblog.a(tag_log_level.c.obj) (strcmp) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + esp-idf/esp_system/libesp_system.a(panic.c.obj) (strlen) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) (strncpy) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) (__libc_init_array) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) (div) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) (environ) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) (itoa) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) (__utoa) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) (bzero) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (memcmp) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) (strlcpy) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) (__bufio_flush) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) (fflush) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) (__flockfile_init) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fprintf) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fputc) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (fputs) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) (fwrite) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) (snprintf) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) (vfprintf) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + esp-idf/log/liblog.a(log_write.c.obj) (vprintf) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) (__dtoa_engine) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) (__log10Pow2) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) (__pow5bits) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) (__pow5Factor) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) (__umul128) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) (strcpy) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) (_strerror_r) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) (strnlen) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) (__dtox_engine) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) (__file_str_put) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) (__ashldi3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) (__ashrdi3) +/Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) (__lshrdi3) + +Discarded input sections + + .text 0x00000000 0x0 CMakeFiles/hello_world.elf.dir/project_elf_src_esp32.c.obj + .data 0x00000000 0x0 CMakeFiles/hello_world.elf.dir/project_elf_src_esp32.c.obj + .bss 0x00000000 0x0 CMakeFiles/hello_world.elf.dir/project_elf_src_esp32.c.obj + .comment 0x00000000 0x30 CMakeFiles/hello_world.elf.dir/project_elf_src_esp32.c.obj + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .iram1.1 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .iram1.3.literal + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.2.literal + 0x00000000 0x48 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_set + 0x00000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_advance + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_init + 0x00000000 0x8c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_deinit + 0x00000000 0x2c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x00000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.3 0x00000000 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.str1.4 + 0x00000000 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.2 0x00000000 0x14f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_set + 0x00000000 0x3b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_advance + 0x00000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x00000000 0xe8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_init + 0x00000000 0x17b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_deinit + 0x00000000 0x92 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x00000000 0x57 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.__func__$6 + 0x00000000 0x1b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.__func__$1 + 0x00000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_alarm_handler + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_timer_interrupt_handle + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.prop 0x00000000 0x450 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_lock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_timer_impl_unlock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_lock + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .text.esp_timer_impl_unlock + 0x00000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.0 0x00000000 0x12 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .iram1.1 0x00000000 0x9 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data.timestamp_id + 0x00000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .data.s_time_update_lock + 0x00000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_info 0x00000000 0x402 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_abbrev 0x00000000 0x178 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_loc 0x00000000 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_line 0x00000000 0x28d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .debug_str 0x00000000 0x9d4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .literal.esp_app_get_description + 0x00000000 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text.esp_app_get_description + 0x00000000 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .xt.prop 0x00000000 0x138 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .literal.esp_efuse_read_field_blob + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_bit + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_bit + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.destroy_block + 0x00000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_destroy_block + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_blob + 0x00000000 0x65 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_read_field_bit.str1.4 + 0x00000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_bit + 0x00000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x00000000 0x49 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x00000000 0x7f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x00000000 0xa3 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_bit + 0x00000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x00000000 0x57 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x00000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x00000000 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.destroy_block.str1.4 + 0x00000000 0x120 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.destroy_block + 0x00000000 0x105 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x00000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x00000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x00000000 0x61 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_commit.str1.4 + 0x00000000 0x37 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x00000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_destroy_block + 0x00000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$1 + 0x00000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_efuse_lock + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.prop 0x00000000 0x6a8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.fill_reg + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.set_cnt_in_reg + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.write_reg + 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.check_range_of_bits + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_process + 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x00000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_single_block + 0x00000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_pending + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_read_reg + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_fill_buff + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_get_read_register_address + 0x00000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_is_correct_written_data + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_mask + 0x00000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.fill_reg + 0x00000000 0xa1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.set_cnt_in_reg.str1.4 + 0x00000000 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x00000000 0x47 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.write_reg.str1.4 + 0x00000000 0x10c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x00000000 0x87 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.check_range_of_bits + 0x00000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x00000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x00000000 0x13f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_reset.str1.4 + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x00000000 0x73 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x00000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x00000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_single_block.str1.4 + 0x00000000 0x12a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_single_block + 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_pending + 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 + 0x00000000 0xd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_read_reg.str1.4 + 0x00000000 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x00000000 0x77 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x00000000 0xc1 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x00000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x00000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x00000000 0x51 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_get_read_register_address.str1.4 + 0x00000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_read_register_address + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_is_correct_written_data.str1.4 + 0x00000000 0xba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_is_correct_written_data + 0x00000000 0xa4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$2 + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3 + 0x00000000 0x25 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$4 + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$5 + 0x00000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$6 + 0x00000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$7 + 0x00000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.s_burn_counter + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00000000 0x192c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00000000 0x425 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x00000000 0xdc5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x00000000 0x150 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00000000 0x19f5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x00000000 0x1179 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x00000000 0x900 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_write_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_read_protect + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_coding_scheme + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_block_is_empty + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_read + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_read + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_get_key_dis_write + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_set_key_dis_write + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_key_block_unused + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_find_purpose + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_key + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .literal.esp_efuse_write_keys + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_write_protect + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_read_protect + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_coding_scheme + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_block_is_empty + 0x00000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_get_key_dis_read.str1.4 + 0x00000000 0xa3 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_read + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_read + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_dis_write + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_set_key_dis_write + 0x00000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_key_block_unused + 0x00000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_key_purpose + 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_get_keypurpose_dis_write + 0x00000000 0x7 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_find_purpose + 0x00000000 0x29 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_key + 0x00000000 0xa1 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.esp_efuse_write_keys.str1.4 + 0x00000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text.esp_efuse_write_keys + 0x00000000 0xef esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .rodata.s_table + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_frame 0x00000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_info 0x00000000 0x2f5f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_abbrev 0x00000000 0x3ec esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_loc 0x00000000 0x82f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_aranges + 0x00000000 0x88 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_ranges 0x00000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_line 0x00000000 0xd9f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .debug_str 0x00000000 0x2391 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xt.prop 0x00000000 0x5c4 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_SDIO_HOST + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WAFER_VERSION_MINOR + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_RATED + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SPI_PAD_CONFIG_HD + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_PACKAGE_4BIT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_JTAG_DISABLE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ABS_DONE_0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_KEY_STATUS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CODING_SCHEME + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SECURE_VERSION + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC2_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_HIGH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC1_TP_LOW + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK3 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK2 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLOCK1 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_XPD_SDIO_REG + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_ADC_VREF + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_CLK8M_FREQ + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DIS_CACHE + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_BT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_DISABLE_APP_CPU + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC_CRC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_MAC + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_RD_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_SDIO_HOST + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WAFER_VERSION_MINOR + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_RATED + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SPI_PAD_CONFIG_HD + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_PACKAGE_4BIT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_DECRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_DL_ENCRYPT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CONSOLE_DEBUG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_JTAG_DISABLE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ABS_DONE_0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_KEY_STATUS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CODING_SCHEME + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CONFIG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK3_PART_RESERVE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SECURE_VERSION + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC2_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_HIGH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC1_TP_LOW + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CUSTOM_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK3 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK2 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLOCK1 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CS0 + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_D + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_Q + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_SPI_PAD_CONFIG_CLK + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_FORCE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_TIEH + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_XPD_SDIO_REG + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_ADC_VREF + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_CLK8M_FREQ + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_VOL_LEVEL_HP_INV + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DIS_CACHE + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_BT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_DISABLE_APP_CPU + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC_CRC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_MAC + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_UART_DOWNLOAD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CNT + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_RD_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x00000000 0x1621 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x00000000 0x106 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x00000000 0x16e esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x00000000 0x15d5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xt.prop 0x00000000 0x9d8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.apply_repeat_encoding + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_set_timing + 0x00000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.read_r_data + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_34_encoding + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip_opt + 0x00000000 0xbc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_chip + 0x00000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.apply_repeat_encoding + 0x00000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_set_timing + 0x00000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.read_r_data + 0x00000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x00000000 0xb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_34_encoding + 0x00000000 0x8b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_burn_chip_opt.str1.4 + 0x00000000 0x248 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip_opt + 0x00000000 0x296 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_chip + 0x00000000 0x11 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x00000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x00000000 0x111 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$1 + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.start_write_addr + 0x00000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .bss.write_mass_blocks + 0x00000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x00000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x00000000 0x4f8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/esp_security/libesp_security.a(init.c.obj) + .literal.esp_unregister_shutdown_handler + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .text.esp_unregister_shutdown_handler + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_startup_start_app_other_cores_default + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text.esp_startup_start_app_other_cores_default + 0x00000000 0xf esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .xt.prop 0x00000000 0x180 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .literal.__ubsan_maybe_debugbreak + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_default_handler + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_type_mismatch_v1 + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_add_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_sub_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_mul_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_negate_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_divrem_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_shift_out_of_bounds + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_out_of_bounds + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_missing_return + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_vla_bound_not_positive + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_load_invalid_value + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_arg + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_nonnull_return + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_builtin_unreachable + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_pointer_overflow + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .literal.__ubsan_handle_invalid_builtin + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_maybe_debugbreak + 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__ubsan_default_handler.str1.4 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_default_handler + 0x00000000 0x31 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_type_mismatch_v1 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_add_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_sub_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_mul_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_negate_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_divrem_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_shift_out_of_bounds + 0x00000000 0x1a esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_out_of_bounds + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_missing_return + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_vla_bound_not_positive + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_load_invalid_value + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_arg + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_nonnull_return + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_builtin_unreachable + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_pointer_overflow + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text.__ubsan_handle_invalid_builtin + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$1 + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$2 + 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$3 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$4 + 0x00000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$5 + 0x00000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$6 + 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$7 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$8 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$9 + 0x00000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$10 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$11 + 0x00000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$12 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$13 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$14 + 0x00000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$15 + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .rodata.__func__$16 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xt.prop 0x00000000 0x3c0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xt.prop 0x00000000 0x3cc esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.esp_get_free_heap_size + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .literal.esp_get_free_internal_heap_size + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .literal.esp_get_idf_version + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_free_heap_size + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_free_internal_heap_size + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x00000000 0x1b esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .text.esp_get_idf_version + 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .iram1.0.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6.literal + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.0 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.1 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.4 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .iram1.6 0x00000000 0x53 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xt.prop 0x00000000 0x390 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xt.prop 0x00000000 0x24 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .data 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x00000000 0xe esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xt.prop 0x00000000 0xfc esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .iram1.2.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .iram1.2 0x00000000 0xc esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xt.prop 0x00000000 0x4a4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xt.prop 0x00000000 0x264 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .text.panic_prepare_frame_from_ctx + 0x00000000 0x5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xt.prop 0x00000000 0x3b4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.backtrace_other_cores_ipc_func + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.5.literal + 0x00000000 0x64 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text.backtrace_other_cores_ipc_func + 0x00000000 0x45 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.5 0x00000000 0x1ad esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .data.DEBUG_HELPER_TAG + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .literal.esp_ipc_call_and_wait + 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.esp_ipc_call + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.esp_ipc_call_blocking + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text.esp_ipc_call_and_wait + 0x00000000 0xf5 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text.esp_ipc_call + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .text.esp_ipc_call_blocking + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .literal.esp_register_freertos_idle_hook + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_tick_hook + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook_for_cpu + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_idle_hook + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_register_freertos_tick_hook + 0x00000000 0x15 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xt.prop 0x00000000 0x378 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/log/liblog.a(log_timestamp.c.obj) + .literal.esp_log_util_is_constrained + 0x00000000 0xc esp-idf/log/liblog.a(util.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(util.c.obj) + .text.esp_log_util_is_constrained + 0x00000000 0x39 esp-idf/log/liblog.a(util.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/log/liblog.a(util.c.obj) + .xt.prop 0x00000000 0xc0 esp-idf/log/liblog.a(util.c.obj) + .literal.esp_log_va + 0x00000000 0x8 esp-idf/log/liblog.a(log.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_va + 0x00000000 0x2c esp-idf/log/liblog.a(log.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/log/liblog.a(log.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_set_vprintf + 0x00000000 0x4 esp-idf/log/liblog.a(log_write.c.obj) + .literal.esp_log_writev + 0x00000000 0x4 esp-idf/log/liblog.a(log_write.c.obj) + .literal.esp_log_write + 0x00000000 0x8 esp-idf/log/liblog.a(log_write.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .text.esp_log_set_vprintf + 0x00000000 0x1e esp-idf/log/liblog.a(log_write.c.obj) + .text.esp_log_writev + 0x00000000 0x1e esp-idf/log/liblog.a(log_write.c.obj) + .text.esp_log_write + 0x00000000 0x33 esp-idf/log/liblog.a(log_write.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/log/liblog.a(log_write.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/log/liblog.a(log_write.c.obj) + .literal.esp_log_set_default_level + 0x00000000 0x4 esp-idf/log/liblog.a(log_level.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .text.esp_log_set_default_level + 0x00000000 0xa esp-idf/log/liblog.a(log_level.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/log/liblog.a(log_level.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/log/liblog.a(log_level.c.obj) + .literal.log_level_set + 0x00000000 0x24 esp-idf/log/liblog.a(tag_log_level.c.obj) + .literal.esp_log_level_set + 0x00000000 0x4 esp-idf/log/liblog.a(tag_log_level.c.obj) + .literal.esp_log_level_get + 0x00000000 0x4 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .rodata.log_level_set.str1.4 + 0x00000000 0x2 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.log_level_set + 0x00000000 0x54 esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.esp_log_level_set + 0x00000000 0xf esp-idf/log/liblog.a(tag_log_level.c.obj) + .text.esp_log_level_get + 0x00000000 0x11 esp-idf/log/liblog.a(tag_log_level.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/log/liblog.a(tag_log_level.c.obj) + .xt.prop 0x00000000 0x150 esp-idf/log/liblog.a(tag_log_level.c.obj) + .literal.set_log_level + 0x00000000 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.add_to_list + 0x00000000 0x10 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.esp_log_linked_list_set_level + 0x00000000 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.esp_log_linked_list_clean + 0x00000000 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.set_log_level + 0x00000000 0x29 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.add_to_list + 0x00000000 0x41 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.esp_log_linked_list_set_level + 0x00000000 0x28 esp-idf/log/liblog.a(log_linked_list.c.obj) + .text.esp_log_linked_list_clean + 0x00000000 0x1e esp-idf/log/liblog.a(log_linked_list.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/log/liblog.a(log_linked_list.c.obj) + .xt.prop 0x00000000 0x198 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.esp_log_cache_set_level + 0x00000000 0x1c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .literal.esp_log_cache_clean + 0x00000000 0xc esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.esp_log_cache_set_level + 0x00000000 0x7a esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.esp_log_cache_clean + 0x00000000 0x16 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .xt.prop 0x00000000 0x2c4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .data 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/log/liblog.a(log_lock.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/log/liblog.a(log_lock.c.obj) + .iram1.9.literal + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_walker + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_register_failed_alloc_callback + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_malloc_extmem_enable + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.4.literal + 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.5.literal + 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6.literal + 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.7.literal + 0x00000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.3.literal + 0x00000000 0x28 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_total_size + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_free_size + 0x00000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_monitor_local_minimum_free_size_start + 0x00000000 0x44 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_monitor_local_minimum_free_size_stop + 0x00000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_print_heap_info + 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_all + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_addr + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump_all + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_allocated_size + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_containing_block_size + 0x00000000 0x1c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.11.literal + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.10.literal + 0x00000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.12.literal + 0x00000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_aligned_calloc + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_walk + 0x00000000 0x1c esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_walk_all + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.9 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_walker + 0x00000000 0x3a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_register_failed_alloc_callback + 0x00000000 0x15 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x00000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.4 0x00000000 0x9e esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.5 0x00000000 0xa2 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.6 0x00000000 0xa2 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.7 0x00000000 0x2f esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.3 0x00000000 0x7e esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x00000000 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_free_size + 0x00000000 0x2f esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_monitor_local_minimum_free_size_start.str1.4 + 0x00000000 0x82 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_monitor_local_minimum_free_size_start + 0x00000000 0xd1 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_monitor_local_minimum_free_size_stop + 0x00000000 0x94 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_print_heap_info.str1.4 + 0x00000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x00000000 0x82 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x00000000 0x53 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x00000000 0x13 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x00000000 0x35 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x00000000 0x3d esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x00000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_get_allocated_size.str1.4 + 0x00000000 0x5 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_allocated_size + 0x00000000 0x44 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_containing_block_size + 0x00000000 0x4e esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.11 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.10 0x00000000 0x88 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.12 0x00000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x00000000 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_walk.str1.4 + 0x00000000 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_walk + 0x00000000 0x5c esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_walk_all + 0x00000000 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$0 + 0x00000000 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$2 + 0x00000000 0x20 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$3 + 0x00000000 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$4 + 0x00000000 0x1d esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$5 + 0x00000000 0x30 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$7 + 0x00000000 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$8 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$9 + 0x00000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$10 + 0x00000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$11 + 0x00000000 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.min_free_bytes_monitoring + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.lit 0x00000000 0x110 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.prop 0x00000000 0xdbc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_add_region_with_caps + 0x00000000 0x50 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.heap_caps_add_region + 0x00000000 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_check_add_region_allowed + 0x00000000 0x5d esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x00000000 0x122 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x00000000 0x61 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data.registered_heaps_write_lock$0 + 0x00000000 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.prop 0x00000000 0x4e0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.multi_heap_dump_tlsf + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_allocated_size_impl + 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_full_block_size + 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_first_block + 0x00000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_next_block + 0x00000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_realloc_impl + 0x00000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl + 0x00000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_check + 0x00000000 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_dump + 0x00000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_walk + 0x00000000 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_find_containing_block_impl + 0x00000000 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_reset_minimum_free_bytes + 0x00000000 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_restore_minimum_free_bytes + 0x00000000 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump_tlsf.str1.4 + 0x00000000 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump_tlsf + 0x00000000 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_address_impl + 0x00000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_allocated_size_impl + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_full_block_size + 0x00000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_first_block.str1.4 + 0x00000000 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_first_block + 0x00000000 0x25 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_get_next_block.str1.4 + 0x00000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_next_block + 0x00000000 0x53 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_is_free + 0x00000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_realloc_impl + 0x00000000 0x86 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl + 0x00000000 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_check + 0x00000000 0x52 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump.str1.4 + 0x00000000 0x1c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump + 0x00000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_free_size_impl + 0x00000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_walk + 0x00000000 0x3c esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_find_containing_block_impl.str1.4 + 0x00000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_find_containing_block_impl + 0x00000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_reset_minimum_free_bytes + 0x00000000 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_restore_minimum_free_bytes + 0x00000000 0x1e esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$8 + 0x00000000 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$7 + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$6 + 0x00000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$5 + 0x00000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4 + 0x00000000 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$3 + 0x00000000 0xb esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$2 + 0x00000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$1 + 0x00000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.prop 0x00000000 0x7a4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.integrity_walker + 0x00000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check + 0x00000000 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_check_pool + 0x00000000 0x8 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_remove_pool + 0x00000000 0x48 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_malloc_addr + 0x00000000 0xa0 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_memalign + 0x00000000 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + .literal.tlsf_realloc + 0x00000000 0xd0 esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.integrity_walker + 0x00000000 0x50 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check + 0x00000000 0x10f esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_check_pool + 0x00000000 0x1a esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_remove_pool + 0x00000000 0x13e esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_destroy + 0x00000000 0x5 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_malloc_addr + 0x00000000 0x552 esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_memalign + 0x00000000 0x15 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.tlsf_realloc.str1.4 + 0x00000000 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_realloc + 0x00000000 0x59e esp-idf/heap/libheap.a(tlsf.c.obj) + .text.tlsf_find_containing_block + 0x00000000 0x38 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$0 + 0x00000000 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$1 + 0x00000000 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$15 + 0x00000000 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/heap/libheap.a(tlsf.c.obj) + .xt.prop 0x00000000 0x123c esp-idf/heap/libheap.a(tlsf.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xt.prop 0x00000000 0x204 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .rodata.soc_memory_type_count + 0x00000000 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/heap/libheap.a(memory_layout.c.obj) + .iram1.5.literal + 0x00000000 0x50 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .text 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .data 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .bss 0x00000000 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .iram1.5 0x00000000 0x172 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.__func__$0 + 0x00000000 0x17 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .xt.prop 0x00000000 0x42c esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/soc/libsoc.a(dport_access.c.obj) + .literal.esp_cpu_reset + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_reset + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text.esp_cpu_clear_breakpoint + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$0 + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xt.prop 0x00000000 0x2f4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .text.esp_ptr_dma_ext_capable + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .iram1.4.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_rtc_time + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_lock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_private_unlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.4 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_rtc_time + 0x00000000 0xf esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_lock + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .text.esp_clk_private_unlock + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xt.prop 0x00000000 0x270 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_intr_mark_shared + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_reserve + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.2.literal + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_alloc_bind + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.intr_free_for_current_cpu + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_free + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.intr_free_for_other_cpu + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_dump + 0x00000000 0x94 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_mark_shared + 0x00000000 0x71 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.1 0x00000000 0x91 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.6 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.7 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .iram1.2 0x00000000 0xca esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_alloc_bind + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.intr_free_for_current_cpu.str1.4 + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.intr_free_for_current_cpu + 0x00000000 0xe5 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_free + 0x00000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.intr_free_for_other_cpu + 0x00000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.esp_intr_dump.str1.4 + 0x00000000 0x123 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.esp_intr_dump + 0x00000000 0x1c6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xt.prop 0x00000000 0x11f4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.periph_ll_disable_clk_set_rst + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_ll_reset + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.0.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.1.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_rcc_release_enter + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_rcc_release_exit + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_module_disable + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.periph_module_reset + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.3.literal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.4.literal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_disable_clk_set_rst + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_ll_reset + 0x00000000 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.0 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.1 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_enter + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_rcc_release_exit + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_module_disable + 0x00000000 0x7b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .text.periph_module_reset + 0x00000000 0x6b esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.3 0x00000000 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .iram1.4 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.__func__$1 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xt.prop 0x00000000 0x858 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .literal.rtc_isr_deregister + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x00000000 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .data.rtc_spinlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xt.prop 0x00000000 0x2d0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.esp_clk_tree_src_get_freq_hz + 0x00000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .rodata.esp_clk_tree_src_get_freq_hz.str1.4 + 0x00000000 0xc1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_src_get_freq_hz + 0x00000000 0x1a6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_is_power_on + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_enable_power + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text.esp_clk_tree_enable_src + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xt.prop 0x00000000 0x2b8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .text.esp_clk_utils_mspi_speed_mode_sync_after_cpu_freq_switching + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .literal.clk_tree_rtc_slow_calibration + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.esp_clk_tree_xtal32k_get_freq_hz + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.esp_clk_tree_lp_slow_get_freq_hz + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.esp_clk_tree_rc_fast_get_freq_hz + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.esp_clk_tree_lp_fast_get_freq_hz + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.clk_tree_rtc_slow_calibration.str1.4 + 0x00000000 0x4f esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text.clk_tree_rtc_slow_calibration + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text.esp_clk_tree_rc_fast_d256_get_freq_hz + 0x00000000 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text.esp_clk_tree_xtal32k_get_freq_hz + 0x00000000 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text.esp_clk_tree_lp_slow_get_freq_hz + 0x00000000 0x41 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text.esp_clk_tree_rc_fast_get_freq_hz + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.esp_clk_tree_lp_fast_get_freq_hz.str1.4 + 0x00000000 0x6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .text.esp_clk_tree_lp_fast_get_freq_hz + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.__func__$0 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .rodata.__func__$1 + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .bss.s_calibrated_freq + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_info 0x00000000 0x743 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_abbrev 0x00000000 0x2a8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_loc 0x00000000 0x360 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_line 0x00000000 0x7a3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .debug_str 0x00000000 0x724 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .literal.esp_sleep_gpio_pupd_config_workaround_apply + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_gpio_pupd_config_workaround_unapply + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_config_gpio_isolate + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_sleep_enable_gpio_switch + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.1.literal + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_gpio_pupd_config_workaround_apply.str1.4 + 0x00000000 0x22c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_gpio_pupd_config_workaround_apply + 0x00000000 0x241 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_gpio_pupd_config_workaround_unapply + 0x00000000 0x178 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_config_gpio_isolate.str1.4 + 0x00000000 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_config_gpio_isolate + 0x00000000 0x79 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.esp_sleep_enable_gpio_switch.str1.4 + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .text.esp_sleep_enable_gpio_switch + 0x00000000 0xcd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.str1.4 + 0x00000000 0xb1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .iram1.1 0x00000000 0x1f4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$1 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$2 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$3 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$4 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$5 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$6 + 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata.__func__$7 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .dram1.0 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xt.prop 0x00000000 0x570 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .literal.esp_brownout_disable + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .literal.esp_brownout_register_callback + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .text.esp_brownout_disable + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .rodata.esp_brownout_register_callback.str1.4 + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .text.esp_brownout_register_callback + 0x00000000 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .xt.prop 0x00000000 0x1c8 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_enable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_set + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_src_get + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_coeff_calc + 0x00000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_xtal_freq_update + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_enable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_clk8m_disable + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_dig_8m_enabled + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x00000000 0x12e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_enable + 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_set + 0x00000000 0xde esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_fast_src_get + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apll_coeff_calc + 0x00000000 0x234 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x00000000 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal + 0x00000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_xtal_for_sleep + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_enable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_clk8m_disable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_dig_8m_enabled + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xt.lit 0x00000000 0x130 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xt.prop 0x00000000 0xe58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_vddsdio_get_config + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x00000000 0xee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x00000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .literal.rtc_clk_cal_ratio + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .literal.rtc_clk_freq_cal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.rtc_time_us_to_slowclk.str1.4 + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x00000000 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text.rtc_clk_freq_cal + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$10 + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$0 + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xt.prop 0x00000000 0x438 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .literal.s_sar_power_acquire + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.s_sar_power_release + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_enable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_power_disable + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_pwdet_power_release + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_acquire + 0x00000000 0x67 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.s_sar_power_release.str1.4 + 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.s_sar_power_release + 0x00000000 0xa7 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_enable + 0x00000000 0x5b esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_power_disable + 0x00000000 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_acquire + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_pwdet_power_release + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_acquire + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_oneshot_power_release + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_acquire + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_continuous_power_release + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.sar_periph_ctrl_adc_reset + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_acquire + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text.adc_reset_lock_release + 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .bss.s_sar_power_on_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xt.prop 0x00000000 0x378 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .literal.regi2c_ctrl_read_reg + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_ctrl_read_reg_mask + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_ctrl_write_reg_mask + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_enter_critical + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_exit_critical + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_enable + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.regi2c_saradc_disable + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_ctrl_read_reg + 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_ctrl_read_reg_mask + 0x00000000 0x67 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_ctrl_write_reg_mask + 0x00000000 0x6b esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_enter_critical + 0x00000000 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_exit_critical + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_enable + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .rodata.regi2c_saradc_disable.str1.4 + 0x00000000 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .text.regi2c_saradc_disable + 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .bss.s_i2c_saradc_enable_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .dram1.0 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xt.prop 0x00000000 0x2a0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .literal.rtcio_ll_ext0_set_wakeup_pin + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.31.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.32.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.s_sleep_hook_deregister + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.9.literal + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.s_sleep_hook_register + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.22.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.15.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16.literal + 0x00000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.18.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_function_select + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.ext0_wakeup_prepare + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.17.literal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.ext1_wakeup_prepare + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.20.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.touch_wakeup_prepare + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.30.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.10.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.25.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.11.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.23.literal + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.21.literal + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.24.literal + 0x00000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.29.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_overhead_out_time_refresh + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_get_deep_sleep_wake_stub + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.8.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.26.literal + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_register_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_deregister_hook + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.27.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.28.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_light_sleep_start + 0x00000000 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_wakeup_source + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_timer_wakeup + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_deep_sleep_try + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext0_wakeup + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_ext1_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_gpio_wakeup + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_uart_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_cause + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_wakeup_causes + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_pd_config + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_release_lp_use_xtal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.34.literal + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_lowpower_analog_mode + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_periph_use_8m + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .literal.rtc_sleep_enable_ultra_low + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_ext0_set_wakeup_pin + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.31 0x00000000 0xd2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.32 0x00000000 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.33 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_sleep_hook_deregister + 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.9 + 0x00000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.s_sleep_hook_register + 0x00000000 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.22 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.15 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.16 0x00000000 0xee esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.18 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_iomux_func_sel.str1.4 + 0x00000000 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x00000000 0x61 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_function_select.str1.4 + 0x00000000 0x174 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_function_select + 0x00000000 0xaa esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext0_wakeup_prepare + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x00000000 0xac esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtcio_ll_force_hold_enable + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.17 0x00000000 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.ext1_wakeup_prepare.str1.4 + 0x00000000 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.ext1_wakeup_prepare + 0x00000000 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.20 0x00000000 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.touch_wakeup_prepare + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.30 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.10 0x00000000 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.25 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.11 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.23 0x00000000 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.21 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.24 0x00000000 0x170 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.29 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_overhead_out_time_refresh + 0x00000000 0x22 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_get_deep_sleep_wake_stub + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.8 + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.26 0x00000000 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_register_hook + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_deregister_hook + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.27 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .iram1.28 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_light_sleep_start + 0x00000000 0x353 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_wakeup_source.str1.4 + 0x00000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wakeup_source + 0x00000000 0x179 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ulp_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_timer_wakeup.str1.4 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_timer_wakeup + 0x00000000 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_deep_sleep_try + 0x00000000 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_touchpad_wakeup.str1.4 + 0x00000000 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_touchpad_wakeup + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_is_valid_wakeup_gpio + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext0_wakeup.str1.4 + 0x00000000 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext0_wakeup + 0x00000000 0xa1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_enable_ext1_wakeup_io.str1.4 + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup_io + 0x00000000 0x145 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_disable_ext1_wakeup_io.str1.4 + 0x00000000 0x37 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_ext1_wakeup_io + 0x00000000 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_ext1_wakeup + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_gpio_wakeup + 0x00000000 0x55 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_uart_wakeup + 0x00000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_wifi_beacon_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_wifi_beacon_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_bt_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_disable_bt_wakeup + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_cause + 0x00000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_wakeup_causes + 0x00000000 0x7a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_touchpad_wakeup_status + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_get_ext1_wakeup_status + 0x00000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_pd_config.str1.4 + 0x00000000 0x7f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_pd_config + 0x00000000 0x116 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_acquire_lp_use_xtal.str1.4 + 0x00000000 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_acquire_lp_use_xtal + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.esp_sleep_release_lp_use_xtal.str1.4 + 0x00000000 0x69 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_release_lp_use_xtal + 0x00000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rtc.force_slow.34 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_lowpower_analog_mode + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_periph_use_8m + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.esp_sleep_enable_adc_tsens_monitor + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text.rtc_sleep_enable_ultra_low + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$15 + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$14 + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$13 + 0x00000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$11 + 0x00000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$9 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$8 + 0x00000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$7 + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$6 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$4 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.__func__$3 + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_suspended_uarts_bmap + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_cache_suspend_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.spinlock_rtc_deep_sleep + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_light_sleep_wakeup + 0x00000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_lightsleep_cnt + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .bss.s_dslp_cb + 0x00000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xt.lit 0x00000000 0x1f8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xt.prop 0x00000000 0x1adc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .iram1.0 0x00000000 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_info 0x00000000 0x126 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_abbrev 0x00000000 0xa6 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_line 0x00000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .debug_str 0x00000000 0x39c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .xt.prop 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .iram1.0.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_pd + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_get_default_config + 0x00000000 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_init + 0x00000000 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_low_init + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_sleep_start + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.rtc_deep_sleep_start + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .iram1.0 0x00000000 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_pd + 0x00000000 0x1b8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_get_default_config + 0x00000000 0x142 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_init + 0x00000000 0x521 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_low_init + 0x00000000 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_sleep_start + 0x00000000 0x8d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .text.rtc_deep_sleep_start + 0x00000000 0xbe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_info 0x00000000 0x5eb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_abbrev 0x00000000 0x213 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_loc 0x00000000 0x12e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_ranges 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_line 0x00000000 0x22f9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .debug_str 0x00000000 0x53c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xt.prop 0x00000000 0x318 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .literal.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.periph_inform_out_light_sleep_overhead + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_register_light_sleep_default_params_config_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .literal.esp_pm_unregister_light_sleep_default_params_config_callback + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.modem_domain_pd_allowed + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_reject_triggers + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .iram1.0 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.sleep_modem_configure + 0x00000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_inform_out_light_sleep_overhead_callback + 0x00000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.periph_inform_out_light_sleep_overhead + 0x00000000 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_register_light_sleep_default_params_config_callback + 0x00000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text.esp_pm_unregister_light_sleep_default_params_config_callback + 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_light_sleep_default_params_config_cb + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .bss.s_periph_inform_out_light_sleep_overhead_cb + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_info 0x00000000 0x307 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_abbrev 0x00000000 0x1c1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_loc 0x00000000 0x187 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_ranges 0x00000000 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_line 0x00000000 0x48b esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .debug_str 0x00000000 0x4cb esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xt.prop 0x00000000 0x24c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xt.prop 0x00000000 0xfc esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.xQueueGenericGetStaticBuffers + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueGetMutexHolderFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateCountingSemaphore + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueGenericSendFromISR + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueReceive + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeek + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueuePeekFromISR + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueSpacesAvailable + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaitingFromISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueEmptyFromISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueFullFromISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.vQueueWaitForMessageRestricted + 0x00000000 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateSet + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueAddToSet + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueRemoveFromSet + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSet + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSetFromISR + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericGetStaticBuffers.str1.4 + 0x00000000 0xf esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericGetStaticBuffers + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGetMutexHolderFromISR + 0x00000000 0x25 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueCreateCountingSemaphoreStatic.str1.4 + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphoreStatic + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateCountingSemaphore + 0x00000000 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericSendFromISR + 0x00000000 0xee esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueReceive + 0x00000000 0x110 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeek + 0x00000000 0x108 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueuePeekFromISR.str1.4 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeekFromISR + 0x00000000 0x7e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x00000000 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.vQueueWaitForMessageRestricted + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x00000000 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x00000000 0x39 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$3 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$4 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$6 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$8 + 0x00000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$10 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$12 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$15 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$16 + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$19 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$22 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.lit 0x00000000 0x128 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.prop 0x00000000 0x1194 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.prvTaskIsTaskSuspended + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.eTaskGetState + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskResume + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskResumeFromISR + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskEndScheduler + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetNumberOfTasks + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetHandle + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskAbortDelay + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnUnorderedEventList + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnEventListRestricted + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskRemoveFromUnorderedEventList + 0x00000000 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetTimeOutState + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskMissedYield + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGet + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGetFromISR + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSuspend + 0x00000000 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetStaticBuffers + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointer + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pvTaskGetThreadLocalStoragePointer + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark2 + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskDelayUntil + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCatchUpTicks + 0x00000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskResetEventItemValue + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyWait + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyFromISR + 0x00000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGenericNotifyStateClear + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskGenericNotifyValueClear + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTakeKernelLock + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvReleaseKernelLock + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetIdleTaskHandle + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetStackStart + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetStackStart + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskPriorityRaise + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskPriorityRestore + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSnapshotAll + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pvTaskGetCurrentTCBForCore + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvSearchForNameWithinSingleList + 0x00000000 0x9c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskCheckFreeStackSpace + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskIsTaskSuspended.str1.4 + 0x00000000 0x6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x00000000 0x59 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x00000000 0xc6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskResume.str1.4 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskResume + 0x00000000 0xe3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x00000000 0xfd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetNumberOfTasks + 0x00000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetHandle.str1.4 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetHandle + 0x00000000 0xa9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskAbortDelay + 0x00000000 0xf2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnUnorderedEventList + 0x00000000 0xa7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnEventListRestricted + 0x00000000 0xc3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskRemoveFromUnorderedEventList.str1.4 + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskRemoveFromUnorderedEventList + 0x00000000 0x1be esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetTimeOutState + 0x00000000 0x43 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskMissedYield + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGet + 0x00000000 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x00000000 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSuspend.str1.4 + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSuspend + 0x00000000 0x12c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGetStaticBuffers.str1.4 + 0x00000000 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetStaticBuffers + 0x00000000 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSetThreadLocalStoragePointer.str1.4 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetThreadLocalStoragePointer + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark2 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskDelayUntil.str1.4 + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskDelayUntil + 0x00000000 0xb2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCatchUpTicks + 0x00000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskResetEventItemValue + 0x00000000 0x46 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyWait + 0x00000000 0x128 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyFromISR + 0x00000000 0x246 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.xTaskGenericNotifyStateClear.str1.4 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGenericNotifyStateClear + 0x00000000 0x57 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskGenericNotifyValueClear + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTakeKernelLock + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvReleaseKernelLock + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetStackStart + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.prvTaskPriorityRaise.str1.4 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskPriorityRaise + 0x00000000 0xeb esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskPriorityRestore + 0x00000000 0xfb esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x00000000 0x37 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetCurrentTCBForCore + 0x00000000 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$0 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$1 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$8 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$10 + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$12 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$16 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$18 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$19 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$21 + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$22 + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$26 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$27 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$28 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$29 + 0x00000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$33 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$34 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$35 + 0x00000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$36 + 0x00000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$39 + 0x00000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$41 + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.lit 0x00000000 0x298 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.prop 0x00000000 0x273c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vPortEndScheduler + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortAssertIfInISR + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.xPortEnterCriticalTimeoutCompliance + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortExitCriticalCompliance + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortSetStackWatchpoint + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortEndScheduler + 0x00000000 0x9 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortAssertIfInISR.str1.4 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortAssertIfInISR + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.xPortEnterCriticalTimeoutCompliance.str1.4 + 0x00000000 0x33 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortEnterCriticalTimeoutCompliance + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortExitCriticalCompliance + 0x00000000 0x27 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortSetStackWatchpoint + 0x00000000 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$3 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.lit 0x00000000 0x88 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.prop 0x00000000 0x5a0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.prop 0x00000000 0x180 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .literal.xt_clock_freq + 0x00000000 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text.xt_clock_freq + 0x00000000 0xd esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .literal.xPortGetFreeHeapSize + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.xPortGetMinimumEverFreeHeapSize + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetFreeHeapSize + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .text.xPortGetMinimumEverFreeHeapSize + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xt.prop 0x00000000 0x24c esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .literal.vApplicationGetTimerTaskMemory + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text.vApplicationGetTimerTaskMemory + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.__func__$0 + 0x00000000 0x1f esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xt.prop 0x00000000 0x84 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/freertos/libfreertos.a(list.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .literal.__assert + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .text.__assert + 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .literal.realloc + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .literal.memalign + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .literal.aligned_alloc + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .literal.posix_memalign + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .literal.mallinfo + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.realloc 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.memalign + 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.aligned_alloc + 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.posix_memalign + 0x00000000 0x24 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.malloc_trim + 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.malloc_usable_size + 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.malloc_stats + 0x00000000 0x5 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.mallopt 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .text.mallinfo + 0x00000000 0x1e esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .xt.prop 0x00000000 0x288 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .iram1.12.literal + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.14.literal + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.15.literal + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.17.literal + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.19.literal + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.20.literal + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.21.literal + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.12 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.14 0x00000000 0xf esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.15 0x00000000 0xf esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.17 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.19 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.20 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .iram1.21 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .xt.lit 0x00000000 0xc0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .xt.prop 0x00000000 0x624 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .text.pthread_setcancelstate + 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .text.pthread_sigmask + 0x00000000 0x7 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .literal.getentropy + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .text.getentropy + 0x00000000 0x46 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .literal.adjtime + 0x00000000 0x3c esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal._times_r + 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.usleep + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.sleep + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.clock_settime + 0x00000000 0xc esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.clock_gettime + 0x00000000 0x18 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.clock_getres + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.adjtime 0x00000000 0xec esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text._times_r + 0x00000000 0x35 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.usleep 0x00000000 0x61 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.sleep 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.clock_settime + 0x00000000 0x55 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.clock_gettime + 0x00000000 0x97 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .text.clock_getres + 0x00000000 0x28 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .xt.prop 0x00000000 0x4e0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .literal.open 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.creat + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.unlink + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.stat 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.link 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.rename + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.isatty + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.fcntl + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.getpid + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal._exit + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.system + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.statvfs + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.fstatvfs + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.open 0x00000000 0x4c esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.creat 0x00000000 0x16 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.unlink 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.stat 0x00000000 0x14 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.link 0x00000000 0x14 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.rename 0x00000000 0x14 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.isatty 0x00000000 0x30 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.fcntl 0x00000000 0x38 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.getpid 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text._exit 0x00000000 0x9 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.system 0x00000000 0x11 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.statvfs 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .text.fstatvfs + 0x00000000 0x13 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .xt.prop 0x00000000 0x3f0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .literal.syscall_not_implemented_aborts + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .text.syscall_not_implemented_aborts + 0x00000000 0x9 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .xt.prop 0x00000000 0x78 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .literal.esp_time_impl_get_time + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .text.esp_time_impl_get_time + 0x00000000 0xf esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .xt.prop 0x00000000 0x168 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .text.esp_reent_cleanup + 0x00000000 0x5 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data.stderr 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .xt.prop 0x00000000 0x12c esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .literal.__errno + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .text.__errno 0x00000000 0xd esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .xt.prop 0x00000000 0x3c esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .literal.getrandom + 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .text.getrandom + 0x00000000 0x24 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_info 0x00000000 0x246 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_abbrev 0x00000000 0x152 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_loc 0x00000000 0x45 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_ranges 0x00000000 0x10 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_line 0x00000000 0x271 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .debug_str 0x00000000 0x355 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .literal.pthread_list_find_item + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_find + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.get_default_pthread_core + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.lazy_init_pthread_cfg_key + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_cfg_key_destructor + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_delete + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create_freertos_task_with_caps + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_lock_internal + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_init + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_set_cfg + 0x00000000 0x30 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_cfg + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_default_config + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create + 0x00000000 0x84 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_join + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_detach + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_exit + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_task_func + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_cancel + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.sched_yield + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_self + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_once + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_destroy + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_lock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_timedlock + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_trylock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_unlock + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_init + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_settype + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_init + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_destroy + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_getschedparam + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.set_prio + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_setschedparam + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_setschedprio + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_list_find_item + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_find + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.get_default_pthread_core + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.mutexattr_check + 0x00000000 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.lazy_init_pthread_cfg_key + 0x00000000 0x27 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_cfg_key_destructor + 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x00000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create_freertos_task_with_caps + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_lock_internal + 0x00000000 0x5f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_init + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.esp_pthread_set_cfg.str1.4 + 0x00000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x00000000 0xb5 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x00000000 0x6f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x00000000 0x29 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_create.str1.4 + 0x00000000 0xb4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x00000000 0x1c5 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x00000000 0xde esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x00000000 0x6a esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x00000000 0x57 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x00000000 0x9a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x00000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.4 + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_cancel + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_self.str1.4 + 0x00000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_self + 0x00000000 0x3b esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x00000000 0xe esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x00000000 0x1f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x00000000 0x54 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init + 0x00000000 0x74 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init_if_static + 0x00000000 0x3b esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_destroy.str1.4 + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_destroy + 0x00000000 0x78 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_lock + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_timedlock + 0x00000000 0xee esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_trylock + 0x00000000 0x28 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_mutex_unlock.str1.4 + 0x00000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_unlock + 0x00000000 0x6d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x00000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x00000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_getschedparam + 0x00000000 0x50 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_get_priority_min + 0x00000000 0x7 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_get_priority_max + 0x00000000 0x7 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.set_prio + 0x00000000 0x59 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_setschedparam + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_setschedprio + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$1 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$3 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$5 + 0x00000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_pthread_cfg_key + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_list + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data.pthread_lazy_init_lock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_lock + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.lit 0x00000000 0x120 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.prop 0x00000000 0x120c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_condattr_init + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_destroy + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_getpshared + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_setpshared + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_getclock + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_condattr_setclock + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_init + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.s_check_and_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_signal + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_broadcast + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_timedwait + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_wait + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.pthread_cond_destroy + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.pthread_condattr_init.str1.4 + 0x00000000 0x35 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_init + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_destroy + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getpshared + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setpshared + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_getclock + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.pthread_condattr_setclock.str1.4 + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_condattr_setclock + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_init + 0x00000000 0x35 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.s_check_and_init_if_static + 0x00000000 0x49 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_signal + 0x00000000 0x3a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_broadcast + 0x00000000 0x44 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_timedwait + 0x00000000 0x167 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_wait + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .text.pthread_cond_destroy + 0x00000000 0x50 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x19 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xt.prop 0x00000000 0x4e0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .literal.find_key + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_cleanup_thread_specific_data_callback + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_key_create + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_key_delete + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_internal_local_storage_destructor_callback + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_getspecific + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_setspecific + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.find_value + 0x00000000 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.find_key + 0x00000000 0x2f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.pthread_cleanup_thread_specific_data_callback.str1.4 + 0x00000000 0x3d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_cleanup_thread_specific_data_callback + 0x00000000 0x4a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_key_create + 0x00000000 0x4d esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_key_delete + 0x00000000 0x49 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x00000000 0x2a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_getspecific + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_setspecific + 0x00000000 0xc3 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.__func__$0 + 0x00000000 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data.s_keys_lock + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .bss.s_keys 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.prop 0x00000000 0x378 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_rwlock_init + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_init_if_static + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.checkrw_lock + 0x00000000 0x4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_destroy + 0x00000000 0x18 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_rdlock + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_tryrdlock + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_wrlock + 0x00000000 0x10 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_trywrlock + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_unlock + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_timedwrlock + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.pthread_rwlock_timedrdlock + 0x00000000 0x1c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init + 0x00000000 0x7a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_init_if_static + 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.checkrw_lock + 0x00000000 0x21 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_destroy + 0x00000000 0x6d esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_rdlock + 0x00000000 0x5c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_tryrdlock + 0x00000000 0x40 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_wrlock + 0x00000000 0x5e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_trywrlock + 0x00000000 0x56 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.pthread_rwlock_unlock.str1.4 + 0x00000000 0x6e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_unlock + 0x00000000 0x7b esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_timedwrlock + 0x00000000 0xae esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .text.pthread_rwlock_timedrdlock + 0x00000000 0x8f esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .rodata.__func__$0 + 0x00000000 0x16 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xt.prop 0x00000000 0x564 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .literal.sem_destroy + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_init + 0x00000000 0xc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_post + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_timedwait + 0x00000000 0x20 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_trywait + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_wait + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal.sem_getvalue + 0x00000000 0x8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .data 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .bss 0x00000000 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_destroy + 0x00000000 0x22 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_init + 0x00000000 0x52 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_post + 0x00000000 0x3c esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_timedwait + 0x00000000 0xfc esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_trywait + 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_wait + 0x00000000 0x24 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .text.sem_getvalue + 0x00000000 0x37 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xt.prop 0x00000000 0x348 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .literal._ZL20signal_waiting_tasksv + 0x00000000 0xc esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL18wait_for_guard_objP7guard_t + 0x00000000 0x34 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL19static_init_preparev + 0x00000000 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_acquire + 0x00000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_release + 0x00000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_abort + 0x00000000 0x38 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL20signal_waiting_tasksv + 0x00000000 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 + 0x00000000 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL18wait_for_guard_objP7guard_t + 0x00000000 0x92 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x00000000 0x4e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_acquire.str1.4 + 0x00000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x00000000 0x94 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.4 + 0x00000000 0x6f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x00000000 0x83 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.4 + 0x00000000 0xa7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x00000000 0x96 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss.__dso_handle + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL31s_static_init_max_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL27s_static_init_waiting_count + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data._ZL15s_init_spinlock + 0x00000000 0x8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL22s_static_init_wait_sem + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL19s_static_init_mutex + 0x00000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.lit 0x00000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.prop 0x00000000 0x234 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .data 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .bss 0x00000000 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .text.__cxx_eh_arena_size_get + 0x00000000 0x7 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .text.__esp_idf_pthread_rwlock_lazy_allocation + 0x00000000 0x5 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .xt.prop 0x00000000 0x6c esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .literal.efuse_hal_get_mac + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.3.literal + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_mac + 0x00000000 0x17 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.1 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.3 0x00000000 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .iram1.4 0x00000000 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.prop 0x00000000 0x144 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_get_rated_freq_mhz + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_set_timing + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_read + 0x00000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_clear_program_registers + 0x00000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_program + 0x00000000 0xc esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.efuse_hal_is_coding_error_in_block + 0x00000000 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_get_rated_freq_mhz + 0x00000000 0x2d esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_set_timing + 0x00000000 0xac esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_read + 0x00000000 0x52 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.efuse_hal_clear_program_registers.str1.4 + 0x00000000 0x9f esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_clear_program_registers + 0x00000000 0xe5 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_program + 0x00000000 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .text.efuse_hal_is_coding_error_in_block + 0x00000000 0x46 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x22 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xt.prop 0x00000000 0x360 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .literal.mmu_ll_entry_id_to_vaddr_base + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_ll_find_entry_id_based_on_map_value + 0x00000000 0xc esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_unmap_all + 0x00000000 0x1c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_init + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_paddr_to_vaddr + 0x00000000 0x20 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_entry_id_to_vaddr_base + 0x00000000 0xaa esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_ll_find_entry_id_based_on_map_value + 0x00000000 0x6a esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_unmap_all + 0x00000000 0x69 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_init + 0x00000000 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_bytes_to_pages + 0x00000000 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .text.mmu_hal_paddr_to_vaddr + 0x00000000 0x69 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xt.lit 0x00000000 0x68 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xt.prop 0x00000000 0x93c esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.cache_hal_invalidate_addr + 0x00000000 0x4 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_vaddr_to_cache_level_id + 0x00000000 0x90 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .text.cache_hal_invalidate_addr + 0x00000000 0x9 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xt.prop 0x00000000 0x354 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .literal.clk_hal_lp_slow_get_freq_hz + 0x00000000 0x20 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_xtal_get_freq_mhz + 0x00000000 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_apll_get_freq_hz + 0x00000000 0x1c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_soc_root_get_freq_mhz + 0x00000000 0x24 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_cpu_get_freq_hz + 0x00000000 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_ahb_get_freq_hz + 0x00000000 0x10 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_apb_get_freq_hz + 0x00000000 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_clock_output_setup + 0x00000000 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.clk_hal_clock_output_teardown + 0x00000000 0x4 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.clk_hal_lp_slow_get_freq_hz.str1.4 + 0x00000000 0x31 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_lp_slow_get_freq_hz + 0x00000000 0x3d esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_xtal_get_freq_mhz + 0x00000000 0x33 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_apll_get_freq_hz + 0x00000000 0x8c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_soc_root_get_freq_mhz + 0x00000000 0x70 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.clk_hal_cpu_get_freq_hz.str1.4 + 0x00000000 0x28 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_cpu_get_freq_hz + 0x00000000 0xc2 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_ahb_get_freq_hz + 0x00000000 0x31 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_apb_get_freq_hz + 0x00000000 0xd esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_setup + 0x00000000 0x56 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .text.clk_hal_clock_output_teardown + 0x00000000 0x4a esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .rodata.__func__$1 + 0x00000000 0x1e esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_frame 0x00000000 0xe8 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_info 0x00000000 0xeea esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_abbrev 0x00000000 0x350 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_loc 0x00000000 0x569 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_aranges + 0x00000000 0x60 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_ranges 0x00000000 0xf0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_line 0x00000000 0xc89 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .debug_str 0x00000000 0x1392 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xt.prop 0x00000000 0x504 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .literal.uart_hal_txfifo_rst + 0x00000000 0xc esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_rxfifo_rst + 0x00000000 0x2c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_tx_break + 0x00000000 0x4 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .literal.uart_hal_read_rxfifo + 0x00000000 0x2c esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_txfifo_rst + 0x00000000 0x2e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_rxfifo_rst + 0x00000000 0x82 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x00000000 0x5e esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text.uart_hal_read_rxfifo + 0x00000000 0xeb esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .rodata.__func__$2 + 0x00000000 0x13 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xt.prop 0x00000000 0x2ac esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xt.prop 0x00000000 0xcc esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.prop 0x00000000 0x444 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.9.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.9 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.12 0x00000000 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.prop 0x00000000 0x204 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .literal.bus_using_iomux + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.cs_using_iomux + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.acquire_spi_device + 0x00000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0.literal + 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x00000000 0x4c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.use_bus_lock + 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.bus_using_iomux + 0x00000000 0x8e esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.cs_using_iomux + 0x00000000 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.init_gpspi_clock + 0x00000000 0x7 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.acquire_spi_device.str1.4 + 0x00000000 0x87 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.acquire_spi_device + 0x00000000 0xce esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.0 0x00000000 0x136 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x00000000 0x39 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_bus_add_flash_device.str1.4 + 0x00000000 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x00000000 0x147 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.prop 0x00000000 0x474 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.3.literal + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.spi23_end + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2.literal + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.spi23_start + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_init_os_functions + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.esp_flash_deinit_os_functions + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.use_bus_lock + 0x00000000 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.spi23_end + 0x00000000 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.2 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.spi23_start + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x00000000 0x6f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_deinit_os_functions + 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_main_bus_lock + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_set_dangerous_write_protection + 0x00000000 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.lit 0x00000000 0x98 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.prop 0x00000000 0x5e8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text.get_temp_buffer_not_supported + 0x00000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.lit 0x00000000 0xd8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.prop 0x00000000 0xc60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xt.prop 0x00000000 0x36c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .literal.memspi_host_erase_chip + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_sector + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_erase_block + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_program_page + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_read + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.memspi_host_set_write_protect + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_chip + 0x00000000 0x23 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_erase_sector.str1.4 + 0x00000000 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_sector + 0x00000000 0x46 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_block + 0x00000000 0x47 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.memspi_host_program_page.str1.4 + 0x00000000 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_program_page + 0x00000000 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x00000000 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_set_write_protect + 0x00000000 0x2d esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.prop 0x00000000 0x3b4 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .literal.s_merge_contiguous_pages + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_pages + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_get_free_pages + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_phys2cache + 0x00000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_find_non_contiguous_block_nums + 0x00000000 0x23 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_pages_to_bytes + 0x00000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.s_merge_contiguous_pages + 0x00000000 0x59 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_pages + 0x00000000 0x107 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x00000000 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_get_free_pages + 0x00000000 0x21 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_phys2cache.str1.4 + 0x00000000 0xe esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_phys2cache + 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$0 + 0x00000000 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.prop 0x00000000 0x534 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.read_unique_id + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.find_region + 0x00000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_id + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_read_unique_chip_id + 0x00000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_init + 0x00000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_erase_chip + 0x00000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_chip_write_protect + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_set_chip_write_protect + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protected_region + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_set_protected_region + 0x00000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_io_mode + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_set_io_mode + 0x00000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_suspend_cmd_init + 0x00000000 0x2c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .data 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .bss 0x00000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.read_unique_id + 0x00000000 0x34 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x00000000 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_id + 0x00000000 0x3a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_read_unique_chip_id + 0x00000000 0x86 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_init + 0x00000000 0x15e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_erase_chip.str1.4 + 0x00000000 0x3d esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_erase_chip + 0x00000000 0x48 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_chip_write_protect + 0x00000000 0x5a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_set_chip_write_protect + 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x00000000 0x52 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protected_region + 0x00000000 0xa2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_set_protected_region + 0x00000000 0xd4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_io_mode + 0x00000000 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_set_io_mode + 0x00000000 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_flash_suspend_cmd_init.str1.4 + 0x00000000 0xc0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_suspend_cmd_init + 0x00000000 0x80 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.lit 0x00000000 0xe0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.prop 0x00000000 0x1218 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .data 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .bss 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .literal.esp_core_dump_get_user_ram_segments + 0x00000000 0x20 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .text 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .data 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .bss 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .text.esp_core_dump_setup_stack + 0x00000000 0x5 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .text.esp_core_dump_init + 0x00000000 0x5 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .text.esp_core_dump_get_user_ram_segments + 0x00000000 0x58 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .xt.prop 0x00000000 0x378 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .literal.elf_parse_exc_task_name + 0x00000000 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .literal.elf_core_dump_image_mmap + 0x00000000 0x34 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .literal.elf_core_dump_image_ptr + 0x00000000 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .literal.elf_parse_version_info + 0x00000000 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .literal.esp_core_dump_get_panic_reason + 0x00000000 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .literal.esp_core_dump_get_summary + 0x00000000 0x28 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .text 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .data 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .bss 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .text.esp_core_dump_parse_note_section + 0x00000000 0x7b esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .text.elf_parse_exc_task_name + 0x00000000 0x20 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .rodata.elf_core_dump_image_mmap.str1.4 + 0x00000000 0xb0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .text.elf_core_dump_image_mmap + 0x00000000 0x80 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .text.elf_core_dump_image_ptr + 0x00000000 0x20 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .text.elf_parse_version_info + 0x00000000 0x17 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .text.esp_core_dump_get_panic_reason + 0x00000000 0x81 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .text.esp_core_dump_get_summary + 0x00000000 0xc8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .xt.lit 0x00000000 0xe8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .xt.prop 0x00000000 0xe40 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .text 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .data 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .bss 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .xt.prop 0x00000000 0x1e0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .literal.esp_core_dump_image_erase + 0x00000000 0x44 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .literal.esp_core_dump_image_get + 0x00000000 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .text 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .data 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .bss 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .text.esp_core_dump_image_erase + 0x00000000 0xc2 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .text.esp_core_dump_image_get + 0x00000000 0x3c esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .xt.lit 0x00000000 0x70 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .xt.prop 0x00000000 0x5dc esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .literal.esp_core_dump_summary_parse_extra_info + 0x00000000 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .literal.esp_core_dump_summary_parse_exc_regs + 0x00000000 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .literal.esp_core_dump_summary_parse_backtrace_info + 0x00000000 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .text 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .data 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .bss 0x00000000 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .text.esp_core_dump_summary_parse_extra_info + 0x00000000 0x114 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .text.esp_core_dump_summary_parse_exc_regs + 0x00000000 0x3a esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .text.esp_core_dump_summary_parse_backtrace_info + 0x00000000 0xf0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .xt.prop 0x00000000 0x714 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .text 0x00000000 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .data 0x00000000 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .bss 0x00000000 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/main/libmain.a(hello_world_main.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/main/libmain.a(hello_world_main.c.obj) + .data 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xt.prop 0x00000000 0xfc esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xt.prop 0x00000000 0x54 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .literal.xt_set_exception_handler + 0x00000000 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .data 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text.xt_set_exception_handler + 0x00000000 0x46 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xt.prop 0x00000000 0x180 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .text 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .bss 0x00000000 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xt.lit 0x00000000 0x48 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xt.prop 0x00000000 0x564 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .literal._fsync_console + 0x00000000 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .text 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .data 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .text._fsync_console + 0x00000000 0x25 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .xt.lit 0x00000000 0x20 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .xt.prop 0x00000000 0x1a4 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .text 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .data 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .iram1.29.literal + 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0x28 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_reserve_block_with_caps + 0x00000000 0x4c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x74 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.7.literal + 0x00000000 0x5c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .literal.esp_mmu_paddr_to_vaddr + 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.29 0x00000000 0x23 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_get_max_consecutive_free_block_size + 0x00000000 0xa6 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_reserve_block_with_caps.str1.4 + 0x00000000 0x21 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_reserve_block_with_caps + 0x00000000 0xe4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_map_dump_mapped_blocks.str1.4 + 0x00000000 0x152 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_map_dump_mapped_blocks + 0x00000000 0x12a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.7 0x00000000 0x16a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.esp_mmu_paddr_to_vaddr.str1.4 + 0x00000000 0x28 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text.esp_mmu_paddr_to_vaddr + 0x00000000 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x24 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.26 0x00000000 0x19 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.24 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.22 0x00000000 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.20 0x00000000 0x1b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.18 0x00000000 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.16 0x00000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.14 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.12 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.10 0x00000000 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.8 0x00000000 0x1f esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xt.prop 0x00000000 0xf00 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xt.prop 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .literal.cache_register_writeback + 0x00000000 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text.cache_register_writeback + 0x00000000 0xc esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xt.prop 0x00000000 0xa8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .xt.prop 0x00000000 0x6c esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .literal.esp_cache_msync + 0x00000000 0x8c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .literal.esp_cache_get_line_size_by_addr + 0x00000000 0x1c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .data 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_msync + 0x00000000 0x1ed esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text.esp_cache_get_line_size_by_addr + 0x00000000 0x60 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__func__$1 + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x10 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .data.s_spinlock + 0x00000000 0x8 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .xt.prop 0x00000000 0x2dc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .xt.prop 0x00000000 0x18 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x00000000 0x6c esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_info 0x00000000 0x1ebf esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_abbrev 0x00000000 0x1e5 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_aranges + 0x00000000 0x18 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_line 0x00000000 0x16a esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .debug_str 0x00000000 0x16b6 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .xt.prop 0x00000000 0xc esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .xt.prop 0x00000000 0x1f8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .literal.spi_flash_hal_enter_dpd_mode + 0x00000000 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .literal.spi_flash_hal_exit_dpd_mode + 0x00000000 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_enter_dpd_mode + 0x00000000 0x24 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .text.spi_flash_hal_exit_dpd_mode + 0x00000000 0x24 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .xt.lit 0x00000000 0x78 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .xt.prop 0x00000000 0x4ec esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .xt.prop 0x00000000 0x1e0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.wdt_hal_deinit + 0x00000000 0x8 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .text.wdt_hal_deinit + 0x00000000 0xca esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .xt.prop 0x00000000 0x42c esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .literal.esp_partition_blockdev_release + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.bootloader_util_regions_overlap + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_blockdev_erase + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_blockdev_write + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_blockdev_read + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_unload_all + 0x00000000 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_verify_err + 0x00000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_verify + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_register_external + 0x00000000 0x34 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_deregister_external + 0x00000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_copy + 0x00000000 0x58 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_ptr_get_blockdev + 0x00000000 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_get_blockdev + 0x00000000 0xc esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_blockdev_release + 0x00000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.bootloader_util_regions_overlap.str1.4 + 0x00000000 0x5e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.bootloader_util_regions_overlap + 0x00000000 0x51 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_blockdev_erase + 0x00000000 0x69 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_blockdev_write + 0x00000000 0x69 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_blockdev_read + 0x00000000 0x6d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_unload_all.str1.4 + 0x00000000 0x1f esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_unload_all + 0x00000000 0x4e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_verify_err + 0x00000000 0x93 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_verify + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_register_external + 0x00000000 0x108 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x00000000 0x62 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_copy.str1.4 + 0x00000000 0x137 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_copy + 0x00000000 0x1bf esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_ptr_get_blockdev + 0x00000000 0x91 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_get_blockdev + 0x00000000 0x31 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$0 + 0x00000000 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$1 + 0x00000000 0x1d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$2 + 0x00000000 0x1d esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$3 + 0x00000000 0x20 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.__func__$6 + 0x00000000 0x19 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.s_bdl_ops + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xt.lit 0x00000000 0xc0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xt.prop 0x00000000 0xcc0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .literal.esp_partition_write + 0x00000000 0x1c esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_read_raw + 0x00000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_write_raw + 0x00000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_erase_range + 0x00000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_get_sha256 + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_check_identity + 0x00000000 0x10 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.esp_partition_get_main_flash_sector_size + 0x00000000 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .data 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_write + 0x00000000 0x7d esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_read_raw + 0x00000000 0x45 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_write_raw + 0x00000000 0x4e esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_erase_range + 0x00000000 0x69 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_get_sha256 + 0x00000000 0x15 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_check_identity + 0x00000000 0x4b esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .text.esp_partition_get_main_flash_sector_size + 0x00000000 0x8 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$1 + 0x00000000 0x1a esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$2 + 0x00000000 0x18 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$3 + 0x00000000 0x17 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.__func__$4 + 0x00000000 0x14 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xt.prop 0x00000000 0x600 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .literal.gpio_input_disable + 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_pullup_en + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_pulldown_en + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_set_drive_capability + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_get_drive_capability + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_input_enable + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_input_disable + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_output_enable + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_output_disable + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_en + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_pullup_en + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_pulldown_dis + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_pullup_dis + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_ll_get_io_config + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.rtcio_ll_get_drive_capability + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.0.literal + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.1.literal + 0x00000000 0xc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_register_on_core_static + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_pullup_en + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_pullup_dis + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_pulldown_en + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_pulldown_dis + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_intr_type + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_intr_enable + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_intr_disable + 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_input_enable + 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_output_disable + 0x00000000 0x34 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_output_enable + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_od_disable + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_od_enable + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_level + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_get_level + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_pull_mode + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_direction + 0x00000000 0x40 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_config + 0x00000000 0x6c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_config_as_analog + 0x00000000 0x50 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_reset_pin + 0x00000000 0x4c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_handler_add + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x00000000 0x3c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_uninstall_isr_service + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_isr_register + 0x00000000 0x48 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_install_isr_service + 0x00000000 0x4c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_wakeup_enable + 0x00000000 0x40 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x00000000 0x34 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_set_drive_capability + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_get_drive_capability + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_hold_en + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_en + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_dis + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_iomux_input + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_iomux_output + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_matrix_input + 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_matrix_output + 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_set_direction + 0x00000000 0x38 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_set_pull_mode + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_sel_en + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_sleep_sel_dis + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_get_io_config + 0x00000000 0x60 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_dump_io_configuration + 0x00000000 0xb8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.gpio_func_sel + 0x00000000 0x28 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_input_disable.str1.4 + 0x00000000 0x32 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_input_disable + 0x00000000 0x85 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_ll_pullup_en.str1.4 + 0x00000000 0xe6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_pullup_en + 0x00000000 0x3f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_pulldown_en + 0x00000000 0x40 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_ll_set_drive_capability.str1.4 + 0x00000000 0xb8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_set_drive_capability + 0x00000000 0x4c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_ll_get_drive_capability.str1.4 + 0x00000000 0xba esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_get_drive_capability + 0x00000000 0x3a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_sleep_input_enable.str1.4 + 0x00000000 0xb8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_input_enable + 0x00000000 0xa3 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_sleep_input_disable.str1.4 + 0x00000000 0xbc esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_input_disable + 0x00000000 0xa3 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_sleep_output_enable.str1.4 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_output_enable + 0x00000000 0x9d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_output_disable + 0x00000000 0xa3 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pulldown_en + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pullup_en + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pulldown_dis + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_pullup_dis + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_ll_get_io_config.str1.4 + 0x00000000 0xa6 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_ll_get_io_config + 0x00000000 0xce esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.rtcio_ll_get_drive_capability.str1.4 + 0x00000000 0xf8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.rtcio_ll_get_drive_capability + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.0 0x00000000 0x129 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .iram1.1 0x00000000 0x70 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_pullup_en.str1.4 + 0x00000000 0x36 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pullup_en + 0x00000000 0x9e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pullup_dis + 0x00000000 0xb0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_pulldown_en.str1.4 + 0x00000000 0x36 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pulldown_en + 0x00000000 0x9e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_pulldown_dis + 0x00000000 0xb0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_intr_type.str1.4 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_intr_type + 0x00000000 0x130 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_intr_enable + 0x00000000 0x9c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_intr_disable + 0x00000000 0x74 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_input_enable + 0x00000000 0x85 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_output_disable + 0x00000000 0x106 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_output_enable + 0x00000000 0x108 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_od_disable + 0x00000000 0x84 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_od_enable + 0x00000000 0x82 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_level + 0x00000000 0xba esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_level + 0x00000000 0x3e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x00000000 0x53 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x00000000 0x121 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_direction.str1.4 + 0x00000000 0x29 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_direction + 0x00000000 0x105 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x00000000 0x55 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_config + 0x00000000 0x18c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_config_as_analog + 0x00000000 0xdd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_reset_pin + 0x00000000 0x118 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_isr_handler_add.str1.4 + 0x00000000 0x49 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_handler_add + 0x00000000 0xe5 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x00000000 0xcd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x00000000 0x4d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x00000000 0x6e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_isr_register + 0x00000000 0xbe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_install_isr_service.str1.4 + 0x00000000 0x23 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_install_isr_service + 0x00000000 0xb2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.4 + 0x00000000 0x52 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x00000000 0xfd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_set_drive_capability.str1.4 + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x00000000 0xd2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_get_drive_capability.str1.4 + 0x00000000 0x24 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x00000000 0xd2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_hold_en.str1.4 + 0x00000000 0x2f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_hold_en + 0x00000000 0xb9 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_hold_dis + 0x00000000 0xbd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x00000000 0x3c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_iomux_input + 0x00000000 0x8d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_iomux_output + 0x00000000 0x89 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_matrix_input + 0x00000000 0x8c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_matrix_output + 0x00000000 0x7c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_set_direction + 0x00000000 0xe9 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_set_pull_mode + 0x00000000 0x121 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_sel_en + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_sleep_sel_dis + 0x00000000 0xb4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_get_io_config.str1.4 + 0x00000000 0xf0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_get_io_config + 0x00000000 0x164 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.gpio_dump_io_configuration.str1.4 + 0x00000000 0x1ff esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_dump_io_configuration + 0x00000000 0x269 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .text.gpio_func_sel + 0x00000000 0x94 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$2 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$3 + 0x00000000 0x1d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$4 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$5 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$7 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$9 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$11 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$13 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$15 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$17 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$19 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$20 + 0x00000000 0x1d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$21 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$22 + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$24 + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$25 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$26 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$27 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$28 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$29 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$30 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$31 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$32 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$33 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$34 + 0x00000000 0xd esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$35 + 0x00000000 0x1d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$36 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$37 + 0x00000000 0x1d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$38 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$39 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$40 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$41 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$42 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$43 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$44 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$45 + 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$46 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$47 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$48 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$49 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$50 + 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$51 + 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$52 + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$53 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$54 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$55 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$56 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$57 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$58 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$59 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$60 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$61 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$62 + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__func__$63 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .rodata.__FUNCTION__$64 + 0x00000000 0xf esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data.gpio_context + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .data._gpio_hal + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_frame 0x00000000 0x5c8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_info 0x00000000 0x6c70 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_abbrev 0x00000000 0x661 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_loc 0x00000000 0x306c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_aranges + 0x00000000 0x200 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_ranges 0x00000000 0x260 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_line 0x00000000 0x6905 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .debug_str 0x00000000 0x22aa esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .xt.lit 0x00000000 0x1e8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .xt.prop 0x00000000 0x1cc8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .literal.rtcio_ll_iomux_func_sel + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_function_select + 0x00000000 0x28 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_set_drive_capability + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_get_drive_capability + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_force_hold_enable + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_force_hold_disable + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtcio_ll_wakeup_enable + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_is_valid_gpio + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_io_number_get + 0x00000000 0x4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_init + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_deinit + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x00000000 0x48 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x00000000 0x3c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_dis + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_en + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_dis + 0x00000000 0x44 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_iomux_func_sel + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_dis_all + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x00000000 0x2c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .data 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_iomux_func_sel.str1.4 + 0x00000000 0xf4 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_iomux_func_sel + 0x00000000 0x61 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_function_select.str1.4 + 0x00000000 0x174 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_function_select + 0x00000000 0xaa esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_set_drive_capability + 0x00000000 0x6f esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_get_drive_capability.str1.4 + 0x00000000 0xba esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_get_drive_capability + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_force_hold_enable.str1.4 + 0x00000000 0xac esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_force_hold_enable + 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_force_hold_disable.str1.4 + 0x00000000 0xac esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_force_hold_disable + 0x00000000 0x63 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtcio_ll_wakeup_enable.str1.4 + 0x00000000 0x77 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtcio_ll_wakeup_enable + 0x00000000 0x54 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_is_valid_gpio + 0x00000000 0x25 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_io_number_get + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtc_gpio_init.str1.4 + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x00000000 0x5d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x00000000 0x5d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x00000000 0x80 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x00000000 0x52 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.4 + 0x00000000 0x5a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x00000000 0xe2 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.4 + 0x00000000 0x2e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x00000000 0xca esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_en + 0x00000000 0x9d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x00000000 0x9e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x00000000 0x9d esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_dis + 0x00000000 0x9e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_iomux_func_sel + 0x00000000 0x5e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x00000000 0x5c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_dis_all + 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x00000000 0x69 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x00000000 0x69 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x00000000 0x7e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$5 + 0x00000000 0x12 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$6 + 0x00000000 0x1b esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$7 + 0x00000000 0x11 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$8 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$9 + 0x00000000 0x1a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$10 + 0x00000000 0x16 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$11 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$12 + 0x00000000 0x15 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$13 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$14 + 0x00000000 0x14 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$15 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$16 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$17 + 0x00000000 0x20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$18 + 0x00000000 0x17 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$19 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$20 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$21 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$22 + 0x00000000 0x1e esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$23 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$24 + 0x00000000 0x13 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$25 + 0x00000000 0x10 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$26 + 0x00000000 0x18 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__func__$27 + 0x00000000 0x19 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .rodata.__FUNCTION__$28 + 0x00000000 0xe esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_frame 0x00000000 0x2c8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_info 0x00000000 0x314a esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_abbrev 0x00000000 0x488 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_loc 0x00000000 0x950 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_aranges + 0x00000000 0x100 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_ranges 0x00000000 0xf0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_line 0x00000000 0x2596 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .debug_str 0x00000000 0x18d9 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .xt.lit 0x00000000 0xe8 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .xt.prop 0x00000000 0xa20 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .literal.bootloader_common_check_long_hold_gpio_level + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x00000000 0x64 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_vddsdio_configure + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio_level + 0x00000000 0x102 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.4 + 0x00000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x00000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x00000000 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x00000000 0x13c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x00000000 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x00000000 0x1afc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x00000000 0x409 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x00000000 0x5a2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x00000000 0xe71 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x00000000 0x1473 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.prop 0x00000000 0x330 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.prop 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .literal.esp_flash_write_protect_crypt_cnt + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_get_flash_encryption_mode + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_init_checks + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_set_release_mode + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .literal.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0xe4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_write_protect_crypt_cnt + 0x00000000 0xe esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_get_flash_encryption_mode + 0x00000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_init_checks.str1.4 + 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_init_checks + 0x00000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_set_release_mode.str1.4 + 0x00000000 0x77 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_set_release_mode + 0x00000000 0xdc esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .rodata.esp_flash_encryption_cfg_verify_release_mode.str1.4 + 0x00000000 0x363 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .text.esp_flash_encryption_cfg_verify_release_mode + 0x00000000 0x1f4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .iram1.6.literal + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0.literal + 0x00000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3.literal + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_enable_wp + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_spi_flash_reset + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7.literal + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_get_spi_mode + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.6 0x00000000 0x61 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x00000000 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x00000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x00000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x00000000 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.0 0x00000000 0x13e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.3 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_enable_wp + 0x00000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_spi_flash_reset + 0x00000000 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.7 0x00000000 0xc2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .iram1.17 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_get_spi_mode + 0x00000000 0x39 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.__func__$9 + 0x00000000 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.14 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.12 0x00000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .dram1.5 0x00000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.map 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.lit 0x00000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.prop 0x00000000 0x714 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.print_flash_info + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.update_flash_config + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_flash_update_size + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.10.literal + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_configure_spi_pins + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.bootloader_init_spi_flash + 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .rodata.print_flash_info.str1.4 + 0x00000000 0xf5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.print_flash_info + 0x00000000 0x157 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.update_flash_config + 0x00000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_flash_update_size + 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.10 0x00000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_configure_spi_pins + 0x00000000 0x196 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .text.bootloader_init_spi_flash + 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.prop 0x00000000 0x714 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.index_to_partition + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.log_invalid_app_partition + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.write_otadata + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_actual_ota_seq + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha_flash_contents + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_read_otadata + 0x00000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_common_get_partition_description + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_partition_table + 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_get_selected_boot_partition + 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_reset + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_atexit + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_cache_and_start_app + 0x00000000 0xe0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unpack_load_app + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_boot_image + 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.index_to_partition + 0x00000000 0x5a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.check_anti_rollback + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x00000000 0x99 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x00000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.write_otadata.str1.4 + 0x00000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.write_otadata + 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x00000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_sha_flash_contents.str1.4 + 0x00000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha_flash_contents + 0x00000000 0xd3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_common_read_otadata.str1.4 + 0x00000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_read_otadata + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_common_get_partition_description + 0x00000000 0x85 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x00000000 0x1fc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x00000000 0x214 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x00000000 0xec esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x00000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_reset + 0x00000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_atexit + 0x00000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_cache_and_start_app.str1.4 + 0x00000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x00000000 0x4d9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.unpack_load_app.str1.4 + 0x00000000 0x61 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unpack_load_app + 0x00000000 0xc1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x00000000 0x33 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x00000000 0xc3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x00000000 0x15e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x00000000 0x75 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x00000000 0x5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x00000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$0 + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss.ota_has_initial_contents + 0x00000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x00000000 0x1f0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x00000000 0x2c78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x00000000 0x4f9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x00000000 0x15ca esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x00000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x00000000 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x00000000 0x3007 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x00000000 0x181f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.prop 0x00000000 0xcfc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.esp_partition_table_verify + 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x00000000 0x131 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x00000000 0x189 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x00000000 0x6e5 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x00000000 0x21c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x00000000 0x162 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x00000000 0x6cc esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x00000000 0x507 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x00000000 0x114 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.is_bootloader + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_map + 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_segment_header + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_appended_hash_and_sig + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_checksum + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_image_header + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_image_header + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_load + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment_data + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment + 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segments + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_simple_hash + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.image_load + 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_bootloader_offset_get + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_bootloader_offset_set + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_metadata + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_get_flash_size + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.is_bootloader + 0x00000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_map + 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_segment_header.str1.4 + 0x00000000 0x81 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_segment_header + 0x00000000 0x7d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_appended_hash_and_sig.str1.4 + 0x00000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_appended_hash_and_sig + 0x00000000 0x61 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_checksum.str1.4 + 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_checksum + 0x00000000 0xc8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x00000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x00000000 0x82 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_image_header + 0x00000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_load + 0x00000000 0x4e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x00000000 0x32 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment_data + 0x00000000 0xb9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment.str1.4 + 0x00000000 0xe9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x00000000 0x17b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segments.str1.4 + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segments + 0x00000000 0x97 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x00000000 0x52 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_simple_hash + 0x00000000 0x6a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x00000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x00000000 0x126 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_bootloader_offset_get + 0x00000000 0xa esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.esp_image_bootloader_offset_set.str1.4 + 0x00000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_bootloader_offset_set + 0x00000000 0x2b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x00000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_metadata + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x00000000 0x1f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_get_flash_size + 0x00000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data.s_bootloader_partition_offset + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x00000000 0x1fc8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x00000000 0x3ed esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x00000000 0x12cb esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x00000000 0x108 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x00000000 0x21a8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x00000000 0x1603 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.lit 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.prop 0x00000000 0x9f0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.bootloader_sha256_start + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_finish + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha512_start + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha512_data + 0x00000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha512_finish + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_start + 0x00000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x00000000 0x55 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_data + 0x00000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x00000000 0x4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha512_start + 0x00000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha512_data + 0x00000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha512_finish + 0x00000000 0x4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$0 + 0x00000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$1 + 0x00000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$2 + 0x00000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$3 + 0x00000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x00000000 0x8ea esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x00000000 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x00000000 0x17e esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x00000000 0x567 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x00000000 0x56d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_common_check_chip_revision_validity + 0x00000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_crc + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_ota_select_valid + 0x00000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_check_chip_validity + 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_common_get_active_otadata + 0x00000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_revision_validity.str1.4 + 0x00000000 0xa3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_revision_validity + 0x00000000 0xf6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_crc + 0x00000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_invalid + 0x00000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_ota_select_valid + 0x00000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x00000000 0x35 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_check_chip_validity + 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_select_otadata + 0x00000000 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .text.bootloader_common_get_active_otadata + 0x00000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_info 0x00000000 0xbab esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_abbrev 0x00000000 0x26f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_loc 0x00000000 0x5a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_ranges 0x00000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_line 0x00000000 0x94e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .debug_str 0x00000000 0xf85 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xt.prop 0x00000000 0x300 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .literal.bootloader_clock_get_rated_freq_mhz + 0x00000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .text.bootloader_clock_get_rated_freq_mhz + 0x00000000 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .literal.bootloader_random_enable + 0x00000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal.bootloader_random_disable + 0x00000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .data 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .bss 0x00000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text.bootloader_random_enable + 0x00000000 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .text.bootloader_random_disable + 0x00000000 0x11d esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_info 0x00000000 0x1f0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_abbrev 0x00000000 0xd5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_line 0x00000000 0xf45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .debug_str 0x00000000 0x407 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .comment 0x00000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .literal._esp_error_check_failed_without_abort + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.4 + 0x00000000 0x1e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .text._esp_error_check_failed_without_abort + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .iram1.4.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5.literal + 0x00000000 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.4 0x00000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .iram1.5 0x00000000 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xt.lit 0x00000000 0x40 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xt.prop 0x00000000 0x210 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .literal.delete_entry + 0x00000000 0x58 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_stop + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_restart + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_add_user + 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reset_user + 0x00000000 0x48 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete + 0x00000000 0x20 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.unsubscribe_idle + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_reconfigure + 0x00000000 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_deinit + 0x00000000 0x3c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete_user + 0x00000000 0x28 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_status + 0x00000000 0x2c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.delete_entry + 0x00000000 0x11a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_stop + 0x00000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_restart + 0x00000000 0x35 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_add_user + 0x00000000 0x86 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reset_user.str1.4 + 0x00000000 0x2b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reset_user + 0x00000000 0xc2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x00000000 0x4c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.unsubscribe_idle.str1.4 + 0x00000000 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.unsubscribe_idle + 0x00000000 0x5b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_reconfigure.str1.4 + 0x00000000 0x2e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_reconfigure + 0x00000000 0xde esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.4 + 0x00000000 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x00000000 0x9d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_delete_user + 0x00000000 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x00000000 0x6a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$3 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$4 + 0x00000000 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$6 + 0x00000000 0x16 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$9 + 0x00000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__func__$10 + 0x00000000 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .rodata.__FUNCTION__$11 + 0x00000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xt.lit 0x00000000 0xc8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xt.prop 0x00000000 0xce4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.esp_task_wdt_impl_timer_reconfigure + 0x00000000 0x10 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_free + 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .literal.esp_task_wdt_impl_timer_stop + 0x00000000 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_reconfigure + 0x00000000 0x51 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.esp_task_wdt_impl_timer_free.str1.4 + 0x00000000 0x84 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_free + 0x00000000 0x86 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text.esp_task_wdt_impl_timer_stop + 0x00000000 0x29 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .rodata.__func__$0 + 0x00000000 0x1d esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xt.prop 0x00000000 0x27c esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .text 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .data 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .bss 0x00000000 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xt.prop 0x00000000 0x30 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .literal.esp_err_to_name_r + 0x00000000 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .data 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_err_to_name_r.str1.4 + 0x00000000 0xc esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text.esp_err_to_name_r + 0x00000000 0x58 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.prop 0x00000000 0xe4 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_rom_output_to_channels + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.esp_rom_install_channel_putc + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text.esp_rom_output_to_channels + 0x00000000 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .text.esp_rom_install_channel_putc + 0x00000000 0x2e esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .bss._putc2 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .data._putc1 0x00000000 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xt.prop 0x00000000 0xf0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .literal.spi_cache_mode_switch + 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_status + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_wait_idle + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip_internal + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block_internal + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_sector_internal + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_data + 0x00000000 0x34 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_enable_write + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_program_page_internal + 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read_statushigh + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_status + 0x00000000 0x14 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_clear_bp + 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_set_bp + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x00000000 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x00000000 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_sector + 0x00000000 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write + 0x00000000 0x24 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_encrypted + 0x00000000 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_read + 0x00000000 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x00000000 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .literal.esp_rom_spiflash_write_disable + 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.spi_cache_mode_switch + 0x00000000 0x286 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_status + 0x00000000 0x63 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_wait_idle + 0x00000000 0x32 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip_internal + 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block_internal + 0x00000000 0x3c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_sector_internal + 0x00000000 0x48 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.esp_rom_spiflash_read_data.str1.4 + 0x00000000 0x170 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_data + 0x00000000 0x12c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_enable_write + 0x00000000 0x3d esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.esp_rom_spiflash_program_page_internal.str1.4 + 0x00000000 0x13c esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_program_page_internal + 0x00000000 0x13a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read_statushigh + 0x00000000 0x21 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_status + 0x00000000 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_clear_bp + 0x00000000 0xe8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_set_bp + 0x00000000 0x53 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x00000000 0x9e esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x00000000 0x2a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_block + 0x00000000 0x6a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_sector + 0x00000000 0x6a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write + 0x00000000 0xde esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_encrypted + 0x00000000 0x5e esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_read + 0x00000000 0x284 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_erase_area + 0x00000000 0xc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text.esp_rom_spiflash_write_disable + 0x00000000 0x1d esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.__func__$16 + 0x00000000 0x1b esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .rodata.__func__$14 + 0x00000000 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_frame 0x00000000 0x220 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_info 0x00000000 0xfdd esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_abbrev 0x00000000 0x32f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_loc 0x00000000 0xc8f esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_aranges + 0x00000000 0xc8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_ranges 0x00000000 0xb8 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_line 0x00000000 0x2e4a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .debug_str 0x00000000 0x97a esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xt.prop 0x00000000 0xc48 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .text 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .data 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .xt.prop 0x00000000 0x60 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .xt.prop 0x00000000 0xc esp-idf/soc/libsoc.a(interrupts.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x00000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .rodata.GPIO_PIN_MUX_REG + 0x00000000 0xa0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xt.prop 0x00000000 0x24 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .literal.touch_ll_set_chan_active_threshold + 0x00000000 0x4 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.touch_ll_get_chan_active_threshold + 0x00000000 0x4 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.touch_hal_config_controller + 0x00000000 0x34 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.s_touch_hal_apply_sleep_config + 0x00000000 0x18 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.touch_hal_save_sleep_config + 0x00000000 0xc esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .literal.touch_hal_prepare_deep_sleep + 0x00000000 0x8 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_ll_set_chan_active_threshold + 0x00000000 0x85 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_ll_get_chan_active_threshold + 0x00000000 0x58 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .rodata.touch_hal_config_controller.str1.4 + 0x00000000 0x3c esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_hal_config_controller + 0x00000000 0x13f esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.s_touch_hal_apply_sleep_config + 0x00000000 0x56 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_hal_save_sleep_config + 0x00000000 0x2d esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text.touch_hal_prepare_deep_sleep + 0x00000000 0x1f esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .data.s_touch_slp_obj + 0x00000000 0x28 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_frame 0x00000000 0xa0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_info 0x00000000 0x44f4 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_abbrev 0x00000000 0x3e1 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_loc 0x00000000 0x29a esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_aranges + 0x00000000 0x48 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_ranges 0x00000000 0x38 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_line 0x00000000 0x7fc esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .debug_str 0x00000000 0x2b05 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .xt.lit 0x00000000 0x30 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .xt.prop 0x00000000 0x1d4 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xt.prop 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .iram1.0.literal + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .literal.esp_fill_random + 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .iram1.0 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.esp_fill_random.str1.4 + 0x00000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .text.esp_fill_random + 0x00000000 0x3b esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .rodata.__func__$0 + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .bss.last_ccount$1 + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_frame 0x00000000 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_info 0x00000000 0x330 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_abbrev 0x00000000 0x1dd esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_loc 0x00000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_aranges + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_ranges 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_line 0x00000000 0x3bd esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .debug_str 0x00000000 0x333 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.lit 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xt.prop 0x00000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .literal.esp_gpio_revoke + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .literal.esp_gpio_is_reserved + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_revoke + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .text.esp_gpio_is_reserved + 0x00000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .literal.acquire_core + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.4.literal + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.bg_exit_core + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.7.literal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_init_lock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_deinit_lock + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_register_dev + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_unregister_dev + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.15.literal + 0x00000000 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.18.literal + 0x00000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_exit + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_request + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.19.literal + 0x00000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_clear_req + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_check_dev_acq + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.spi_bus_lock_bg_check_dev_req + 0x00000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.try_acquire_free_dev + 0x00000000 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.6 0x00000000 0x8d esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.req_core + 0x00000000 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.acquire_core + 0x00000000 0x85 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.update_pend_core + 0x00000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.4 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.bg_exit_core + 0x00000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.clear_pend_core + 0x00000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.7 0x00000000 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_init_lock + 0x00000000 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.spi_bus_deinit_lock.str1.4 + 0x00000000 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_deinit_lock + 0x00000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_register_dev + 0x00000000 0x99 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_unregister_dev + 0x00000000 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_set_bg_control + 0x00000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.11 0x00000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.12 0x00000000 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.str1.4 + 0x00000000 0xcf esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.15 0x00000000 0x6d esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.18 0x00000000 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_get_acquiring_dev + 0x00000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_entry + 0x00000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_exit + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_request + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .iram1.19 0x00000000 0xb3 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_clear_req + 0x00000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_check_dev_acq + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_check_dev_req + 0x00000000 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .text.spi_bus_lock_bg_req_exist + 0x00000000 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$0 + 0x00000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$1 + 0x00000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__FUNCTION__$2 + 0x00000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .rodata.__func__$3 + 0x00000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .dram1.0 0x00000000 0x9 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .data.s_spinlock + 0x00000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .xt.lit 0x00000000 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .xt.prop 0x00000000 0x8d0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .literal.prvTaskDeleteWithCaps + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.prvTaskDeleteWithCapsTask + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xTaskCreatePinnedToCoreWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vTaskDeleteWithCaps + 0x00000000 0x54 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xQueueCreateWithCaps + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vQueueDeleteWithCaps + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xSemaphoreCreateGenericWithCaps + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vSemaphoreDeleteWithCaps + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.xStreamBufferGenericCreateWithCaps + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.vStreamBufferGenericDeleteWithCaps + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.prvTaskDeleteWithCaps.str1.4 + 0x00000000 0xc0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.prvTaskDeleteWithCaps + 0x00000000 0xa2 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.prvTaskDeleteWithCapsTask + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xTaskCreatePinnedToCoreWithCaps + 0x00000000 0x72 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.vTaskDeleteWithCaps.str1.4 + 0x00000000 0xd6 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vTaskDeleteWithCaps + 0x00000000 0xb9 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xQueueCreateWithCaps + 0x00000000 0x60 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vQueueDeleteWithCaps + 0x00000000 0x3f esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xSemaphoreCreateGenericWithCaps + 0x00000000 0x74 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vSemaphoreDeleteWithCaps + 0x00000000 0x37 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.xStreamBufferGenericCreateWithCaps + 0x00000000 0x7c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .text.vStreamBufferGenericDeleteWithCaps + 0x00000000 0x62 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$0 + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$1 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$2 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$3 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .rodata.__func__$4 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_info 0x00000000 0x164f esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_abbrev 0x00000000 0x442 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_loc 0x00000000 0x4dd esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_line 0x00000000 0xc4c esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .debug_str 0x00000000 0xb50 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xt.lit 0x00000000 0x50 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xt.prop 0x00000000 0x3cc esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .literal.prvInitialiseNewStreamBuffer + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvWriteBytesToBuffer + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvWriteMessageToBuffer + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvReadBytesFromBuffer + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.prvReadMessageFromBuffer + 0x00000000 0x8 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGenericCreate + 0x00000000 0x3c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGenericCreateStatic + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferGetStaticBuffers + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.vStreamBufferDelete + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReset + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSetTriggerLevel + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSpacesAvailable + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferBytesAvailable + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSend + 0x00000000 0x6c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSendFromISR + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceive + 0x00000000 0x58 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferNextMessageLengthBytes + 0x00000000 0x20 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceiveFromISR + 0x00000000 0x28 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferIsEmpty + 0x00000000 0x10 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferIsFull + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferSendCompletedFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x18 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .data 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .bss 0x00000000 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvBytesInBuffer + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvInitialiseNewStreamBuffer.str1.4 + 0x00000000 0x82 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvInitialiseNewStreamBuffer + 0x00000000 0x46 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvWriteBytesToBuffer.str1.4 + 0x00000000 0x81 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvWriteBytesToBuffer + 0x00000000 0x86 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvWriteMessageToBuffer + 0x00000000 0x48 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.prvReadBytesFromBuffer.str1.4 + 0x00000000 0x4c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvReadBytesFromBuffer + 0x00000000 0x68 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.prvReadMessageFromBuffer + 0x00000000 0x46 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGenericCreate.str1.4 + 0x00000000 0xa3 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGenericCreate + 0x00000000 0xac esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGenericCreateStatic.str1.4 + 0x00000000 0x56 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGenericCreateStatic + 0x00000000 0xf0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferGetStaticBuffers.str1.4 + 0x00000000 0x42 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferGetStaticBuffers + 0x00000000 0x55 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.vStreamBufferDelete + 0x00000000 0x34 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReset + 0x00000000 0x5e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSetTriggerLevel + 0x00000000 0x2c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSpacesAvailable + 0x00000000 0x40 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferBytesAvailable + 0x00000000 0x23 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferSend.str1.4 + 0x00000000 0x62 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSend + 0x00000000 0x179 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendFromISR + 0x00000000 0x95 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferReceive.str1.4 + 0x00000000 0x41 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceive + 0x00000000 0x12e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.xStreamBufferNextMessageLengthBytes.str1.4 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferNextMessageLengthBytes + 0x00000000 0x5d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveFromISR + 0x00000000 0x92 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsEmpty + 0x00000000 0x2e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferIsFull + 0x00000000 0x38 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferSendCompletedFromISR + 0x00000000 0x4e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .text.xStreamBufferReceiveCompletedFromISR + 0x00000000 0x4e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$0 + 0x00000000 0x25 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$1 + 0x00000000 0x22 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$2 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$3 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$5 + 0x00000000 0x24 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$6 + 0x00000000 0x17 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$7 + 0x00000000 0x15 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$8 + 0x00000000 0x19 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$9 + 0x00000000 0x16 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$11 + 0x00000000 0x12 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$12 + 0x00000000 0x1c esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$13 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$14 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$15 + 0x00000000 0x13 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$16 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$17 + 0x00000000 0x1e esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$18 + 0x00000000 0x21 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$19 + 0x00000000 0x14 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$20 + 0x00000000 0x1d esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .rodata.__func__$21 + 0x00000000 0x1b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_frame 0x00000000 0x238 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_info 0x00000000 0x2610 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_abbrev 0x00000000 0x396 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_loc 0x00000000 0x152b esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_aranges + 0x00000000 0xd0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_ranges 0x00000000 0x108 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_line 0x00000000 0x1f67 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .debug_str 0x00000000 0xb09 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .comment 0x00000000 0x30 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xt.lit 0x00000000 0xb0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xt.prop 0x00000000 0xb04 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .literal.__atomic_exchange_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_compare_exchange_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_fetch_add_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_add_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_fetch_sub_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_sub_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_fetch_and_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_and_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_or_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_fetch_xor_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_xor_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_fetch_nand_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_nand_fetch_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_load_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_store_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_add_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_add_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_sub_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_sub_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_and_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_and_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_or_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_or_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_xor_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_xor_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_fetch_and_nand_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_nand_and_fetch_8 + 0x00000000 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_bool_compare_and_swap_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_val_compare_and_swap_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_lock_test_and_set_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__sync_lock_release_8 + 0x00000000 0x1c esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_load + 0x00000000 0x20 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_store + 0x00000000 0x20 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .literal.__atomic_compare_exchange + 0x00000000 0x28 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .data 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_exchange_8 + 0x00000000 0x67 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_compare_exchange_8 + 0x00000000 0x7f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_fetch_add_8 + 0x00000000 0x73 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_add_fetch_8 + 0x00000000 0x67 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_fetch_sub_8 + 0x00000000 0x6b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_sub_fetch_8 + 0x00000000 0x6b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_fetch_and_8 + 0x00000000 0x6f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_and_fetch_8 + 0x00000000 0x63 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_or_fetch_8 + 0x00000000 0x63 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_fetch_xor_8 + 0x00000000 0x6e esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_xor_fetch_8 + 0x00000000 0x63 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_fetch_nand_8 + 0x00000000 0x77 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_nand_fetch_8 + 0x00000000 0x6b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_load_8 + 0x00000000 0x4f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_store_8 + 0x00000000 0x5b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_add_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_add_and_fetch_8 + 0x00000000 0x20 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_sub_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_sub_and_fetch_8 + 0x00000000 0x1e esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_and_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_and_and_fetch_8 + 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_or_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_or_and_fetch_8 + 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_xor_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_xor_and_fetch_8 + 0x00000000 0x19 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_fetch_and_nand_8 + 0x00000000 0x17 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_nand_and_fetch_8 + 0x00000000 0x23 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_bool_compare_and_swap_8 + 0x00000000 0x73 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_val_compare_and_swap_8 + 0x00000000 0x6b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_lock_test_and_set_8 + 0x00000000 0x67 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__sync_lock_release_8 + 0x00000000 0x57 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_load + 0x00000000 0x53 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_store + 0x00000000 0x53 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text.__atomic_compare_exchange + 0x00000000 0x77 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .xt.lit 0x00000000 0x118 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .xt.prop 0x00000000 0xb64 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xt.prop 0x00000000 0x9c esp-idf/hal/libhal.a(mpu_hal.c.obj) + .data 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .bss 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xt.prop 0x00000000 0xf0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .data 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .bss 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xt.prop 0x00000000 0x24 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .text 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .bss 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xt.prop 0x00000000 0xc /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .data 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .bss 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x00000000 0x24 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .data 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .bss 0x00000000 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xt.prop 0x00000000 0x24 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .literal.mbedtls_sha256_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_internal_sha256_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_clone + 0x00000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.prop 0x00000000 0x3d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha512_software_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.esp_internal_sha512_parallel_engine_process + 0x00000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_init + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_free + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_clone + 0x00000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_starts + 0x00000000 0x84 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_internal_sha512_process + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_update + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.mbedtls_sha512_finish + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_zeroize + 0x00000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_software_process + 0x00000000 0xc54 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.esp_internal_sha512_parallel_engine_process + 0x00000000 0x72 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_init + 0x00000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_free + 0x00000000 0x2a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_clone + 0x00000000 0x28 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_starts + 0x00000000 0xdd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_internal_sha512_process + 0x00000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_update + 0x00000000 0xdc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .text.mbedtls_sha512_finish + 0x00000000 0x274 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .rodata.sha512_padding + 0x00000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .rodata.K 0x00000000 0x280 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_frame 0x00000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_info 0x00000000 0xa41 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_abbrev 0x00000000 0x334 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_loc 0x00000000 0xb77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_aranges + 0x00000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_ranges 0x00000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_line 0x00000000 0x14a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .debug_str 0x00000000 0x515 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .comment 0x00000000 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xt.lit 0x00000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xt.prop 0x00000000 0x624 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .literal.esp_sha_lock_engine + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_set_mode + 0x00000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss 0x00000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_lock_engine + 0x00000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_set_mode + 0x00000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.lit 0x00000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.prop 0x00000000 0x3a8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.gpio_hal_intr_enable_on_core + 0x00000000 0xc esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.gpio_hal_intr_disable + 0x00000000 0x4 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.gpio_hal_iomux_in + 0x00000000 0xc esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.gpio_hal_iomux_out + 0x00000000 0xc esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.gpio_hal_matrix_in + 0x00000000 0xc esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.gpio_hal_matrix_out + 0x00000000 0x14 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.gpio_hal_isolate_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text.gpio_hal_intr_enable_on_core + 0x00000000 0x93 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text.gpio_hal_intr_disable + 0x00000000 0x6c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text.gpio_hal_iomux_in + 0x00000000 0x60 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text.gpio_hal_iomux_out + 0x00000000 0x31 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text.gpio_hal_matrix_in + 0x00000000 0x2f esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text.gpio_hal_matrix_out + 0x00000000 0x3b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .rodata.gpio_hal_isolate_in_sleep.str1.4 + 0x00000000 0xf6 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .text.gpio_hal_isolate_in_sleep + 0x00000000 0x7b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .rodata.__func__$4 + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_frame 0x00000000 0xb8 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_info 0x00000000 0x1408 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_abbrev 0x00000000 0x2d0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_loc 0x00000000 0x662 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_aranges + 0x00000000 0x50 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_ranges 0x00000000 0x40 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_line 0x00000000 0xc06 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .debug_str 0x00000000 0x7a0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .xt.lit 0x00000000 0x38 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .xt.prop 0x00000000 0x1b0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .literal.rtcio_ll_input_disable + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_input_enable + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_input_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_output_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_enable_sleep_setting + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_input_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_output_in_sleep + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_ll_disable_sleep_setting + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction + 0x00000000 0x1c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x00000000 0x30 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x00000000 0x2c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .data 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_disable.str1.4 + 0x00000000 0xf8 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_disable + 0x00000000 0x4e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.rtcio_ll_input_enable.str1.4 + 0x00000000 0xb8 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_input_enable + 0x00000000 0x4b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_input_in_sleep + 0x00000000 0x4b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_output_in_sleep + 0x00000000 0x4b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_enable_sleep_setting + 0x00000000 0x4b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_input_in_sleep + 0x00000000 0x4e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_output_in_sleep + 0x00000000 0x4e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_ll_disable_sleep_setting + 0x00000000 0x4e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x00000000 0x142 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x00000000 0x86 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x00000000 0xb6 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$0 + 0x00000000 0x1a esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$1 + 0x00000000 0x18 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$2 + 0x00000000 0x1f esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$3 + 0x00000000 0x21 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$4 + 0x00000000 0x20 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$5 + 0x00000000 0x1e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$6 + 0x00000000 0x20 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$7 + 0x00000000 0x1f esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$8 + 0x00000000 0x16 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .rodata.__func__$9 + 0x00000000 0x17 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_frame 0x00000000 0x118 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_info 0x00000000 0x197e esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_abbrev 0x00000000 0x304 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_loc 0x00000000 0x317 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_aranges + 0x00000000 0x70 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_ranges 0x00000000 0x60 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_line 0x00000000 0xff4 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .debug_str 0x00000000 0xa93 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .comment 0x00000000 0x30 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .xt.lit 0x00000000 0x58 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .xt.prop 0x00000000 0x438 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .literal.get_ota_ops_entry + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_init_entry + 0x00000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.image_validate + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.ota_verify_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.read_otadata + 0x00000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.find_default_boot_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.rewrite_ota_seq + 0x00000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.check_invalid_otadata + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_last_invalid_otadata + 0x00000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_begin + 0x00000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_resume + 0x00000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_final_partition + 0x00000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write + 0x00000000 0x60 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write_with_offset + 0x00000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_abort + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_end + 0x00000000 0x38 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_app_partition_count + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_rewrite_ota_data + 0x00000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.erase_last_boot_app_partition + 0x00000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_boot_partition + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_boot_partition + 0x00000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_next_update_partition + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_bootloader_description + 0x00000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_partition_description + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_check_rollback_is_possible + 0x00000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_current_ota_is_workable + 0x00000000 0x44 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_valid_cancel_rollback + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback_and_reboot + 0x00000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_last_invalid_partition + 0x00000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_state_partition + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_erase_last_boot_app_partition + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_invalidate_inactive_ota_data_slot + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .data 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x00000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.is_ota_partition + 0x00000000 0x2a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x00000000 0x7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_ops_entry + 0x00000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.compute_ota_seq_for_target_slot + 0x00000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_init_entry + 0x00000000 0x42 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x00000000 0x26 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.ota_verify_partition + 0x00000000 0x94 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.4 + 0x00000000 0x57 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x00000000 0x93 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x00000000 0x38 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x00000000 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x00000000 0x5b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x00000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x00000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x00000000 0xc6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_resume + 0x00000000 0xb3 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_set_final_partition.str1.4 + 0x00000000 0x3f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_final_partition + 0x00000000 0xaa esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x00000000 0xea esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x00000000 0x1d0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write_with_offset.str1.4 + 0x00000000 0xb2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write_with_offset + 0x00000000 0xc2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_abort + 0x00000000 0x2d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_end.str1.4 + 0x00000000 0x65 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x00000000 0xe5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_app_partition_count.str1.4 + 0x00000000 0x46 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_app_partition_count + 0x00000000 0x40 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_rewrite_ota_data + 0x00000000 0x89 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.erase_last_boot_app_partition + 0x00000000 0xd6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x00000000 0x5d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_boot_partition.str1.4 + 0x00000000 0x40 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x00000000 0x8b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.4 + 0x00000000 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x00000000 0x66 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_bootloader_description + 0x00000000 0x67 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x00000000 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x00000000 0xc2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.4 + 0x00000000 0xb1 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x00000000 0xe4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x00000000 0x16 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x00000000 0x63 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x00000000 0x9d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_invalidate_inactive_ota_data_slot + 0x00000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$0 + 0x00000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$3 + 0x00000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$4 + 0x00000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_last_handle + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_entries_head + 0x00000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.lit 0x00000000 0x110 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.prop 0x00000000 0x1230 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_basic_rom_console + 0x00000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_rom_download_mode + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x00000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_disable_basic_rom_console.str1.4 + 0x00000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_basic_rom_console + 0x00000000 0x33 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_rom_download_mode + 0x00000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_set_rom_log_scheme + 0x00000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x00000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x00000000 0x665 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x00000000 0x1f4 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x00000000 0x2b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_aranges + 0x00000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_ranges 0x00000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_line 0x00000000 0x431 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x00000000 0xcd2 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x00000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.lit 0x00000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.prop 0x00000000 0x108 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .data 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .bss 0x00000000 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text.sha_hal_set_mode + 0x00000000 0x5 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xt.lit 0x00000000 0x28 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xt.prop 0x00000000 0x264 esp-idf/hal/libhal.a(sha_hal.c.obj) + .text 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .data 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .bss 0x00000000 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xt.lit 0x00000000 0x8 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xt.prop 0x00000000 0x48 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .text 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_line 0x00000000 0x6f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_line_str + 0x00000000 0xcd /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_info 0x00000000 0x31 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .debug_str 0x00000000 0xe4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .xt.prop 0x00000000 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .text 0x00000000 0x22 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_line 0x00000000 0x8d /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_line_str + 0x00000000 0xcd /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_info 0x00000000 0x31 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .debug_str 0x00000000 0xe4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .xt.prop 0x00000000 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .text 0x00000000 0x59 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_line 0x00000000 0xf9 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_line_str + 0x00000000 0xce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_info 0x00000000 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_abbrev 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .debug_str 0x00000000 0xda /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .xt.prop 0x00000000 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .literal 0x00000000 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .text 0x00000000 0x312 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_line 0x00000000 0x6b1 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_line_str + 0x00000000 0xce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_info 0x00000000 0x25 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_abbrev 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .debug_str 0x00000000 0xda /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .xt.prop 0x00000000 0x420 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .literal 0x00000000 0xc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .text 0x00000000 0x1ff /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_line 0x00000000 0x478 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_line_str + 0x00000000 0xce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_info 0x00000000 0x25 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_abbrev 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .debug_str 0x00000000 0xda /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .xt.prop 0x00000000 0x228 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .literal 0x00000000 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .text 0x00000000 0x213 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_line 0x00000000 0x4a1 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_line_str + 0x00000000 0xce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_info 0x00000000 0x25 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_abbrev 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .debug_str 0x00000000 0xda /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .xt.prop 0x00000000 0x264 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .literal 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .text 0x00000000 0x4c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_line 0x00000000 0xe7 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_line_str + 0x00000000 0xce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_info 0x00000000 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_abbrev 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .debug_str 0x00000000 0xda /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .xt.prop 0x00000000 0x6c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .literal 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x5d /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_line 0x00000000 0x117 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_line_str + 0x00000000 0xce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_info 0x00000000 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_abbrev 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .debug_str 0x00000000 0xda /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .xt.prop 0x00000000 0xa8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .text 0x00000000 0x3d /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_line 0x00000000 0xc9 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_line_str + 0x00000000 0xce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_info 0x00000000 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_abbrev 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .debug_str 0x00000000 0xda /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .xt.prop 0x00000000 0x54 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .literal 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .text 0x00000000 0x62 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_line 0x00000000 0x117 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_line_str + 0x00000000 0xce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_info 0x00000000 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_abbrev 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .debug_str 0x00000000 0xda /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .xt.prop 0x00000000 0x6c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .literal 0x00000000 0xc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x37 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_info 0x00000000 0xd3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_abbrev 0x00000000 0x6e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_loclists + 0x00000000 0xf5 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_line 0x00000000 0xef /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_str 0x00000000 0x18e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .debug_line_str + 0x00000000 0x18e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .xt.prop 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .text 0x00000000 0x286 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .eh_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_info 0x00000000 0x6ce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_abbrev 0x00000000 0x1a3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_loclists + 0x00000000 0x601 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_rnglists + 0x00000000 0x47 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_line 0x00000000 0xbc0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_str 0x00000000 0x203 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .debug_line_str + 0x00000000 0x18e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .xt.prop 0x00000000 0x270 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .text 0x00000000 0x2fe /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .eh_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_info 0x00000000 0x71f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_abbrev 0x00000000 0x1ac /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_loclists + 0x00000000 0x500 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_rnglists + 0x00000000 0x41 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_line 0x00000000 0xc0e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_str 0x00000000 0x203 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .debug_line_str + 0x00000000 0x18e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .xt.prop 0x00000000 0x234 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .text 0x00000000 0x1fa /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .eh_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_info 0x00000000 0x650 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_abbrev 0x00000000 0x195 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_loclists + 0x00000000 0x496 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_rnglists + 0x00000000 0x47 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_line 0x00000000 0x93b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_str 0x00000000 0x204 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .debug_line_str + 0x00000000 0x18e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .xt.prop 0x00000000 0x1c8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .text 0x00000000 0x25e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .eh_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_info 0x00000000 0x6c4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000 0x1ad /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_loclists + 0x00000000 0x4b3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_rnglists + 0x00000000 0x43 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_line 0x00000000 0xa01 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_str 0x00000000 0x204 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .debug_line_str + 0x00000000 0x18e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .xt.prop 0x00000000 0x1b0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .literal 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .text 0x00000000 0x135 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_line 0x00000000 0x30f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_line_str + 0x00000000 0xab /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_info 0x00000000 0x33 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .debug_str 0x00000000 0xbe /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .xt.prop 0x00000000 0x15c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .literal 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .text 0x00000000 0x74 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .debug_line 0x00000000 0x146 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .debug_line_str + 0x00000000 0xab /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .debug_info 0x00000000 0x31 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .debug_str 0x00000000 0xbe /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .xt.prop 0x00000000 0xd8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .literal 0x00000000 0x1c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .text 0x00000000 0x123 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_line 0x00000000 0x2b4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_line_str + 0x00000000 0xab /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_info 0x00000000 0x33 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .debug_str 0x00000000 0xbe /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .xt.prop 0x00000000 0x120 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .literal 0x00000000 0xc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .text 0x00000000 0x63 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .debug_line 0x00000000 0x122 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .debug_line_str + 0x00000000 0xab /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .debug_info 0x00000000 0x31 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .debug_str 0x00000000 0xbe /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .xt.prop 0x00000000 0xc0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .literal 0x00000000 0xc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .text 0x00000000 0x113 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_line 0x00000000 0x2a8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_line_str + 0x00000000 0xac /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_info 0x00000000 0x33 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .debug_str 0x00000000 0xc0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .xt.prop 0x00000000 0x1a4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .xt.prop 0x00000000 0x48 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .literal.qsort + 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .text.med3$constprop$0 + 0x00000000 0x42 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .text.swapfunc$isra$0 + 0x00000000 0x3b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .text.qsort 0x00000000 0x2c8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .debug_frame 0x00000000 0x58 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .debug_info 0x00000000 0x983 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .debug_abbrev 0x00000000 0x294 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .debug_loclists + 0x00000000 0x606 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .debug_aranges + 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .debug_rnglists + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .debug_line 0x00000000 0xa05 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .debug_str 0x00000000 0x242 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .debug_line_str + 0x00000000 0x24a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .xt.prop 0x00000000 0x378 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .text.div 0x00000000 0xd /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .debug_info 0x00000000 0xf3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .debug_abbrev 0x00000000 0xc7 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .debug_loclists + 0x00000000 0x6e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .debug_line 0x00000000 0x99 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .debug_str 0x00000000 0x194 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .debug_line_str + 0x00000000 0x186 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .xt.prop 0x00000000 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + .xt.prop 0x00000000 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + .literal.__itoa + 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .literal.itoa 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .text.__itoa 0x00000000 0x3c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .text.itoa 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .debug_frame 0x00000000 0x40 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .debug_info 0x00000000 0x17d /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .debug_abbrev 0x00000000 0x11f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .debug_loclists + 0x00000000 0xb2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .debug_aranges + 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .debug_rnglists + 0x00000000 0x19 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .debug_line 0x00000000 0x15e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .debug_str 0x00000000 0x1ad /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .debug_line_str + 0x00000000 0x189 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .xt.lit 0x00000000 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .xt.prop 0x00000000 0x90 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .literal.__utoa + 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .literal.utoa 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .rodata.str1.1 + 0x00000000 0x25 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .text.__utoa 0x00000000 0x6a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .text.utoa 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .debug_frame 0x00000000 0x40 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .debug_info 0x00000000 0x1c4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .debug_abbrev 0x00000000 0x11b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .debug_loclists + 0x00000000 0xdc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .debug_aranges + 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .debug_rnglists + 0x00000000 0x19 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .debug_line 0x00000000 0x228 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .debug_str 0x00000000 0x1c8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .debug_line_str + 0x00000000 0x154 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .xt.lit 0x00000000 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .xt.prop 0x00000000 0x90 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .literal.bzero + 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .text.bzero 0x00000000 0x12 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .debug_info 0x00000000 0xf7 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .debug_abbrev 0x00000000 0xc4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .debug_line 0x00000000 0x8c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .debug_str 0x00000000 0x1af /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .debug_line_str + 0x00000000 0x200 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .xt.prop 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .text.memcmp 0x00000000 0x26 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .debug_info 0x00000000 0xfd /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .debug_abbrev 0x00000000 0xa7 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .debug_loclists + 0x00000000 0x89 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .debug_line 0x00000000 0xf0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .debug_str 0x00000000 0x196 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .debug_line_str + 0x00000000 0x1b8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .xt.prop 0x00000000 0x54 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .text.strcat 0x00000000 0x22 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .debug_info 0x00000000 0xdf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .debug_abbrev 0x00000000 0x8c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .debug_loclists + 0x00000000 0x73 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .debug_line 0x00000000 0xd1 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .debug_str 0x00000000 0x18f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .debug_line_str + 0x00000000 0x14f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .xt.prop 0x00000000 0x3c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .text.strcspn 0x00000000 0x25 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .debug_info 0x00000000 0xf7 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .debug_abbrev 0x00000000 0xb6 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .debug_loclists + 0x00000000 0x51 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .debug_line 0x00000000 0xea /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .debug_str 0x00000000 0x197 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .debug_line_str + 0x00000000 0x1bb /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .xt.prop 0x00000000 0x54 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .literal.strerror_r + 0x00000000 0xc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .text.strerror_r + 0x00000000 0x2a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .debug_info 0x00000000 0x18b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .debug_abbrev 0x00000000 0xf0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .debug_loclists + 0x00000000 0x34 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .debug_line 0x00000000 0xbd /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .debug_str 0x00000000 0x1c8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .debug_line_str + 0x00000000 0x20c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .xt.prop 0x00000000 0x3c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .literal.strlcat + 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .text.strlcat 0x00000000 0x53 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .debug_info 0x00000000 0x14f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .debug_abbrev 0x00000000 0xe4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .debug_loclists + 0x00000000 0x10f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .debug_line 0x00000000 0x1cb /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .debug_str 0x00000000 0x1b3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .debug_line_str + 0x00000000 0x1fb /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .xt.prop 0x00000000 0xb4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .text.strlcpy 0x00000000 0x33 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .debug_info 0x00000000 0x10f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .debug_abbrev 0x00000000 0xab /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .debug_loclists + 0x00000000 0x93 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .debug_line 0x00000000 0x12a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .debug_str 0x00000000 0x1a8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .debug_line_str + 0x00000000 0x1bb /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .xt.prop 0x00000000 0x60 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .text.strstr 0x00000000 0x36 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .debug_info 0x00000000 0xf1 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .debug_abbrev 0x00000000 0xa7 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .debug_loclists + 0x00000000 0x3b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .debug_line 0x00000000 0x12b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .debug_str 0x00000000 0x196 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .debug_line_str + 0x00000000 0x1b8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .xt.prop 0x00000000 0x78 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .xt.lit 0x00000000 0x40 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .xt.prop 0x00000000 0x3cc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .xt.prop 0x00000000 0x48 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .xt.prop 0x00000000 0x3c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .xt.prop 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .literal.putc 0x00000000 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .text.putc_unlocked + 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .text.putc 0x00000000 0x36 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .debug_frame 0x00000000 0x40 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .debug_info 0x00000000 0x302 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .debug_abbrev 0x00000000 0x1a0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .debug_loclists + 0x00000000 0x67 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .debug_aranges + 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .debug_rnglists + 0x00000000 0x19 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .debug_line 0x00000000 0x1bc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .debug_str 0x00000000 0x29f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .debug_line_str + 0x00000000 0x245 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .xt.prop 0x00000000 0x84 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .literal.fputs + 0x00000000 0xc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .text.fputs 0x00000000 0x5a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .debug_info 0x00000000 0x2ee /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .debug_abbrev 0x00000000 0x1aa /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .debug_loclists + 0x00000000 0x86 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .debug_line 0x00000000 0x201 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .debug_str 0x00000000 0x297 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .debug_line_str + 0x00000000 0x245 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .xt.prop 0x00000000 0x84 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .literal.__funlockfile$isra$0 + 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .literal.fwrite + 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .text.__funlockfile$isra$0 + 0x00000000 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .text.fwrite 0x00000000 0x152 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .debug_frame 0x00000000 0x40 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .debug_info 0x00000000 0x82f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .debug_abbrev 0x00000000 0x28e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .debug_loclists + 0x00000000 0x1f2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .debug_aranges + 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .debug_rnglists + 0x00000000 0x32 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .debug_line 0x00000000 0x55b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .debug_str 0x00000000 0x40b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .debug_line_str + 0x00000000 0x2e5 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .xt.lit 0x00000000 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .xt.prop 0x00000000 0x18c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .xt.prop 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .xt.prop 0x00000000 0x90 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .literal.snprintf + 0x00000000 0xc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .text.snprintf + 0x00000000 0x62 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .debug_info 0x00000000 0x32f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .debug_abbrev 0x00000000 0x1a0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .debug_loclists + 0x00000000 0x4d /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .debug_line 0x00000000 0x162 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .debug_str 0x00000000 0x2b1 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .debug_line_str + 0x00000000 0x2cb /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .xt.prop 0x00000000 0x60 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .xt.lit 0x00000000 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .xt.prop 0x00000000 0xda4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .xt.prop 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .xt.lit 0x00000000 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .xt.prop 0x00000000 0x3f0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .xt.lit 0x00000000 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .xt.prop 0x00000000 0x60 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .xt.prop 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .xt.lit 0x00000000 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .xt.prop 0x00000000 0x180 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .xt.prop 0x00000000 0x6c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .literal 0x00000000 0xc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .text 0x00000000 0x90 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_line 0x00000000 0x182 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_line_str + 0x00000000 0xab /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_info 0x00000000 0x33 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .debug_str 0x00000000 0xbe /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .xt.prop 0x00000000 0x114 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .literal._strerror_r + 0x00000000 0x190 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .literal.strerror + 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .literal.strerror_l + 0x00000000 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .rodata.str1.1 + 0x00000000 0x838 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .text._strerror_r + 0x00000000 0x277 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .rodata 0x00000000 0x240 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .text.strerror + 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .text.strerror_l + 0x00000000 0x14 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .debug_frame 0x00000000 0x58 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .debug_info 0x00000000 0x1c6 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .debug_abbrev 0x00000000 0x10a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .debug_loclists + 0x00000000 0xc09 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .debug_aranges + 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .debug_rnglists + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .debug_line 0x00000000 0xc7c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .debug_str 0x00000000 0x1ea /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .debug_line_str + 0x00000000 0x1a2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .xt.lit 0x00000000 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .xt.prop 0x00000000 0x9b4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .text.strnlen 0x00000000 0x1a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .debug_info 0x00000000 0xe3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .debug_abbrev 0x00000000 0x95 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .debug_loclists + 0x00000000 0x5a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .debug_line 0x00000000 0xba /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .debug_str 0x00000000 0x19d /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .debug_line_str + 0x00000000 0x1bb /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .xt.prop 0x00000000 0x48 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + .xt.lit 0x00000000 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + .xt.prop 0x00000000 0x12c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + .text 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .text.__file_str_put + 0x00000000 0x16 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .debug_frame 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .debug_info 0x00000000 0x226 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .debug_abbrev 0x00000000 0xeb /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .debug_loclists + 0x00000000 0x17 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .debug_line 0x00000000 0xdd /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .debug_str 0x00000000 0x240 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .debug_line_str + 0x00000000 0x2b3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .comment 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .xt.prop 0x00000000 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .text 0x00000000 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_line 0x00000000 0x7b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_line_str + 0x00000000 0xcd /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_info 0x00000000 0x31 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .debug_str 0x00000000 0xe3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .xt.prop 0x00000000 0x3c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .text 0x00000000 0x19 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .debug_line 0x00000000 0x7b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .debug_line_str + 0x00000000 0xcd /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .debug_info 0x00000000 0x31 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .debug_str 0x00000000 0xe3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .xt.prop 0x00000000 0x3c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .text 0x00000000 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .data 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .bss 0x00000000 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_line 0x00000000 0x7b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_line_str + 0x00000000 0xcd /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_info 0x00000000 0x31 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_abbrev 0x00000000 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_aranges + 0x00000000 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .debug_str 0x00000000 0xe3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + .xt.prop 0x00000000 0x3c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x40080000 0x00020000 xr +iram0_2_seg 0x400d0020 0x0032ffe0 xr +dram0_0_seg 0x3ffb0000 0x0002c200 rw +drom0_0_seg 0x3f400020 0x003fffe0 r +rtc_iram_seg 0x400c0000 0x00002000 xrw +rtc_data_seg 0x3ff80000 0x00002000 rw +rtc_fast_reserved_seg 0x3ff82000 0x00000000 rw +rtc_slow_seg 0x50000000 0x00001fe8 rw +rtc_slow_reserved_seg 0x50001fe8 0x00000018 rw +extern_ram_seg 0x3f800000 0x00400000 xrw +*default* 0x00000000 0xffffffff + +Linker script and memory map + + 0x00000000 IDF_TARGET_ESP32 = 0x0 +LOAD CMakeFiles/hello_world.elf.dir/project_elf_src_esp32.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/esp_stdio/libesp_stdio.a +LOAD esp-idf/esp_hal_timg/libesp_hal_timg.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/esp_mm/libesp_mm.a +LOAD esp-idf/esp_hal_gpio/libesp_hal_gpio.a +LOAD esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a +LOAD esp-idf/esp_hal_mspi/libesp_hal_mspi.a +LOAD esp-idf/esp_hal_wdt/libesp_hal_wdt.a +LOAD esp-idf/esp_app_format/libesp_app_format.a +LOAD esp-idf/esp_bootloader_format/libesp_bootloader_format.a +LOAD esp-idf/app_update/libapp_update.a +LOAD esp-idf/esp_partition/libesp_partition.a +LOAD esp-idf/efuse/libefuse.a +LOAD esp-idf/esp_security/libesp_security.a +LOAD esp-idf/esp_driver_gpio/libesp_driver_gpio.a +LOAD esp-idf/esp_pm/libesp_pm.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/esp_hal_i2s/libesp_hal_i2s.a +LOAD esp-idf/esp_hal_ana_conv/libesp_hal_ana_conv.a +LOAD esp-idf/bootloader_support/libbootloader_support.a +LOAD esp-idf/esp_system/libesp_system.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_rom/libesp_rom.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a +LOAD esp-idf/esp_hw_support/libesp_hw_support.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/hal/libhal.a +LOAD esp-idf/spi_flash/libspi_flash.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a +LOAD esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a +LOAD /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/esp_libc/libesp_libc.a +LOAD /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a +LOAD esp-idf/cxx/libcxx.a +LOAD /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libstdc++.a +LOAD /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libm.a +LOAD /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a +LOAD /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a +START GROUP +LOAD /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a +LOAD /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a +END GROUP +LOAD /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a + 0x3ff40000 PROVIDE (UART0 = 0x3ff40000) + 0x3ff42000 PROVIDE (SPI1 = 0x3ff42000) + 0x3ff43000 PROVIDE (SPI0 = 0x3ff43000) + 0x3ff44000 PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SDM = 0x3ff44f00) + 0x3ff48000 PROVIDE (RTCCNTL = 0x3ff48000) + 0x3ff48400 PROVIDE (RTCIO = 0x3ff48400) + 0x3ff48800 PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + [!provide] PROVIDE (I2S0 = 0x3ff4f000) + 0x3ff50000 PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + [!provide] PROVIDE (LEDC = 0x3ff59000) + 0x3ff5a000 PROVIDE (EFUSE = 0x3ff5a000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x3ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + 0x3ff60000 PROVIDE (TIMERG1 = 0x3ff60000) + 0x3ff64000 PROVIDE (SPI2 = 0x3ff64000) + 0x3ff65000 PROVIDE (SPI3 = 0x3ff65000) + [!provide] PROVIDE (SYSCON = 0x3ff66000) + [!provide] PROVIDE (I2C1 = 0x3ff67000) + [!provide] PROVIDE (SDMMC = 0x3ff68000) + [!provide] PROVIDE (EMAC_DMA = 0x3ff69000) + [!provide] PROVIDE (EMAC_EXT = 0x3ff69800) + [!provide] PROVIDE (EMAC_MAC = 0x3ff6a000) + [!provide] PROVIDE (TWAI = 0x3ff6b000) + [!provide] PROVIDE (MCPWM1 = 0x3ff6c000) + [!provide] PROVIDE (I2S1 = 0x3ff6d000) + 0x3ff6e000 PROVIDE (UART2 = 0x3ff6e000) + [!provide] PROVIDE (Add2SelfBigHex256 = 0x40015b7c) + [!provide] PROVIDE (AddBigHex256 = 0x40015b28) + [!provide] PROVIDE (AddBigHexModP256 = 0x40015c98) + [!provide] PROVIDE (AddP256 = 0x40015c74) + [!provide] PROVIDE (AddPdiv2_256 = 0x40015ce0) + [!provide] PROVIDE (app_gpio_arg = 0x3ffe003c) + [!provide] PROVIDE (app_gpio_handler = 0x3ffe0040) + [!provide] PROVIDE (BasePoint_x_256 = 0x3ff97488) + [!provide] PROVIDE (BasePoint_y_256 = 0x3ff97468) + [!provide] PROVIDE (bigHexInversion256 = 0x400168f0) + [!provide] PROVIDE (bigHexP256 = 0x3ff973bc) + [!provide] PROVIDE (btdm_r_ble_bt_handler_tab_p_get = 0x40019b0c) + [!provide] PROVIDE (btdm_r_btdm_option_data_p_get = 0x40010004) + [!provide] PROVIDE (btdm_r_btdm_rom_version_get = 0x40010078) + [!provide] PROVIDE (btdm_r_data_init = 0x4001002c) + [!provide] PROVIDE (btdm_r_import_rf_phy_func_p_get = 0x40054298) + [!provide] PROVIDE (btdm_r_ip_func_p_get = 0x40019af0) + [!provide] PROVIDE (btdm_r_ip_func_p_set = 0x40019afc) + [!provide] PROVIDE (btdm_r_modules_func_p_get = 0x4005427c) + [!provide] PROVIDE (btdm_r_modules_func_p_set = 0x40054270) + [!provide] PROVIDE (btdm_r_plf_func_p_set = 0x40054288) + [!provide] PROVIDE (bt_util_buf_env = 0x3ffb8bd4) + 0x400095e0 PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x40009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x40009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x40009a84 PROVIDE (Cache_Read_Enable_rom = 0x40009a84) + [!provide] PROVIDE (Cache_Read_Init_rom = 0x40009950) + [!provide] PROVIDE (cache_sram_mmu_set_rom = 0x400097f4) + [!provide] PROVIDE (calc_rtc_memory_crc = 0x40008170) + [!provide] PROVIDE (__clear_cache = 0x40063860) + [!provide] PROVIDE (co_default_bdaddr = 0x3ffae704) + [!provide] PROVIDE (co_null_bdaddr = 0x3ffb80e0) + [!provide] PROVIDE (co_sca2ppm = 0x3ff971e8) + [!provide] PROVIDE (crc16_be = 0x4005d09c) + [!provide] PROVIDE (crc16_le = 0x4005d05c) + [!provide] PROVIDE (crc32_be = 0x4005d024) + 0x4005cfec PROVIDE (crc32_le = 0x4005cfec) + [!provide] PROVIDE (crc8_be = 0x4005d114) + [!provide] PROVIDE (crc8_le = 0x4005d0e0) + [!provide] PROVIDE (_data_end_rom = 0x4000d5c8) + [!provide] PROVIDE (_data_end_btdm_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_btdm_rom = 0x4000d4f4) + [!provide] PROVIDE (_data_start_btdm = 0x3ffae6e0) + [!provide] PROVIDE (_data_end_btdm = 0x3ffaff10) + [!provide] PROVIDE (_bss_start_btdm = 0x3ffb8000) + [!provide] PROVIDE (_bss_end_btdm = 0x3ffbff70) + [!provide] PROVIDE (dbg_default_handler = 0x3ff97218) + [!provide] PROVIDE (dbg_default_state = 0x3ff97220) + [!provide] PROVIDE (dbg_state = 0x3ffb8d5d) + [!provide] PROVIDE (DebugE256PublicKey_x = 0x3ff97428) + [!provide] PROVIDE (DebugE256PublicKey_y = 0x3ff97408) + [!provide] PROVIDE (DebugE256SecretKey = 0x3ff973e8) + [!provide] PROVIDE (debug_timer = 0x3ffe042c) + [!provide] PROVIDE (debug_timerfn = 0x3ffe0430) + [!provide] PROVIDE (dh_group14_generator = 0x3ff9ac60) + [!provide] PROVIDE (dh_group14_prime = 0x3ff9ab60) + [!provide] PROVIDE (dh_group15_generator = 0x3ff9ab5f) + [!provide] PROVIDE (dh_group15_prime = 0x3ff9a9df) + [!provide] PROVIDE (dh_group16_generator = 0x3ff9a9de) + [!provide] PROVIDE (dh_group16_prime = 0x3ff9a7de) + [!provide] PROVIDE (dh_group17_generator = 0x3ff9a7dd) + [!provide] PROVIDE (dh_group17_prime = 0x3ff9a4dd) + [!provide] PROVIDE (dh_group18_generator = 0x3ff9a4dc) + [!provide] PROVIDE (dh_group18_prime = 0x3ff9a0dc) + [!provide] PROVIDE (dh_group1_generator = 0x3ff9ae03) + [!provide] PROVIDE (dh_group1_prime = 0x3ff9ada3) + [!provide] PROVIDE (dh_group2_generator = 0x3ff9ada2) + [!provide] PROVIDE (dh_group2_prime = 0x3ff9ad22) + [!provide] PROVIDE (dh_group5_generator = 0x3ff9ad21) + [!provide] PROVIDE (dh_group5_prime = 0x3ff9ac61) + 0x3ffae290 PROVIDE (g_rom_spiflash_dummy_len_plus = 0x3ffae290) + [!provide] PROVIDE (ecc_env = 0x3ffb8d60) + [!provide] PROVIDE (ecc_Jacobian_InfinityPoint256 = 0x3ff972e8) + [!provide] PROVIDE (em_buf_env = 0x3ffb8d74) + [!provide] PROVIDE (esp_crc8 = 0x4005d144) + [!provide] PROVIDE (_etext = 0x4000d66c) + [!provide] PROVIDE (ets_readySet_ = 0x3ffe01f0) + [!provide] PROVIDE (ets_startup_callback = 0x3ffe0404) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (exc_cause_table = 0x3ff991d0) + [!provide] PROVIDE (GF_Jacobian_Point_Addition256 = 0x400163a4) + [!provide] PROVIDE (GF_Jacobian_Point_Double256 = 0x40016260) + [!provide] PROVIDE (GF_Point_Jacobian_To_Affine256 = 0x40016b0c) + [!provide] PROVIDE (g_phyFuns_instance = 0x3ffae0c4) + 0x3ffae270 PROVIDE (g_rom_flashchip = 0x3ffae270) + [!provide] PROVIDE (gTxMsg = 0x3ffe0050) + [!provide] PROVIDE (hci_cmd_desc_root_tab = 0x3ff976d4) + [!provide] PROVIDE (hci_cmd_desc_tab_ctrl_bb = 0x3ff97b70) + [!provide] PROVIDE (hci_cmd_desc_tab_info_par = 0x3ff97b1c) + [!provide] PROVIDE (hci_cmd_desc_tab_le = 0x3ff97870) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_ctrl = 0x3ff97fc0) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_pol = 0x3ff97f3c) + [!provide] PROVIDE (hci_cmd_desc_tab_stat_par = 0x3ff97ac8) + [!provide] PROVIDE (hci_cmd_desc_tab_testing = 0x3ff97a98) + [!provide] PROVIDE (hci_cmd_desc_tab_vs = 0x3ff97714) + [!provide] PROVIDE (hci_command_handler = 0x4004c928) + [!provide] PROVIDE (hci_env = 0x3ffb9350) + [!provide] PROVIDE (rwip_env = 0x3ffb8bcc) + [!provide] PROVIDE (hci_evt_dbg_desc_tab = 0x3ff9750c) + [!provide] PROVIDE (hci_evt_desc_tab = 0x3ff9751c) + [!provide] PROVIDE (hci_evt_le_desc_tab = 0x3ff974b4) + [!provide] PROVIDE (hci_fc_env = 0x3ffb9340) + [!provide] PROVIDE (jd_decomp = 0x400613e8) + [!provide] PROVIDE (jd_prepare = 0x40060fa8) + [!provide] PROVIDE (ke_env = 0x3ffb93cc) + [!provide] PROVIDE (ke_handler_search = 0x4001a430) + [!provide] PROVIDE (ke_task_env = 0x3ffb81d4) + [!provide] PROVIDE (ke_event_env = 0x3ffb81a4) + [!provide] PROVIDE (lb_default_handler = 0x3ff982b8) + [!provide] PROVIDE (lb_default_state_tab_p_get = 0x4001c198) + [!provide] PROVIDE (lb_env = 0x3ffb9424) + [!provide] PROVIDE (lb_hci_cmd_handler_tab_p_get = 0x4001c18c) + [!provide] PROVIDE (lb_state = 0x3ffb94e8) + [!provide] PROVIDE (lc_default_handler = 0x3ff98648) + [!provide] PROVIDE (lc_default_state_tab_p_get = 0x4002f494) + [!provide] PROVIDE (lc_env = 0x3ffb94ec) + [!provide] PROVIDE (lc_hci_cmd_handler_tab_p_get = 0x4002f488) + [!provide] PROVIDE (lc_state = 0x3ffb9508) + [!provide] PROVIDE (ld_acl_br_sizes = 0x3ff98a2a) + [!provide] PROVIDE (ld_acl_br_types = 0x3ff98a36) + [!provide] PROVIDE (ld_acl_edr_sizes = 0x3ff98a14) + [!provide] PROVIDE (ld_acl_edr_types = 0x3ff98a22) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_pcm_settings_dft = 0x3ff98a0c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sync_train_channels = 0x3ff98a3c) + [!provide] PROVIDE (llc_default_handler = 0x3ff98b3c) + [!provide] PROVIDE (llc_default_state_tab_p_get = 0x40046058) + [!provide] PROVIDE (llc_env = 0x3ffb96d0) + [!provide] PROVIDE (llc_hci_acl_data_tx_handler = 0x40042398) + [!provide] PROVIDE (llc_hci_cmd_handler_tab_p_get = 0x40042358) + [!provide] PROVIDE (llc_hci_command_handler = 0x40042360) + [!provide] PROVIDE (llcp_pdu_handler_tab_p_get = 0x40043f64) + [!provide] PROVIDE (llc_state = 0x3ffb96f8) + [!provide] PROVIDE (lldesc_build_chain = 0x4000a850) + [!provide] PROVIDE (lldesc_num2link = 0x4000a948) + [!provide] PROVIDE (lldesc_set_owner = 0x4000a974) + [!provide] PROVIDE (lld_evt_deferred_elt_push = 0x400466b4) + [!provide] PROVIDE (lld_evt_deferred_elt_pop = 0x400466dc) + [!provide] PROVIDE (lld_evt_winsize_change = 0x40046730) + [!provide] PROVIDE (lld_evt_rxwin_compute = 0x400467c8) + [!provide] PROVIDE (lld_evt_slave_time_compute = 0x40046818) + [!provide] PROVIDE (lld_evt_env = 0x3ffb9704) + [!provide] PROVIDE (lld_evt_elt_wait_get = 0x400468e4) + [!provide] PROVIDE (lld_evt_get_next_free_slot = 0x4004692c) + [!provide] PROVIDE (lld_pdu_adv_pk_desc_tab = 0x3ff98c70) + [!provide] PROVIDE (lld_pdu_llcp_pk_desc_tab = 0x3ff98b68) + [!provide] PROVIDE (lld_pdu_tx_flush_list = 0x4004a760) + [!provide] PROVIDE (lld_pdu_pack = 0x4004ab14) + [!provide] PROVIDE (LLM_AA_CT1 = 0x3ff98d8a) + [!provide] PROVIDE (LLM_AA_CT2 = 0x3ff98d88) + [!provide] PROVIDE (llm_default_handler = 0x3ff98d80) + [!provide] PROVIDE (llm_default_state_tab_p_get = 0x4004e718) + [!provide] PROVIDE (llm_hci_cmd_handler_tab_p_get = 0x4004c920) + [!provide] PROVIDE (llm_le_env = 0x3ffb976c) + [!provide] PROVIDE (llm_local_cmds = 0x3ff98d38) + [!provide] PROVIDE (llm_local_data_len_values = 0x3ff98d1c) + [!provide] PROVIDE (llm_local_le_feats = 0x3ff98d30) + [!provide] PROVIDE (llm_local_le_states = 0x3ff98d28) + [!provide] PROVIDE (llm_state = 0x3ffb985c) + [!provide] PROVIDE (lm_default_handler = 0x3ff990e0) + [!provide] PROVIDE (lm_default_state_tab_p_get = 0x40054268) + [!provide] PROVIDE (lm_env = 0x3ffb9860) + [!provide] PROVIDE (lm_hci_cmd_handler_tab_p_get = 0x4005425c) + [!provide] PROVIDE (lm_local_supp_feats = 0x3ff990ee) + [!provide] PROVIDE (lm_n_page_tab = 0x3ff990e8) + [!provide] PROVIDE (lmp_desc_tab = 0x3ff96e6c) + [!provide] PROVIDE (lmp_ext_desc_tab = 0x3ff96d9c) + [!provide] PROVIDE (lm_state = 0x3ffb9a1c) + [!provide] PROVIDE (maxSecretKey_256 = 0x3ff97448) + 0x400095a4 PROVIDE (mmu_init = 0x400095a4) + [!provide] PROVIDE (MultiplyBigHexByUint32_256 = 0x40016214) + [!provide] PROVIDE (MultiplyBigHexModP256 = 0x400160b8) + [!provide] PROVIDE (MultiplyByU32ModP256 = 0x40015fdc) + [!provide] PROVIDE (multofup = 0x4000ab8c) + [!provide] PROVIDE (mz_adler32 = 0x4005edbc) + [!provide] PROVIDE (mz_crc32 = 0x4005ee88) + [!provide] PROVIDE (mz_free = 0x4005eed4) + [!provide] PROVIDE (notEqual256 = 0x40015b04) + [!provide] PROVIDE (one_bits = 0x3ff971f8) + [!provide] PROVIDE (phy_get_romfuncs = 0x40004100) + [!provide] PROVIDE (_Pri_4_HandlerAddress = 0x3ffe0648) + [!provide] PROVIDE (_Pri_5_HandlerAddress = 0x3ffe064c) + [!provide] PROVIDE (r_btdm_option_data = 0x3ffae6e0) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_alloc = 0x40010218) + [!provide] PROVIDE (r_bt_util_buf_acl_rx_free = 0x40010234) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_alloc = 0x40010268) + [!provide] PROVIDE (r_bt_util_buf_acl_tx_free = 0x40010280) + [!provide] PROVIDE (r_bt_util_buf_init = 0x400100e4) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_alloc = 0x400101d0) + [!provide] PROVIDE (r_bt_util_buf_lmp_tx_free = 0x400101ec) + [!provide] PROVIDE (r_bt_util_buf_sync_clear = 0x400103c8) + [!provide] PROVIDE (r_bt_util_buf_sync_init = 0x400102c4) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_alloc = 0x40010468) + [!provide] PROVIDE (r_bt_util_buf_sync_rx_free = 0x4001049c) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_alloc = 0x400103ec) + [!provide] PROVIDE (r_bt_util_buf_sync_tx_free = 0x40010428) + [!provide] PROVIDE (r_co_bdaddr_compare = 0x40014324) + [!provide] PROVIDE (r_co_bytes_to_string = 0x400142e4) + [!provide] PROVIDE (r_co_list_check_size_available = 0x400142c4) + [!provide] PROVIDE (r_co_list_extract = 0x4001404c) + [!provide] PROVIDE (r_co_list_extract_after = 0x40014118) + [!provide] PROVIDE (r_co_list_find = 0x4001419c) + [!provide] PROVIDE (r_co_list_init = 0x40013f14) + [!provide] PROVIDE (r_co_list_insert_after = 0x40014254) + [!provide] PROVIDE (r_co_list_insert_before = 0x40014200) + [!provide] PROVIDE (r_co_list_merge = 0x400141bc) + [!provide] PROVIDE (r_co_list_pool_init = 0x40013f30) + [!provide] PROVIDE (r_co_list_pop_front = 0x40014028) + [!provide] PROVIDE (r_co_list_push_back = 0x40013fb8) + [!provide] PROVIDE (r_co_list_push_front = 0x40013ff4) + [!provide] PROVIDE (r_co_list_size = 0x400142ac) + [!provide] PROVIDE (r_co_nb_good_channels = 0x40014360) + [!provide] PROVIDE (r_co_slot_to_duration = 0x40014348) + [!provide] PROVIDE (r_dbg_init = 0x40014394) + [!provide] PROVIDE (r_dbg_platform_reset_complete = 0x400143d0) + [!provide] PROVIDE (r_dbg_swdiag_init = 0x40014470) + [!provide] PROVIDE (r_dbg_swdiag_read = 0x400144a4) + [!provide] PROVIDE (r_dbg_swdiag_write = 0x400144d0) + [!provide] PROVIDE (r_E1 = 0x400108e8) + [!provide] PROVIDE (r_E21 = 0x40010968) + [!provide] PROVIDE (r_E22 = 0x400109b4) + [!provide] PROVIDE (r_E3 = 0x40010a58) + [!provide] PROVIDE (lm_n192_mod_mul = 0x40011dc0) + [!provide] PROVIDE (lm_n192_mod_add = 0x40011e9c) + [!provide] PROVIDE (lm_n192_mod_sub = 0x40011eec) + [!provide] PROVIDE (r_ea_alarm_clear = 0x40015ab4) + [!provide] PROVIDE (r_ea_alarm_set = 0x40015a10) + [!provide] PROVIDE (r_ea_elt_cancel = 0x400150d0) + [!provide] PROVIDE (r_ea_elt_create = 0x40015264) + [!provide] PROVIDE (r_ea_elt_insert = 0x400152a8) + [!provide] PROVIDE (r_ea_elt_remove = 0x400154f0) + [!provide] PROVIDE (r_ea_finetimer_isr = 0x400155d4) + [!provide] PROVIDE (r_ea_init = 0x40015228) + [!provide] PROVIDE (r_ea_interval_create = 0x4001555c) + [!provide] PROVIDE (r_ea_interval_delete = 0x400155a8) + [!provide] PROVIDE (r_ea_interval_duration_req = 0x4001597c) + [!provide] PROVIDE (r_ea_interval_insert = 0x4001557c) + [!provide] PROVIDE (r_ea_interval_remove = 0x40015590) + [!provide] PROVIDE (ea_conflict_check = 0x40014e9c) + [!provide] PROVIDE (ea_prog_timer = 0x40014f88) + [!provide] PROVIDE (r_ea_offset_req = 0x40015748) + [!provide] PROVIDE (r_ea_sleep_check = 0x40015928) + [!provide] PROVIDE (r_ea_sw_isr = 0x40015724) + [!provide] PROVIDE (r_ea_time_get_halfslot_rounded = 0x40015894) + [!provide] PROVIDE (r_ea_time_get_slot_rounded = 0x400158d4) + [!provide] PROVIDE (r_ecc_abort_key256_generation = 0x40017070) + [!provide] PROVIDE (r_ecc_generate_key256 = 0x40016e00) + [!provide] PROVIDE (r_ecc_gen_new_public_key = 0x400170c0) + [!provide] PROVIDE (r_ecc_gen_new_secret_key = 0x400170e4) + [!provide] PROVIDE (r_ecc_get_debug_Keys = 0x40017224) + [!provide] PROVIDE (r_ecc_init = 0x40016dbc) + [!provide] PROVIDE (ecc_point_multiplication_uint8_256 = 0x40016804) + [!provide] PROVIDE (RecvBuff = 0x3ffe009c) + [!provide] PROVIDE (r_em_buf_init = 0x4001729c) + [!provide] PROVIDE (r_em_buf_rx_buff_addr_get = 0x400173e8) + [!provide] PROVIDE (r_em_buf_rx_free = 0x400173c4) + [!provide] PROVIDE (r_em_buf_tx_buff_addr_get = 0x40017404) + [!provide] PROVIDE (r_em_buf_tx_free = 0x4001741c) + [!provide] PROVIDE (r_F1_256 = 0x400133e4) + [!provide] PROVIDE (r_F2_256 = 0x40013568) + [!provide] PROVIDE (r_F3_256 = 0x40013664) + [!provide] PROVIDE (RFPLL_ICP_TABLE = 0x3ffb8b7c) + [!provide] PROVIDE (r_G_256 = 0x40013470) + [!provide] PROVIDE (r_H3 = 0x40013760) + [!provide] PROVIDE (r_H4 = 0x40013830) + [!provide] PROVIDE (r_h4tl_init = 0x40017878) + [!provide] PROVIDE (r_h4tl_start = 0x40017924) + [!provide] PROVIDE (r_h4tl_stop = 0x40017934) + [!provide] PROVIDE (r_h4tl_write = 0x400178d0) + [!provide] PROVIDE (r_H5 = 0x400138dc) + [!provide] PROVIDE (r_hashConcat = 0x40013a38) + [!provide] PROVIDE (r_hci_acl_tx_data_alloc = 0x4001951c) + [!provide] PROVIDE (r_hci_acl_tx_data_received = 0x40019654) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_register = 0x40018900) + [!provide] PROVIDE (r_hci_bt_acl_bdaddr_unregister = 0x400189ac) + [!provide] PROVIDE (r_hci_bt_acl_conhdl_register = 0x4001895c) + [!provide] PROVIDE (r_hci_cmd_get_max_param_size = 0x400192d0) + [!provide] PROVIDE (r_hci_cmd_received = 0x400192f8) + [!provide] PROVIDE (r_hci_evt_filter_add = 0x40018a64) + [!provide] PROVIDE (r_hci_evt_mask_set = 0x400189e4) + [!provide] PROVIDE (r_hci_fc_acl_buf_size_set = 0x40017988) + [!provide] PROVIDE (r_hci_fc_acl_en = 0x400179d8) + [!provide] PROVIDE (r_hci_fc_acl_packet_sent = 0x40017a3c) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_acl_packets = 0x40017aa4) + [!provide] PROVIDE (r_hci_fc_check_host_available_nb_sync_packets = 0x40017ac8) + [!provide] PROVIDE (r_hci_fc_host_nb_acl_pkts_complete = 0x40017a6c) + [!provide] PROVIDE (r_hci_fc_host_nb_sync_pkts_complete = 0x40017a88) + [!provide] PROVIDE (r_hci_fc_init = 0x40017974) + [!provide] PROVIDE (r_hci_fc_sync_buf_size_set = 0x400179b0) + [!provide] PROVIDE (r_hci_fc_sync_en = 0x40017a30) + [!provide] PROVIDE (r_hci_fc_sync_packet_sent = 0x40017a54) + [!provide] PROVIDE (r_hci_init = 0x40018538) + [!provide] PROVIDE (r_hci_look_for_cmd_desc = 0x40018454) + [!provide] PROVIDE (r_hci_look_for_dbg_evt_desc = 0x400184c4) + [!provide] PROVIDE (r_hci_look_for_evt_desc = 0x400184a0) + [!provide] PROVIDE (r_hci_look_for_le_evt_desc = 0x400184e0) + [!provide] PROVIDE (r_hci_reset = 0x4001856c) + [!provide] PROVIDE (r_hci_send_2_host = 0x400185bc) + [!provide] PROVIDE (r_hci_sync_tx_data_alloc = 0x40019754) + [!provide] PROVIDE (r_hci_sync_tx_data_received = 0x400197c0) + [!provide] PROVIDE (r_hci_tl_init = 0x40019290) + [!provide] PROVIDE (r_hci_tl_send = 0x40019228) + [!provide] PROVIDE (r_hci_util_pack = 0x40019874) + [!provide] PROVIDE (r_hci_util_unpack = 0x40019998) + [!provide] PROVIDE (r_hci_voice_settings_get = 0x40018bdc) + [!provide] PROVIDE (r_hci_voice_settings_set = 0x40018be8) + [!provide] PROVIDE (r_HMAC = 0x40013968) + [!provide] PROVIDE (r_import_rf_phy_func = 0x3ffb8354) + [!provide] PROVIDE (r_import_rf_phy_func_p = 0x3ffafd64) + [!provide] PROVIDE (r_ip_funcs = 0x3ffae710) + [!provide] PROVIDE (r_ip_funcs_p = 0x3ffae70c) + [!provide] PROVIDE (r_ke_check_malloc = 0x40019de0) + [!provide] PROVIDE (r_ke_event_callback_set = 0x40019ba8) + [!provide] PROVIDE (r_ke_event_clear = 0x40019c2c) + [!provide] PROVIDE (r_ke_event_flush = 0x40019ccc) + [!provide] PROVIDE (r_ke_event_get = 0x40019c78) + [!provide] PROVIDE (r_ke_event_get_all = 0x40019cc0) + [!provide] PROVIDE (r_ke_event_init = 0x40019b90) + [!provide] PROVIDE (r_ke_event_schedule = 0x40019cdc) + [!provide] PROVIDE (r_ke_event_set = 0x40019be0) + [!provide] PROVIDE (r_ke_flush = 0x4001a374) + [!provide] PROVIDE (r_ke_free = 0x4001a014) + [!provide] PROVIDE (r_ke_get_max_mem_usage = 0x4001a1c8) + [!provide] PROVIDE (r_ke_get_mem_usage = 0x4001a1a0) + [!provide] PROVIDE (r_ke_init = 0x4001a318) + [!provide] PROVIDE (r_ke_is_free = 0x4001a184) + [!provide] PROVIDE (r_ke_malloc = 0x40019eb4) + [!provide] PROVIDE (r_ke_mem_init = 0x40019d3c) + [!provide] PROVIDE (r_ke_mem_is_empty = 0x40019d8c) + [!provide] PROVIDE (r_ke_msg_alloc = 0x4001a1e0) + [!provide] PROVIDE (r_ke_msg_dest_id_get = 0x4001a2e0) + [!provide] PROVIDE (r_ke_msg_discard = 0x4001a850) + [!provide] PROVIDE (r_ke_msg_forward = 0x4001a290) + [!provide] PROVIDE (r_ke_msg_forward_new_id = 0x4001a2ac) + [!provide] PROVIDE (r_ke_msg_free = 0x4001a2cc) + [!provide] PROVIDE (r_ke_msg_in_queue = 0x4001a2f8) + [!provide] PROVIDE (r_ke_msg_save = 0x4001a858) + [!provide] PROVIDE (r_ke_msg_send = 0x4001a234) + [!provide] PROVIDE (r_ke_msg_send_basic = 0x4001a26c) + [!provide] PROVIDE (r_ke_msg_src_id_get = 0x4001a2ec) + [!provide] PROVIDE (r_ke_queue_extract = 0x40055fd0) + [!provide] PROVIDE (r_ke_queue_insert = 0x40056020) + [!provide] PROVIDE (r_ke_sleep_check = 0x4001a3d8) + [!provide] PROVIDE (r_ke_state_get = 0x4001a7d8) + [!provide] PROVIDE (r_ke_state_set = 0x4001a6fc) + [!provide] PROVIDE (r_ke_stats_get = 0x4001a3f0) + [!provide] PROVIDE (r_ke_task_check = 0x4001a8a4) + [!provide] PROVIDE (r_ke_task_create = 0x4001a674) + [!provide] PROVIDE (r_ke_task_delete = 0x4001a6c0) + [!provide] PROVIDE (r_ke_task_init = 0x4001a650) + [!provide] PROVIDE (r_ke_task_msg_flush = 0x4001a860) + [!provide] PROVIDE (r_ke_timer_active = 0x4001ac08) + [!provide] PROVIDE (r_ke_timer_adjust_all = 0x4001ac30) + [!provide] PROVIDE (r_ke_timer_clear = 0x4001ab90) + [!provide] PROVIDE (r_ke_timer_init = 0x4001aa9c) + [!provide] PROVIDE (r_ke_timer_set = 0x4001aac0) + [!provide] PROVIDE (r_ke_timer_sleep_check = 0x4001ac50) + [!provide] PROVIDE (r_KPrimC = 0x40010ad4) + [!provide] PROVIDE (r_lb_clk_adj_activate = 0x4001ae70) + [!provide] PROVIDE (r_lb_clk_adj_id_get = 0x4001af14) + [!provide] PROVIDE (r_lb_clk_adj_period_update = 0x4001af20) + [!provide] PROVIDE (r_lb_init = 0x4001acd4) + [!provide] PROVIDE (r_lb_mst_key = 0x4001afc0) + [!provide] PROVIDE (r_lb_mst_key_cmp = 0x4001af74) + [!provide] PROVIDE (r_lb_mst_key_restart_enc = 0x4001b0d4) + [!provide] PROVIDE (r_lb_mst_start_act_bcst_enc = 0x4001b198) + [!provide] PROVIDE (r_lb_mst_stop_act_bcst_enc = 0x4001b24c) + [!provide] PROVIDE (r_lb_reset = 0x4001ad38) + [!provide] PROVIDE (r_lb_send_lmp = 0x4001adbc) + [!provide] PROVIDE (r_lb_send_pdu_clk_adj = 0x4001af3c) + [!provide] PROVIDE (r_lb_util_get_csb_mode = 0x4001ada4) + [!provide] PROVIDE (r_lb_util_get_nb_broadcast = 0x4001ad80) + [!provide] PROVIDE (r_lb_util_get_res_lt_addr = 0x4001ad98) + [!provide] PROVIDE (r_lb_util_set_nb_broadcast = 0x4001ad8c) + [!provide] PROVIDE (r_lc_afh_set = 0x4001cc74) + [!provide] PROVIDE (r_lc_afh_start = 0x4001d240) + [!provide] PROVIDE (r_lc_auth_cmp = 0x4001cd54) + [!provide] PROVIDE (r_lc_calc_link_key = 0x4001ce7c) + [!provide] PROVIDE (r_lc_chg_pkt_type_cmp = 0x4001d038) + [!provide] PROVIDE (r_lc_chg_pkt_type_cont = 0x4001cfbc) + [!provide] PROVIDE (r_lc_chg_pkt_type_retry = 0x4001d0ac) + [!provide] PROVIDE (r_lc_chk_to = 0x4001d2a8) + [!provide] PROVIDE (r_lc_cmd_stat_send = 0x4001c914) + [!provide] PROVIDE (r_lc_comb_key_svr = 0x4001d30c) + [!provide] PROVIDE (r_lc_con_cmp = 0x4001d44c) + [!provide] PROVIDE (r_lc_con_cmp_evt_send = 0x4001d4fc) + [!provide] PROVIDE (r_lc_conn_seq_done = 0x40021334) + [!provide] PROVIDE (r_lc_detach = 0x4002037c) + [!provide] PROVIDE (r_lc_dhkey = 0x4001d564) + [!provide] PROVIDE (r_lc_enc_cmp = 0x4001d8bc) + [!provide] PROVIDE (r_lc_enc_key_refresh = 0x4001d720) + [!provide] PROVIDE (r_lc_end_chk_colli = 0x4001d858) + [!provide] PROVIDE (r_lc_end_of_sniff_nego = 0x4001d9a4) + [!provide] PROVIDE (r_lc_enter_sniff_mode = 0x4001ddb8) + [!provide] PROVIDE (r_lc_epr_change_lk = 0x4001db38) + [!provide] PROVIDE (r_lc_epr_cmp = 0x4001da88) + [!provide] PROVIDE (r_lc_epr_resp = 0x4001e0b4) + [!provide] PROVIDE (r_lc_epr_rsw_cmp = 0x4001dd40) + [!provide] PROVIDE (r_lc_ext_feat = 0x40020d6c) + [!provide] PROVIDE (r_lc_feat = 0x40020984) + [!provide] PROVIDE (r_lc_hl_connect = 0x400209e8) + [!provide] PROVIDE (r_lc_init = 0x4001c948) + [!provide] PROVIDE (r_lc_init_calc_f3 = 0x4001deb0) + [!provide] PROVIDE (r_lc_initiator_epr = 0x4001e064) + [!provide] PROVIDE (r_lc_init_passkey_loop = 0x4001dfc0) + [!provide] PROVIDE (r_lc_init_start_mutual_auth = 0x4001df60) + [!provide] PROVIDE (r_lc_key_exch_end = 0x4001e140) + [!provide] PROVIDE (r_lc_legacy_pair = 0x4001e1c0) + [!provide] PROVIDE (r_lc_local_switch = 0x4001e22c) + [!provide] PROVIDE (r_lc_local_trans_mode = 0x4001e2e4) + [!provide] PROVIDE (r_lc_local_untrans_mode = 0x4001e3a0) + [!provide] PROVIDE (r_lc_loc_auth = 0x40020ecc) + [!provide] PROVIDE (r_lc_locepr_lkref = 0x4001d648) + [!provide] PROVIDE (r_lc_locepr_rsw = 0x4001d5d0) + [!provide] PROVIDE (r_lc_loc_sniff = 0x40020a6c) + [!provide] PROVIDE (r_lc_max_slot_mgt = 0x4001e410) + [!provide] PROVIDE (r_lc_mst_key = 0x4001e7c0) + [!provide] PROVIDE (r_lc_mst_qos_done = 0x4001ea80) + [!provide] PROVIDE (r_lc_mst_send_mst_key = 0x4001e8f4) + [!provide] PROVIDE (r_lc_mutual_auth_end = 0x4001e670) + [!provide] PROVIDE (r_lc_mutual_auth_end2 = 0x4001e4f4) + [!provide] PROVIDE (r_lc_packet_type = 0x40021038) + [!provide] PROVIDE (r_lc_pair = 0x40020ddc) + [!provide] PROVIDE (r_lc_pairing_cont = 0x4001eafc) + [!provide] PROVIDE (r_lc_passkey_comm = 0x4001ed20) + [!provide] PROVIDE (r_lc_prepare_all_links_for_clk_adj = 0x40021430) + [!provide] PROVIDE (r_lc_proc_rcv_dhkey = 0x4001edec) + [!provide] PROVIDE (r_lc_ptt = 0x4001ee2c) + [!provide] PROVIDE (r_lc_ptt_cmp = 0x4001eeec) + [!provide] PROVIDE (r_lc_qos_setup = 0x4001ef50) + [!provide] PROVIDE (r_lc_rd_rem_name = 0x4001efd0) + [!provide] PROVIDE (r_lc_release = 0x4001f8a8) + [!provide] PROVIDE (r_lc_rem_enc = 0x4001f124) + [!provide] PROVIDE (r_lc_rem_name_cont = 0x4001f290) + [!provide] PROVIDE (r_lc_rem_nego_trans_mode = 0x4001f1b4) + [!provide] PROVIDE (r_lc_rem_sniff = 0x40020ca4) + [!provide] PROVIDE (r_lc_rem_sniff_sub_rate = 0x40020b10) + [!provide] PROVIDE (r_lc_rem_switch = 0x4001f070) + [!provide] PROVIDE (r_lc_rem_trans_mode = 0x4001f314) + [!provide] PROVIDE (r_lc_rem_unsniff = 0x400207a0) + [!provide] PROVIDE (r_lc_rem_untrans_mode = 0x4001f36c) + [!provide] PROVIDE (r_lc_reset = 0x4001c99c) + [!provide] PROVIDE (r_lc_resp_auth = 0x4001f518) + [!provide] PROVIDE (r_lc_resp_calc_f3 = 0x4001f710) + [!provide] PROVIDE (r_lc_resp_num_comp = 0x40020074) + [!provide] PROVIDE (r_lc_resp_oob_nonce = 0x4001f694) + [!provide] PROVIDE (r_lc_resp_oob_wait_nonce = 0x4001f66c) + [!provide] PROVIDE (r_lc_resp_pair = 0x400208a4) + [!provide] PROVIDE (r_lc_resp_sec_auth = 0x4001f4a0) + [!provide] PROVIDE (r_lc_resp_wait_dhkey_cont = 0x4001f86c) + [!provide] PROVIDE (r_lc_restart_enc = 0x4001f8ec) + [!provide] PROVIDE (r_lc_restart_enc_cont = 0x4001f940) + [!provide] PROVIDE (r_lc_restore_afh_reporting = 0x4001f028) + [!provide] PROVIDE (r_lc_restore_to = 0x4001f9e0) + [!provide] PROVIDE (r_lc_ret_sniff_max_slot_chg = 0x4001fa30) + [!provide] PROVIDE (r_lc_rsw_clean_up = 0x4001dc70) + [!provide] PROVIDE (r_lc_rsw_done = 0x4001db94) + [!provide] PROVIDE (r_lc_sco_baseband_ack = 0x40022b00) + [!provide] PROVIDE (r_lc_sco_detach = 0x40021e40) + [!provide] PROVIDE (r_lc_sco_host_accept = 0x40022118) + [!provide] PROVIDE (r_lc_sco_host_reject = 0x400222b8) + [!provide] PROVIDE (r_lc_sco_host_request = 0x40021f4c) + [!provide] PROVIDE (r_lc_sco_host_request_disc = 0x4002235c) + [!provide] PROVIDE (r_lc_sco_init = 0x40021dc8) + [!provide] PROVIDE (r_lc_sco_peer_accept = 0x40022780) + [!provide] PROVIDE (r_lc_sco_peer_accept_disc = 0x40022a08) + [!provide] PROVIDE (r_lc_sco_peer_reject = 0x40022824) + [!provide] PROVIDE (r_lc_sco_peer_reject_disc = 0x40022a8c) + [!provide] PROVIDE (r_lc_sco_peer_request = 0x4002240c) + [!provide] PROVIDE (r_lc_sco_peer_request_disc = 0x400228ec) + [!provide] PROVIDE (r_lc_sco_release = 0x40021eec) + [!provide] PROVIDE (r_lc_sco_reset = 0x40021dfc) + [!provide] PROVIDE (r_lc_sco_timeout = 0x40022bd4) + [!provide] PROVIDE (r_lc_sec_auth_compute_sres = 0x4001f3ec) + [!provide] PROVIDE (r_lc_semi_key_cmp = 0x40020294) + [!provide] PROVIDE (r_lc_send_enc_chg_evt = 0x4002134c) + [!provide] PROVIDE (r_lc_send_enc_mode = 0x40020220) + [!provide] PROVIDE (r_lc_send_lmp = 0x4001c1a8) + [!provide] PROVIDE (r_lc_send_pdu_acc = 0x4001c21c) + [!provide] PROVIDE (r_lc_send_pdu_acc_ext4 = 0x4001c240) + [!provide] PROVIDE (r_lc_send_pdu_au_rand = 0x4001c308) + [!provide] PROVIDE (r_lc_send_pdu_auto_rate = 0x4001c5d0) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_ack = 0x4001c46c) + [!provide] PROVIDE (r_lc_send_pdu_clk_adj_req = 0x4001c494) + [!provide] PROVIDE (r_lc_send_pdu_comb_key = 0x4001c368) + [!provide] PROVIDE (r_lc_send_pdu_dhkey_chk = 0x4001c8e8) + [!provide] PROVIDE (r_lc_send_pdu_encaps_head = 0x4001c440) + [!provide] PROVIDE (r_lc_send_pdu_encaps_payl = 0x4001c410) + [!provide] PROVIDE (r_lc_send_pdu_enc_key_sz_req = 0x4001c670) + [!provide] PROVIDE (r_lc_send_pdu_esco_lk_rem_req = 0x4001c5a8) + [!provide] PROVIDE (r_lc_send_pdu_feats_ext_req = 0x4001c6ec) + [!provide] PROVIDE (r_lc_send_pdu_feats_res = 0x4001c694) + [!provide] PROVIDE (r_lc_send_pdu_in_rand = 0x4001c338) + [!provide] PROVIDE (r_lc_send_pdu_io_cap_res = 0x4001c72c) + [!provide] PROVIDE (r_lc_send_pdu_lsto = 0x4001c64c) + [!provide] PROVIDE (r_lc_send_pdu_max_slot = 0x4001c3c8) + [!provide] PROVIDE (r_lc_send_pdu_max_slot_req = 0x4001c3ec) + [!provide] PROVIDE (r_lc_send_pdu_not_acc = 0x4001c26c) + [!provide] PROVIDE (r_lc_send_pdu_not_acc_ext4 = 0x4001c294) + [!provide] PROVIDE (r_lc_send_pdu_num_comp_fail = 0x4001c770) + [!provide] PROVIDE (r_lc_send_pdu_pause_enc_aes_req = 0x4001c794) + [!provide] PROVIDE (r_lc_send_pdu_paus_enc_req = 0x4001c7c0) + [!provide] PROVIDE (r_lc_send_pdu_ptt_req = 0x4001c4c0) + [!provide] PROVIDE (r_lc_send_pdu_qos_req = 0x4001c82c) + [!provide] PROVIDE (r_lc_send_pdu_resu_enc_req = 0x4001c7e4) + [!provide] PROVIDE (r_lc_send_pdu_sco_lk_rem_req = 0x4001c580) + [!provide] PROVIDE (r_lc_send_pdu_set_afh = 0x4001c2c8) + [!provide] PROVIDE (r_lc_send_pdu_setup_cmp = 0x4001c808) + [!provide] PROVIDE (r_lc_send_pdu_slot_off = 0x4001c854) + [!provide] PROVIDE (r_lc_send_pdu_sniff_req = 0x4001c5f0) + [!provide] PROVIDE (r_lc_send_pdu_sp_cfm = 0x4001c518) + [!provide] PROVIDE (r_lc_send_pdu_sp_nb = 0x4001c4e8) + [!provide] PROVIDE (r_lc_send_pdu_sres = 0x4001c548) + [!provide] PROVIDE (r_lc_send_pdu_tim_acc = 0x4001c6cc) + [!provide] PROVIDE (r_lc_send_pdu_unit_key = 0x4001c398) + [!provide] PROVIDE (r_lc_send_pdu_unsniff_req = 0x4001c894) + [!provide] PROVIDE (r_lc_send_pdu_vers_req = 0x4001c8b4) + [!provide] PROVIDE (r_lc_skip_hl_oob_req = 0x400201bc) + [!provide] PROVIDE (r_lc_sniff_init = 0x40022cac) + [!provide] PROVIDE (r_lc_sniff_max_slot_chg = 0x40020590) + [!provide] PROVIDE (r_lc_sniff_reset = 0x40022cc8) + [!provide] PROVIDE (r_lc_sniff_slot_unchange = 0x40021100) + [!provide] PROVIDE (r_lc_sniff_sub_mode = 0x400204fc) + [!provide] PROVIDE (r_lc_sp_end = 0x400213a8) + [!provide] PROVIDE (r_lc_sp_fail = 0x40020470) + [!provide] PROVIDE (r_lc_sp_oob_tid_fail = 0x400204cc) + [!provide] PROVIDE (r_lc_ssr_nego = 0x4002125c) + [!provide] PROVIDE (r_lc_start = 0x4001ca28) + [!provide] PROVIDE (r_lc_start_enc = 0x4001fb28) + [!provide] PROVIDE (r_lc_start_enc_key_size = 0x4001fd9c) + [!provide] PROVIDE (r_lc_start_key_exch = 0x4001fe10) + [!provide] PROVIDE (r_lc_start_lmp_to = 0x4001fae8) + [!provide] PROVIDE (r_lc_start_oob = 0x4001fffc) + [!provide] PROVIDE (r_lc_start_passkey = 0x4001feac) + [!provide] PROVIDE (r_lc_start_passkey_loop = 0x4001ff88) + [!provide] PROVIDE (r_lc_stop_afh_report = 0x40020184) + [!provide] PROVIDE (r_lc_stop_enc = 0x40020110) + [!provide] PROVIDE (r_lc_switch_cmp = 0x40020448) + [!provide] PROVIDE (r_lc_unit_key_svr = 0x400206d8) + [!provide] PROVIDE (r_lc_unsniff = 0x40020c50) + [!provide] PROVIDE (r_lc_unsniff_cmp = 0x40020810) + [!provide] PROVIDE (r_lc_unsniff_cont = 0x40020750) + [!provide] PROVIDE (r_lc_upd_to = 0x4002065c) + [!provide] PROVIDE (r_lc_util_convert_pref_rate_to_packet_type = 0x4002f9b0) + [!provide] PROVIDE (r_lc_util_get_max_packet_size = 0x4002f4ac) + [!provide] PROVIDE (r_lc_util_get_offset_clke = 0x4002f538) + [!provide] PROVIDE (r_lc_util_get_offset_clkn = 0x4002f51c) + [!provide] PROVIDE (r_lc_util_set_loc_trans_coll = 0x4002f500) + [!provide] PROVIDE (r_lc_version = 0x40020a30) + [!provide] PROVIDE (lc_set_encap_pdu_data_p192 = 0x4002e4c8) + [!provide] PROVIDE (lc_set_encap_pdu_data_p256 = 0x4002e454) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lm_get_auth_method = 0x40023420) + [!provide] PROVIDE (lmp_accepted_ext_handler = 0x40027290) + [!provide] PROVIDE (lmp_not_accepted_ext_handler = 0x40029c54) + [!provide] PROVIDE (lmp_clk_adj_handler = 0x40027468) + [!provide] PROVIDE (lmp_clk_adj_ack_handler = 0x400274f4) + [!provide] PROVIDE (lmp_clk_adj_req_handler = 0x4002751c) + [!provide] PROVIDE (lmp_feats_res_ext_handler = 0x4002cac4) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (lmp_pkt_type_tbl_req_handler = 0x40027574) + [!provide] PROVIDE (lmp_esco_link_req_handler = 0x40027610) + [!provide] PROVIDE (lmp_rmv_esco_link_req_handler = 0x400276e8) + [!provide] PROVIDE (lmp_ch_class_req_handler = 0x40027730) + [!provide] PROVIDE (lmp_ch_class_handler = 0x4002ca18) + [!provide] PROVIDE (lmp_ssr_req_handler = 0x4002780c) + [!provide] PROVIDE (lmp_ssr_res_handler = 0x40027900) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_pause_enc_req_handler = 0x4002df90) + [!provide] PROVIDE (lmp_resume_enc_req_handler = 0x4002e084) + [!provide] PROVIDE (lmp_num_comparison_fail_handler = 0x40027a74) + [!provide] PROVIDE (lmp_passkey_fail_handler = 0x40027aec) + [!provide] PROVIDE (lmp_keypress_notif_handler = 0x4002c5c8) + [!provide] PROVIDE (lmp_pwr_ctrl_req_handler = 0x400263bc) + [!provide] PROVIDE (lmp_pwr_ctrl_res_handler = 0x40026480) + [!provide] PROVIDE (lmp_auto_rate_handler = 0x40026548) + [!provide] PROVIDE (lmp_pref_rate_handler = 0x4002657c) + [!provide] PROVIDE (lmp_name_req_handler = 0x40025050) + [!provide] PROVIDE (lmp_name_res_handler = 0x400250bc) + [!provide] PROVIDE (lmp_not_accepted_handler = 0x400251d0) + [!provide] PROVIDE (lmp_accepted_handler = 0x4002e894) + [!provide] PROVIDE (lmp_clk_off_req_handler = 0x40025a44) + [!provide] PROVIDE (lmp_clk_off_res_handler = 0x40025ab8) + [!provide] PROVIDE (lmp_detach_handler = 0x40025b74) + [!provide] PROVIDE (lmp_tempkey_handler = 0x4002b6b0) + [!provide] PROVIDE (lmp_temprand_handler = 0x4002b74c) + [!provide] PROVIDE (lmp_sres_handler = 0x4002b840) + [!provide] PROVIDE (lmp_aurand_handler = 0x4002bda0) + [!provide] PROVIDE (lmp_unitkey_handler = 0x4002c13c) + [!provide] PROVIDE (lmp_combkey_handler = 0x4002c234) + [!provide] PROVIDE (lmp_inrand_handler = 0x4002c414) + [!provide] PROVIDE (lmp_oob_fail_handler = 0x40027b84) + [!provide] PROVIDE (lmp_ping_req_handler = 0x40027c08) + [!provide] PROVIDE (lmp_ping_res_handler = 0x40027c5c) + [!provide] PROVIDE (lmp_enc_mode_req_handler = 0x40025c60) + [!provide] PROVIDE (lmp_enc_key_size_req_handler = 0x40025e54) + [!provide] PROVIDE (lmp_switch_req_handler = 0x40025f84) + [!provide] PROVIDE (lmp_start_enc_req_handler = 0x4002e124) + [!provide] PROVIDE (lmp_stop_enc_req_handler = 0x4002de30) + [!provide] PROVIDE (lmp_sniff_req_handler = 0x400260c8) + [!provide] PROVIDE (lmp_unsniff_req_handler = 0x400261e0) + [!provide] PROVIDE (lmp_incr_pwr_req_handler = 0x4002629c) + [!provide] PROVIDE (lmp_decr_pwr_req_handler = 0x400262f8) + [!provide] PROVIDE (lmp_max_pwr_handler = 0x40026354) + [!provide] PROVIDE (lmp_min_pwr_handler = 0x40026388) + [!provide] PROVIDE (lmp_ver_req_handler = 0x400265f0) + [!provide] PROVIDE (lmp_ver_res_handler = 0x40026670) + [!provide] PROVIDE (lmp_qos_handler = 0x40026790) + [!provide] PROVIDE (lmp_qos_req_handler = 0x40026844) + [!provide] PROVIDE (lmp_sco_link_req_handler = 0x40026930) + [!provide] PROVIDE (lmp_rmv_sco_link_req_handler = 0x40026a10) + [!provide] PROVIDE (lmp_max_slot_handler = 0x40026a54) + [!provide] PROVIDE (lmp_max_slot_req_handler = 0x40026aac) + [!provide] PROVIDE (lmp_timing_accu_req_handler = 0x40026b54) + [!provide] PROVIDE (lmp_timing_accu_res_handler = 0x40026bcc) + [!provide] PROVIDE (lmp_setup_cmp_handler = 0x40026c84) + [!provide] PROVIDE (lmp_feats_res_handler = 0x4002b548) + [!provide] PROVIDE (lmp_feats_req_handler = 0x4002b620) + [!provide] PROVIDE (lmp_host_con_req_handler = 0x4002b3d8) + [!provide] PROVIDE (lmp_use_semi_perm_key_handler = 0x4002b4c4) + [!provide] PROVIDE (lmp_slot_off_handler = 0x40026cc8) + [!provide] PROVIDE (lmp_page_mode_req_handler = 0x40026d0c) + [!provide] PROVIDE (lmp_page_scan_mode_req_handler = 0x40026d4c) + [!provide] PROVIDE (lmp_supv_to_handler = 0x40026d94) + [!provide] PROVIDE (lmp_test_activate_handler = 0x40026e7c) + [!provide] PROVIDE (lmp_test_ctrl_handler = 0x40026ee4) + [!provide] PROVIDE (lmp_enc_key_size_mask_req_handler = 0x40027038) + [!provide] PROVIDE (lmp_enc_key_size_mask_res_handler = 0x400270a4) + [!provide] PROVIDE (lmp_set_afh_handler = 0x4002b2e4) + [!provide] PROVIDE (lmp_encaps_hdr_handler = 0x40027120) + [!provide] PROVIDE (lmp_encaps_payl_handler = 0x4002e590) + [!provide] PROVIDE (lmp_sp_nb_handler = 0x4002acf0) + [!provide] PROVIDE (lmp_sp_cfm_handler = 0x4002b170) + [!provide] PROVIDE (lmp_dhkey_chk_handler = 0x4002ab48) + [!provide] PROVIDE (lmp_pause_enc_aes_req_handler = 0x400279a4) + [!provide] PROVIDE (lmp_io_cap_res_handler = 0x4002c670) + [!provide] PROVIDE (lmp_io_cap_req_handler = 0x4002c7a4) + [!provide] PROVIDE (lc_cmd_cmp_bd_addr_send = 0x4002cec4) + [!provide] PROVIDE (ld_acl_tx_packet_type_select = 0x4002fb40) + [!provide] PROVIDE (ld_acl_sched = 0x40033268) + [!provide] PROVIDE (ld_acl_sniff_sched = 0x4003340c) + [!provide] PROVIDE (ld_acl_sniff_exit = 0x400312b4) + [!provide] PROVIDE (ld_sco_evt_canceled_cbk = 0x40031e18) + [!provide] PROVIDE (ld_acl_rx = 0x4003274c) + [!provide] PROVIDE (ld_acl_tx = 0x4002ffdc) + [!provide] PROVIDE (ld_acl_rx_sync = 0x4002fbec) + [!provide] PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + [!provide] PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + [!provide] PROVIDE (ld_sco_modify = 0x40031778) + [!provide] PROVIDE (lm_cmd_cmp_send = 0x40051838) + [!provide] PROVIDE (ld_sco_resched_cbk = 0x40031a10) + [!provide] PROVIDE (ld_sco_frm_cbk = 0x400349dc) + [!provide] PROVIDE (ld_sco_evt_start_cbk = 0x40031afc) + [!provide] PROVIDE (ld_sco_evt_stop_cbk = 0x40031d78) + [!provide] PROVIDE (ld_acl_rsw_evt_start_cbk = 0x40031154) + [!provide] PROVIDE (ld_acl_sco_rsvd_check = 0x4002fa94) + [!provide] PROVIDE (ld_acl_sniff_frm_cbk = 0x4003482c) + [!provide] PROVIDE (ld_inq_end = 0x4003ab48) + [!provide] PROVIDE (ld_inq_sched = 0x4003aba4) + [!provide] PROVIDE (ld_inq_frm_cbk = 0x4003ae4c) + [!provide] PROVIDE (ld_pscan_frm_cbk = 0x4003ebe4) + [!provide] PROVIDE (r_ld_acl_active_hop_types_get = 0x40036e10) + [!provide] PROVIDE (r_ld_acl_afh_confirm = 0x40036d40) + [!provide] PROVIDE (r_ld_acl_afh_prepare = 0x40036c84) + [!provide] PROVIDE (r_ld_acl_afh_set = 0x40036b60) + [!provide] PROVIDE (r_ld_acl_allowed_tx_packet_types_set = 0x40036810) + [!provide] PROVIDE (r_ld_acl_bcst_rx_dec = 0x40036394) + [!provide] PROVIDE (r_ld_acl_bit_off_get = 0x40036b18) + [!provide] PROVIDE (r_ld_acl_clk_adj_set = 0x40036a00) + [!provide] PROVIDE (r_ld_acl_clk_off_get = 0x40036b00) + [!provide] PROVIDE (r_ld_acl_clk_set = 0x40036950) + [!provide] PROVIDE (r_ld_acl_clock_offset_get = 0x400364c0) + [!provide] PROVIDE (r_ld_acl_current_tx_power_get = 0x400368f0) + [!provide] PROVIDE (r_ld_acl_data_flush = 0x400357bc) + [!provide] PROVIDE (r_ld_acl_data_tx = 0x4003544c) + [!provide] PROVIDE (r_ld_acl_edr_set = 0x4003678c) + [!provide] PROVIDE (r_ld_acl_enc_key_load = 0x40036404) + [!provide] PROVIDE (r_ld_acl_flow_off = 0x40035400) + [!provide] PROVIDE (r_ld_acl_flow_on = 0x4003541c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_get = 0x40035f9c) + [!provide] PROVIDE (r_ld_acl_flush_timeout_set = 0x40035fe0) + [!provide] PROVIDE (r_ld_acl_init = 0x40034d08) + [!provide] PROVIDE (r_ld_acl_lmp_flush = 0x40035d80) + [!provide] PROVIDE (r_ld_acl_lmp_tx = 0x40035b34) + [!provide] PROVIDE (r_ld_acl_lsto_get = 0x400366b4) + [!provide] PROVIDE (r_ld_acl_lsto_set = 0x400366f8) + [!provide] PROVIDE (r_ld_acl_reset = 0x40034d24) + [!provide] PROVIDE (r_ld_acl_role_get = 0x40036b30) + [!provide] PROVIDE (r_ld_acl_rssi_delta_get = 0x40037028) + [!provide] PROVIDE (r_ld_acl_rsw_req = 0x40035e74) + [!provide] PROVIDE (r_ld_acl_rx_enc = 0x40036344) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_get = 0x40036e58) + [!provide] PROVIDE (r_ld_acl_rx_max_slot_set = 0x40036ea0) + [!provide] PROVIDE (r_ld_acl_slot_offset_get = 0x4003653c) + [!provide] PROVIDE (r_ld_acl_slot_offset_set = 0x40036658) + [!provide] PROVIDE (r_ld_acl_sniff = 0x4003617c) + [!provide] PROVIDE (r_ld_acl_sniff_trans = 0x400360a8) + [!provide] PROVIDE (r_ld_acl_ssr_set = 0x40036274) + [!provide] PROVIDE (r_ld_acl_start = 0x40034ddc) + [!provide] PROVIDE (r_ld_acl_stop = 0x4003532c) + [!provide] PROVIDE (r_ld_acl_test_mode_set = 0x40036f24) + [!provide] PROVIDE (r_ld_acl_timing_accuracy_set = 0x4003673c) + [!provide] PROVIDE (r_ld_acl_t_poll_get = 0x40036024) + [!provide] PROVIDE (r_ld_acl_t_poll_set = 0x40036068) + [!provide] PROVIDE (r_ld_acl_tx_enc = 0x400362f8) + [!provide] PROVIDE (ld_acl_frm_cbk = 0x40034414) + [!provide] PROVIDE (ld_acl_rsw_end = 0x40032bc0) + [!provide] PROVIDE (ld_acl_end = 0x40033140) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (r_ld_acl_unsniff = 0x400361e0) + [!provide] PROVIDE (r_ld_active_check = 0x4003cac4) + [!provide] PROVIDE (r_ld_afh_ch_assess_data_get = 0x4003caec) + [!provide] PROVIDE (r_ld_bcst_acl_data_tx = 0x40038d3c) + [!provide] PROVIDE (r_ld_bcst_acl_init = 0x40038bd0) + [!provide] PROVIDE (r_ld_bcst_acl_reset = 0x40038bdc) + [!provide] PROVIDE (r_ld_bcst_acl_start = 0x4003882c) + [!provide] PROVIDE (r_ld_bcst_afh_update = 0x40038f3c) + [!provide] PROVIDE (r_ld_bcst_enc_key_load = 0x4003906c) + [!provide] PROVIDE (r_ld_bcst_lmp_tx = 0x40038bf8) + [!provide] PROVIDE (r_ld_bcst_tx_enc = 0x40038ff8) + [!provide] PROVIDE (r_ld_bd_addr_get = 0x4003ca20) + [!provide] PROVIDE (r_ld_channel_assess = 0x4003c184) + [!provide] PROVIDE (r_ld_class_of_dev_get = 0x4003ca34) + [!provide] PROVIDE (r_ld_class_of_dev_set = 0x4003ca50) + [!provide] PROVIDE (r_ld_csb_rx_afh_update = 0x40039af4) + [!provide] PROVIDE (r_ld_csb_rx_init = 0x40039690) + [!provide] PROVIDE (r_ld_csb_rx_reset = 0x4003969c) + [!provide] PROVIDE (r_ld_csb_rx_start = 0x4003972c) + [!provide] PROVIDE (r_ld_csb_rx_stop = 0x40039bb8) + [!provide] PROVIDE (r_ld_csb_tx_afh_update = 0x4003a5fc) + [!provide] PROVIDE (r_ld_csb_tx_clr_data = 0x4003a71c) + [!provide] PROVIDE (r_ld_csb_tx_dis = 0x4003a5e8) + [!provide] PROVIDE (r_ld_csb_tx_en = 0x4003a1c0) + [!provide] PROVIDE (r_ld_csb_tx_init = 0x4003a0e8) + [!provide] PROVIDE (r_ld_csb_tx_reset = 0x4003a0f8) + [!provide] PROVIDE (r_ld_csb_tx_set_data = 0x4003a6c0) + [!provide] PROVIDE (ld_csb_tx_sched = 0x40039c1c) + [!provide] PROVIDE (ld_csb_tx_evt_start_cbk = 0x40039d0c) + [!provide] PROVIDE (ld_csb_tx_evt_canceled_cbk = 0x40039ee4) + [!provide] PROVIDE (r_ld_fm_clk_isr = 0x4003a7a8) + [!provide] PROVIDE (r_ld_fm_frame_isr = 0x4003a82c) + [!provide] PROVIDE (r_ld_fm_init = 0x4003a760) + [!provide] PROVIDE (r_ld_fm_prog_check = 0x4003ab28) + [!provide] PROVIDE (r_ld_fm_prog_disable = 0x4003a984) + [!provide] PROVIDE (r_ld_fm_prog_enable = 0x4003a944) + [!provide] PROVIDE (r_ld_fm_prog_push = 0x4003a9d4) + [!provide] PROVIDE (r_ld_fm_reset = 0x4003a794) + [!provide] PROVIDE (r_ld_fm_rx_isr = 0x4003a7f4) + [!provide] PROVIDE (r_ld_fm_sket_isr = 0x4003a8a4) + [!provide] PROVIDE (r_ld_init = 0x4003c294) + [!provide] PROVIDE (r_ld_inq_init = 0x4003b15c) + [!provide] PROVIDE (r_ld_inq_reset = 0x4003b168) + [!provide] PROVIDE (r_ld_inq_start = 0x4003b1f0) + [!provide] PROVIDE (r_ld_inq_stop = 0x4003b4f0) + [!provide] PROVIDE (r_ld_iscan_eir_get = 0x4003c118) + [!provide] PROVIDE (r_ld_iscan_eir_set = 0x4003bfa0) + [!provide] PROVIDE (r_ld_iscan_init = 0x4003b9f0) + [!provide] PROVIDE (r_ld_iscan_reset = 0x4003ba14) + [!provide] PROVIDE (r_ld_iscan_restart = 0x4003ba44) + [!provide] PROVIDE (r_ld_iscan_start = 0x4003bb28) + [!provide] PROVIDE (r_ld_iscan_stop = 0x4003bf1c) + [!provide] PROVIDE (r_ld_iscan_tx_pwr_get = 0x4003c138) + [!provide] PROVIDE (r_ld_page_init = 0x4003d808) + [!provide] PROVIDE (r_ld_page_reset = 0x4003d814) + [!provide] PROVIDE (r_ld_page_start = 0x4003d848) + [!provide] PROVIDE (r_ld_page_stop = 0x4003da54) + [!provide] PROVIDE (ld_page_frm_cbk = 0x4003d280) + [!provide] PROVIDE (ld_page_em_init = 0x4003cb34) + [!provide] PROVIDE (r_ld_pca_coarse_clock_adjust = 0x4003e324) + [!provide] PROVIDE (r_ld_pca_init = 0x4003deb4) + [!provide] PROVIDE (r_ld_pca_initiate_clock_dragging = 0x4003e4ac) + [!provide] PROVIDE (r_ld_pca_local_config = 0x4003df6c) + [!provide] PROVIDE (r_ld_pca_mws_frame_sync = 0x4003e104) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_gt = 0x4003e278) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_lt = 0x4003e280) + [!provide] PROVIDE (r_ld_pca_reporting_enable = 0x4003e018) + [!provide] PROVIDE (r_ld_pca_reset = 0x4003df0c) + [!provide] PROVIDE (r_ld_pca_update_target_offset = 0x4003e050) + [!provide] PROVIDE (r_ld_pscan_evt_handler = 0x4003f238) + [!provide] PROVIDE (r_ld_pscan_init = 0x4003f474) + [!provide] PROVIDE (r_ld_pscan_reset = 0x4003f498) + [!provide] PROVIDE (r_ld_pscan_restart = 0x4003f4b8) + [!provide] PROVIDE (r_ld_pscan_start = 0x4003f514) + [!provide] PROVIDE (r_ld_pscan_stop = 0x4003f618) + [!provide] PROVIDE (r_ld_read_clock = 0x4003c9e4) + [!provide] PROVIDE (r_ld_reset = 0x4003c714) + [!provide] PROVIDE (r_ld_sched_acl_add = 0x4003f978) + [!provide] PROVIDE (r_ld_sched_acl_remove = 0x4003f99c) + [!provide] PROVIDE (r_ld_sched_compute = 0x4003f6f8) + [!provide] PROVIDE (r_ld_sched_init = 0x4003f7ac) + [!provide] PROVIDE (r_ld_sched_inq_add = 0x4003f8a8) + [!provide] PROVIDE (r_ld_sched_inq_remove = 0x4003f8d0) + [!provide] PROVIDE (r_ld_sched_iscan_add = 0x4003f7e8) + [!provide] PROVIDE (r_ld_sched_iscan_remove = 0x4003f808) + [!provide] PROVIDE (r_ld_sched_page_add = 0x4003f910) + [!provide] PROVIDE (r_ld_sched_page_remove = 0x4003f938) + [!provide] PROVIDE (r_ld_sched_pscan_add = 0x4003f828) + [!provide] PROVIDE (r_ld_sched_pscan_remove = 0x4003f848) + [!provide] PROVIDE (r_ld_sched_reset = 0x4003f7d4) + [!provide] PROVIDE (r_ld_sched_sco_add = 0x4003fa4c) + [!provide] PROVIDE (r_ld_sched_sco_remove = 0x4003fa9c) + [!provide] PROVIDE (r_ld_sched_sniff_add = 0x4003f9c4) + [!provide] PROVIDE (r_ld_sched_sniff_remove = 0x4003fa0c) + [!provide] PROVIDE (r_ld_sched_sscan_add = 0x4003f868) + [!provide] PROVIDE (r_ld_sched_sscan_remove = 0x4003f888) + [!provide] PROVIDE (r_ld_sco_audio_isr = 0x40037cc8) + [!provide] PROVIDE (r_ld_sco_data_tx = 0x40037ee8) + [!provide] PROVIDE (r_ld_sco_start = 0x40037110) + [!provide] PROVIDE (r_ld_sco_stop = 0x40037c40) + [!provide] PROVIDE (r_ld_sco_update = 0x40037a74) + [!provide] PROVIDE (r_ld_sscan_activated = 0x4004031c) + [!provide] PROVIDE (r_ld_sscan_init = 0x400402f0) + [!provide] PROVIDE (r_ld_sscan_reset = 0x400402fc) + [!provide] PROVIDE (r_ld_sscan_start = 0x40040384) + [!provide] PROVIDE (r_ld_strain_init = 0x400409f4) + [!provide] PROVIDE (r_ld_strain_reset = 0x40040a00) + [!provide] PROVIDE (r_ld_strain_start = 0x40040a8c) + [!provide] PROVIDE (r_ld_strain_stop = 0x40040df0) + [!provide] PROVIDE (r_ld_timing_accuracy_get = 0x4003caac) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_get = 0x4004131c) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_set = 0x40041308) + [!provide] PROVIDE (r_ld_util_bch_create = 0x40040fcc) + [!provide] PROVIDE (r_ld_util_fhs_pk = 0x400411c8) + [!provide] PROVIDE (r_ld_util_fhs_unpk = 0x40040e54) + [!provide] PROVIDE (r_ld_util_stp_pk = 0x400413f4) + [!provide] PROVIDE (r_ld_util_stp_unpk = 0x40041324) + [!provide] PROVIDE (r_ld_version_get = 0x4003ca6c) + [!provide] PROVIDE (r_ld_wlcoex_set = 0x4003caf8) + [!provide] PROVIDE (r_llc_ch_assess_get_current_ch_map = 0x40041574) + [!provide] PROVIDE (r_llc_ch_assess_get_local_ch_map = 0x4004150c) + [!provide] PROVIDE (r_llc_ch_assess_local = 0x40041494) + [!provide] PROVIDE (r_llc_ch_assess_merge_ch = 0x40041588) + [!provide] PROVIDE (r_llc_ch_assess_reass_ch = 0x400415c0) + [!provide] PROVIDE (r_llc_common_cmd_complete_send = 0x40044eac) + [!provide] PROVIDE (r_llc_common_cmd_status_send = 0x40044ee0) + [!provide] PROVIDE (r_llc_common_enc_change_evt_send = 0x40044f6c) + [!provide] PROVIDE (r_llc_common_enc_key_ref_comp_evt_send = 0x40044f38) + [!provide] PROVIDE (r_llc_common_flush_occurred_send = 0x40044f0c) + [!provide] PROVIDE (r_llc_common_nb_of_pkt_comp_evt_send = 0x40045000) + [!provide] PROVIDE (r_llc_con_update_complete_send = 0x40044d68) + [!provide] PROVIDE (r_llc_con_update_finished = 0x4004518c) + [!provide] PROVIDE (r_llc_con_update_ind = 0x40045038) + [!provide] PROVIDE (r_llc_discon_event_complete_send = 0x40044a30) + [!provide] PROVIDE (r_llc_end_evt_defer = 0x40046330) + [!provide] PROVIDE (r_llc_feats_rd_event_send = 0x40044e0c) + [!provide] PROVIDE (r_llc_init = 0x40044778) + [!provide] PROVIDE (r_llc_le_con_cmp_evt_send = 0x40044a78) + [!provide] PROVIDE (r_llc_llcp_ch_map_update_pdu_send = 0x40043f94) + [!provide] PROVIDE (r_llc_llcp_con_param_req_pdu_send = 0x400442fc) + [!provide] PROVIDE (r_llc_llcp_con_param_rsp_pdu_send = 0x40044358) + [!provide] PROVIDE (r_llc_llcp_con_update_pdu_send = 0x400442c4) + [!provide] PROVIDE (r_llc_llcp_enc_req_pdu_send = 0x40044064) + [!provide] PROVIDE (r_llc_llcp_enc_rsp_pdu_send = 0x40044160) + [!provide] PROVIDE (r_llc_llcp_feats_req_pdu_send = 0x400443b4) + [!provide] PROVIDE (r_llc_llcp_feats_rsp_pdu_send = 0x400443f0) + [!provide] PROVIDE (r_llc_llcp_get_autorize = 0x4004475c) + [!provide] PROVIDE (r_llc_llcp_length_req_pdu_send = 0x40044574) + [!provide] PROVIDE (r_llc_llcp_length_rsp_pdu_send = 0x400445ac) + [!provide] PROVIDE (r_llc_llcp_pause_enc_req_pdu_send = 0x40043fd8) + [!provide] PROVIDE (r_llc_llcp_pause_enc_rsp_pdu_send = 0x40044010) + [!provide] PROVIDE (r_llc_llcp_ping_req_pdu_send = 0x4004454c) + [!provide] PROVIDE (r_llc_llcp_ping_rsp_pdu_send = 0x40044560) + [!provide] PROVIDE (r_llc_llcp_recv_handler = 0x40044678) + [!provide] PROVIDE (r_llc_llcp_reject_ind_pdu_send = 0x4004425c) + [!provide] PROVIDE (r_llc_llcp_start_enc_req_pdu_send = 0x4004441c) + [!provide] PROVIDE (r_llc_llcp_start_enc_rsp_pdu_send = 0x400441f8) + [!provide] PROVIDE (r_llc_llcp_terminate_ind_pdu_send = 0x400444b0) + [!provide] PROVIDE (r_llc_llcp_tester_send = 0x400445e4) + [!provide] PROVIDE (r_llc_llcp_unknown_rsp_send_pdu = 0x40044534) + [!provide] PROVIDE (r_llc_llcp_version_ind_pdu_send = 0x40043f6c) + [!provide] PROVIDE (r_llc_lsto_con_update = 0x40045098) + [!provide] PROVIDE (r_llc_ltk_req_send = 0x40044dc0) + [!provide] PROVIDE (r_llc_map_update_finished = 0x40045260) + [!provide] PROVIDE (r_llc_map_update_ind = 0x400450f0) + [!provide] PROVIDE (r_llc_pdu_acl_tx_ack_defer = 0x400464dc) + [!provide] PROVIDE (r_llc_pdu_defer = 0x40046528) + [!provide] PROVIDE (r_llc_pdu_llcp_tx_ack_defer = 0x400463ac) + [!provide] PROVIDE (r_llc_reset = 0x400447b8) + [!provide] PROVIDE (r_llc_start = 0x400447f4) + [!provide] PROVIDE (r_llc_stop = 0x400449ac) + [!provide] PROVIDE (r_llc_util_bw_mgt = 0x4004629c) + [!provide] PROVIDE (r_llc_util_clear_operation_ptr = 0x40046234) + [!provide] PROVIDE (r_llc_util_dicon_procedure = 0x40046130) + [!provide] PROVIDE (r_llc_util_get_free_conhdl = 0x400460c8) + [!provide] PROVIDE (r_llc_util_get_nb_active_link = 0x40046100) + [!provide] PROVIDE (r_llc_util_set_auth_payl_to_margin = 0x400461f4) + [!provide] PROVIDE (r_llc_util_set_llcp_discard_enable = 0x400461c8) + [!provide] PROVIDE (r_llc_util_update_channel_map = 0x400461ac) + [!provide] PROVIDE (r_llc_version_rd_event_send = 0x40044e60) + [!provide] PROVIDE (r_lld_adv_start = 0x40048b38) + [!provide] PROVIDE (r_lld_adv_stop = 0x40048ea0) + [!provide] PROVIDE (r_lld_ch_map_ind = 0x4004a2f4) + [!provide] PROVIDE (r_lld_con_param_req = 0x40049f0c) + [!provide] PROVIDE (r_lld_con_param_rsp = 0x40049e00) + [!provide] PROVIDE (r_lld_con_start = 0x400491f8) + [!provide] PROVIDE (r_lld_con_stop = 0x40049fdc) + [!provide] PROVIDE (r_lld_con_update_after_param_req = 0x40049bcc) + [!provide] PROVIDE (r_lld_con_update_ind = 0x4004a30c) + [!provide] PROVIDE (r_lld_con_update_req = 0x40049b60) + [!provide] PROVIDE (r_lld_core_reset = 0x40048a9c) + [!provide] PROVIDE (r_lld_crypt_isr = 0x4004a324) + [!provide] PROVIDE (r_lld_evt_adv_create = 0x400481f4) + [!provide] PROVIDE (r_lld_evt_canceled = 0x400485c8) + [!provide] PROVIDE (r_lld_evt_channel_next = 0x40046aac) + [!provide] PROVIDE (r_lld_evt_deffered_elt_handler = 0x400482bc) + [!provide] PROVIDE (r_lld_evt_delete_elt_handler = 0x40046974) + [!provide] PROVIDE (r_lld_evt_delete_elt_push = 0x40046a3c) + [!provide] PROVIDE (r_lld_evt_drift_compute = 0x40047670) + [!provide] PROVIDE (r_lld_evt_elt_delete = 0x40047538) + [!provide] PROVIDE (r_lld_evt_elt_insert = 0x400474c8) + [!provide] PROVIDE (r_lld_evt_end = 0x400483e8) + [!provide] PROVIDE (r_lld_evt_end_isr = 0x4004862c) + [!provide] PROVIDE (r_lld_evt_init = 0x40046b3c) + [!provide] PROVIDE (r_lld_evt_init_evt = 0x40046cd0) + [!provide] PROVIDE (r_lld_evt_move_to_master = 0x40047ba0) + [!provide] PROVIDE (r_lld_evt_move_to_slave = 0x40047e18) + [!provide] PROVIDE (r_lld_evt_prevent_stop = 0x40047adc) + [!provide] PROVIDE (r_lld_evt_restart = 0x40046d50) + [!provide] PROVIDE (r_lld_evt_rx = 0x40048578) + [!provide] PROVIDE (r_lld_evt_rx_isr = 0x40048678) + [!provide] PROVIDE (r_lld_evt_scan_create = 0x40047ae8) + [!provide] PROVIDE (r_lld_evt_schedule = 0x40047908) + [!provide] PROVIDE (r_lld_evt_schedule_next = 0x400477dc) + [!provide] PROVIDE (r_lld_evt_schedule_next_instant = 0x400476a8) + [!provide] PROVIDE (r_lld_evt_slave_update = 0x40048138) + [!provide] PROVIDE (r_lld_evt_update_create = 0x40047cd8) + [!provide] PROVIDE (r_lld_get_mode = 0x40049ff8) + [!provide] PROVIDE (r_lld_init = 0x4004873c) + [!provide] PROVIDE (r_lld_move_to_master = 0x400499e0) + [!provide] PROVIDE (r_lld_move_to_slave = 0x4004a024) + [!provide] PROVIDE (r_lld_pdu_adv_pack = 0x4004b488) + [!provide] PROVIDE (r_lld_pdu_check = 0x4004ac34) + [!provide] PROVIDE (r_lld_pdu_data_send = 0x4004b018) + [!provide] PROVIDE (r_lld_pdu_data_tx_push = 0x4004aecc) + [!provide] PROVIDE (r_lld_pdu_rx_handler = 0x4004b4d4) + [!provide] PROVIDE (r_lld_pdu_send_packet = 0x4004b774) + [!provide] PROVIDE (r_lld_pdu_tx_flush = 0x4004b414) + [!provide] PROVIDE (r_lld_pdu_tx_loop = 0x4004ae40) + [!provide] PROVIDE (r_lld_pdu_tx_prog = 0x4004b120) + [!provide] PROVIDE (r_lld_pdu_tx_push = 0x4004b080) + [!provide] PROVIDE (r_lld_ral_renew_req = 0x4004a73c) + [!provide] PROVIDE (r_lld_scan_start = 0x40048ee0) + [!provide] PROVIDE (r_lld_scan_stop = 0x40049190) + [!provide] PROVIDE (r_lld_test_mode_rx = 0x4004a540) + [!provide] PROVIDE (r_lld_test_mode_tx = 0x4004a350) + [!provide] PROVIDE (r_lld_test_stop = 0x4004a710) + [!provide] PROVIDE (r_lld_util_anchor_point_move = 0x4004bacc) + [!provide] PROVIDE (r_lld_util_compute_ce_max = 0x4004bc0c) + [!provide] PROVIDE (r_lld_util_connection_param_set = 0x4004ba40) + [!provide] PROVIDE (r_lld_util_dle_set_cs_fields = 0x4004ba90) + [!provide] PROVIDE (r_lld_util_eff_tx_time_set = 0x4004bd88) + [!provide] PROVIDE (r_lld_util_elt_programmed = 0x4004bce0) + [!provide] PROVIDE (r_lld_util_flush_list = 0x4004bbd8) + [!provide] PROVIDE (r_lld_util_freq2chnl = 0x4004b9e4) + [!provide] PROVIDE (r_lld_util_get_bd_address = 0x4004b8ac) + [!provide] PROVIDE (r_lld_util_get_local_offset = 0x4004ba10) + [!provide] PROVIDE (r_lld_util_get_peer_offset = 0x4004ba24) + [!provide] PROVIDE (r_lld_util_get_tx_pkt_cnt = 0x4004bd80) + [!provide] PROVIDE (r_lld_util_instant_get = 0x4004b890) + [!provide] PROVIDE (r_lld_util_instant_ongoing = 0x4004bbfc) + [!provide] PROVIDE (r_lld_util_priority_set = 0x4004bd10) + [!provide] PROVIDE (r_lld_util_priority_update = 0x4004bd78) + [!provide] PROVIDE (r_lld_util_ral_force_rpa_renew = 0x4004b980) + [!provide] PROVIDE (r_lld_util_set_bd_address = 0x4004b8f8) + [!provide] PROVIDE (r_lld_wlcoex_set = 0x4004bd98) + [!provide] PROVIDE (r_llm_ble_ready = 0x4004cc34) + [!provide] PROVIDE (r_llm_common_cmd_complete_send = 0x4004d288) + [!provide] PROVIDE (r_llm_common_cmd_status_send = 0x4004d2b4) + [!provide] PROVIDE (r_llm_con_req_ind = 0x4004cc54) + [!provide] PROVIDE (r_llm_con_req_tx_cfm = 0x4004d158) + [!provide] PROVIDE (r_llm_create_con = 0x4004de78) + [!provide] PROVIDE (r_llm_encryption_done = 0x4004dff8) + [!provide] PROVIDE (r_llm_encryption_start = 0x4004e128) + [!provide] PROVIDE (r_llm_end_evt_defer = 0x4004eb6c) + [!provide] PROVIDE (r_llm_init = 0x4004c9f8) + [!provide] PROVIDE (r_llm_le_adv_report_ind = 0x4004cdf4) + [!provide] PROVIDE (r_llm_pdu_defer = 0x4004ec48) + [!provide] PROVIDE (r_llm_ral_clear = 0x4004e1fc) + [!provide] PROVIDE (r_llm_ral_dev_add = 0x4004e23c) + [!provide] PROVIDE (r_llm_ral_dev_rm = 0x4004e3bc) + [!provide] PROVIDE (r_llm_ral_get_rpa = 0x4004e400) + [!provide] PROVIDE (r_llm_ral_set_timeout = 0x4004e4a0) + [!provide] PROVIDE (r_llm_ral_update = 0x4004e4f8) + [!provide] PROVIDE (r_llm_set_adv_data = 0x4004d960) + [!provide] PROVIDE (r_llm_set_adv_en = 0x4004d7ec) + [!provide] PROVIDE (r_llm_set_adv_param = 0x4004d5f4) + [!provide] PROVIDE (r_llm_set_scan_en = 0x4004db64) + [!provide] PROVIDE (r_llm_set_scan_param = 0x4004dac8) + [!provide] PROVIDE (r_llm_set_scan_rsp_data = 0x4004da14) + [!provide] PROVIDE (r_llm_test_mode_start_rx = 0x4004d534) + [!provide] PROVIDE (r_llm_test_mode_start_tx = 0x4004d2fc) + [!provide] PROVIDE (r_llm_util_adv_data_update = 0x4004e8fc) + [!provide] PROVIDE (r_llm_util_apply_bd_addr = 0x4004e868) + [!provide] PROVIDE (r_llm_util_bd_addr_in_ral = 0x4004eb08) + [!provide] PROVIDE (r_llm_util_bd_addr_in_wl = 0x4004e788) + [!provide] PROVIDE (r_llm_util_bd_addr_wl_position = 0x4004e720) + [!provide] PROVIDE (r_llm_util_bl_add = 0x4004e9ac) + [!provide] PROVIDE (r_llm_util_bl_check = 0x4004e930) + [!provide] PROVIDE (r_llm_util_bl_rem = 0x4004ea70) + [!provide] PROVIDE (r_llm_util_check_address_validity = 0x4004e7e4) + [!provide] PROVIDE (r_llm_util_check_evt_mask = 0x4004e8b0) + [!provide] PROVIDE (r_llm_util_check_map_validity = 0x4004e800) + [!provide] PROVIDE (r_llm_util_get_channel_map = 0x4004e8d4) + [!provide] PROVIDE (r_llm_util_get_supp_features = 0x4004e8e8) + [!provide] PROVIDE (r_llm_util_set_public_addr = 0x4004e89c) + [!provide] PROVIDE (r_llm_wl_clr = 0x4004dc54) + [!provide] PROVIDE (r_llm_wl_dev_add = 0x4004dcc0) + [!provide] PROVIDE (r_llm_wl_dev_add_hdl = 0x4004dd38) + [!provide] PROVIDE (r_llm_wl_dev_rem = 0x4004dcfc) + [!provide] PROVIDE (r_llm_wl_dev_rem_hdl = 0x4004dde0) + [!provide] PROVIDE (r_lm_acl_disc = 0x4004f148) + [!provide] PROVIDE (r_LM_AddSniff = 0x40022d20) + [!provide] PROVIDE (r_lm_add_sync = 0x40051358) + [!provide] PROVIDE (r_lm_afh_activate_timer = 0x4004f444) + [!provide] PROVIDE (r_lm_afh_ch_ass_en_get = 0x4004f3f8) + [!provide] PROVIDE (r_lm_afh_host_ch_class_get = 0x4004f410) + [!provide] PROVIDE (r_lm_afh_master_ch_map_get = 0x4004f43c) + [!provide] PROVIDE (r_lm_afh_peer_ch_class_set = 0x4004f418) + [!provide] PROVIDE (r_lm_check_active_sync = 0x40051334) + [!provide] PROVIDE (r_LM_CheckEdrFeatureRequest = 0x4002f90c) + [!provide] PROVIDE (r_LM_CheckSwitchInstant = 0x4002f8c0) + [!provide] PROVIDE (r_lm_check_sync_hl_rsp = 0x4005169c) + [!provide] PROVIDE (r_lm_clk_adj_ack_pending_clear = 0x4004f514) + [!provide] PROVIDE (r_lm_clk_adj_instant_pending_set = 0x4004f4d8) + [!provide] PROVIDE (r_LM_ComputePacketType = 0x4002f554) + [!provide] PROVIDE (r_LM_ComputeSniffSubRate = 0x400233ac) + [!provide] PROVIDE (r_lm_debug_key_compare_192 = 0x4004f3a8) + [!provide] PROVIDE (r_lm_debug_key_compare_256 = 0x4004f3d0) + [!provide] PROVIDE (r_lm_dhkey_calc_init = 0x40013234) + [!provide] PROVIDE (r_lm_dhkey_compare = 0x400132d8) + [!provide] PROVIDE (r_lm_dut_mode_en_get = 0x4004f3ec) + [!provide] PROVIDE (r_LM_ExtractMaxEncKeySize = 0x4001aca4) + [!provide] PROVIDE (r_lm_f1 = 0x40012bb8) + [!provide] PROVIDE (r_lm_f2 = 0x40012cfc) + [!provide] PROVIDE (r_lm_f3 = 0x40013050) + [!provide] PROVIDE (r_lm_g = 0x40012f90) + [!provide] PROVIDE (r_LM_GetAFHSwitchInstant = 0x4002f86c) + [!provide] PROVIDE (r_lm_get_auth_en = 0x4004f1ac) + [!provide] PROVIDE (r_lm_get_common_pkt_types = 0x4002fa1c) + [!provide] PROVIDE (r_LM_GetConnectionAcceptTimeout = 0x4004f1f4) + [!provide] PROVIDE (r_LM_GetFeature = 0x4002f924) + [!provide] PROVIDE (r_LM_GetLinkTimeout = 0x400233ec) + [!provide] PROVIDE (r_LM_GetLocalNameSeg = 0x4004f200) + [!provide] PROVIDE (r_lm_get_loopback_mode = 0x4004f248) + [!provide] PROVIDE (r_LM_GetMasterEncKeySize = 0x4001b29c) + [!provide] PROVIDE (r_LM_GetMasterEncRand = 0x4001b288) + [!provide] PROVIDE (r_LM_GetMasterKey = 0x4001b260) + [!provide] PROVIDE (r_LM_GetMasterKeyRand = 0x4001b274) + [!provide] PROVIDE (r_lm_get_min_sync_intv = 0x400517a8) + [!provide] PROVIDE (r_lm_get_nb_acl = 0x4004ef9c) + [!provide] PROVIDE (r_lm_get_nb_sync_link = 0x4005179c) + [!provide] PROVIDE (r_lm_get_nonce = 0x400131c4) + [!provide] PROVIDE (r_lm_get_oob_local_commit = 0x4004f374) + [!provide] PROVIDE (r_lm_get_oob_local_data_192 = 0x4004f2d4) + [!provide] PROVIDE (r_lm_get_oob_local_data_256 = 0x4004f318) + [!provide] PROVIDE (r_LM_GetPINType = 0x4004f1e8) + [!provide] PROVIDE (r_lm_get_priv_key_192 = 0x4004f278) + [!provide] PROVIDE (r_lm_get_priv_key_256 = 0x4004f2b8) + [!provide] PROVIDE (r_lm_get_pub_key_192 = 0x4004f258) + [!provide] PROVIDE (r_lm_get_pub_key_256 = 0x4004f298) + [!provide] PROVIDE (r_LM_GetQoSParam = 0x4002f6e0) + [!provide] PROVIDE (r_lm_get_sec_con_host_supp = 0x4004f1d4) + [!provide] PROVIDE (r_LM_GetSniffSubratingParam = 0x4002325c) + [!provide] PROVIDE (r_lm_get_sp_en = 0x4004f1c0) + [!provide] PROVIDE (r_LM_GetSwitchInstant = 0x4002f7f8) + [!provide] PROVIDE (r_lm_get_synchdl = 0x4005175c) + [!provide] PROVIDE (r_lm_get_sync_param = 0x400503b4) + [!provide] PROVIDE (r_lm_init = 0x4004ed34) + [!provide] PROVIDE (r_lm_init_sync = 0x400512d8) + [!provide] PROVIDE (r_lm_is_acl_con = 0x4004f47c) + [!provide] PROVIDE (r_lm_is_acl_con_role = 0x4004f49c) + [!provide] PROVIDE (r_lm_is_clk_adj_ack_pending = 0x4004f4e8) + [!provide] PROVIDE (r_lm_is_clk_adj_instant_pending = 0x4004f4c8) + [!provide] PROVIDE (r_lm_local_ext_fr_configured = 0x4004f540) + [!provide] PROVIDE (r_lm_look_for_stored_link_key = 0x4002f948) + [!provide] PROVIDE (r_lm_look_for_sync = 0x40051774) + [!provide] PROVIDE (r_lm_lt_addr_alloc = 0x4004ef1c) + [!provide] PROVIDE (r_lm_lt_addr_free = 0x4004ef74) + [!provide] PROVIDE (r_lm_lt_addr_reserve = 0x4004ef48) + [!provide] PROVIDE (r_LM_MakeCof = 0x4002f84c) + [!provide] PROVIDE (r_LM_MakeRandVec = 0x400112d8) + [!provide] PROVIDE (r_lm_master_clk_adj_req_handler = 0x40054180) + [!provide] PROVIDE (r_LM_MaxSlot = 0x4002f694) + [!provide] PROVIDE (r_lm_modif_sync = 0x40051578) + [!provide] PROVIDE (r_lm_n_is_zero = 0x40012170) + [!provide] PROVIDE (r_lm_num_clk_adj_ack_pending_set = 0x4004f500) + [!provide] PROVIDE (r_lm_oob_f1 = 0x40012e54) + [!provide] PROVIDE (r_lm_pca_sscan_link_get = 0x4004f560) + [!provide] PROVIDE (r_lm_pca_sscan_link_set = 0x4004f550) + [!provide] PROVIDE (nvds_null_read = 0x400542a0) + [!provide] PROVIDE (nvds_null_write = 0x400542a8) + [!provide] PROVIDE (nvds_null_erase = 0x400542b0) + [!provide] PROVIDE (nvds_read = 0x400542c4) + [!provide] PROVIDE (nvds_write = 0x400542fc) + [!provide] PROVIDE (nvds_erase = 0x40054334) + [!provide] PROVIDE (nvds_init_memory = 0x40054358) + [!provide] PROVIDE (r_lmp_pack = 0x4001135c) + [!provide] PROVIDE (r_lmp_unpack = 0x4001149c) + [!provide] PROVIDE (r_lm_read_features = 0x4004f0d8) + [!provide] PROVIDE (r_LM_RemoveSniff = 0x40023124) + [!provide] PROVIDE (r_LM_RemoveSniffSubrating = 0x400233c4) + [!provide] PROVIDE (r_lm_remove_sync = 0x400517c8) + [!provide] PROVIDE (r_lm_reset_sync = 0x40051304) + [!provide] PROVIDE (r_lm_role_switch_finished = 0x4004f028) + [!provide] PROVIDE (r_lm_role_switch_start = 0x4004efe0) + [!provide] PROVIDE (r_lm_sco_nego_end = 0x40051828) + [!provide] PROVIDE (r_LM_SniffSubrateNegoRequired = 0x40023334) + [!provide] PROVIDE (r_LM_SniffSubratingHlReq = 0x40023154) + [!provide] PROVIDE (r_LM_SniffSubratingPeerReq = 0x400231dc) + [!provide] PROVIDE (r_lm_sp_debug_mode_get = 0x4004f398) + [!provide] PROVIDE (r_lm_sp_n192_convert_wnaf = 0x400123c0) + [!provide] PROVIDE (r_lm_sp_n_one = 0x400123a4) + [!provide] PROVIDE (r_lm_sp_p192_add = 0x40012828) + [!provide] PROVIDE (r_lm_sp_p192_dbl = 0x4001268c) + [!provide] PROVIDE (r_lm_sp_p192_invert = 0x40012b6c) + [!provide] PROVIDE (r_lm_sp_p192_point_jacobian_to_affine = 0x40012468) + [!provide] PROVIDE (r_lm_sp_p192_points_jacobian_to_affine = 0x400124e4) + [!provide] PROVIDE (r_lm_sp_p192_point_to_inf = 0x40012458) + [!provide] PROVIDE (r_lm_sp_pre_compute_points = 0x40012640) + [!provide] PROVIDE (r_lm_sp_sha256_calculate = 0x400121a0) + [!provide] PROVIDE (r_LM_SuppressAclPacket = 0x4002f658) + [!provide] PROVIDE (r_lm_sync_flow_ctrl_en_get = 0x4004f404) + [!provide] PROVIDE (r_LM_UpdateAclEdrPacketType = 0x4002f5d8) + [!provide] PROVIDE (r_LM_UpdateAclPacketType = 0x4002f584) + [!provide] PROVIDE (r_modules_funcs = 0x3ffafd6c) + [!provide] PROVIDE (r_modules_funcs_p = 0x3ffafd68) + [!provide] PROVIDE (r_nvds_del = 0x400544c4) + [!provide] PROVIDE (r_nvds_get = 0x40054488) + [!provide] PROVIDE (r_nvds_init = 0x40054410) + [!provide] PROVIDE (r_nvds_lock = 0x400544fc) + [!provide] PROVIDE (r_nvds_put = 0x40054534) + [!provide] PROVIDE (rom_abs_temp = 0x400054f0) + [!provide] PROVIDE (rom_bb_bss_bw_40_en = 0x4000401c) + [!provide] PROVIDE (rom_bb_bss_cbw40_dig = 0x40003bac) + [!provide] PROVIDE (rom_bb_rx_ht20_cen_bcov_en = 0x40003734) + [!provide] PROVIDE (rom_bb_tx_ht20_cen = 0x40003760) + [!provide] PROVIDE (rom_bb_wdg_test_en = 0x40003b70) + [!provide] PROVIDE (rom_cbw2040_cfg = 0x400040b0) + [!provide] PROVIDE (rom_check_noise_floor = 0x40003c78) + [!provide] PROVIDE (rom_chip_i2c_readReg = 0x40004110) + [!provide] PROVIDE (rom_chip_i2c_writeReg = 0x40004168) + [!provide] PROVIDE (rom_chip_v7_bt_init = 0x40004d8c) + [!provide] PROVIDE (rom_chip_v7_rx_init = 0x40004cec) + [!provide] PROVIDE (rom_chip_v7_rx_rifs_en = 0x40003d90) + [!provide] PROVIDE (rom_chip_v7_tx_init = 0x40004d18) + [!provide] PROVIDE (rom_clk_force_on_vit = 0x40003710) + [!provide] PROVIDE (rom_correct_rf_ana_gain = 0x400062a8) + [!provide] PROVIDE (rom_dc_iq_est = 0x400055c8) + [!provide] PROVIDE (rom_disable_agc = 0x40002fa4) + [!provide] PROVIDE (rom_enable_agc = 0x40002fcc) + [!provide] PROVIDE (rom_en_pwdet = 0x4000506c) + [!provide] PROVIDE (rom_gen_rx_gain_table = 0x40003e3c) + [!provide] PROVIDE (rom_get_data_sat = 0x4000312c) + [!provide] PROVIDE (rom_get_fm_sar_dout = 0x40005204) + [!provide] PROVIDE (rom_get_power_db = 0x40005fc8) + [!provide] PROVIDE (rom_get_pwctrl_correct = 0x400065d4) + [!provide] PROVIDE (rom_get_rfcal_rxiq_data = 0x40005bbc) + [!provide] PROVIDE (rom_get_rf_gain_qdb = 0x40006290) + [!provide] PROVIDE (rom_get_sar_dout = 0x40006564) + 0x40004148 PROVIDE (rom_i2c_readReg = 0x40004148) + 0x400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x400041fc PROVIDE (rom_i2c_writeReg_Mask = 0x400041fc) + [!provide] PROVIDE (rom_index_to_txbbgain = 0x40004df8) + [!provide] PROVIDE (rom_iq_est_disable = 0x40005590) + [!provide] PROVIDE (rom_iq_est_enable = 0x40005514) + [!provide] PROVIDE (rom_linear_to_db = 0x40005f64) + [!provide] PROVIDE (rom_loopback_mode_en = 0x400030f8) + [!provide] PROVIDE (rom_meas_tone_pwr_db = 0x40006004) + [!provide] PROVIDE (rom_mhz2ieee = 0x4000404c) + [!provide] PROVIDE (rom_noise_floor_auto_set = 0x40003bdc) + [!provide] PROVIDE (rom_pbus_debugmode = 0x40004458) + [!provide] PROVIDE (rom_pbus_force_mode = 0x40004270) + [!provide] PROVIDE (rom_pbus_force_test = 0x400043c0) + [!provide] PROVIDE (rom_pbus_rd = 0x40004414) + [!provide] PROVIDE (rom_pbus_rd_addr = 0x40004334) + [!provide] PROVIDE (rom_pbus_rd_shift = 0x40004374) + [!provide] PROVIDE (rom_pbus_rx_dco_cal = 0x40005620) + [!provide] PROVIDE (rom_pbus_set_dco = 0x40004638) + [!provide] PROVIDE (rom_pbus_set_rxgain = 0x40004480) + [!provide] PROVIDE (rom_pbus_workmode = 0x4000446c) + [!provide] PROVIDE (rom_pbus_xpd_rx_off = 0x40004508) + [!provide] PROVIDE (rom_pbus_xpd_rx_on = 0x4000453c) + [!provide] PROVIDE (rom_pbus_xpd_tx_off = 0x40004590) + [!provide] PROVIDE (rom_pbus_xpd_tx_on = 0x400045e0) + [!provide] PROVIDE (rom_phy_disable_agc = 0x40002f6c) + [!provide] PROVIDE (rom_phy_disable_cca = 0x40003000) + [!provide] PROVIDE (rom_phy_enable_agc = 0x40002f88) + [!provide] PROVIDE (rom_phy_enable_cca = 0x4000302c) + [!provide] PROVIDE (rom_phy_freq_correct = 0x40004b44) + [!provide] PROVIDE (rom_phyFuns = 0x3ffae0c0) + [!provide] PROVIDE (rom_phy_get_noisefloor = 0x40003c2c) + [!provide] PROVIDE (rom_phy_get_vdd33 = 0x4000642c) + [!provide] PROVIDE (rom_pow_usr = 0x40003044) + [!provide] PROVIDE (rom_read_sar_dout = 0x400051c0) + [!provide] PROVIDE (rom_restart_cal = 0x400046e0) + [!provide] PROVIDE (rom_rfcal_pwrctrl = 0x40006058) + [!provide] PROVIDE (rom_rfcal_rxiq = 0x40005b4c) + [!provide] PROVIDE (rom_rfcal_txcap = 0x40005dec) + [!provide] PROVIDE (rom_rfpll_reset = 0x40004680) + [!provide] PROVIDE (rom_rfpll_set_freq = 0x400047f8) + [!provide] PROVIDE (rom_rtc_mem_backup = 0x40003db4) + [!provide] PROVIDE (rom_rtc_mem_recovery = 0x40003df4) + [!provide] PROVIDE (rom_rx_gain_force = 0x4000351c) + [!provide] PROVIDE (rom_rxiq_cover_mg_mp = 0x40005a68) + [!provide] PROVIDE (rom_rxiq_get_mis = 0x400058e4) + [!provide] PROVIDE (rom_rxiq_set_reg = 0x40005a00) + [!provide] PROVIDE (rom_set_cal_rxdc = 0x400030b8) + [!provide] PROVIDE (rom_set_chan_cal_interp = 0x40005ce0) + [!provide] PROVIDE (rom_set_channel_freq = 0x40004880) + [!provide] PROVIDE (rom_set_loopback_gain = 0x40003060) + [!provide] PROVIDE (rom_set_noise_floor = 0x40003d48) + [!provide] PROVIDE (rom_set_pbus_mem = 0x400031a4) + [!provide] PROVIDE (rom_set_rf_freq_offset = 0x40004ca8) + [!provide] PROVIDE (rom_set_rxclk_en = 0x40003594) + [!provide] PROVIDE (rom_set_txcap_reg = 0x40005d50) + [!provide] PROVIDE (rom_set_txclk_en = 0x40003564) + [!provide] PROVIDE (rom_spur_coef_cfg = 0x40003ac8) + [!provide] PROVIDE (rom_spur_reg_write_one_tone = 0x400037f0) + [!provide] PROVIDE (rom_start_tx_tone = 0x400036b4) + [!provide] PROVIDE (rom_start_tx_tone_step = 0x400035d0) + [!provide] PROVIDE (rom_stop_tx_tone = 0x40003f98) + [!provide] PROVIDE (_rom_store = 0x4000d66c) + [!provide] PROVIDE (_rom_store_table = 0x4000d4f8) + [!provide] PROVIDE (rom_target_power_add_backoff = 0x40006268) + [!provide] PROVIDE (rom_tx_atten_set_interp = 0x400061cc) + [!provide] PROVIDE (rom_txbbgain_to_index = 0x40004dc0) + [!provide] PROVIDE (rom_txcal_work_mode = 0x4000510c) + [!provide] PROVIDE (rom_txdc_cal_init = 0x40004e10) + [!provide] PROVIDE (rom_txdc_cal_v70 = 0x40004ea4) + [!provide] PROVIDE (rom_txiq_cover = 0x4000538c) + [!provide] PROVIDE (rom_txiq_get_mis_pwr = 0x400052dc) + [!provide] PROVIDE (rom_txiq_set_reg = 0x40005154) + [!provide] PROVIDE (rom_tx_pwctrl_bg_init = 0x4000662c) + [!provide] PROVIDE (rom_txtone_linear_pwr = 0x40005290) + [!provide] PROVIDE (rom_wait_rfpll_cal_end = 0x400047a8) + [!provide] PROVIDE (rom_write_gain_mem = 0x4000348c) + [!provide] PROVIDE (rom_write_rfpll_sdm = 0x40004740) + [!provide] PROVIDE (roundup2 = 0x4000ab7c) + [!provide] PROVIDE (r_plf_funcs_p = 0x3ffb8360) + [!provide] PROVIDE (r_rf_rw_bt_init = 0x40054868) + [!provide] PROVIDE (r_rf_rw_init = 0x40054b0c) + [!provide] PROVIDE (r_rf_rw_le_init = 0x400549d0) + [!provide] PROVIDE (r_rwble_activity_ongoing_check = 0x40054d8c) + [!provide] PROVIDE (r_rwble_init = 0x40054bf4) + [!provide] PROVIDE (r_rwble_isr = 0x40054e08) + [!provide] PROVIDE (r_rwble_reset = 0x40054ce8) + [!provide] PROVIDE (r_rwble_sleep_check = 0x40054d78) + [!provide] PROVIDE (r_rwble_version = 0x40054dac) + [!provide] PROVIDE (r_rwbt_init = 0x40055160) + [!provide] PROVIDE (r_rwbt_isr = 0x40055248) + [!provide] PROVIDE (r_rwbt_reset = 0x400551bc) + [!provide] PROVIDE (r_rwbt_sleep_check = 0x4005577c) + [!provide] PROVIDE (r_rwbt_sleep_enter = 0x400557a4) + [!provide] PROVIDE (r_rwbt_sleep_wakeup = 0x400557fc) + [!provide] PROVIDE (r_rwbt_sleep_wakeup_end = 0x400558cc) + [!provide] PROVIDE (r_rwbt_version = 0x4005520c) + [!provide] PROVIDE (r_rwip_assert_err = 0x40055f88) + [!provide] PROVIDE (r_rwip_check_wakeup_boundary = 0x400558fc) + [!provide] PROVIDE (r_rwip_ext_wakeup_enable = 0x40055f3c) + [!provide] PROVIDE (r_rwip_init = 0x4005595c) + [!provide] PROVIDE (r_rwip_pca_clock_dragging_only = 0x40055f48) + [!provide] PROVIDE (r_rwip_prevent_sleep_clear = 0x40055ec8) + [!provide] PROVIDE (r_rwip_prevent_sleep_set = 0x40055e64) + [!provide] PROVIDE (r_rwip_reset = 0x40055ab8) + [!provide] PROVIDE (r_rwip_schedule = 0x40055b38) + [!provide] PROVIDE (r_rwip_sleep = 0x40055b5c) + [!provide] PROVIDE (r_rwip_sleep_enable = 0x40055f30) + [!provide] PROVIDE (r_rwip_version = 0x40055b20) + [!provide] PROVIDE (r_rwip_wakeup = 0x40055dc4) + [!provide] PROVIDE (r_rwip_wakeup_delay_set = 0x40055e4c) + [!provide] PROVIDE (r_rwip_wakeup_end = 0x40055e18) + [!provide] PROVIDE (r_rwip_wlcoex_set = 0x40055f60) + [!provide] PROVIDE (r_SHA_256 = 0x40013a90) + [!provide] PROVIDE (rwip_coex_cfg = 0x3ff9914c) + [!provide] PROVIDE (rwip_priority = 0x3ff99159) + [!provide] PROVIDE (rwip_rf = 0x3ffbdb28) + [!provide] PROVIDE (rwip_rf_p_get = 0x400558f4) + [!provide] PROVIDE (r_XorKey = 0x400112c0) + [!provide] PROVIDE (sha_blk_bits = 0x3ff99290) + [!provide] PROVIDE (sha_blk_bits_bytes = 0x3ff99288) + [!provide] PROVIDE (sha_blk_hash_bytes = 0x3ff9928c) + [!provide] PROVIDE (sig_matrix = 0x3ffae293) + [!provide] PROVIDE (sip_after_tx_complete = 0x4000b358) + [!provide] PROVIDE (sip_alloc_to_host_evt = 0x4000ab9c) + [!provide] PROVIDE (sip_get_ptr = 0x4000b34c) + [!provide] PROVIDE (sip_get_state = 0x4000ae2c) + [!provide] PROVIDE (sip_init_attach = 0x4000ae58) + [!provide] PROVIDE (sip_install_rx_ctrl_cb = 0x4000ae10) + [!provide] PROVIDE (sip_install_rx_data_cb = 0x4000ae20) + [!provide] PROVIDE (sip_is_active = 0x4000b3c0) + [!provide] PROVIDE (sip_post_init = 0x4000aed8) + [!provide] PROVIDE (sip_reclaim_from_host_cmd = 0x4000adbc) + [!provide] PROVIDE (sip_reclaim_tx_data_pkt = 0x4000ad5c) + [!provide] PROVIDE (sip_send = 0x4000af54) + [!provide] PROVIDE (sip_to_host_chain_append = 0x4000aef8) + [!provide] PROVIDE (sip_to_host_evt_send_done = 0x4000ac04) + [!provide] PROVIDE (slc_add_credits = 0x4000baf4) + [!provide] PROVIDE (slc_enable = 0x4000b64c) + [!provide] PROVIDE (slc_from_host_chain_fetch = 0x4000b7e8) + [!provide] PROVIDE (slc_from_host_chain_recycle = 0x4000bb10) + [!provide] PROVIDE (slc_has_pkt_to_host = 0x4000b5fc) + [!provide] PROVIDE (slc_init_attach = 0x4000b918) + [!provide] PROVIDE (slc_init_credit = 0x4000badc) + [!provide] PROVIDE (slc_reattach = 0x4000b62c) + [!provide] PROVIDE (slc_send_to_host_chain = 0x4000b6a0) + [!provide] PROVIDE (slc_set_host_io_max_window = 0x4000b89c) + [!provide] PROVIDE (slc_to_host_chain_recycle = 0x4000b758) + [!provide] PROVIDE (specialModP256 = 0x4001600c) + [!provide] PROVIDE (__stack = 0x3ffe3f20) + [!provide] PROVIDE (__stack_app = 0x3ffe7e30) + [!provide] PROVIDE (_stack_sentry = 0x3ffe1320) + [!provide] PROVIDE (_stack_sentry_app = 0x3ffe5230) + [!provide] PROVIDE (_start = 0x40000704) + [!provide] PROVIDE (start_tb_console = 0x4005a980) + [!provide] PROVIDE (_stat_r = 0x4000bcb4) + [!provide] PROVIDE (_stext = 0x40000560) + [!provide] PROVIDE (SubtractBigHex256 = 0x40015bcc) + [!provide] PROVIDE (SubtractBigHexMod256 = 0x40015e8c) + [!provide] PROVIDE (SubtractBigHexUint32_256 = 0x40015f8c) + [!provide] PROVIDE (SubtractFromSelfBigHex256 = 0x40015c20) + [!provide] PROVIDE (SubtractFromSelfBigHexSign256 = 0x40015dc8) + [!provide] PROVIDE (sw_to_hw = 0x3ffb8d40) + 0x3ffae020 PROVIDE (syscall_table_ptr_app = 0x3ffae020) + 0x3ffae024 PROVIDE (syscall_table_ptr_pro = 0x3ffae024) + [!provide] PROVIDE (tdefl_compress = 0x400600bc) + [!provide] PROVIDE (tdefl_compress_buffer = 0x400607f4) + [!provide] PROVIDE (tdefl_compress_mem_to_mem = 0x40060900) + [!provide] PROVIDE (tdefl_compress_mem_to_output = 0x400608e0) + [!provide] PROVIDE (tdefl_get_adler32 = 0x400608d8) + [!provide] PROVIDE (tdefl_get_prev_return_status = 0x400608d0) + [!provide] PROVIDE (tdefl_init = 0x40060810) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory = 0x4006091c) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory_ex = 0x40060910) + [!provide] PROVIDE (tinfl_decompress = 0x4005ef30) + [!provide] PROVIDE (tinfl_decompress_mem_to_callback = 0x40060090) + [!provide] PROVIDE (tinfl_decompress_mem_to_mem = 0x40060050) + [!provide] PROVIDE (UartDev = 0x3ffe019c) + [!provide] PROVIDE (user_code_start = 0x3ffe0400) + [!provide] PROVIDE (veryBigHexP256 = 0x3ff9736c) + [!provide] PROVIDE (xthal_bcopy = 0x4000c098) + [!provide] PROVIDE (xthal_copy123 = 0x4000c124) + [!provide] PROVIDE (xthal_get_ccompare = 0x4000c078) + [!provide] PROVIDE (xthal_get_ccount = 0x4000c050) + [!provide] PROVIDE (xthal_get_interrupt = 0x4000c1e4) + [!provide] PROVIDE (xthal_get_intread = 0x4000c1e4) + [!provide] PROVIDE (Xthal_intlevel = 0x3ff9c2b4) + [!provide] PROVIDE (xthal_memcpy = 0x4000c0bc) + [!provide] PROVIDE (xthal_set_ccompare = 0x4000c058) + [!provide] PROVIDE (xthal_set_intclear = 0x4000c1ec) + 0x4000bfdc PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x3ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + 0x3ffe40f0 PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + 0x40063238 PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x40062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x40062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x40062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x40062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x3ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (SPI_write_enable = 0x40062320) + [!provide] PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + [!provide] PROVIDE (hci_per_inq_mode_cmd_handler = 0x400519b0) + [!provide] PROVIDE (llcp_length_req_handler = 0x40043808) + [!provide] PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + [!provide] PROVIDE (llcp_channel_map_req_handler = 0x4004291c) + [!provide] PROVIDE (llcp_con_up_req_handler = 0x400426f0) + [!provide] PROVIDE (FilePacketSendDeflatedReqMsgProc = 0x40008b24) + [!provide] PROVIDE (FilePacketSendReqMsgProc = 0x40008860) + [!provide] PROVIDE (FlashDwnLdDeflatedStartMsgProc = 0x40008ad8) + [!provide] PROVIDE (FlashDwnLdParamCfgMsgProc = 0x4000891c) + [!provide] PROVIDE (FlashDwnLdStartMsgProc = 0x40008820) + [!provide] PROVIDE (FlashDwnLdStopDeflatedReqMsgProc = 0x40008c18) + [!provide] PROVIDE (FlashDwnLdStopReqMsgProc = 0x400088ec) + [!provide] PROVIDE (MemDwnLdStartMsgProc = 0x40008948) + [!provide] PROVIDE (MemDwnLdStopReqMsgProc = 0x400089dc) + [!provide] PROVIDE (MemPacketSendReqMsgProc = 0x40008978) + [!provide] PROVIDE (uart_baudrate_detect = 0x40009034) + [!provide] PROVIDE (uart_buff_switch = 0x400093c0) + [!provide] PROVIDE (UartConnCheck = 0x40008738) + [!provide] PROVIDE (UartConnectProc = 0x40008a04) + [!provide] PROVIDE (UartDwnLdProc = 0x40008ce8) + [!provide] PROVIDE (UartRegReadProc = 0x40008a58) + [!provide] PROVIDE (UartRegWriteProc = 0x40008a14) + [!provide] PROVIDE (UartSetBaudProc = 0x40008aac) + [!provide] PROVIDE (UartSpiAttachProc = 0x40008a6c) + [!provide] PROVIDE (UartSpiReadProc = 0x40008a80) + [!provide] PROVIDE (VerifyFlashMd5Proc = 0x40008c44) + [!provide] PROVIDE (GetUartDevice = 0x40009598) + [!provide] PROVIDE (RcvMsg = 0x4000954c) + [!provide] PROVIDE (SendMsg = 0x40009384) + [!provide] PROVIDE (UartGetCmdLn = 0x40009564) + [!provide] PROVIDE (UartRxString = 0x400092fc) + [!provide] PROVIDE (Uart_Init = 0x40009120) + [!provide] PROVIDE (recv_packet = 0x40009424) + [!provide] PROVIDE (send_packet = 0x40009340) + [!provide] PROVIDE (uartAttach = 0x40008fd0) + [!provide] PROVIDE (uart_div_modify = 0x400090cc) + [!provide] PROVIDE (uart_rx_intr_handler = 0x40008f4c) + 0x400092d0 PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + 0x40009258 PROVIDE (uart_tx_flush = 0x40009258) + 0x40009200 PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + 0x40009028 PROVIDE (uart_tx_switch = 0x40009028) + [!provide] PROVIDE (rom_gpio_output_set = 0x40009b24) + [!provide] PROVIDE (rom_gpio_output_set_high = 0x40009b5c) + [!provide] PROVIDE (rom_gpio_input_get = 0x40009b88) + [!provide] PROVIDE (rom_gpio_input_get_high = 0x40009b9c) + 0x40009edc PROVIDE (rom_gpio_matrix_in = 0x40009edc) + [!provide] PROVIDE (rom_gpio_matrix_out = 0x40009f0c) + 0x40009fdc PROVIDE (rom_gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (rom_gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (rom_gpio_pad_pulldown = 0x4000a348) + 0x4000a22c PROVIDE (rom_gpio_pad_pullup = 0x4000a22c) + [!provide] PROVIDE (rom_gpio_pad_hold = 0x4000a734) + [!provide] PROVIDE (rom_gpio_pad_unhold = 0x4000a484) + [!provide] PROVIDE (ets_aes_crypt = 0x4005c9b8) + [!provide] PROVIDE (ets_aes_disable = 0x4005c8f8) + [!provide] PROVIDE (ets_aes_enable = 0x4005c8cc) + [!provide] PROVIDE (ets_aes_set_endian = 0x4005c928) + [!provide] PROVIDE (ets_aes_setkey_dec = 0x4005c994) + [!provide] PROVIDE (ets_aes_setkey_enc = 0x4005c97c) + [!provide] PROVIDE (ets_bigint_disable = 0x4005c4e0) + [!provide] PROVIDE (ets_bigint_enable = 0x4005c498) + [!provide] PROVIDE (ets_bigint_mod_mult_getz = 0x4005c818) + [!provide] PROVIDE (ets_bigint_mod_mult_prepare = 0x4005c7b4) + [!provide] PROVIDE (ets_bigint_mod_power_getz = 0x4005c614) + [!provide] PROVIDE (ets_bigint_mod_power_prepare = 0x4005c54c) + [!provide] PROVIDE (ets_bigint_montgomery_mult_getz = 0x4005c7a4) + [!provide] PROVIDE (ets_bigint_montgomery_mult_prepare = 0x4005c6fc) + [!provide] PROVIDE (ets_bigint_mult_getz = 0x4005c6e8) + [!provide] PROVIDE (ets_bigint_mult_prepare = 0x4005c630) + [!provide] PROVIDE (ets_bigint_wait_finish = 0x4005c520) + [!provide] PROVIDE (ets_post = 0x4000673c) + [!provide] PROVIDE (ets_run = 0x400066bc) + [!provide] PROVIDE (ets_set_idle_cb = 0x40006674) + [!provide] PROVIDE (ets_task = 0x40006688) + [!provide] PROVIDE (ets_efuse_get_8M_clock = 0x40008710) + 0x40008658 PROVIDE (ets_efuse_get_spiconfig = 0x40008658) + [!provide] PROVIDE (ets_efuse_program_op = 0x40008628) + [!provide] PROVIDE (ets_efuse_read_op = 0x40008600) + [!provide] PROVIDE (ets_intr_lock = 0x400067b0) + [!provide] PROVIDE (ets_intr_unlock = 0x400067c4) + [!provide] PROVIDE (ets_isr_attach = 0x400067ec) + [!provide] PROVIDE (ets_waiti0 = 0x400067d8) + 0x4000681c PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + 0x4000689c PROVIDE (ets_set_appcpu_boot_addr = 0x4000689c) + [!provide] PROVIDE (ets_set_startup_callback = 0x4000688c) + [!provide] PROVIDE (ets_set_user_start = 0x4000687c) + [!provide] PROVIDE (ets_unpack_flash_code = 0x40007018) + [!provide] PROVIDE (ets_unpack_flash_code_legacy = 0x4000694c) + [!provide] PROVIDE (rom_main = 0x400076c4) + 0x40007cf8 PROVIDE (ets_write_char_uart = 0x40007cf8) + 0x40007d18 PROVIDE (ets_install_putc1 = 0x40007d18) + 0x40007d38 PROVIDE (ets_install_putc2 = 0x40007d38) + 0x40007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x40007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + 0x40008208 PROVIDE (set_rtc_memory_crc = 0x40008208) + 0x4000824c PROVIDE (software_reset = 0x4000824c) + 0x40008264 PROVIDE (software_reset_cpu = 0x40008264) + [!provide] PROVIDE (ets_secure_boot_check = 0x4005cb40) + [!provide] PROVIDE (ets_secure_boot_check_finish = 0x4005cc04) + [!provide] PROVIDE (ets_secure_boot_check_start = 0x4005cbcc) + [!provide] PROVIDE (ets_secure_boot_finish = 0x4005ca84) + [!provide] PROVIDE (ets_secure_boot_hash = 0x4005cad4) + [!provide] PROVIDE (ets_secure_boot_obtain = 0x4005cb14) + [!provide] PROVIDE (ets_secure_boot_rd_abstract = 0x4005cba8) + [!provide] PROVIDE (ets_secure_boot_rd_iv = 0x4005cb84) + [!provide] PROVIDE (ets_secure_boot_start = 0x4005ca34) + [!provide] PROVIDE (ets_sha_disable = 0x4005c0a8) + [!provide] PROVIDE (ets_sha_enable = 0x4005c07c) + [!provide] PROVIDE (ets_sha_finish = 0x4005c104) + [!provide] PROVIDE (ets_sha_init = 0x4005c0d4) + [!provide] PROVIDE (ets_sha_update = 0x4005c2a0) + 0x40008534 PROVIDE (ets_delay_us = 0x40008534) + 0x4000855c PROVIDE (ets_get_cpu_frequency = 0x4000855c) + 0x40008588 PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + 0x40008550 PROVIDE (ets_update_cpu_frequency_rom = 0x40008550) + [!provide] PROVIDE (hci_tl_env = 0x3ffb8154) + [!provide] PROVIDE (ld_acl_env = 0x3ffb8258) + [!provide] PROVIDE (ea_env = 0x3ffb80ec) + [!provide] PROVIDE (lc_sco_data_path_config = 0x3ffb81f8) + [!provide] PROVIDE (lc_sco_env = 0x3ffb81fc) + [!provide] PROVIDE (ld_active_ch_map = 0x3ffb8334) + [!provide] PROVIDE (ld_bcst_acl_env = 0x3ffb8274) + [!provide] PROVIDE (ld_csb_rx_env = 0x3ffb8278) + [!provide] PROVIDE (ld_csb_tx_env = 0x3ffb827c) + [!provide] PROVIDE (ld_env = 0x3ffb9510) + [!provide] PROVIDE (ld_fm_env = 0x3ffb8284) + [!provide] PROVIDE (ld_inq_env = 0x3ffb82e4) + [!provide] PROVIDE (ld_iscan_env = 0x3ffb82e8) + [!provide] PROVIDE (ld_page_env = 0x3ffb82f0) + [!provide] PROVIDE (ld_pca_env = 0x3ffb82f4) + [!provide] PROVIDE (ld_pscan_env = 0x3ffb8308) + [!provide] PROVIDE (ld_sched_env = 0x3ffb830c) + [!provide] PROVIDE (ld_sched_params = 0x3ffb96c0) + [!provide] PROVIDE (ld_sco_env = 0x3ffb824c) + [!provide] PROVIDE (ld_sscan_env = 0x3ffb832c) + [!provide] PROVIDE (ld_strain_env = 0x3ffb8330) + [!provide] PROVIDE (LM_Sniff = 0x3ffb8230) + [!provide] PROVIDE (LM_SniffSubRate = 0x3ffb8214) + [!provide] PROVIDE (prbs_64bytes = 0x3ff98992) + [!provide] PROVIDE (nvds_env = 0x3ffb8364) + [!provide] PROVIDE (nvds_magic_number = 0x3ff9912a) + [!provide] PROVIDE (TASK_DESC_LLD = 0x3ff98b58) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_evt_canceled_cbk = 0x40033944) + [!provide] PROVIDE (ld_acl_rsw_evt_canceled_cbk = 0x40033364) + [!provide] PROVIDE (ld_acl_evt_stop_cbk = 0x40033870) + [!provide] PROVIDE (ld_acl_evt_start_cbk = 0x40030ab0) + [!provide] PROVIDE (ld_acl_sniff_evt_start_cbk = 0x40031360) + [!provide] PROVIDE (ld_acl_test_mode_update = 0x40032050) + [!provide] PROVIDE (ld_acl_resched = 0x40033814) + [!provide] PROVIDE (ld_acl_rx_isr = 0x40033aa8) + [!provide] PROVIDE (lc_acl_disc_ind_handler = 0x4002f270) + [!provide] PROVIDE (lc_pca_sscan_start_req_handler = 0x40029b34) + [!provide] PROVIDE (lmp_feats_req_ext_handler = 0x4002ccb0) + [!provide] PROVIDE (ld_pscan_em_init = 0x4003e5e8) + [!provide] PROVIDE (ld_acl_rsw_start = 0x40032e90) + [!provide] PROVIDE (ld_acl_sniff_enter = 0x40031244) + [!provide] PROVIDE (ld_acl_sniff_trans_sched = 0x40033734) + [!provide] PROVIDE (ld_acl_afh_apply = 0x40030e94) + [!provide] PROVIDE (ld_acl_afh_switch_on_cbk = 0x40030fa8) + [!provide] PROVIDE (ld_acl_afh_switch_off_cbk = 0x400310c4) + [!provide] PROVIDE (lc_pwr_decr_ind_handler = 0x4002859c) + [!provide] PROVIDE (lc_pwr_incr_ind_handler = 0x400284a8) + [!provide] PROVIDE (lc_pwr_max_ind_handler = 0x40028690) + [!provide] PROVIDE (lc_setup_sync_param_check = 0x4002354c) + [!provide] PROVIDE (lc_lmp_rsp_to_flow_spec_handler = 0x400297f0) + [!provide] PROVIDE (lc_lmp_rsp_to_ind_handler = 0x4002a674) + [!provide] PROVIDE (lc_pca_sscan_clk_ind_handler = 0x4002a38c) + [!provide] PROVIDE (lc_op_loc_unsniff_req_handler = 0x40028be0) + [!provide] PROVIDE (lc_op_loc_sniff_req_handler = 0x40028ccc) + [!provide] PROVIDE (lc_op_loc_switch_req_handler = 0x40028df4) + [!provide] PROVIDE (lc_op_loc_sync_con_req_handler = 0x40028f6c) + [!provide] PROVIDE (lm_sync_conf = 0x3ffb8348) + [!provide] PROVIDE (lm_nb_sync_active = 0x3ffb8346) + [!provide] PROVIDE (lm_sync_nego = 0x3ffb8345) + [!provide] PROVIDE (lm_nego_cnt = 0x3ffb8344) + [!provide] PROVIDE (lm_nego_cntl = 0x3ffb8342) + [!provide] PROVIDE (lm_nego_max_cnt = 0x3ffb8343) + [!provide] PROVIDE (lm_nego_pkt_used = 0x3ffb8340) + 0x4005cfec PROVIDE (esp_rom_crc32_le = crc32_le) + [!provide] PROVIDE (esp_rom_crc16_le = crc16_le) + [!provide] PROVIDE (esp_rom_crc8_le = crc8_le) + [!provide] PROVIDE (esp_rom_crc32_be = crc32_be) + [!provide] PROVIDE (esp_rom_crc16_be = crc16_be) + [!provide] PROVIDE (esp_rom_crc8_be = crc8_be) + 0x40009fdc PROVIDE (esp_rom_gpio_pad_select_gpio = rom_gpio_pad_select_gpio) + 0x4000a22c PROVIDE (esp_rom_gpio_pad_pullup_only = rom_gpio_pad_pullup) + [!provide] PROVIDE (esp_rom_gpio_pad_set_drv = rom_gpio_pad_set_drv) + [!provide] PROVIDE (esp_rom_gpio_pad_unhold = rom_gpio_pad_unhold) + 0x40009edc PROVIDE (esp_rom_gpio_connect_in_signal = rom_gpio_matrix_in) + [!provide] PROVIDE (esp_rom_gpio_connect_out_signal = rom_gpio_matrix_out) + [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8) + 0x40008658 PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig) + [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled) + [!provide] PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush) + [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle) + [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString) + [!provide] PROVIDE (esp_rom_uart_set_as_console = uart_tx_switch) + [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_uart_switch_buffer = uart_buff_switch) + 0x40009258 PROVIDE (esp_rom_output_flush_tx = uart_tx_flush) + 0x40009200 PROVIDE (esp_rom_output_tx_one_char = uart_tx_one_char) + [!provide] PROVIDE (esp_rom_output_tx_wait_idle = uart_tx_wait_idle) + 0x400092d0 PROVIDE (esp_rom_output_rx_one_char = uart_rx_one_char) + [!provide] PROVIDE (esp_rom_output_rx_string = UartRxString) + 0x40009028 PROVIDE (esp_rom_output_set_as_console = uart_tx_switch) + 0x40007cf8 PROVIDE (esp_rom_output_putc = ets_write_char_uart) + [!provide] PROVIDE (esp_rom_output_switch_buffer = uart_buff_switch) + 0x4005da7c PROVIDE (esp_rom_md5_init = 0x4005da7c) + 0x4005da9c PROVIDE (esp_rom_md5_update = 0x4005da9c) + 0x4005db1c PROVIDE (esp_rom_md5_final = 0x4005db1c) + 0x4000824c PROVIDE (esp_rom_software_reset_system = software_reset) + 0x40008264 PROVIDE (esp_rom_software_reset_cpu = software_reset_cpu) + 0x40007d54 PROVIDE (esp_rom_printf = ets_printf) + 0x40008534 PROVIDE (esp_rom_delay_us = ets_delay_us) + 0x40007d28 PROVIDE (esp_rom_install_uart_printf = ets_install_uart_printf) + 0x400081d4 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason) + 0x4000681c PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) + 0x4000855c PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) + [!provide] PROVIDE (esp_rom_spiflash_set_bp = esp_rom_spiflash_lock) + [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) + 0x40004148 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) + 0x400041c0 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) + 0x400041a4 PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) + 0x400041fc PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) + 0x4006387c __absvdi2 = 0x4006387c + 0x40063868 __absvsi2 = 0x40063868 + 0x40002590 __adddf3 = 0x40002590 + 0x400020e8 __addsf3 = 0x400020e8 + 0x40002cbc __addvdi3 = 0x40002cbc + 0x40002c98 __addvsi3 = 0x40002c98 + 0x4000c818 __ashldi3 = 0x4000c818 + 0x4000c830 __ashrdi3 = 0x4000c830 + 0x40064b08 __bswapdi2 = 0x40064b08 + 0x40064ae0 __bswapsi2 = 0x40064ae0 + 0x40064b7c __clrsbdi2 = 0x40064b7c + 0x40064b64 __clrsbsi2 = 0x40064b64 + 0x4000ca50 __clzdi2 = 0x4000ca50 + 0x4000c7e8 __clzsi2 = 0x4000c7e8 + 0x40063820 __cmpdi2 = 0x40063820 + 0x4000ca64 __ctzdi2 = 0x4000ca64 + 0x4000c7f0 __ctzsi2 = 0x4000c7f0 + 0x400645a4 __divdc3 = 0x400645a4 + 0x40002954 __divdf3 = 0x40002954 + 0x4000ca84 __divdi3 = 0x4000ca84 + 0x4000c7b8 __divsi3 = 0x4000c7b8 + 0x400636a8 __eqdf2 = 0x400636a8 + 0x40063374 __eqsf2 = 0x40063374 + 0x40002c34 __extendsfdf2 = 0x40002c34 + 0x4000ca2c __ffsdi2 = 0x4000ca2c + 0x4000c804 __ffssi2 = 0x4000c804 + 0x40002ac4 __fixdfdi = 0x40002ac4 + 0x40002a78 __fixdfsi = 0x40002a78 + 0x4000244c __fixsfdi = 0x4000244c + 0x4000240c __fixsfsi = 0x4000240c + 0x40002b30 __fixunsdfsi = 0x40002b30 + 0x40002504 __fixunssfdi = 0x40002504 + 0x400024ac __fixunssfsi = 0x400024ac + 0x4000c988 __floatdidf = 0x4000c988 + 0x4000c8c0 __floatdisf = 0x4000c8c0 + 0x4000c944 __floatsidf = 0x4000c944 + 0x4000c870 __floatsisf = 0x4000c870 + 0x4000c978 __floatundidf = 0x4000c978 + 0x4000c8b0 __floatundisf = 0x4000c8b0 + 0x4000c938 __floatunsidf = 0x4000c938 + 0x4000c864 __floatunsisf = 0x4000c864 + 0x40064a70 __gcc_bcmp = 0x40064a70 + 0x40063768 __gedf2 = 0x40063768 + 0x4006340c __gesf2 = 0x4006340c + 0x400636dc __gtdf2 = 0x400636dc + 0x400633a0 __gtsf2 = 0x400633a0 + 0x40063704 __ledf2 = 0x40063704 + 0x400633c0 __lesf2 = 0x400633c0 + 0x4000c84c __lshrdi3 = 0x4000c84c + 0x40063790 __ltdf2 = 0x40063790 + 0x4006342c __ltsf2 = 0x4006342c + 0x4000cd4c __moddi3 = 0x4000cd4c + 0x4000c7c0 __modsi3 = 0x4000c7c0 + 0x40063c90 __muldc3 = 0x40063c90 + 0x4006358c __muldf3 = 0x4006358c + 0x4000c9fc __muldi3 = 0x4000c9fc + 0x400632c8 __mulsf3 = 0x400632c8 + 0x4000c7b0 __mulsi3 = 0x4000c7b0 + 0x40002d78 __mulvdi3 = 0x40002d78 + 0x40002d60 __mulvsi3 = 0x40002d60 + 0x400636a8 __nedf2 = 0x400636a8 + 0x400634a0 __negdf2 = 0x400634a0 + 0x4000ca14 __negdi2 = 0x4000ca14 + 0x400020c0 __negsf2 = 0x400020c0 + 0x40002e98 __negvdi2 = 0x40002e98 + 0x40002e78 __negvsi2 = 0x40002e78 + 0x40063374 __nesf2 = 0x40063374 + 0x3ff96544 __nsau_data = 0x3ff96544 + 0x40002f3c __paritysi2 = 0x40002f3c + 0x3ff96544 __popcount_tab = 0x3ff96544 + 0x40002ef8 __popcountdi2 = 0x40002ef8 + 0x40002ed0 __popcountsi2 = 0x40002ed0 + 0x400638e4 __powidf2 = 0x400638e4 + 0x400026e4 __subdf3 = 0x400026e4 + 0x400021d0 __subsf3 = 0x400021d0 + 0x40002d20 __subvdi3 = 0x40002d20 + 0x40002cf8 __subvsi3 = 0x40002cf8 + 0x40002b90 __truncdfsf2 = 0x40002b90 + 0x40063840 __ucmpdi2 = 0x40063840 + 0x40064bec __udiv_w_sdiv = 0x40064bec + 0x4000cff8 __udivdi3 = 0x4000cff8 + 0x40064bf4 __udivmoddi4 = 0x40064bf4 + 0x4000c7c8 __udivsi3 = 0x4000c7c8 + 0x4000d280 __umoddi3 = 0x4000d280 + 0x4000c7d0 __umodsi3 = 0x4000c7d0 + 0x4000c7d8 __umulsidi3 = 0x4000c7d8 + 0x400637f4 __unorddf2 = 0x400637f4 + 0x40063478 __unordsf2 = 0x40063478 + 0x40056340 abs = 0x40056340 + 0x4000c1f4 bzero = 0x4000c1f4 + 0x40056348 div = 0x40056348 + 0x4000c728 __dummy_lock = 0x4000c728 + 0x4000c730 __dummy_lock_try = 0x4000c730 + 0x4000c20c isascii = 0x4000c20c + 0x40000f2c isblank = 0x40000f2c + 0x40000f50 iscntrl = 0x40000f50 + 0x40000f94 isgraph = 0x40000f94 + 0x40000fa8 isprint = 0x40000fa8 + 0x40000fc0 ispunct = 0x40000fc0 + 0x40056678 __itoa = 0x40056678 + 0x400566b4 itoa = 0x400566b4 + 0x40056370 labs = 0x40056370 + 0x40056378 ldiv = 0x40056378 + 0x400562cc longjmp = 0x400562cc + 0x4000c220 memccpy = 0x4000c220 + 0x4000c244 memchr = 0x4000c244 + 0x4000c260 memcmp = 0x4000c260 + 0x4000c2c8 memcpy = 0x4000c2c8 + 0x4000c3c0 memmove = 0x4000c3c0 + 0x4000c400 memrchr = 0x4000c400 + 0x4000c44c memset = 0x4000c44c + 0x40056424 qsort = 0x40056424 + 0x4000c498 __sccl = 0x4000c498 + 0x40056268 setjmp = 0x40056268 + 0x40001210 strcasestr = 0x40001210 + 0x4000c518 strcat = 0x4000c518 + 0x4000c53c strchr = 0x4000c53c + 0x40001274 strcmp = 0x40001274 + 0x400013ac strcpy = 0x400013ac + 0x4000c558 strcspn = 0x4000c558 + 0x40001470 strlcat = 0x40001470 + 0x4000c584 strlcpy = 0x4000c584 + 0x400014c0 strlen = 0x400014c0 + 0x4000c5c4 strncat = 0x4000c5c4 + 0x4000c5f4 strncmp = 0x4000c5f4 + 0x400015d4 strncpy = 0x400015d4 + 0x4000c628 strnlen = 0x4000c628 + 0x40001708 strrchr = 0x40001708 + 0x40001734 strsep = 0x40001734 + 0x4000c648 strspn = 0x4000c648 + 0x4000c674 strstr = 0x4000c674 + 0x40058f3c __submore = 0x40058f3c + 0x4000c720 toascii = 0x4000c720 + 0x400561f0 __utoa = 0x400561f0 + 0x40056258 utoa = 0x40056258 + 0x3ffb34f0 _heap_start = _heap_low_start + 0x400a0000 _sram1_iram_start = 0x400a0000 + 0x00000000 _sram1_iram_len = (_iram_end > _sram1_iram_start)?(_iram_end - _sram1_iram_start):0x0 + 0x40000000 _heap_end = ALIGN (((0x40000000 - _sram1_iram_len) - 0x3), 0x4) + 0x3ff80000 _data_seg_org = ORIGIN (rtc_data_seg) + 0x00000001 ASSERT ((_rodata_start == ORIGIN (default_rodata_seg)), .flash.appdesc section must be placed at the beginning of the rodata segment.) + +.rtc.text 0x400c0000 0x0 + 0x400c0000 . = ALIGN (0x4) + 0x400c0000 _rtc_text_start = ABSOLUTE (.) + *(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + 0x400c0000 _rtc_text_end = ABSOLUTE (.) + +.rtc.dummy 0x3ff80000 0x0 + 0x3ff80000 _rtc_dummy_start = ABSOLUTE (.) + 0x3ff80000 _rtc_fast_start = ABSOLUTE (.) + 0x00000000 . = SIZEOF (.rtc.text) + 0x3ff80000 _rtc_dummy_end = ABSOLUTE (.) + +.rtc.force_fast + 0x3ff80000 0x0 + 0x3ff80000 . = ALIGN (0x4) + 0x3ff80000 _rtc_force_fast_start = ABSOLUTE (.) + 0x3ff80000 _coredump_rtc_fast_start = ABSOLUTE (.) + *(.rtc.fast.coredump .rtc.fast.coredump.*) + 0x3ff80000 _coredump_rtc_fast_end = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x3ff80000 . = ALIGN (0x4) + 0x3ff80000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x50000000 0x0 + 0x50000000 _rtc_data_start = ABSOLUTE (.) + 0x50000000 _coredump_rtc_start = ABSOLUTE (.) + *(.rtc.coredump .rtc.coredump.*) + 0x50000000 _coredump_rtc_end = ABSOLUTE (.) + *(.rtc.data .rtc.data.*) + *(.rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.*) + 0x50000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x50000000 0x0 + 0x50000000 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(.rtc.bss) + 0x50000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x50000000 0x0 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x50000000 0x28 + 0x50000000 . = ALIGN (0x4) + 0x50000000 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + .rtc.force_slow.7 + 0x50000000 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x50000028 . = ALIGN (0x4) + 0x50000028 _rtc_force_slow_end = ABSOLUTE (.) + +.rtc_fast_reserved + 0x3ff82000 0x0 + 0x3ff82000 . = ALIGN (0x4) + 0x3ff82000 _rtc_fast_reserved_start = ABSOLUTE (.) + *(.bootloader_data_rtc_mem .bootloader_data_rtc_mem.*) + 0x3ff82000 _rtc_fast_reserved_end = ABSOLUTE (.) + 0x00000000 _rtc_fast_reserved_length = (_rtc_fast_reserved_end - _rtc_fast_reserved_start) + 0x00000001 ASSERT ((_rtc_fast_reserved_length <= LENGTH (rtc_fast_reserved_seg)), RTC FAST reserved segment data does not fit.) + +.rtc_slow_reserved + 0x50001fe8 0x18 + 0x50001fe8 . = ALIGN (0x4) + 0x50001fe8 _rtc_slow_reserved_start = ABSOLUTE (.) + *(.rtc_timer_data_in_rtc_mem .rtc_timer_data_in_rtc_mem.*) + .rtc_timer_data_in_rtc_mem + 0x50001fe8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x50002000 _rtc_slow_reserved_end = ABSOLUTE (.) + 0x00000018 _rtc_slow_reserved_length = (_rtc_slow_reserved_end - _rtc_slow_reserved_start) + 0x00000018 _rtc_reserved_length = _rtc_slow_reserved_length + 0x00000001 ASSERT ((_rtc_slow_reserved_length <= LENGTH (rtc_slow_reserved_seg)), RTC SLOW reserved segment data does not fit.) + 0x00000028 _rtc_slow_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_slow_end - _rtc_data_start):(_rtc_force_slow_end - _rtc_force_slow_start) + 0x00000000 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) + 0x00000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) + 0x00000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) + +.iram0.vectors 0x40080000 0x404 + 0x40080000 _iram_start = ABSOLUTE (.) + 0x40080000 _vector_table = ABSOLUTE (.) + 0x00000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x40080000 0x16a esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080000 _WindowOverflow4 + 0x40080040 _WindowUnderflow4 + 0x40080050 _xt_alloca_exc + 0x40080080 _WindowOverflow8 + 0x400800c0 _WindowUnderflow8 + 0x40080100 _WindowOverflow12 + 0x40080140 _WindowUnderflow12 + 0x00000180 . = 0x180 + *fill* 0x4008016a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x40080180 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080180 _Level2Vector + 0x000001c0 . = 0x1c0 + *fill* 0x40080186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x400801c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x400801c0 _Level3Vector + 0x00000200 . = 0x200 + *fill* 0x400801c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x40080200 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080200 _Level4Vector + 0x00000240 . = 0x240 + *fill* 0x40080206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x40080240 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080240 _Level5Vector + 0x00000280 . = 0x280 + *fill* 0x40080246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x40080280 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080280 _DebugExceptionVector + 0x000002c0 . = 0x2c0 + *fill* 0x40080286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x400802c0 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x400802c0 _NMIExceptionVector + 0x00000300 . = 0x300 + *fill* 0x400802c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x40080300 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080300 _KernelExceptionVector + 0x00000340 . = 0x340 + *fill* 0x40080306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x40080340 0x6 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x9 (size before relaxing) + 0x40080340 _UserExceptionVector + 0x000003c0 . = 0x3c0 + *fill* 0x40080346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x400803c0 0xe esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x11 (size before relaxing) + 0x400803c0 _DoubleExceptionVector + 0x00000400 . = 0x400 + *fill* 0x400803ce 0x32 + *(._invalid_pc_placeholder.text) + ._invalid_pc_placeholder.text + 0x40080400 0x3 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x40080400 _invalid_pc_placeholder + *(.*Vector.literal) + *fill* 0x40080403 0x1 + .DoubleExceptionVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .KernelExceptionVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .UserExceptionVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level2InterruptVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level3InterruptVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level4InterruptVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .Level5InterruptVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + .NMIExceptionVector.literal + 0x40080404 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x4 (size before relaxing) + +.iram0.text 0x40080404 0xa95f + 0x40080404 _iram_text_start = ABSOLUTE (.) + *(.iram1 .iram1.*) + .iram1.0.literal + 0x40080404 0x4 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40080408 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.1.literal + 0x40080418 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080418 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .iram1.8.literal + 0x40080420 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x44 (size before relaxing) + .iram1.9.literal + 0x40080448 0x20 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x44 (size before relaxing) + .iram1.14.literal + 0x40080468 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4 (size before relaxing) + .iram1.15.literal + 0x40080468 0x20 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x50 (size before relaxing) + .iram1.7.literal + 0x40080488 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x14 (size before relaxing) + .iram1.2.literal + 0x40080498 0x1c esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x2c (size before relaxing) + .iram1.3.literal + 0x400804b4 0xc esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x38 (size before relaxing) + .iram1.5.literal + 0x400804c0 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400804c0 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .iram1.literal + 0x400804c8 0x10 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x1c (size before relaxing) + .iram1.0.literal + 0x400804d8 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x1c (size before relaxing) + .iram1.0.literal + 0x400804dc 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x400804dc 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.2.literal + 0x400804dc 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x400804dc 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x24 (size before relaxing) + .iram1.1.literal + 0x400804e4 0x10 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x400804f4 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x400804f4 0xc esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x10 (size before relaxing) + .iram1.3.literal + 0x40080500 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x40 (size before relaxing) + .iram1.4.literal + 0x40080514 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0xc (size before relaxing) + .iram1.literal + 0x40080514 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x40080514 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x40 (size before relaxing) + .iram1.2.literal + 0x4008053c 0xc esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .iram1.0.literal + 0x40080548 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.1.literal + 0x4008054c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x40080550 0x14 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x28 (size before relaxing) + .iram1.8.literal + 0x40080564 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x40080568 0x34 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x48 (size before relaxing) + .iram1.2.literal + 0x4008059c 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x4008059c 0x14 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x400805b0 0x4 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x28 (size before relaxing) + .iram1.4.literal + 0x400805b4 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x400805b4 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x400805b4 0x4 esp-idf/soc/libsoc.a(dport_access.c.obj) + .iram1.1.literal + 0x400805b8 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x400805b8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.2.literal + 0x400805bc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.3.literal + 0x400805c4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x400805c8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.4.literal + 0x400805cc 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x34 (size before relaxing) + .iram1.5.literal + 0x400805d8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .iram1.8.literal + 0x400805d8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.9.literal + 0x400805d8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x400805d8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .iram1.5.literal + 0x400805e8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .iram1.6.literal + 0x400805f8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .iram1.7.literal + 0x40080608 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0xc (size before relaxing) + .iram1.2.literal + 0x40080608 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x44 (size before relaxing) + .iram1.1.literal + 0x40080628 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .iram1.0.literal + 0x4008062c 0x4 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.16.literal + 0x40080630 0xc esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x10 (size before relaxing) + .iram1.4.literal + 0x4008063c 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x34 (size before relaxing) + .iram1.9.literal + 0x40080644 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x28 (size before relaxing) + .iram1.1.literal + 0x4008064c 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x4008064c 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x4008064c 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x24 (size before relaxing) + .iram1.5.literal + 0x40080654 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080654 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080654 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x40080654 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x40080654 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x40080654 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.13.literal + 0x40080654 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.18.literal + 0x40080654 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.22.literal + 0x40080654 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x8 (size before relaxing) + .iram1.0.literal + 0x40080654 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.5.literal + 0x40080654 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080654 0x4 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x40080658 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4 (size before relaxing) + .iram1.12.literal + 0x40080658 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080658 0x2c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x58 (size before relaxing) + .iram1.9.literal + 0x40080684 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + .iram1.13.literal + 0x40080684 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080684 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.8.literal + 0x40080688 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x44 (size before relaxing) + .iram1.10.literal + 0x40080694 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xc (size before relaxing) + .iram1.11.literal + 0x40080694 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x24 (size before relaxing) + .iram1.14.literal + 0x400806a0 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.8.literal + 0x400806a0 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.8.literal + 0x400806a4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x400806ac 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x400806ac 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .iram1.1.literal + 0x400806ac 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x400806ac 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x400806ac 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.6.literal + 0x400806b0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.0.literal + 0x400806b0 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x400806b0 0x10 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.3.literal + 0x400806c0 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x400806c8 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .iram1.literal + 0x400806cc 0x44 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0xac (size before relaxing) + .iram1.2.literal + 0x40080710 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x40080710 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x40080710 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x40080710 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x70 (size before relaxing) + .iram1.6.literal + 0x40080740 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x10 (size before relaxing) + .iram1.28.literal + 0x40080740 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xc (size before relaxing) + .iram1.1.literal + 0x40080740 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .iram1.3.literal + 0x40080744 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x40080744 0x10 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x40080754 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x40080754 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x54 (size before relaxing) + .iram1.2.literal + 0x40080790 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x40080790 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x4 (size before relaxing) + .iram1.16.literal + 0x40080790 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x1c (size before relaxing) + .iram1.6.literal + 0x40080798 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.7.literal + 0x400807a8 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .iram1.8.literal + 0x400807ac 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x68 (size before relaxing) + .iram1.9.literal + 0x400807e4 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x14 (size before relaxing) + .iram1.0.literal + 0x400807f4 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x400807f4 0xc esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x20 (size before relaxing) + .iram1.2.literal + 0x40080800 0x10 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.3.literal + 0x40080810 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.6.literal + 0x40080810 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.7.literal + 0x40080810 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x40080810 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .iram1.literal + 0x40080810 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0xc (size before relaxing) + .iram1.0.literal + 0x40080810 0x1c esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_encrypt_ll_enable + 0x4008082c 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encrypt_ll_disable + 0x40080830 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_encrypt_ll_plaintext_save + 0x40080830 0x14 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_encryption_hal_enable + 0x40080844 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_disable + 0x40080844 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_encryption_hal_prepare + 0x40080844 0x8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_encryption_hal_done + 0x4008084c 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .literal.spi_flash_ll_set_read_mode + 0x40080850 0x10 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_ll_program_page + 0x40080860 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x40080864 0x8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x28 (size before relaxing) + .literal.spi_flash_hal_common_command + 0x4008086c 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_read + 0x4008086c 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_hal_erase_chip + 0x4008086c 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .literal.spi_flash_hal_erase_sector + 0x40080870 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_erase_block + 0x40080874 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_program_page + 0x40080874 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_set_write_protect + 0x40080874 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_check_status + 0x40080878 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_resume + 0x40080878 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_suspend + 0x40080878 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_init + 0x40080878 0x4c esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x54 (size before relaxing) + .literal.wdt_hal_config_stage + 0x400808c4 0xc esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x34 (size before relaxing) + .literal.wdt_hal_write_protect_disable + 0x400808d0 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_enable + 0x400808d0 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_handle_intr + 0x400808d0 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_feed + 0x400808d0 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.wdt_hal_set_flashboot_en + 0x400808d0 0x4 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .literal.esp_cpu_stall + 0x400808d4 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_cpu_unstall + 0x400808f0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x20 (size before relaxing) + .literal.esp_clk_slowclk_cal_get + 0x400808f4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .literal.esp_clk_slowclk_cal_set + 0x400808f8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x8 (size before relaxing) + .literal.esp_rtc_get_time_us + 0x400808f8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x38 (size before relaxing) + .literal.esp_ptr_executable + 0x40080900 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x20 (size before relaxing) + .literal.esp_ptr_byte_accessible + 0x40080914 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x8 (size before relaxing) + .literal.periph_rcc_acquire_enter + 0x40080918 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_rcc_acquire_exit + 0x4008091c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x8 (size before relaxing) + .literal.periph_rcc_enter + 0x4008091c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_rcc_exit + 0x40080920 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.regi2c_ctrl_write_reg + 0x40080920 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.rtc_clk_32k_enable_common + 0x40080928 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_disable + 0x4008093c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x40080944 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x40080944 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x3c (size before relaxing) + .literal.rtc_clk_32k_enable + 0x40080950 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x40080950 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_32k_disable_external + 0x40080950 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x8 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x40080950 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_8md256_enabled + 0x40080958 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_src_set + 0x40080958 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x20 (size before relaxing) + .literal.rtc_clk_slow_src_get + 0x40080958 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x40080958 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_src_set + 0x40080964 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x14 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x40080964 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x40080968 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 + 0x40080968 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x40080978 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_xtal + 0x4008097c 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4c (size before relaxing) + .literal.rtc_clk_cpu_set_to_default_config + 0x4008099c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x4008099c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x50 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_rc_fast + 0x400809ac 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x38 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x400809b4 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x400809b4 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x84 (size before relaxing) + .literal.rtc_clk_cal + 0x400809e8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.rtc_time_get + 0x400809f0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x24 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x40080a00 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x38 (size before relaxing) + .literal.enable_timer_group0_for_calibration + 0x40080a0c 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x20 (size before relaxing) + .literal.abort + 0x40080a0c 0x14 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x28 (size before relaxing) + .literal.ra_to_str + 0x40080a20 0x4 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x8 (size before relaxing) + .literal.__assert_func + 0x40080a24 0x20 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x40 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x40080a44 0x4 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0xc (size before relaxing) + .literal.esp_time_impl_get_boot_time + 0x40080a48 0xc esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.esp_time_impl_set_boot_time + 0x40080a54 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x14 (size before relaxing) + .literal.malloc + 0x40080a54 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x40080a54 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.calloc + 0x40080a54 0x4 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.__atomic_fetch_or_8 + 0x40080a58 0x4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0x1c (size before relaxing) + .literal.cache_sync + 0x40080a5c 0x4 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .literal.esp_cache_get_alignment + 0x40080a60 0xc esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x18 (size before relaxing) + .literal.esp_cache_suspend_ext_mem_cache + 0x40080a6c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_resume_ext_mem_cache + 0x40080a6c 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x4 (size before relaxing) + .literal.esp_rom_set_cpu_ticks_per_us + 0x40080a6c 0x4 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x8 (size before relaxing) + .literal.esp_error_check_failed_print + 0x40080a70 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x28 (size before relaxing) + .literal._esp_error_check_failed + 0x40080a80 0x8 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x10 (size before relaxing) + .literal.esp_restart_noos_dig + 0x40080a88 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x1c (size before relaxing) + .literal.esp_system_abort + 0x40080a88 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x4 (size before relaxing) + .literal.esp_vApplicationTickHook + 0x40080a88 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .literal.panic_abort + 0x40080a8c 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .literal.esp_restart_noos + 0x40080a94 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x9c (size before relaxing) + .literal.esp_system_reset_modules_on_exit + 0x40080abc 0xc esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x30 (size before relaxing) + .literal.vPortExitCritical + 0x40080ac8 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40 (size before relaxing) + .literal.vPortYieldOtherCore + 0x40080af4 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.xPortEnterCriticalTimeout + 0x40080af4 0x1c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x58 (size before relaxing) + .literal.xPortInIsrContext + 0x40080b10 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.xPortInterruptedFromISRContext + 0x40080b14 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.xPortStartScheduler + 0x40080b14 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.vPortSetupTimer + 0x40080b18 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x8 (size before relaxing) + .literal.xPortSysTickHandler + 0x40080b18 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x10 (size before relaxing) + .literal 0x40080b18 0x28 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0xa8 (size before relaxing) + .literal.prvCopyDataFromQueue + 0x40080b40 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.prvCopyDataToQueue + 0x40080b40 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x40080b40 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40 (size before relaxing) + .literal.xQueueGiveFromISR + 0x40080b58 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.xQueueReceiveFromISR + 0x40080b68 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.prvCheckTaskCanBeScheduledSMP + 0x40080b78 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvIsYieldRequiredSMP + 0x40080b7c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.prvResetNextTaskUnblockTime + 0x40080b88 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvSelectHighestPriorityTaskSMP + 0x40080b90 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.vTaskGenericNotifyGiveFromISR + 0x40080ba4 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.vTaskGetSnapshot + 0x40080bcc 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.vTaskSwitchContext + 0x40080bcc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x40080bd0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.xTaskGetTickCount + 0x40080bd4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetTickCountFromISR + 0x40080bd8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.xTaskIncrementTick + 0x40080bd8 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x70 (size before relaxing) + .literal.xTaskIncrementTickOtherCores + 0x40080bf8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x40080c04 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5c (size before relaxing) + .literal.cache_hal_suspend + 0x40080c18 0x14 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x34 (size before relaxing) + .literal.cache_hal_resume + 0x40080c2c 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x24 (size before relaxing) + .literal.cache_hal_is_cache_enabled + 0x40080c2c 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x10 (size before relaxing) + .literal.cache_hal_get_cache_line_size + 0x40080c2c 0xc esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x10 (size before relaxing) + .literal.mmu_ll_check_entry_valid + 0x40080c38 0x10 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x18 (size before relaxing) + .literal.mmu_ll_get_entry_target + 0x40080c48 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x1c (size before relaxing) + .literal.mmu_ll_entry_id_to_paddr_base + 0x40080c50 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x18 (size before relaxing) + .literal.mmu_hal_ctx_init + 0x40080c54 0x4 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .literal.mmu_hal_check_valid_ext_vaddr_region + 0x40080c58 0x24 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x30 (size before relaxing) + .literal.mmu_hal_map_region + 0x40080c7c 0x30 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x78 (size before relaxing) + .literal.mmu_hal_unmap_region + 0x40080cac 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x68 (size before relaxing) + .literal.mmu_hal_vaddr_to_paddr + 0x40080cb4 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x54 (size before relaxing) + .literal.assert_valid_block + 0x40080cbc 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_aligned_alloc_impl_offs + 0x40080cc0 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.multi_heap_aligned_alloc_offs + 0x40080cc0 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4 (size before relaxing) + .literal.multi_heap_free_impl + 0x40080cc0 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_internal_lock + 0x40080cc0 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xc (size before relaxing) + .literal.multi_heap_internal_unlock + 0x40080cc0 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xc (size before relaxing) + .literal.multi_heap_malloc_impl + 0x40080cc0 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x14 (size before relaxing) + .literal.tlsf_free + 0x40080cc0 0x58 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xa4 (size before relaxing) + .literal.tlsf_get_pool + 0x40080d18 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_malloc + 0x40080d18 0x38 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x9c (size before relaxing) + .literal.tlsf_memalign_offs + 0x40080d50 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0xd8 (size before relaxing) + .literal.esp_log + 0x40080d5c 0x4 esp-idf/log/liblog.a(log.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_impl_lock + 0x40080d60 0x4 esp-idf/log/liblog.a(log_lock.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x40080d64 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0x10 (size before relaxing) + .literal.esp_log_impl_unlock + 0x40080d64 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0xc (size before relaxing) + .literal.esp_log_early_timestamp + 0x40080d64 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_timestamp + 0x40080d64 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x1c (size before relaxing) + .literal.esp_log_level_get_timeout + 0x40080d68 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_util_set_cache_enabled_cb + 0x40080d68 0x4 esp-idf/log/liblog.a(util.c.obj) + .literal.check_chip_pointer_default + 0x40080d6c 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .literal.detect_spi_flash_chip + 0x40080d70 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .literal.esp_flash_erase_region + 0x40080d7c 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .literal.esp_flash_get_physical_size + 0x40080d90 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .literal.esp_flash_get_size + 0x40080d90 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x8 (size before relaxing) + .literal.esp_flash_init_main + 0x40080d90 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x5c (size before relaxing) + .literal.esp_flash_read + 0x40080da4 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18 (size before relaxing) + .literal.esp_flash_read_encrypted + 0x40080da4 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + .literal.esp_flash_write + 0x40080da4 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3c (size before relaxing) + .literal.esp_flash_write_encrypted + 0x40080db0 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x64 (size before relaxing) + .literal.flash_end_flush_cache + 0x40080dc0 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_needs_reset_check + 0x40080dc0 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_set_erasing_flag + 0x40080dc4 0x4 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .literal.spi_flash_brownout_need_reset + 0x40080dc8 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_read_status_hs + 0x40080dc8 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x4 (size before relaxing) + .literal.memspi_host_read_id_hs + 0x40080dc8 0x8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1c (size before relaxing) + .literal.memspi_host_flush_cache + 0x40080dd0 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.memspi_host_init_pointers + 0x40080dd0 0xc esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_chip_gd_detect_size + 0x40080ddc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_probe + 0x40080ddc 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_suspend_cmd_conf + 0x40080de0 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 + 0x40080de0 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_chip_gd_get_io_mode + 0x40080df4 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 + 0x40080df4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_command_generic_program_4B + 0x40080df4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_generic_erase_sector_4B + 0x40080df4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_generic_erase_block_4B + 0x40080df4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_reset + 0x40080df4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_erase_sector + 0x40080df4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_erase_block + 0x40080df4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_page_program + 0x40080df4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x40080df4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_write_encrypted + 0x40080dfc 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_get_caps + 0x40080e00 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_qe_sr + 0x40080e00 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_write_qe_sr + 0x40080e00 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x40080e00 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 + 0x40080e00 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 + 0x40080e00 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x40080e00 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_chip_generic_write + 0x40080e08 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 + 0x40080e08 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_yield + 0x40080e14 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_read_unique_id + 0x40080e14 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x40080e1c 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 + 0x40080e1c 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 + 0x40080e1c 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 + 0x40080e1c 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 + 0x40080e1c 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 + 0x40080e1c 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_probe + 0x40080e1c 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 + 0x40080e20 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 + 0x40080e28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_mxic_detect_size + 0x40080e28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_suspend_cmd_conf + 0x40080e28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_command_winbond_program_4B + 0x40080e28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_page_program + 0x40080e28 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 + 0x40080e28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_sector + 0x40080e28 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 + 0x40080e28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_winbond_erase_block + 0x40080e28 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_winbond_read + 0x40080e28 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x1c (size before relaxing) + .literal.delay_us + 0x40080e30 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.get_buffer_malloc + 0x40080e30 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .literal.main_flash_op_status + 0x40080e34 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.main_flash_region_protected + 0x40080e34 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x8 (size before relaxing) + .literal.release_buffer_malloc + 0x40080e34 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_os_check_yield + 0x40080e34 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_os_yield + 0x40080e40 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xc (size before relaxing) + .literal.delay_us + 0x40080e40 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_app_disable_os_functions + 0x40080e40 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .literal 0x40080e44 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x4 (size before relaxing) + .literal 0x40080e44 0x4 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x2c (size before relaxing) + .iram1.0 0x40080e48 0x1b esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x40080e48 esp_system_get_time + *fill* 0x40080e63 0x1 + .iram1.0 0x40080e64 0x4f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x40080e64 esp_timer_impl_get_counter_reg + *fill* 0x40080eb3 0x1 + .iram1.1 0x40080eb4 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x16 (size before relaxing) + 0x40080eb4 esp_timer_get_time + 0x40080eb4 esp_timer_impl_get_time + *fill* 0x40080ec7 0x1 + .iram1.0 0x40080ec8 0x27 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x2e (size before relaxing) + 0x40080ec8 start_cpu_other_cores + *fill* 0x40080eef 0x1 + .iram1.8 0x40080ef0 0xa3 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb7 (size before relaxing) + 0x40080ef0 call_start_cpu1 + *fill* 0x40080f93 0x1 + .iram1.9 0x40080f94 0xda esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xf2 (size before relaxing) + 0x40080f94 do_multicore_settings + *fill* 0x4008106e 0x2 + .iram1.14 0x40081070 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb (size before relaxing) + 0x40081070 flash_init_state + *fill* 0x40081078 0x0 + .iram1.15 0x40081078 0xaa esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xc2 (size before relaxing) + 0x40081078 call_start_cpu0 + *fill* 0x40081122 0x2 + .iram1.7 0x40081124 0x61 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + *fill* 0x40081185 0x3 + .iram1.2 0x40081188 0x6e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x7e (size before relaxing) + 0x40081188 esp_ipc_isr_stall_other_cpu + *fill* 0x400811f6 0x2 + .iram1.3 0x400811f8 0x83 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x8e (size before relaxing) + 0x400811f8 esp_ipc_isr_release_other_cpu + *fill* 0x4008127b 0x1 + .iram1.5 0x4008127c 0xf esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x4008127c esp_ipc_isr_stall_abort + *fill* 0x4008128b 0x1 + .iram1.0 0x4008128c 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x4008128c esp_ipc_isr_port_int_trigger + .iram1 0x400812ac 0x91 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x95 (size before relaxing) + 0x400812ac xt_highint4 + 0x4008133d ld_include_highint_hdl + *fill* 0x4008133d 0x3 + .iram1.0 0x40081340 0x64 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x70 (size before relaxing) + .iram1.0 0x400813a4 0x1b esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x23 (size before relaxing) + *fill* 0x400813bf 0x1 + .iram1.1 0x400813c0 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x400813c0 panicHandler + *fill* 0x400813d2 0x2 + .iram1.2 0x400813d4 0x12 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x16 (size before relaxing) + 0x400813d4 xt_unhandled_exception + *fill* 0x400813e6 0x2 + .iram1 0x400813e8 0x63 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x400813e8 esp_ipc_isr_handler + *fill* 0x4008144b 0x1 + .iram1.1 0x4008144c 0x2f esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x3b (size before relaxing) + *fill* 0x4008147b 0x1 + .iram1.2 0x4008147c 0x18 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .iram1.0 0x40081494 0x52 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x56 (size before relaxing) + 0x40081494 esp_backtrace_get_next_frame + *fill* 0x400814e6 0x2 + .iram1.3 0x400814e8 0x101 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x111 (size before relaxing) + 0x400814e8 esp_backtrace_print_from_frame + *fill* 0x400815e9 0x3 + .iram1.4 0x400815ec 0x28 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x2c (size before relaxing) + 0x400815ec esp_backtrace_print + .iram1 0x40081614 0x1d esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x40081614 esp_backtrace_get_start + *fill* 0x40081631 0x3 + .iram1.2 0x40081634 0xe3 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xf6 (size before relaxing) + *fill* 0x40081717 0x1 + .iram1.2 0x40081718 0x54 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + 0x40081718 esp_rom_output_tx_wait_idle + .iram1.0 0x4008176c 0x16 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x40081782 0x2 + .iram1.1 0x40081784 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x31 (size before relaxing) + 0x40081784 heap_caps_malloc + *fill* 0x400817b1 0x3 + .iram1.2 0x400817b4 0x67 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x76 (size before relaxing) + 0x400817b4 heap_caps_malloc_default + *fill* 0x4008181b 0x1 + .iram1.8 0x4008181c 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x32 (size before relaxing) + 0x4008181c heap_caps_calloc + *fill* 0x4008184a 0x2 + .iram1.0 0x4008184c 0xb1 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0xc1 (size before relaxing) + *fill* 0x400818fd 0x3 + .iram1.2 0x40081900 0x20 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x23 (size before relaxing) + *fill* 0x40081920 0x0 + .iram1.1 0x40081920 0x60 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x40081920 heap_caps_free + .iram1.3 0x40081980 0xea esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0xf2 (size before relaxing) + 0x40081980 heap_caps_aligned_alloc_base + *fill* 0x40081a6a 0x2 + .iram1.4 0x40081a6c 0x10 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x14 (size before relaxing) + 0x40081a6c heap_caps_malloc_base + .iram1.6 0x40081a7c 0x30 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x34 (size before relaxing) + 0x40081a7c heap_caps_calloc_base + .iram1.0 0x40081aac 0x15 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x40081aac esp_dport_access_reg_read + *fill* 0x40081ac1 0x3 + .iram1.1 0x40081ac4 0xc esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x40081ac4 esp_dport_access_sequence_reg_read + .iram1.0 0x40081ad0 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .iram1.2 0x40081af4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40081af4 esp_clk_cpu_freq + .iram1.3 0x40081b04 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40081b04 esp_clk_apb_freq + *fill* 0x40081b1a 0x2 + .iram1.0 0x40081b1c 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + *fill* 0x40081b55 0x3 + .iram1.4 0x40081b58 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x8f (size before relaxing) + 0x40081b58 esp_intr_noniram_disable + *fill* 0x40081bcc 0x0 + .iram1.5 0x40081bcc 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x7f (size before relaxing) + 0x40081bcc esp_intr_noniram_enable + *fill* 0x40081c30 0x0 + .iram1.8 0x40081c30 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x40081c30 esp_intr_enable_source + *fill* 0x40081c40 0x0 + .iram1.9 0x40081c40 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x13 (size before relaxing) + 0x40081c40 esp_intr_disable_source + *fill* 0x40081c50 0x0 + .iram1.3 0x40081c50 0xea esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x102 (size before relaxing) + 0x40081c50 esp_intr_disable + *fill* 0x40081d3a 0x2 + .iram1.5 0x40081d3c 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x58 (size before relaxing) + .iram1.6 0x40081d88 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40081d88 rtc_isr_noniram_disable + *fill* 0x40081dba 0x2 + .iram1.7 0x40081dbc 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x40081dbc rtc_isr_noniram_enable + *fill* 0x40081dda 0x2 + .iram1.2 0x40081ddc 0xb7 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0xcb (size before relaxing) + *fill* 0x40081e93 0x1 + .iram1.1 0x40081e94 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40081e94 rtc_clk_get_lact_compensation_delay + *fill* 0x40081ed3 0x1 + .iram1.0 0x40081ed4 0x24 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x2f (size before relaxing) + *fill* 0x40081ef8 0x0 + .iram1.16 0x40081ef8 0x17 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x1a (size before relaxing) + *fill* 0x40081f0f 0x1 + .iram1.4 0x40081f10 0xa5 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0xbd (size before relaxing) + *fill* 0x40081fb5 0x3 + .iram1.9 0x40081fb8 0x5e esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x6a (size before relaxing) + *fill* 0x40082016 0x2 + .iram1.1 0x40082018 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x40082018 _lock_init + *fill* 0x4008202b 0x1 + .iram1.2 0x4008202c 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x4008202c _lock_init_recursive + *fill* 0x4008203f 0x1 + .iram1.3 0x40082040 0x37 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x47 (size before relaxing) + 0x40082040 _lock_close_recursive + 0x40082040 _lock_close + *fill* 0x40082077 0x1 + .iram1.5 0x40082078 0xe esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x12 (size before relaxing) + 0x40082078 _lock_acquire + *fill* 0x40082086 0x2 + .iram1.6 0x40082088 0xe esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x12 (size before relaxing) + 0x40082088 _lock_acquire_recursive + *fill* 0x40082096 0x2 + .iram1.7 0x40082098 0x10 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x14 (size before relaxing) + 0x40082098 _lock_try_acquire + .iram1.8 0x400820a8 0x10 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x14 (size before relaxing) + 0x400820a8 _lock_try_acquire_recursive + .iram1.10 0x400820b8 0xf esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x400820b8 _lock_release + *fill* 0x400820c7 0x1 + .iram1.11 0x400820c8 0xf esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x400820c8 _lock_release_recursive + *fill* 0x400820d7 0x1 + .iram1.13 0x400820d8 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x400820d8 __retarget_lock_init_recursive + *fill* 0x400820eb 0x1 + .iram1.18 0x400820ec 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x17 (size before relaxing) + 0x400820ec __retarget_lock_acquire_recursive + *fill* 0x400820ff 0x1 + .iram1.22 0x40082100 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x17 (size before relaxing) + 0x40082100 __retarget_lock_release_recursive + *fill* 0x40082113 0x1 + .iram1.0 0x40082114 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1c (size before relaxing) + 0x40082114 efuse_hal_chip_revision + .iram1.5 0x4008212c 0x28 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x4008212c efuse_hal_flash_encryption_enabled + .iram1.0 0x40082154 0x49 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x40082154 efuse_hal_get_major_chip_version + *fill* 0x4008219d 0x3 + .iram1.1 0x400821a0 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x400821a0 efuse_hal_get_minor_chip_version + .iram1.12 0x400821b0 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xb (size before relaxing) + 0x400821b0 spi_flash_disable_cache + *fill* 0x400821b8 0x0 + .iram1.7 0x400821b8 0xe2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xfa (size before relaxing) + 0x400821b8 spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x4008229a 0x2 + .iram1.9 0x4008229c 0x2a esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x32 (size before relaxing) + 0x4008229c spi_flash_disable_interrupts_caches_and_other_cpu_no_os + *fill* 0x400822c6 0x2 + .iram1.13 0x400822c8 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xb (size before relaxing) + 0x400822c8 spi_flash_restore_cache + *fill* 0x400822d0 0x0 + .iram1.6 0x400822d0 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x52 (size before relaxing) + 0x400822d0 spi_flash_op_block_func + *fill* 0x40082316 0x2 + .iram1.8 0x40082318 0x92 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xa5 (size before relaxing) + 0x40082318 spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x400823aa 0x2 + .iram1.10 0x400823ac 0x19 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + 0x400823ac spi_flash_enable_interrupts_caches_no_os + *fill* 0x400823c5 0x3 + .iram1.11 0x400823c8 0xbb esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xbf (size before relaxing) + 0x400823c8 spi_flash_enable_cache + *fill* 0x40082483 0x1 + .iram1.14 0x40082484 0x11 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x40082484 spi_flash_cache_enabled + *fill* 0x40082495 0x3 + .iram1.8 0x40082498 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x40082498 spi_flash_guard_set + *fill* 0x400824a2 0x2 + .iram1.8 0x400824a4 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.0 0x400824d4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x400824dc 0x0 + .iram1.5 0x400824dc 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x18 (size before relaxing) + .iram1.1 0x400824f0 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb (size before relaxing) + *fill* 0x400824f8 0x0 + .iram1.4 0x400824f8 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .iram1.7 0x40082504 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x40082527 0x1 + .iram1.6 0x40082528 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x4008254b 0x1 + .iram1.0 0x4008254c 0x1c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x20 (size before relaxing) + .iram1.1 0x40082568 0x52 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x56 (size before relaxing) + 0x40082568 spi_flash_check_and_flush_cache + *fill* 0x400825ba 0x2 + .iram1.3 0x400825bc 0x6c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x70 (size before relaxing) + .iram1.0 0x40082628 0x16 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x40082628 xt_unhandled_interrupt + *fill* 0x4008263e 0x2 + .iram1 0x40082640 0x4e2 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x506 (size before relaxing) + 0x40082640 xt_debugexception + 0x40082714 _xt_user_exit + 0x40082a48 _xt_medint2_exit + 0x40082af8 _xt_medint3_exit + 0x40082b14 xt_highint5 + 0x40082b1c xt_nmi + *fill* 0x40082b22 0x2 + .iram1.2 0x40082b24 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x40082b2c 0x0 + .iram1.4 0x40082b2c 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x40082b34 0x0 + .iram1.3 0x40082b34 0x8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xb (size before relaxing) + *fill* 0x40082b3c 0x0 + .iram1.5 0x40082b3c 0x219 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x231 (size before relaxing) + *fill* 0x40082d55 0x3 + .iram1.6 0x40082d58 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x29 (size before relaxing) + *fill* 0x40082d75 0x3 + .iram1.28 0x40082d78 0x1a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x22 (size before relaxing) + *fill* 0x40082d92 0x2 + .iram1.1 0x40082d94 0x6d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x40082d94 esp_mmu_paddr_find_caps + *fill* 0x40082e01 0x3 + .iram1.3 0x40082e04 0x15 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x19 (size before relaxing) + *fill* 0x40082e19 0x3 + .iram1.0 0x40082e1c 0x6a esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x6e (size before relaxing) + 0x40082e1c esp_heap_adjust_alignment_to_hw + *fill* 0x40082e86 0x2 + .iram1.0 0x40082e88 0xa esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xd (size before relaxing) + 0x40082e88 esp_flash_encryption_enabled + *fill* 0x40082e92 0x2 + .iram1.1 0x40082e94 0x2ec esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x40082e94 bootloader_flash_execute_command_common + .iram1.2 0x40083180 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x40083180 bootloader_execute_flash_command + .iram1.4 0x400831a0 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x2e (size before relaxing) + 0x400831a0 bootloader_read_flash_id + *fill* 0x400831ca 0x2 + .iram1.16 0x400831cc 0x96 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x9e (size before relaxing) + 0x400831cc bootloader_flash_reset_chip + *fill* 0x40083262 0x2 + .iram1.6 0x40083264 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x40083264 bootloader_flash_cs_timing_config + *fill* 0x400832d2 0x2 + .iram1.7 0x400832d4 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x400832d4 bootloader_flash_clock_config + .iram1.8 0x40083320 0x202 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x20e (size before relaxing) + 0x40083320 bootloader_flash_gpio_config + *fill* 0x40083522 0x2 + .iram1.9 0x40083524 0xb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x40083524 bootloader_flash_dummy_config + *fill* 0x400835d7 0x1 + .iram1.0 0x400835d8 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x400835d8 bootloader_common_get_chip_ver_pkg + *fill* 0x400835f6 0x2 + .iram1.1 0x400835f8 0x57 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x66 (size before relaxing) + *fill* 0x4008364f 0x1 + .iram1.2 0x40083650 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x60 (size before relaxing) + .iram1.3 0x400836a8 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x400836a8 esp_crosscore_int_send_yield + *fill* 0x400836b7 0x1 + .iram1.6 0x400836b8 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x400836b8 esp_crosscore_int_send_print_backtrace + *fill* 0x400836c7 0x1 + .iram1.7 0x400836c8 0xf esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x400836c8 esp_crosscore_int_send_twdt_abort + *fill* 0x400836d7 0x1 + .iram1.0 0x400836d8 0x1f esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x27 (size before relaxing) + 0x400836d8 esp_task_wdt_impl_timer_feed + *fill* 0x400836f7 0x1 + .iram1 0x400836f8 0x40 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x48 (size before relaxing) + 0x400836f8 _xt_panic + .iram1.0 0x40083738 0x66 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x40083738 esp_rom_gpio_connect_out_signal + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x0 + *fill* 0x4008379e 0x2 + .iram1 0x400837a0 0xa esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + 0x400837a0 esp_ipc_isr_waiting_for_finish_cmd + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x0 + *fill* 0x400837aa 0x2 + .iram1.2 0x400837ac 0x7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x400837ac efuse_hal_get_disable_wafer_version_major + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x0 + *fill* 0x400837b3 0x1 + .iram1.10 0x400837b4 0x5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x400837b4 esp_mspi_pin_init + *fill* 0x400837b9 0x3 + .iram1.11 0x400837bc 0x7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x400837bc spi_flash_init_chip_state + *fill* 0x400837c3 0x1 + .iram1.13 0x400837c4 0x7 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x400837c4 esp_mspi_32bit_address_flash_feature_check + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *fill* 0x400837cb 0x0 + *libesp_hal_gpio.a:gpio_hal.*(.literal.gpio_hal_isolate_in_sleep .text.gpio_hal_isolate_in_sleep) + *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x400837cb 0x1 + .text.spi_flash_encrypt_ll_enable + 0x400837cc 0x1b esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x400837e7 0x1 + .text.spi_flash_encrypt_ll_disable + 0x400837e8 0x1b esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + *fill* 0x40083803 0x1 + .text.spi_flash_encrypt_ll_plaintext_save + 0x40083804 0x43 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x46 (size before relaxing) + *fill* 0x40083847 0x1 + .text.spi_flash_encryption_hal_enable + 0x40083848 0x8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0xb (size before relaxing) + 0x40083848 spi_flash_encryption_hal_enable + *fill* 0x40083850 0x0 + .text.spi_flash_encryption_hal_disable + 0x40083850 0x8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0xb (size before relaxing) + 0x40083850 spi_flash_encryption_hal_disable + *fill* 0x40083858 0x0 + .text.spi_flash_encryption_hal_prepare + 0x40083858 0x20 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x24 (size before relaxing) + 0x40083858 spi_flash_encryption_hal_prepare + .text.spi_flash_encryption_hal_done + 0x40083878 0x10 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40083878 spi_flash_encryption_hal_done + *fill* 0x40083888 0x0 + *fill* 0x40083888 0x0 + *fill* 0x40083888 0x0 + *fill* 0x40083888 0x0 + *fill* 0x40083888 0x0 + *fill* 0x40083888 0x0 + .text.spi_flash_encryption_hal_destroy + 0x40083888 0x5 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40083888 spi_flash_encryption_hal_destroy + *fill* 0x4008388d 0x3 + .text.spi_flash_encryption_hal_check + 0x40083890 0xe esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x40083890 spi_flash_encryption_hal_check + *libesp_hal_mspi.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x4008389e 0x2 + .text.spi_flash_ll_set_read_mode + 0x400838a0 0xba esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + *fill* 0x4008395a 0x2 + .text.spi_flash_ll_program_page + 0x4008395c 0x62 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + *fill* 0x400839be 0x2 + .text.spi_flash_hal_configure_host_io_mode + 0x400839c0 0x195 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x400839c0 spi_flash_hal_configure_host_io_mode + *fill* 0x40083b55 0x3 + .text.spi_flash_hal_common_command + 0x40083b58 0x1d9 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083b58 spi_flash_hal_common_command + *fill* 0x40083d31 0x3 + .text.spi_flash_hal_read + 0x40083d34 0x100 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083d34 spi_flash_hal_read + .text.spi_flash_hal_erase_chip + 0x40083e34 0x22 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083e34 spi_flash_hal_erase_chip + *fill* 0x40083e56 0x2 + .text.spi_flash_hal_erase_sector + 0x40083e58 0x5a esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083e58 spi_flash_hal_erase_sector + *fill* 0x40083eb2 0x2 + .text.spi_flash_hal_erase_block + 0x40083eb4 0x52 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083eb4 spi_flash_hal_erase_block + *fill* 0x40083f06 0x2 + .text.spi_flash_hal_program_page + 0x40083f08 0x52 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083f08 spi_flash_hal_program_page + *fill* 0x40083f5a 0x2 + .text.spi_flash_hal_set_write_protect + 0x40083f5c 0x3c esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083f5c spi_flash_hal_set_write_protect + .text.spi_flash_hal_check_status + 0x40083f98 0x32 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083f98 spi_flash_hal_check_status + *fill* 0x40083fca 0x2 + .text.spi_flash_hal_resume + 0x40083fcc 0x6 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x40083fcc spi_flash_hal_resume + *fill* 0x40083fd2 0x2 + .text.spi_flash_hal_suspend + 0x40083fd4 0x6 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x9 (size before relaxing) + 0x40083fd4 spi_flash_hal_suspend + *fill* 0x40083fda 0x0 + *fill* 0x40083fda 0x0 + *fill* 0x40083fda 0x2 + .text.spi_flash_hal_poll_cmd_done + 0x40083fdc 0xf esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083fdc spi_flash_hal_poll_cmd_done + *fill* 0x40083feb 0x1 + .text.spi_flash_hal_device_config + 0x40083fec 0xdb esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x40083fec spi_flash_hal_device_config + *fill* 0x400840c7 0x0 + *fill* 0x400840c7 0x0 + *fill* 0x400840c7 0x0 + *fill* 0x400840c7 0x0 + *fill* 0x400840c7 0x0 + *fill* 0x400840c7 0x0 + *fill* 0x400840c7 0x0 + *fill* 0x400840c7 0x1 + .text.spi_flash_hal_setup_read_suspend + 0x400840c8 0x7 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x400840c8 spi_flash_hal_setup_read_suspend + *fill* 0x400840cf 0x0 + *fill* 0x400840cf 0x0 + *libesp_hal_wdt.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x400840cf 0x1 + .text.wdt_hal_init + 0x400840d0 0x298 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x400840d0 wdt_hal_init + .text.wdt_hal_config_stage + 0x40084368 0x16d esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x174 (size before relaxing) + 0x40084368 wdt_hal_config_stage + *fill* 0x400844d5 0x3 + .text.wdt_hal_write_protect_disable + 0x400844d8 0x22 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x400844d8 wdt_hal_write_protect_disable + *fill* 0x400844fa 0x2 + .text.wdt_hal_enable + 0x400844fc 0x50 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x400844fc wdt_hal_enable + .text.wdt_hal_handle_intr + 0x4008454c 0x50 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4008454c wdt_hal_handle_intr + .text.wdt_hal_feed + 0x4008459c 0x2a esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x4008459c wdt_hal_feed + *fill* 0x400845c6 0x2 + .text.wdt_hal_set_flashboot_en + 0x400845c8 0x49 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x400845c8 wdt_hal_set_flashboot_en + *fill* 0x40084611 0x0 + *fill* 0x40084611 0x3 + .text.wdt_hal_write_protect_enable + 0x40084614 0x20 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x40084614 wdt_hal_write_protect_enable + .text.wdt_hal_disable + 0x40084634 0x32 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x40084634 wdt_hal_disable + *fill* 0x40084666 0x0 + *fill* 0x40084666 0x0 + *fill* 0x40084666 0x2 + .text.wdt_hal_is_enabled + 0x40084668 0x22 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x40084668 wdt_hal_is_enabled + *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_claim .text.adc_apb_periph_claim) + *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc_apb_periph_free .text.adc_apb_periph_free) + *libesp_hw_support.a:clk_utils.*(.literal .literal.* .text .text.*) + *fill* 0x4008468a 0x2 + .text.esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching + 0x4008468c 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + 0x4008468c esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) + *fill* 0x40084691 0x3 + .text.esp_cpu_compare_and_set + 0x40084694 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40084694 esp_cpu_compare_and_set + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) + .text.esp_cpu_stall + 0x400846a8 0x87 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x400846a8 esp_cpu_stall + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) + *fill* 0x4008472f 0x1 + .text.esp_cpu_unstall + 0x40084730 0x59 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x40084730 esp_cpu_unstall + *fill* 0x40084789 0x0 + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) + *fill* 0x40084789 0x3 + .text.esp_cpu_wait_for_intr + 0x4008478c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x4008478c esp_cpu_wait_for_intr + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_private_lock .text.esp_clk_private_lock) + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_private_unlock .text.esp_clk_private_unlock) + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_get .text.esp_clk_slowclk_cal_get) + .text.esp_clk_slowclk_cal_get + 0x40084794 0xd esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x40084794 esp_clk_slowclk_cal_get + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_slowclk_cal_set .text.esp_clk_slowclk_cal_set) + *fill* 0x400847a1 0x3 + .text.esp_clk_slowclk_cal_set + 0x400847a4 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x13 (size before relaxing) + 0x400847a4 esp_clk_slowclk_cal_set + *fill* 0x400847b4 0x0 + *libesp_hw_support.a:esp_clk.*(.literal.esp_rtc_get_time_us .text.esp_rtc_get_time_us) + *fill* 0x400847b4 0x0 + .text.esp_rtc_get_time_us + 0x400847b4 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0xe7 (size before relaxing) + 0x400847b4 esp_rtc_get_time_us + *fill* 0x4008487c 0x0 + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_power .text.esp_clk_tree_enable_power) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_enable_src .text.esp_clk_tree_enable_src) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_is_power_on .text.esp_clk_tree_is_power_on) + *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) + *fill* 0x4008487c 0x0 + .text.esp_ptr_executable + 0x4008487c 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x4008487c esp_ptr_executable + *fill* 0x400848d6 0x2 + .text.esp_ptr_byte_accessible + 0x400848d8 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x400848d8 esp_ptr_byte_accessible + *fill* 0x400848f1 0x0 + *fill* 0x400848f1 0x0 + *fill* 0x400848f1 0x3 + .text.esp_ptr_external_ram + 0x400848f4 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x400848f4 esp_ptr_external_ram + *libesp_hw_support.a:mspi_timing_tuning.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_module_reset .text.periph_module_reset) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_enter .text.periph_rcc_acquire_enter) + *fill* 0x400848fb 0x1 + .text.periph_rcc_acquire_enter + 0x400848fc 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x13 (size before relaxing) + 0x400848fc periph_rcc_acquire_enter + *fill* 0x4008490c 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_acquire_exit .text.periph_rcc_acquire_exit) + *fill* 0x4008490c 0x0 + .text.periph_rcc_acquire_exit + 0x4008490c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4008490c periph_rcc_acquire_exit + *fill* 0x40084924 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_enter .text.periph_rcc_enter) + .text.periph_rcc_enter + 0x40084924 0x1f esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x26 (size before relaxing) + 0x40084924 periph_rcc_enter + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_exit .text.periph_rcc_exit) + *fill* 0x40084943 0x1 + .text.periph_rcc_exit + 0x40084944 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x23 (size before relaxing) + 0x40084944 periph_rcc_exit + *fill* 0x40084960 0x0 + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_enter .text.periph_rcc_release_enter) + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_rcc_release_exit .text.periph_rcc_release_exit) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg .text.regi2c_ctrl_read_reg) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_read_reg_mask .text.regi2c_ctrl_read_reg_mask) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg .text.regi2c_ctrl_write_reg) + *fill* 0x40084960 0x0 + .text.regi2c_ctrl_write_reg + 0x40084960 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x63 (size before relaxing) + 0x40084960 regi2c_ctrl_write_reg + *fill* 0x400849b0 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_ctrl_write_reg_mask .text.regi2c_ctrl_write_reg_mask) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_enter_critical .text.regi2c_enter_critical) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_exit_critical .text.regi2c_exit_critical) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_disable .text.regi2c_saradc_disable) + *libesp_hw_support.a:regi2c_ctrl.*(.literal.regi2c_saradc_enable .text.regi2c_saradc_enable) + *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) + *fill* 0x400849b0 0x0 + .text.rtc_clk_32k_enable_common + 0x400849b0 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_disable + 0x40084a40 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x40084a7e 0x2 + .text.rtc_clk_bbpll_enable + 0x40084a80 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x76 (size before relaxing) + *fill* 0x40084ae6 0x2 + .text.rtc_clk_bbpll_configure + 0x40084ae8 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x1ac (size before relaxing) + .text.rtc_clk_32k_enable + 0x40084c80 0x35 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x39 (size before relaxing) + 0x40084c80 rtc_clk_32k_enable + *fill* 0x40084cb5 0x3 + .text.rtc_clk_32k_enable_external + 0x40084cb8 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xe (size before relaxing) + 0x40084cb8 rtc_clk_32k_enable_external + *fill* 0x40084cc2 0x2 + .text.rtc_clk_32k_disable_external + 0x40084cc4 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40084cc4 rtc_clk_32k_disable_external + .text.rtc_clk_8m_enable + 0x40084cdc 0x9d esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40084cdc rtc_clk_8m_enable + *fill* 0x40084d79 0x3 + .text.rtc_clk_8md256_enabled + 0x40084d7c 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40084d7c rtc_clk_8md256_enabled + .text.rtc_clk_slow_src_set + 0x40084d94 0xb6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xbe (size before relaxing) + 0x40084d94 rtc_clk_slow_src_set + *fill* 0x40084e4a 0x2 + .text.rtc_clk_slow_src_get + 0x40084e4c 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40084e4c rtc_clk_slow_src_get + *fill* 0x40084e66 0x2 + .text.rtc_clk_slow_freq_get_hz + 0x40084e68 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + 0x40084e68 rtc_clk_slow_freq_get_hz + .text.rtc_clk_fast_src_set + 0x40084e8c 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x4a (size before relaxing) + 0x40084e8c rtc_clk_fast_src_set + *fill* 0x40084ed3 0x1 + .text.rtc_clk_xtal_freq_get + 0x40084ed4 0x33 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40084ed4 rtc_get_xtal + 0x40084ed4 rtc_clk_xtal_freq_get + *fill* 0x40084f07 0x1 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x40084f08 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40084f08 rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x40084f6c 0xc9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xd9 (size before relaxing) + 0x40084f6c rtc_clk_cpu_freq_get_config + *fill* 0x40085035 0x3 + .text.rtc_clk_apb_freq_update + 0x40085038 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x40085038 rtc_clk_apb_freq_update + *fill* 0x40085051 0x3 + .text.rtc_clk_cpu_freq_to_xtal + 0x40085054 0xd1 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xe1 (size before relaxing) + 0x40085054 rtc_clk_cpu_freq_to_xtal + *fill* 0x40085125 0x3 + .text.rtc_clk_cpu_set_to_default_config + 0x40085128 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x19 (size before relaxing) + 0x40085128 rtc_clk_cpu_set_to_default_config + *fill* 0x40085139 0x3 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x4008513c 0x14c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x158 (size before relaxing) + .text.rtc_clk_cpu_freq_to_rc_fast + 0x40085288 0x8e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x96 (size before relaxing) + *fill* 0x40085316 0x2 + .text.rtc_clk_cpu_freq_set_config + 0x40085318 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x93 (size before relaxing) + 0x40085318 rtc_clk_cpu_freq_set_config + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *fill* 0x4008538c 0x0 + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_get_config .text.rtc_vddsdio_get_config) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_vddsdio_set_config .text.rtc_vddsdio_set_config) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_get_default_config .text.rtc_sleep_get_default_config) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_init .text.rtc_sleep_init) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_low_init .text.rtc_sleep_low_init) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_pd .text.rtc_sleep_pd) + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_sleep_start .text.rtc_sleep_start) + *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) + *fill* 0x4008538c 0x0 + .text.rtc_clk_cal_internal + 0x4008538c 0x244 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x25c (size before relaxing) + .text.rtc_clk_cal + 0x400855d0 0xc5 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xcd (size before relaxing) + 0x400855d0 rtc_clk_cal + *fill* 0x40085695 0x3 + .text.rtc_time_get + 0x40085698 0x6f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40085698 rtc_time_get + *fill* 0x40085707 0x1 + .text.rtc_clk_wait_for_slow_cycle + 0x40085708 0xa7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x40085708 rtc_clk_wait_for_slow_cycle + *fill* 0x400857af 0x1 + .text.enable_timer_group0_for_calibration + 0x400857b0 0x5f esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x67 (size before relaxing) + *fill* 0x4008580f 0x0 + *fill* 0x4008580f 0x0 + *fill* 0x4008580f 0x0 + *fill* 0x4008580f 0x0 + *libesp_hw_support.a:rtc_wdt.*(.literal .literal.* .text .text.*) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_disable .text.sar_periph_ctrl_power_disable) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.sar_periph_ctrl_power_enable .text.sar_periph_ctrl_power_enable) + *libesp_hw_support.a:sleep_gpio.*(.literal.esp_sleep_gpio_pupd_config_workaround_apply .text.esp_sleep_gpio_pupd_config_workaround_apply) + *libesp_hw_support.a:sleep_gpio.*(.literal.esp_sleep_gpio_pupd_config_workaround_unapply .text.esp_sleep_gpio_pupd_config_workaround_unapply) + *libesp_hw_support.a:sleep_modem.*(.literal.modem_domain_pd_allowed .text.modem_domain_pd_allowed) + *libesp_hw_support.a:sleep_modem.*(.literal.periph_inform_out_light_sleep_overhead .text.periph_inform_out_light_sleep_overhead) + *libesp_hw_support.a:sleep_modem.*(.literal.sleep_modem_reject_triggers .text.sleep_modem_reject_triggers) + *libesp_hw_support.a:sleep_modes.*(.literal.esp_light_sleep_start .text.esp_light_sleep_start) + *libesp_hw_support.a:sleep_modes.*(.literal.esp_sleep_enable_timer_wakeup .text.esp_sleep_enable_timer_wakeup) + *libesp_libc.a:abort.*(.literal .literal.* .text .text.*) + *fill* 0x4008580f 0x1 + .text.abort 0x40085810 0x8c esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x90 (size before relaxing) + 0x40085810 abort + *fill* 0x4008589c 0x0 + *libesp_libc.a:assert.*(.literal .literal.* .text .text.*) + .text.ra_to_str + 0x4008589c 0x2f esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + *fill* 0x400858cb 0x1 + .text.__assert_func + 0x400858cc 0x108 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x114 (size before relaxing) + 0x400858cc __assert_func + *fill* 0x400859d4 0x0 + .text.esp_libc_include_assert_impl + 0x400859d4 0x5 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x400859d4 esp_libc_include_assert_impl + *libesp_libc.a:esp_time_impl.*(.literal.esp_set_time_from_rtc .text.esp_set_time_from_rtc) + *fill* 0x400859d9 0x3 + .text.esp_set_time_from_rtc + 0x400859dc 0x24 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x28 (size before relaxing) + 0x400859dc esp_set_time_from_rtc + *fill* 0x40085a00 0x0 + *libesp_libc.a:esp_time_impl.*(.literal.esp_time_impl_get_boot_time .text.esp_time_impl_get_boot_time) + .text.esp_time_impl_get_boot_time + 0x40085a00 0x23 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x40085a00 esp_time_impl_get_boot_time + *libesp_libc.a:esp_time_impl.*(.literal.esp_time_impl_set_boot_time .text.esp_time_impl_set_boot_time) + *fill* 0x40085a23 0x1 + .text.esp_time_impl_set_boot_time + 0x40085a24 0x23 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x27 (size before relaxing) + 0x40085a24 esp_time_impl_set_boot_time + *fill* 0x40085a47 0x0 + *libesp_libc.a:heap.*(.literal .literal.* .text .text.*) + *fill* 0x40085a47 0x1 + .text.malloc 0x40085a48 0xc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x10 (size before relaxing) + 0x40085a48 malloc + 0x40085a48 pvalloc + 0x40085a48 valloc + .text.free 0x40085a54 0xa esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0xe (size before relaxing) + 0x40085a54 cfree + 0x40085a54 free + *fill* 0x40085a5e 0x2 + .text.calloc 0x40085a60 0x2c esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x30 (size before relaxing) + 0x40085a60 calloc + *fill* 0x40085a8c 0x0 + *fill* 0x40085a8c 0x0 + .text.esp_libc_include_heap_impl + 0x40085a8c 0x5 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x40085a8c esp_libc_include_heap_impl + *libesp_libc.a:stdatomic.*(.literal .literal.* .text .text.*) + *fill* 0x40085a91 0x3 + .text.__atomic_fetch_or_8 + 0x40085a94 0x5f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0x6f (size before relaxing) + 0x40085a94 __atomic_fetch_or_8 + *fill* 0x40085af3 0x0 + *libesp_mm.a:cache_esp32.*(.literal .literal.* .text .text.*) + *fill* 0x40085af3 0x1 + .text.cache_sync + 0x40085af4 0x22 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x40085af4 cache_sync + *fill* 0x40085b16 0x0 + *libesp_mm.a:esp_cache_msync.*(.literal .literal.* .text .text.*) + *fill* 0x40085b16 0x2 + .text.esp_cache_get_alignment + 0x40085b18 0x42 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x4a (size before relaxing) + 0x40085b18 esp_cache_get_alignment + *fill* 0x40085b5a 0x0 + *libesp_mm.a:esp_cache_utils.*(.literal .literal.* .text .text.*) + *fill* 0x40085b5a 0x2 + .text.esp_cache_suspend_ext_mem_cache + 0x40085b5c 0xf esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x40085b5c esp_cache_suspend_ext_mem_cache + *fill* 0x40085b6b 0x1 + .text.esp_cache_resume_ext_mem_cache + 0x40085b6c 0xf esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x40085b6c esp_cache_resume_ext_mem_cache + *fill* 0x40085b7b 0x0 + *fill* 0x40085b7b 0x0 + *libesp_pm.a:pm_impl.*(.literal.esp_pm_impl_get_cpu_freq .text.esp_pm_impl_get_cpu_freq) + *libesp_rom.a:esp_rom_print.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) + *libesp_rom.a:esp_rom_sys.*(.literal .literal.* .text .text.*) + *fill* 0x40085b7b 0x1 + .text.esp_rom_set_cpu_ticks_per_us + 0x40085b7c 0xf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x40085b7c esp_rom_set_cpu_ticks_per_us + *fill* 0x40085b8b 0x0 + *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) + *fill* 0x40085b8b 0x1 + .text.esp_error_check_failed_print + 0x40085b8c 0x47 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x4f (size before relaxing) + *fill* 0x40085bd3 0x1 + .text._esp_error_check_failed + 0x40085bd4 0x2a esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x32 (size before relaxing) + 0x40085bd4 _esp_error_check_failed + *fill* 0x40085bfe 0x0 + *fill* 0x40085bfe 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_restart_noos_dig .text.esp_restart_noos_dig) + *fill* 0x40085bfe 0x2 + .text.esp_restart_noos_dig + 0x40085c00 0x63 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x6f (size before relaxing) + 0x40085c00 esp_restart_noos_dig + *fill* 0x40085c63 0x0 + *libesp_system.a:esp_system_chip.*(.literal.esp_system_abort .text.esp_system_abort) + *fill* 0x40085c63 0x1 + .text.esp_system_abort + 0x40085c64 0x8 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0xc (size before relaxing) + 0x40085c64 esp_system_abort + *fill* 0x40085c6c 0x0 + *libesp_system.a:freertos_hooks.*(.literal.esp_vApplicationTickHook .text.esp_vApplicationTickHook) + .text.esp_vApplicationTickHook + 0x40085c6c 0x27 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x40085c6c esp_vApplicationTickHook + *libesp_system.a:image_process.*(.literal .literal.* .text .text.*) + *libesp_system.a:panic.*(.literal.panic_abort .text.panic_abort) + *fill* 0x40085c93 0x1 + .text.panic_abort + 0x40085c94 0x16 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40085c94 panic_abort + *fill* 0x40085caa 0x0 + *libesp_system.a:reset_reason.*(.literal.esp_reset_reason_set_hint .text.esp_reset_reason_set_hint) + *libesp_system.a:system_internal.*(.literal.esp_restart_noos .text.esp_restart_noos) + *fill* 0x40085caa 0x2 + .text.esp_restart_noos + 0x40085cac 0x130 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x178 (size before relaxing) + 0x40085cac esp_restart_noos + *fill* 0x40085ddc 0x0 + *libesp_system.a:system_internal.*(.literal.esp_system_reset_modules_on_exit .text.esp_system_reset_modules_on_exit) + .text.esp_system_reset_modules_on_exit + 0x40085ddc 0xa1 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0xb1 (size before relaxing) + 0x40085ddc esp_system_reset_modules_on_exit + *libesp_system.a:system_time.*(.literal.esp_system_get_time .text.esp_system_get_time) + *libesp_system.a:system_time.*(.literal.esp_system_get_time_resolution .text.esp_system_get_time_resolution) + *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) + *fill* 0x40085e7d 0x3 + .text.__ubsan_include + 0x40085e80 0x5 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x40085e80 __ubsan_include + *libesp_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_lock .text.esp_timer_impl_lock) + *libesp_timer.a:esp_timer_impl_common.*(.literal.esp_timer_impl_unlock .text.esp_timer_impl_unlock) + *libesp_timer.a:esp_timer_impl_lac.*(.literal.esp_timer_impl_advance .text.esp_timer_impl_advance) + *libesp_timer.a:esp_timer_impl_lac.*(.literal.esp_timer_impl_set .text.esp_timer_impl_set) + *libfreertos.a:event_groups.*(.literal.xEventGroupGetBitsFromISR .text.xEventGroupGetBitsFromISR) + *libfreertos.a:list.*(.literal.uxListRemove .text.uxListRemove) + *fill* 0x40085e85 0x3 + .text.uxListRemove + 0x40085e88 0x52 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40085e88 uxListRemove + *libfreertos.a:list.*(.literal.vListInsertEnd .text.vListInsertEnd) + *fill* 0x40085eda 0x2 + .text.vListInsertEnd + 0x40085edc 0x39 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x40085edc vListInsertEnd + *libfreertos.a:port.*(.literal.vPortAssertIfInISR .text.vPortAssertIfInISR) + *libfreertos.a:port.*(.literal.vPortExitCritical .text.vPortExitCritical) + *fill* 0x40085f15 0x3 + .text.vPortExitCritical + 0x40085f18 0x9b esp-idf/freertos/libfreertos.a(port.c.obj) + 0x9e (size before relaxing) + 0x40085f18 vPortExitCritical + *fill* 0x40085fb3 0x0 + *libfreertos.a:port.*(.literal.vPortSetStackWatchpoint .text.vPortSetStackWatchpoint) + *libfreertos.a:port.*(.literal.vPortYieldOtherCore .text.vPortYieldOtherCore) + *fill* 0x40085fb3 0x1 + .text.vPortYieldOtherCore + 0x40085fb4 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x40085fb4 vPortYieldOtherCore + *fill* 0x40085fbe 0x0 + *libfreertos.a:port.*(.literal.xPortEnterCriticalTimeout .text.xPortEnterCriticalTimeout) + *fill* 0x40085fbe 0x2 + .text.xPortEnterCriticalTimeout + 0x40085fc0 0x15b esp-idf/freertos/libfreertos.a(port.c.obj) + 0x163 (size before relaxing) + 0x40085fc0 xPortEnterCriticalTimeout + *fill* 0x4008611b 0x0 + *libfreertos.a:port.*(.literal.xPortInIsrContext .text.xPortInIsrContext) + *fill* 0x4008611b 0x1 + .text.xPortInIsrContext + 0x4008611c 0x22 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4008611c xPortInIsrContext + *fill* 0x4008613e 0x0 + *libfreertos.a:port.*(.literal.xPortInterruptedFromISRContext .text.xPortInterruptedFromISRContext) + *fill* 0x4008613e 0x2 + .text.xPortInterruptedFromISRContext + 0x40086140 0x18 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40086140 xPortInterruptedFromISRContext + *fill* 0x40086158 0x0 + *libfreertos.a:port.*(.literal.xPortStartScheduler .text.xPortStartScheduler) + .text.xPortStartScheduler + 0x40086158 0x2a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x36 (size before relaxing) + 0x40086158 xPortStartScheduler + *libfreertos.a:port_systick.*(.literal .literal.* .text .text.*) + *fill* 0x40086182 0x2 + .text.vPortSetupTimer + 0x40086184 0xb esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x11 (size before relaxing) + 0x40086184 vPortSetupTimer + *fill* 0x4008618f 0x1 + .text.xPortSysTickHandler + 0x40086190 0x27 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x2f (size before relaxing) + 0x40086190 xPortSysTickHandler + *fill* 0x400861b7 0x0 + *fill* 0x400861b7 0x0 + *libfreertos.a:portasm.*(.literal .literal.* .text .text.*) + *fill* 0x400861b7 0x1 + .text 0x400861b8 0x25a esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x26a (size before relaxing) + 0x400861b8 _frxt_setup_switch + 0x400861d0 _frxt_int_enter + 0x40086214 _frxt_int_exit + 0x40086264 _frxt_timer_int + 0x4008628c _frxt_tick_timer_init + 0x400862a8 _frxt_dispatch + 0x4008630c vPortYield + 0x40086370 vPortYieldFromInt + 0x400863a4 _frxt_task_coproc_state + 0x400863e4 _frxt_coproc_exc_hook + *fill* 0x40086412 0x0 + *libfreertos.a:queue.*(.literal.prvCopyDataFromQueue .text.prvCopyDataFromQueue) + *fill* 0x40086412 0x2 + .text.prvCopyDataFromQueue + 0x40086414 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x40086437 0x0 + *libfreertos.a:queue.*(.literal.prvCopyDataToQueue .text.prvCopyDataToQueue) + *fill* 0x40086437 0x1 + .text.prvCopyDataToQueue + 0x40086438 0x89 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x400864c1 0x0 + *libfreertos.a:queue.*(.literal.prvNotifyQueueSetContainer .text.prvNotifyQueueSetContainer) + *fill* 0x400864c1 0x3 + .text.prvNotifyQueueSetContainer + 0x400864c4 0xa8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xbc (size before relaxing) + *fill* 0x4008656c 0x0 + *libfreertos.a:queue.*(.literal.uxQueueMessagesWaitingFromISR .text.uxQueueMessagesWaitingFromISR) + *libfreertos.a:queue.*(.literal.xQueueGenericSendFromISR .text.xQueueGenericSendFromISR) + *libfreertos.a:queue.*(.literal.xQueueGetMutexHolderFromISR .text.xQueueGetMutexHolderFromISR) + *libfreertos.a:queue.*(.literal.xQueueGiveFromISR .text.xQueueGiveFromISR) + .text.xQueueGiveFromISR + 0x4008656c 0xc2 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xca (size before relaxing) + 0x4008656c xQueueGiveFromISR + *libfreertos.a:queue.*(.literal.xQueueIsQueueEmptyFromISR .text.xQueueIsQueueEmptyFromISR) + *libfreertos.a:queue.*(.literal.xQueueIsQueueFullFromISR .text.xQueueIsQueueFullFromISR) + *libfreertos.a:queue.*(.literal.xQueuePeekFromISR .text.xQueuePeekFromISR) + *libfreertos.a:queue.*(.literal.xQueueReceiveFromISR .text.xQueueReceiveFromISR) + *fill* 0x4008662e 0x2 + .text.xQueueReceiveFromISR + 0x40086630 0x86 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x92 (size before relaxing) + 0x40086630 xQueueReceiveFromISR + *fill* 0x400866b6 0x0 + *libfreertos.a:queue.*(.literal.xQueueSelectFromSetFromISR .text.xQueueSelectFromSetFromISR) + *libfreertos.a:stream_buffer.*(.literal.prvBytesInBuffer .text.prvBytesInBuffer) + *libfreertos.a:stream_buffer.*(.literal.prvReadMessageFromBuffer .text.prvReadMessageFromBuffer) + *libfreertos.a:stream_buffer.*(.literal.prvWriteMessageToBuffer .text.prvWriteMessageToBuffer) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferReceiveCompletedFromISR .text.xStreamBufferReceiveCompletedFromISR) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferReceiveFromISR .text.xStreamBufferReceiveFromISR) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferSendCompletedFromISR .text.xStreamBufferSendCompletedFromISR) + *libfreertos.a:stream_buffer.*(.literal.xStreamBufferSendFromISR .text.xStreamBufferSendFromISR) + *libfreertos.a:tasks.*(.literal.prvCheckTaskCanBeScheduledSMP .text.prvCheckTaskCanBeScheduledSMP) + *fill* 0x400866b6 0x2 + .text.prvCheckTaskCanBeScheduledSMP + 0x400866b8 0x46 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x400866fe 0x0 + *libfreertos.a:tasks.*(.literal.prvIsYieldRequiredSMP .text.prvIsYieldRequiredSMP) + *fill* 0x400866fe 0x2 + .text.prvIsYieldRequiredSMP + 0x40086700 0xa5 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x400867a5 0x0 + *libfreertos.a:tasks.*(.literal.prvResetNextTaskUnblockTime .text.prvResetNextTaskUnblockTime) + *fill* 0x400867a5 0x3 + .text.prvResetNextTaskUnblockTime + 0x400867a8 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x400867e4 0x0 + *libfreertos.a:tasks.*(.literal.prvSelectHighestPriorityTaskSMP .text.prvSelectHighestPriorityTaskSMP) + .text.prvSelectHighestPriorityTaskSMP + 0x400867e4 0x1d3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1d6 (size before relaxing) + *libfreertos.a:tasks.*(.literal.prvTaskIsTaskSuspended .text.prvTaskIsTaskSuspended) + *libfreertos.a:tasks.*(.literal.uxTaskPriorityGetFromISR .text.uxTaskPriorityGetFromISR) + *libfreertos.a:tasks.*(.literal.vTaskGenericNotifyGiveFromISR .text.vTaskGenericNotifyGiveFromISR) + *fill* 0x400869b7 0x1 + .text.vTaskGenericNotifyGiveFromISR + 0x400869b8 0x198 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1ac (size before relaxing) + 0x400869b8 vTaskGenericNotifyGiveFromISR + *fill* 0x40086b50 0x0 + *libfreertos.a:tasks.*(.literal.vTaskGetSnapshot .text.vTaskGetSnapshot) + .text.vTaskGetSnapshot + 0x40086b50 0x25 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29 (size before relaxing) + 0x40086b50 vTaskGetSnapshot + *libfreertos.a:tasks.*(.literal.vTaskSwitchContext .text.vTaskSwitchContext) + *fill* 0x40086b75 0x3 + .text.vTaskSwitchContext + 0x40086b78 0xa4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbb (size before relaxing) + 0x40086b78 vTaskSwitchContext + *fill* 0x40086c1c 0x0 + *libfreertos.a:tasks.*(.literal.xTaskGenericNotifyFromISR .text.xTaskGenericNotifyFromISR) + *libfreertos.a:tasks.*(.literal.xTaskGetSchedulerState .text.xTaskGetSchedulerState) + *fill* 0x40086c1c 0x0 + .text.xTaskGetSchedulerState + 0x40086c1c 0x37 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40086c1c xTaskGetSchedulerState + *fill* 0x40086c53 0x0 + *libfreertos.a:tasks.*(.literal.xTaskGetTickCount .text.xTaskGetTickCount) + *fill* 0x40086c53 0x1 + .text.xTaskGetTickCount + 0x40086c54 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40086c54 xTaskGetTickCount + *fill* 0x40086c61 0x0 + *libfreertos.a:tasks.*(.literal.xTaskGetTickCountFromISR .text.xTaskGetTickCountFromISR) + *fill* 0x40086c61 0x3 + .text.xTaskGetTickCountFromISR + 0x40086c64 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x22 (size before relaxing) + 0x40086c64 xTaskGetTickCountFromISR + *fill* 0x40086c82 0x0 + *libfreertos.a:tasks.*(.literal.xTaskIncrementTick .text.xTaskIncrementTick) + *fill* 0x40086c82 0x2 + .text.xTaskIncrementTick + 0x40086c84 0x2ca esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2e1 (size before relaxing) + 0x40086c84 xTaskIncrementTick + *fill* 0x40086f4e 0x0 + *libfreertos.a:tasks.*(.literal.xTaskIncrementTickOtherCores .text.xTaskIncrementTickOtherCores) + *fill* 0x40086f4e 0x2 + .text.xTaskIncrementTickOtherCores + 0x40086f50 0x80 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x88 (size before relaxing) + 0x40086f50 xTaskIncrementTickOtherCores + *fill* 0x40086fd0 0x0 + *libfreertos.a:tasks.*(.literal.xTaskRemoveFromEventList .text.xTaskRemoveFromEventList) + .text.xTaskRemoveFromEventList + 0x40086fd0 0x1fc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x213 (size before relaxing) + 0x40086fd0 xTaskRemoveFromEventList + *libfreertos.a:tasks.*(.literal.xTaskResumeFromISR .text.xTaskResumeFromISR) + *libfreertos.a:timers.*(.literal.xTimerGenericCommand .text.xTimerGenericCommand) + *libfreertos.a:timers.*(.literal.xTimerPendFunctionCallFromISR .text.xTimerPendFunctionCallFromISR) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libhal.a:cache_hal_esp32.*(.literal .literal.* .text .text.*) + *fill* 0x400871cc 0x0 + .text.cache_hal_suspend + 0x400871cc 0xdc esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0xe8 (size before relaxing) + 0x400871cc cache_hal_suspend + .text.cache_hal_resume + 0x400872a8 0x7e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x8e (size before relaxing) + 0x400872a8 cache_hal_resume + *fill* 0x40087326 0x2 + .text.cache_hal_is_cache_enabled + 0x40087328 0x25 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x29 (size before relaxing) + 0x40087328 cache_hal_is_cache_enabled + *fill* 0x4008734d 0x3 + .text.cache_hal_get_cache_line_size + 0x40087350 0x29 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x40087350 cache_hal_get_cache_line_size + *fill* 0x40087379 0x3 + .text.cache_hal_init + 0x4008737c 0x5 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x4008737c cache_hal_init + *fill* 0x40087381 0x0 + *fill* 0x40087381 0x0 + *fill* 0x40087381 0x0 + *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) + *fill* 0x40087381 0x3 + .text.mmu_ll_check_entry_valid + 0x40087384 0x3f esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x43 (size before relaxing) + *fill* 0x400873c3 0x1 + .text.mmu_ll_get_entry_target + 0x400873c4 0x48 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x50 (size before relaxing) + .text.mmu_ll_entry_id_to_paddr_base + 0x4008740c 0x41 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x49 (size before relaxing) + *fill* 0x4008744d 0x3 + .text.mmu_hal_ctx_init + 0x40087450 0xe esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40087450 mmu_hal_ctx_init + *fill* 0x4008745e 0x2 + .text.mmu_hal_check_valid_ext_vaddr_region + 0x40087460 0xa2 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40087460 mmu_hal_check_valid_ext_vaddr_region + *fill* 0x40087502 0x2 + .text.mmu_hal_map_region + 0x40087504 0x175 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x189 (size before relaxing) + 0x40087504 mmu_hal_map_region + *fill* 0x40087679 0x3 + .text.mmu_hal_unmap_region + 0x4008767c 0x13f esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x14b (size before relaxing) + 0x4008767c mmu_hal_unmap_region + *fill* 0x400877bb 0x1 + .text.mmu_hal_vaddr_to_paddr + 0x400877bc 0xd2 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xe6 (size before relaxing) + 0x400877bc mmu_hal_vaddr_to_paddr + *fill* 0x4008788e 0x0 + *fill* 0x4008788e 0x0 + *fill* 0x4008788e 0x0 + *fill* 0x4008788e 0x2 + .text.mmu_hal_pages_to_bytes + 0x40087890 0x8 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x40087890 mmu_hal_pages_to_bytes + *fill* 0x40087898 0x0 + *fill* 0x40087898 0x0 + *fill* 0x40087898 0x0 + *libheap.a:multi_heap.*(.literal.assert_valid_block .text.assert_valid_block) + .text.assert_valid_block + 0x40087898 0x28 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x30 (size before relaxing) + *fill* 0x400878c0 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl .text.multi_heap_aligned_alloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_impl_offs .text.multi_heap_aligned_alloc_impl_offs) + .text.multi_heap_aligned_alloc_impl_offs + 0x400878c0 0x5e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x72 (size before relaxing) + 0x400878c0 multi_heap_aligned_alloc_impl_offs + *libheap.a:multi_heap.*(.literal.multi_heap_aligned_alloc_offs .text.multi_heap_aligned_alloc_offs) + *fill* 0x4008791e 0x2 + .text.multi_heap_aligned_alloc_offs + 0x40087920 0x15 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x40087920 multi_heap_aligned_alloc_offs + *fill* 0x40087935 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_free_impl .text.multi_heap_free_impl) + *fill* 0x40087935 0x3 + .text.multi_heap_free_impl + 0x40087938 0x46 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x56 (size before relaxing) + 0x40087938 multi_heap_free + 0x40087938 multi_heap_free_impl + 0x40087938 multi_heap_aligned_free + *fill* 0x4008797e 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_get_allocated_size_impl .text.multi_heap_get_allocated_size_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_block_address_impl .text.multi_heap_get_block_address_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_get_first_block .text.multi_heap_get_first_block) + *libheap.a:multi_heap.*(.literal.multi_heap_get_full_block_size .text.multi_heap_get_full_block_size) + *libheap.a:multi_heap.*(.literal.multi_heap_get_next_block .text.multi_heap_get_next_block) + *libheap.a:multi_heap.*(.literal.multi_heap_internal_lock .text.multi_heap_internal_lock) + *fill* 0x4008797e 0x2 + .text.multi_heap_internal_lock + 0x40087980 0x24 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x28 (size before relaxing) + 0x40087980 multi_heap_internal_lock + *fill* 0x400879a4 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_internal_unlock .text.multi_heap_internal_unlock) + .text.multi_heap_internal_unlock + 0x400879a4 0x1f esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x26 (size before relaxing) + 0x400879a4 multi_heap_internal_unlock + *libheap.a:multi_heap.*(.literal.multi_heap_is_free .text.multi_heap_is_free) + *libheap.a:multi_heap.*(.literal.multi_heap_malloc_impl .text.multi_heap_malloc_impl) + *fill* 0x400879c3 0x1 + .text.multi_heap_malloc_impl + 0x400879c4 0x4e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x62 (size before relaxing) + 0x400879c4 multi_heap_malloc + 0x400879c4 multi_heap_malloc_impl + *fill* 0x40087a12 0x0 + *libheap.a:multi_heap.*(.literal.multi_heap_realloc_impl .text.multi_heap_realloc_impl) + *libheap.a:multi_heap.*(.literal.multi_heap_set_lock .text.multi_heap_set_lock) + *fill* 0x40087a12 0x2 + .text.multi_heap_set_lock + 0x40087a14 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x40087a14 multi_heap_set_lock + *libheap.a:tlsf.*(.literal.tlsf_alloc_overhead .text.tlsf_alloc_overhead) + *fill* 0x40087a1b 0x1 + .text.tlsf_alloc_overhead + 0x40087a1c 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x40087a1c tlsf_alloc_overhead + *libheap.a:tlsf.*(.literal.tlsf_block_size .text.tlsf_block_size) + *fill* 0x40087a23 0x1 + .text.tlsf_block_size + 0x40087a24 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x40087a24 tlsf_block_size + *libheap.a:tlsf.*(.literal.tlsf_free .text.tlsf_free) + *fill* 0x40087a36 0x2 + .text.tlsf_free + 0x40087a38 0x404 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x418 (size before relaxing) + 0x40087a38 tlsf_free + *fill* 0x40087e3c 0x0 + *libheap.a:tlsf.*(.literal.tlsf_get_pool .text.tlsf_get_pool) + .text.tlsf_get_pool + 0x40087e3c 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + 0x40087e3c tlsf_get_pool + *libheap.a:tlsf.*(.literal.tlsf_malloc .text.tlsf_malloc) + .text.tlsf_malloc + 0x40087e48 0x3f6 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x40e (size before relaxing) + 0x40087e48 tlsf_malloc + *libheap.a:tlsf.*(.literal.tlsf_memalign .text.tlsf_memalign) + *libheap.a:tlsf.*(.literal.tlsf_memalign_offs .text.tlsf_memalign_offs) + *fill* 0x4008823e 0x2 + .text.tlsf_memalign_offs + 0x40088240 0x6a3 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x6c7 (size before relaxing) + 0x40088240 tlsf_memalign_offs + *fill* 0x400888e3 0x0 + *libheap.a:tlsf.*(.literal.tlsf_realloc .text.tlsf_realloc) + *libheap.a:tlsf.*(.literal.tlsf_size .text.tlsf_size) + *fill* 0x400888e3 0x1 + .text.tlsf_size + 0x400888e4 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400888e4 tlsf_size + *liblog.a:log.*(.literal .literal.* .text .text.*) + *fill* 0x400888ee 0x2 + .text.esp_log 0x400888f0 0x40 esp-idf/log/liblog.a(log.c.obj) + 0x400888f0 esp_log + *fill* 0x40088930 0x0 + *liblog.a:log_format_text.*(.literal .literal.* .text .text.*) + *liblog.a:log_lock.*(.literal .literal.* .text .text.*) + .text.esp_log_impl_lock + 0x40088930 0x27 esp-idf/log/liblog.a(log_lock.c.obj) + 0x32 (size before relaxing) + 0x40088930 esp_log_impl_lock + *fill* 0x40088957 0x1 + .text.esp_log_impl_lock_timeout + 0x40088958 0x38 esp-idf/log/liblog.a(log_lock.c.obj) + 0x40 (size before relaxing) + 0x40088958 esp_log_impl_lock_timeout + .text.esp_log_impl_unlock + 0x40088990 0x1b esp-idf/log/liblog.a(log_lock.c.obj) + 0x1f (size before relaxing) + 0x40088990 esp_log_impl_unlock + *fill* 0x400889ab 0x0 + *liblog.a:log_print.*(.literal .literal.* .text .text.*) + *liblog.a:log_timestamp.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x400889ab 0x1 + .text.esp_log_early_timestamp + 0x400889ac 0x1c esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x400889ac esp_log_early_timestamp + *fill* 0x400889c8 0x0 + *liblog.a:log_timestamp.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + .text.esp_log_timestamp + 0x400889c8 0x48 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x57 (size before relaxing) + 0x400889c8 esp_log_timestamp + *liblog.a:log_timestamp_common.*(.literal .literal.* .text .text.*) + *liblog.a:log_write.*(.literal.esp_log_write .text.esp_log_write) + *liblog.a:log_write.*(.literal.esp_log_writev .text.esp_log_writev) + *liblog.a:tag_log_level.*(.literal.esp_log_level_get_timeout .text.esp_log_level_get_timeout) + *fill* 0x40088a10 0x0 + .text.esp_log_level_get_timeout + 0x40088a10 0x11 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x40088a10 esp_log_level_get_timeout + *fill* 0x40088a21 0x0 + *liblog.a:util.*(.literal .literal.* .text .text.*) + *fill* 0x40088a21 0x3 + .text.esp_log_util_set_cache_enabled_cb + 0x40088a24 0xa esp-idf/log/liblog.a(util.c.obj) + 0x40088a24 esp_log_util_set_cache_enabled_cb + *fill* 0x40088a2e 0x0 + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libspi_flash.a:esp_flash_api.*(.literal.check_chip_pointer_default .text.check_chip_pointer_default) + *fill* 0x40088a2e 0x2 + .text.check_chip_pointer_default + 0x40088a30 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x40088a52 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.detect_spi_flash_chip .text.detect_spi_flash_chip) + *fill* 0x40088a52 0x2 + .text.detect_spi_flash_chip + 0x40088a54 0x8a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x92 (size before relaxing) + *fill* 0x40088ade 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_chip_driver_initialized .text.esp_flash_chip_driver_initialized) + *fill* 0x40088ade 0x2 + .text.esp_flash_chip_driver_initialized + 0x40088ae0 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40088ae0 esp_flash_chip_driver_initialized + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_chip .text.esp_flash_erase_chip) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_erase_region .text.esp_flash_erase_region) + .text.esp_flash_erase_region + 0x40088af0 0x23a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x23e (size before relaxing) + 0x40088af0 esp_flash_erase_region + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_chip_write_protect .text.esp_flash_get_chip_write_protect) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_io_mode .text.esp_flash_get_io_mode) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_physical_size .text.esp_flash_get_physical_size) + *fill* 0x40088d2a 0x2 + .text.esp_flash_get_physical_size + 0x40088d2c 0x6e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40088d2c esp_flash_get_physical_size + *fill* 0x40088d9a 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_protected_region .text.esp_flash_get_protected_region) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_get_size .text.esp_flash_get_size) + *fill* 0x40088d9a 0x2 + .text.esp_flash_get_size + 0x40088d9c 0x32 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x36 (size before relaxing) + 0x40088d9c esp_flash_get_size + *fill* 0x40088dce 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init .text.esp_flash_init) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_init_main .text.esp_flash_init_main) + *fill* 0x40088dce 0x2 + .text.esp_flash_init_main + 0x40088dd0 0x16a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x186 (size before relaxing) + 0x40088dd0 esp_flash_init_main + *fill* 0x40088f3a 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read .text.esp_flash_read) + *fill* 0x40088f3a 0x2 + .text.esp_flash_read + 0x40088f3c 0x132 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x40088f3c esp_flash_read + *fill* 0x4008906e 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_read_encrypted .text.esp_flash_read_encrypted) + *fill* 0x4008906e 0x2 + .text.esp_flash_read_encrypted + 0x40089070 0x62 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x66 (size before relaxing) + 0x40089070 esp_flash_read_encrypted + *fill* 0x400890d2 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_chip_write_protect .text.esp_flash_set_chip_write_protect) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_io_mode .text.esp_flash_set_io_mode) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_set_protected_region .text.esp_flash_set_protected_region) + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write .text.esp_flash_write) + *fill* 0x400890d2 0x2 + .text.esp_flash_write + 0x400890d4 0x193 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x197 (size before relaxing) + 0x400890d4 esp_flash_write + *fill* 0x40089267 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_write_encrypted .text.esp_flash_write_encrypted) + *fill* 0x40089267 0x1 + .text.esp_flash_write_encrypted + 0x40089268 0x292 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x29a (size before relaxing) + 0x40089268 esp_flash_write_encrypted + *fill* 0x400894fa 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.flash_end_flush_cache .text.flash_end_flush_cache) + *fill* 0x400894fa 0x2 + .text.flash_end_flush_cache + 0x400894fc 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x40089542 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.read_unique_id .text.read_unique_id) + *libspi_flash.a:esp_flash_api.*(.literal.spiflash_end_default .text.spiflash_end_default) + *fill* 0x40089542 0x2 + .text.spiflash_end_default + 0x40089544 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *libspi_flash.a:esp_flash_api.*(.literal.spiflash_start_default .text.spiflash_start_default) + *fill* 0x4008955e 0x2 + .text.spiflash_start_default + 0x40089560 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *libspi_flash.a:flash_brownout_hook.*(.literal .literal.* .text .text.*) + *fill* 0x40089582 0x2 + .text.spi_flash_needs_reset_check + 0x40089584 0x16 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x40089584 spi_flash_needs_reset_check + *fill* 0x4008959a 0x2 + .text.spi_flash_set_erasing_flag + 0x4008959c 0xb esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x4008959c spi_flash_set_erasing_flag + *fill* 0x400895a7 0x1 + .text.spi_flash_brownout_need_reset + 0x400895a8 0x21 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x400895a8 spi_flash_brownout_need_reset + *fill* 0x400895c9 0x0 + *fill* 0x400895c9 0x0 + *fill* 0x400895c9 0x0 + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + *fill* 0x400895c9 0x3 + .text.memspi_host_read_status_hs + 0x400895cc 0x37 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x400895cc memspi_host_read_status_hs + *fill* 0x40089603 0x1 + .text.memspi_host_read_id_hs + 0x40089604 0x82 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x86 (size before relaxing) + 0x40089604 memspi_host_read_id_hs + *fill* 0x40089686 0x2 + .text.memspi_host_flush_cache + 0x40089688 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40089688 memspi_host_flush_cache + *fill* 0x400896a1 0x3 + .text.memspi_host_init_pointers + 0x400896a4 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x400896a4 memspi_host_init_pointers + *fill* 0x400896f2 0x0 + *fill* 0x400896f2 0x2 + .text.memspi_host_write_data_slicer + 0x400896f4 0x33 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x400896f4 memspi_host_write_data_slicer + *fill* 0x40089727 0x1 + .text.memspi_host_read_data_slicer + 0x40089728 0x2a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x40089728 memspi_host_read_data_slicer + *fill* 0x40089752 0x0 + *fill* 0x40089752 0x0 + *fill* 0x40089752 0x0 + *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x40089752 0x2 + .text.spi_flash_chip_gd_detect_size + 0x40089754 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40089754 spi_flash_chip_gd_detect_size + *fill* 0x40089789 0x3 + .text.spi_flash_chip_gd_probe + 0x4008978c 0x4d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x4008978c spi_flash_chip_gd_probe + *fill* 0x400897d9 0x3 + .text.spi_flash_chip_gd_suspend_cmd_conf + 0x400897dc 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x400897dc spi_flash_chip_gd_suspend_cmd_conf + *fill* 0x40089812 0x2 + .text.spi_flash_chip_gd_set_io_mode + 0x40089814 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x44 (size before relaxing) + 0x40089814 spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x40089854 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40089854 spi_flash_chip_gd_get_io_mode + *fill* 0x40089872 0x2 + .text.spi_flash_chip_gd_get_caps + 0x40089874 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x40089874 spi_flash_chip_gd_get_caps + *fill* 0x4008988d 0x0 + *fill* 0x4008988d 0x0 + *fill* 0x4008988d 0x0 + *fill* 0x4008988d 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + *fill* 0x4008988d 0x3 + .text.spi_flash_chip_generic_detect_size + 0x40089890 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40089890 spi_flash_chip_generic_detect_size + *fill* 0x400898d1 0x3 + .text.spi_flash_command_generic_program_4B + 0x400898d4 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_command_generic_erase_sector_4B + 0x40089908 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_command_generic_erase_block_4B + 0x40089938 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_chip_generic_reset + 0x40089968 0x55 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40089968 spi_flash_chip_generic_reset + *fill* 0x400899bd 0x3 + .text.spi_flash_chip_generic_erase_sector + 0x400899c0 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xa6 (size before relaxing) + 0x400899c0 spi_flash_chip_generic_erase_sector + *fill* 0x40089a62 0x2 + .text.spi_flash_chip_generic_erase_block + 0x40089a64 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40089a64 spi_flash_chip_generic_erase_block + *fill* 0x40089b06 0x2 + .text.spi_flash_chip_generic_page_program + 0x40089b08 0x86 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8a (size before relaxing) + 0x40089b08 spi_flash_chip_generic_page_program + *fill* 0x40089b8e 0x2 + .text.spi_flash_chip_generic_config_host_io_mode + 0x40089b90 0x159 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40089b90 spi_flash_chip_generic_config_host_io_mode + *fill* 0x40089ce9 0x3 + .text.spi_flash_chip_generic_write_encrypted + 0x40089cec 0xce esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40089cec spi_flash_chip_generic_write_encrypted + *fill* 0x40089dba 0x2 + .text.spi_flash_chip_generic_get_caps + 0x40089dbc 0x71 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40089dbc spi_flash_chip_generic_get_caps + *fill* 0x40089e2d 0x3 + .text.spi_flash_common_read_qe_sr + 0x40089e30 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text.spi_flash_common_write_qe_sr + 0x40089e64 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x40089e92 0x2 + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x40089e94 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3c (size before relaxing) + 0x40089e94 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x40089ecc 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40089ecc spi_flash_common_write_status_16b_wrsr + *fill* 0x40089ee1 0x3 + .text.spi_flash_chip_generic_suspend_cmd_conf + 0x40089ee4 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40089ee4 spi_flash_chip_generic_suspend_cmd_conf + *fill* 0x40089f1a 0x2 + .text.spi_flash_chip_generic_read + 0x40089f1c 0xbe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc2 (size before relaxing) + 0x40089f1c spi_flash_chip_generic_read + *fill* 0x40089fda 0x2 + .text.spi_flash_chip_generic_write + 0x40089fdc 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x40089fdc spi_flash_chip_generic_write + .text.spi_flash_chip_generic_get_write_protect + 0x4008a07c 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a07c spi_flash_chip_generic_get_write_protect + .text.spi_flash_chip_generic_yield + 0x4008a0b4 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a0b4 spi_flash_chip_generic_yield + *fill* 0x4008a0fa 0x2 + .text.spi_flash_chip_generic_read_unique_id + 0x4008a0fc 0x80 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x84 (size before relaxing) + 0x4008a0fc spi_flash_chip_generic_read_unique_id + .text.spi_flash_common_read_status_8b_rdsr2 + 0x4008a17c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a17c spi_flash_common_read_status_8b_rdsr2 + *fill* 0x4008a191 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x4008a194 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a194 spi_flash_chip_generic_get_io_mode + *fill* 0x4008a1b2 0x2 + .text.spi_flash_common_read_status_8b_rdsr + 0x4008a1b4 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a1b4 spi_flash_common_read_status_8b_rdsr + *fill* 0x4008a1c9 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x4008a1cc 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a1cc spi_flash_common_write_status_8b_wrsr + *fill* 0x4008a1e1 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x4008a1e4 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a1e4 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x4008a1f9 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x4008a1fc 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a1fc spi_flash_chip_generic_set_io_mode + *fill* 0x4008a214 0x0 + *fill* 0x4008a214 0x0 + .text.spi_flash_chip_generic_probe + 0x4008a214 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a214 spi_flash_chip_generic_probe + *fill* 0x4008a21b 0x0 + *fill* 0x4008a21b 0x1 + .text.spi_flash_chip_generic_erase_chip + 0x4008a21c 0x8e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a21c spi_flash_chip_generic_erase_chip + *fill* 0x4008a2aa 0x0 + *fill* 0x4008a2aa 0x0 + *fill* 0x4008a2aa 0x0 + *fill* 0x4008a2aa 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x4008a2ac 0x4f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a2ac spi_flash_chip_generic_set_write_protect + *fill* 0x4008a2fb 0x1 + .text.spi_flash_chip_generic_read_reg + 0x4008a2fc 0x12 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a2fc spi_flash_chip_generic_read_reg + *fill* 0x4008a30e 0x2 + .text.spi_flash_chip_generic_wait_idle + 0x4008a310 0x96 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a310 spi_flash_chip_generic_wait_idle + *fill* 0x4008a3a6 0x0 + *fill* 0x4008a3a6 0x0 + *fill* 0x4008a3a6 0x0 + *fill* 0x4008a3a6 0x0 + *fill* 0x4008a3a6 0x0 + *fill* 0x4008a3a6 0x0 + *fill* 0x4008a3a6 0x0 + *fill* 0x4008a3a6 0x0 + *fill* 0x4008a3a6 0x2 + .text.spi_flash_chip_generic_read_unique_id_none + 0x4008a3a8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a3a8 spi_flash_chip_generic_read_unique_id_none + *fill* 0x4008a3b0 0x0 + *fill* 0x4008a3b0 0x0 + *fill* 0x4008a3b0 0x0 + *fill* 0x4008a3b0 0x0 + *fill* 0x4008a3b0 0x0 + .text.spi_flash_common_set_io_mode + 0x4008a3b0 0x9c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4008a3b0 spi_flash_common_set_io_mode + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_issi_probe + 0x4008a44c 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4008a44c spi_flash_chip_issi_probe + *fill* 0x4008a475 0x3 + .text.spi_flash_chip_issi_set_io_mode + 0x4008a478 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x4008a478 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x4008a48c 0x1f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4008a48c spi_flash_chip_issi_get_io_mode + *fill* 0x4008a4ab 0x1 + .text.spi_flash_chip_issi_get_caps + 0x4008a4ac 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4008a4ac spi_flash_chip_issi_get_caps + *fill* 0x4008a4b3 0x0 + *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) + *fill* 0x4008a4b3 0x1 + .text.spi_flash_chip_mxic_detect_size + 0x4008a4b4 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x4008a4b4 spi_flash_chip_mxic_detect_size + *fill* 0x4008a4f5 0x3 + .text.spi_flash_chip_mxic_probe + 0x4008a4f8 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x4008a4f8 spi_flash_chip_mxic_probe + *fill* 0x4008a51d 0x0 + *fill* 0x4008a51d 0x3 + .text.spi_flash_chip_mxic_get_caps + 0x4008a520 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x4008a520 spi_flash_chip_mxic_get_caps + *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) + *fill* 0x4008a527 0x1 + .text.spi_flash_chip_winbond_suspend_cmd_conf + 0x4008a528 0x36 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008a528 spi_flash_chip_winbond_suspend_cmd_conf + *fill* 0x4008a55e 0x2 + .text.spi_flash_command_winbond_program_4B + 0x4008a560 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x4008a5aa 0x2 + .text.spi_flash_chip_winbond_page_program + 0x4008a5ac 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x70 (size before relaxing) + 0x4008a5ac spi_flash_chip_winbond_page_program + .text.spi_flash_command_winbond_erase_sector_4B + 0x4008a614 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x4008a65a 0x2 + .text.spi_flash_chip_winbond_erase_sector + 0x4008a65c 0xa6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008a65c spi_flash_chip_winbond_erase_sector + *fill* 0x4008a702 0x2 + .text.spi_flash_command_erase_block_4B + 0x4008a704 0x49 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *fill* 0x4008a74d 0x3 + .text.spi_flash_chip_winbond_erase_block + 0x4008a750 0xa6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008a750 spi_flash_chip_winbond_erase_block + *fill* 0x4008a7f6 0x2 + .text.spi_flash_chip_winbond_read + 0x4008a7f8 0xbe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xc2 (size before relaxing) + 0x4008a7f8 spi_flash_chip_winbond_read + *fill* 0x4008a8b6 0x2 + .text.spi_flash_chip_winbond_probe + 0x4008a8b8 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008a8b8 spi_flash_chip_winbond_probe + *fill* 0x4008a8ce 0x2 + .text.spi_flash_chip_winbond_get_caps + 0x4008a8d0 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x4008a8d0 spi_flash_chip_winbond_get_caps + *fill* 0x4008a8e9 0x0 + *fill* 0x4008a8e9 0x0 + *fill* 0x4008a8e9 0x0 + *fill* 0x4008a8e9 0x0 + *fill* 0x4008a8e9 0x0 + *fill* 0x4008a8e9 0x0 + *fill* 0x4008a8e9 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.delay_us .text.delay_us) + *fill* 0x4008a8e9 0x3 + .text.delay_us + 0x4008a8ec 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x4008a8fc 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.get_buffer_malloc .text.get_buffer_malloc) + .text.get_buffer_malloc + 0x4008a8fc 0x3b esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x3f (size before relaxing) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_op_status .text.main_flash_op_status) + *fill* 0x4008a937 0x1 + .text.main_flash_op_status + 0x4008a938 0xb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4008a943 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.main_flash_region_protected .text.main_flash_region_protected) + *fill* 0x4008a943 0x1 + .text.main_flash_region_protected + 0x4008a944 0x2d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x31 (size before relaxing) + *fill* 0x4008a971 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.release_buffer_malloc .text.release_buffer_malloc) + *fill* 0x4008a971 0x3 + .text.release_buffer_malloc + 0x4008a974 0xa esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xe (size before relaxing) + *fill* 0x4008a97e 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_end .text.spi23_end) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi23_start .text.spi23_start) + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_check_yield .text.spi_flash_os_check_yield) + *fill* 0x4008a97e 0x2 + .text.spi_flash_os_check_yield + 0x4008a980 0x33 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x4008a9b3 0x0 + *libspi_flash.a:spi_flash_os_func_app.*(.literal.spi_flash_os_yield .text.spi_flash_os_yield) + *fill* 0x4008a9b3 0x1 + .text.spi_flash_os_yield + 0x4008a9b4 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x20 (size before relaxing) + *fill* 0x4008a9cc 0x0 + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.delay_us .text.delay_us) + .text.delay_us + 0x4008a9cc 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.esp_flash_app_disable_os_functions .text.esp_flash_app_disable_os_functions) + .text.esp_flash_app_disable_os_functions + 0x4008a9dc 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4008a9dc esp_flash_app_disable_os_functions + *libspi_flash.a:spi_flash_os_func_noos.*(.literal.get_temp_buffer_not_supported .text.get_temp_buffer_not_supported) + *libspi_flash.a:spi_flash_wrap.*(.literal .literal.* .text .text.*) + *libxt_hal.a:(.literal .literal.* .text .text.*) + .text 0x4008a9e8 0x137 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + 0x4008a9e8 xthal_window_spill_nw + 0x4008a9e8 xthal_spill_registers_into_stack_nw + 0x4008aafc xthal_window_spill + *fill* 0x4008ab1f 0x1 + .text 0x4008ab20 0x8 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + 0x4008ab20 xthal_set_intclear + .text 0x4008ab28 0x3e /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + 0x4008ab28 xthal_restore_extra_nw + *fill* 0x4008ab66 0x2 + .text 0x4008ab68 0x3e /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + 0x4008ab68 xthal_save_extra_nw + *libxtensa.a:(EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .literal EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .literal.* EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .text EXCLUDE_FILE(*libxtensa.a:xtensa_intr.* *libxtensa.a:xt_trax.*) .text.*) + *fill* 0x4008aba6 0x2 + .text 0x4008aba8 0x186 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x18e (size before relaxing) + 0x4008aba8 _xt_context_save + 0x4008ac4c _xt_context_restore + 0x4008ac90 _xt_coproc_init + 0x4008aca4 _xt_coproc_release + 0x4008ace8 _xt_coproc_savecs + 0x4008ad0c _xt_coproc_restorecs + *fill* 0x4008ad2e 0x0 + *fill* 0x4008ad2e 0x2 + .text 0x4008ad30 0x33 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x4008ad30 xt_ints_on + 0x4008ad48 xt_ints_off + +.dram0.data 0x3ffb0000 0x294c + 0x3ffb0000 _data_start = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(.data .data.*) + .data.esp_ipc_isr_end_fl + 0x3ffb0000 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb0000 esp_ipc_isr_end_fl + .data.s_ipc_isr_mux + 0x3ffb0004 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .data.s_panic_uart + 0x3ffb000c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data.rtc_wdt_ctx + 0x3ffb0010 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .data 0x3ffb0018 0x10 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .data.hooks_spinlock + 0x3ffb0028 0x8 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .data.esp_log_vprint_func + 0x3ffb0030 0x4 esp-idf/log/liblog.a(log_write.c.obj) + 0x3ffb0030 esp_log_vprint_func + .data.esp_log_default_level + 0x3ffb0034 0x4 esp-idf/log/liblog.a(log_level.c.obj) + 0x3ffb0034 esp_log_default_level + .data.malloc_alwaysinternal_limit + 0x3ffb0038 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.first_call$0 + 0x3ffb003c 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + *fill* 0x3ffb003d 0x3 + .data.s_esp_rtc_time_lock + 0x3ffb0040 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .data.spinlock + 0x3ffb0048 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .data.periph_spinlock + 0x3ffb0050 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .data.mux 0x3ffb0058 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .data.s_config + 0x3ffb0060 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .data.xKernelLock + 0x3ffb00d8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.lock_init_spinlock + 0x3ffb00e0 0x8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .data.stdout 0x3ffb00e8 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3ffb00e8 stdout + .data.stdin 0x3ffb00ec 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3ffb00ec stdin + .data.__stdout + 0x3ffb00f0 0x4c esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data.__stdin 0x3ffb013c 0x4c esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data.s_stub_table + 0x3ffb0188 0x90 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .data.s_flash_op_cpu + 0x3ffb0218 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data.esp_flash_registered_chips + 0x3ffb021c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x3ffb021c esp_flash_registered_chips + .data.default_registered_chips + 0x3ffb0220 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.s_fake_stack_frame + 0x3ffb0238 0x70 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .data 0x3ffb02a8 0x400 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x3ffb02a8 _xt_interrupt_table + 0x3ffb04a8 _xt_exception_table + *fill* 0x3ffb06a8 0x8 + .data 0x3ffb06b0 0x14 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3ffb06b0 _xt_coproc_owner_sa + 0x3ffb06c0 _xt_coproc_owner_sa_lock + .data.s_cache_drv + 0x3ffb06c4 0x8 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .data.reason_spinlock + 0x3ffb06cc 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .data.spinlock + 0x3ffb06d4 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3ffb06dc 0x4 + .data.s_reserved_pin_mask + 0x3ffb06e0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .data.s_atomic_lock + 0x3ffb06e8 0x8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .data.engines_in_use_lock + 0x3ffb06f0 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.memory_block_lock + 0x3ffb06f8 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data 0x3ffb0700 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + 0x3ffb0700 environ + *(.dram1 .dram1.*) + .dram1.1 0x3ffb0704 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .dram1.1 0x3ffb070c 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.0 0x3ffb07b4 0xa8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .dram1.4 0x3ffb085c 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.3 0x3ffb0864 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.2 0x3ffb0868 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.1 0x3ffb086c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.0 0x3ffb0870 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .dram1.3 0x3ffb0874 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + *fill* 0x3ffb089f 0x1 + .dram1.1 0x3ffb08a0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .dram1.0 0x3ffb08a4 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x3ffb08b6 0x2 + .dram1.0 0x3ffb08b8 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3ffb08b8 FreeRTOS_openocd_params + *fill* 0x3ffb08c6 0xa + .dram1.3 0x3ffb08d0 0x1060 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb08d0 port_IntStack + .dram1.2 0x3ffb1930 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb1930 offset_xCoreID + .dram1.1 0x3ffb1934 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb1934 offset_cpsa + .dram1.0 0x3ffb1938 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb1938 offset_pxEndOfStack + .dram1.7 0x3ffb193c 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x3ffb193c g_flash_guard_no_os_ops + .dram1.6 0x3ffb1944 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x3ffb1944 g_flash_guard_default_ops + .dram1.2 0x3ffb194c 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.1 0x3ffb1970 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.7 0x3ffb19a0 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.6 0x3ffb19c8 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.8 0x3ffb19d8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x3ffb19d8 esp_flash_noos_functions + .dram1.5 0x3ffb1a00 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb1a00 spi_flash_chip_generic_timeout + .dram1.4 0x3ffb1a14 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .dram1.3 0x3ffb1a2c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb1a2c rom_flash_chip_dummy_hpm + .dram1.2 0x3ffb1a30 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb1a30 rom_flash_chip_dummy + .dram1.1 0x3ffb1a34 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb1a3a 0x2 + .dram1.0 0x3ffb1a3c 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb1a42 0x2 + .dram1.0 0x3ffb1a44 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .dram1.13 0x3ffb1a9c 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb1ab7 0x1 + .dram1.11 0x3ffb1ab8 0x21 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb1ad9 0x3 + .dram1.9 0x3ffb1adc 0x3b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb1b17 0x1 + .dram1.7 0x3ffb1b18 0x3e esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb1b56 0x2 + .dram1.5 0x3ffb1b58 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb1b73 0x1 + .dram1.2 0x3ffb1b74 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3ffb1b74 rom_spiflash_api_funcs + .dram1.1 0x3ffb1b78 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .dram1.0 0x3ffb1b88 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3ffb1b92 0x2 + .dram1.0 0x3ffb1b94 0x4 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .dram1.0 0x3ffb1b98 0x28 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + 0x3ffb1b98 rtc_io_num_map + .dram1.1 0x3ffb1bc0 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3ffb1bd9 0x3 + .dram1.0 0x3ffb1bdc 0x28 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x3ffb1bdc GPIO_PIN_MUX_REG_OFFSET + 0x3ffb1c04 _coredump_dram_start = ABSOLUTE (.) + *(.dram2.coredump .dram2.coredump.*) + 0x3ffb1c04 _coredump_dram_end = ABSOLUTE (.) + *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_encrypt_ll_plaintext_save.str1.4 + 0x3ffb1c04 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0xed (size before relaxing) + .rodata.__func__$0 + 0x3ffb1c04 0x24 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + *libesp_hal_mspi.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hal_wdt.a:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.wdt_hal_config_stage.str1.4 + 0x3ffb1c28 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x60 (size before relaxing) + *libesp_hw_support.a:clk_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:mspi_timing_tuning.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.rtc_clk_apll_coeff_calc.str1.4 + 0x3ffb1c28 0x900 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0xab (size before relaxing) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x3ffb2528 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x31 (size before relaxing) + .rodata.rtc_clk_cpu_freq_to_xtal.str1.4 + 0x3ffb2528 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x89 (size before relaxing) + .rodata.__func__$27 + 0x3ffb2528 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *fill* 0x3ffb2543 0x1 + .rodata.__func__$24 + 0x3ffb2544 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + *libesp_libc.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.abort.str1.4 + 0x3ffb255b 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x26 (size before relaxing) + *libesp_libc.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.__assert_func.str1.4 + 0x3ffb255b 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x36 (size before relaxing) + *libesp_libc.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_libc.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:cache_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_mm.a:esp_cache_msync.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.esp_cache_msync.str1.4 + 0x3ffb255b 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x230 (size before relaxing) + *fill* 0x3ffb255b 0x1 + .rodata.__FUNCTION__$0 + 0x3ffb255c 0x18 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + *libesp_mm.a:esp_cache_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_rom.a:esp_rom_sys.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.esp_error_check_failed_print.str1.4 + 0x3ffb2574 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x5c (size before relaxing) + .rodata._esp_error_check_failed.str1.4 + 0x3ffb2574 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x10 (size before relaxing) + *libesp_system.a:image_process.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libhal.a:cache_hal_esp32.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.cache_hal_get_cache_line_size.str1.4 + 0x3ffb2574 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x50 (size before relaxing) + .rodata.__func__$0 + 0x3ffb2574 0x1e esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.mmu_ll_entry_id_to_vaddr_base.str1.4 + 0x3ffb2592 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x37 (size before relaxing) + .rodata.mmu_ll_check_entry_valid.str1.4 + 0x3ffb2592 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x1d (size before relaxing) + .rodata.mmu_ll_get_entry_target.str1.4 + 0x3ffb2592 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x2b (size before relaxing) + .rodata.mmu_hal_paddr_to_vaddr.str1.4 + 0x3ffb2592 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x52 (size before relaxing) + .rodata.mmu_hal_map_region.str1.4 + 0x3ffb2592 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xd5 (size before relaxing) + .rodata.mmu_hal_vaddr_to_paddr.str1.4 + 0x3ffb2592 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x5f (size before relaxing) + *fill* 0x3ffb2592 0x2 + .rodata.__func__$2 + 0x3ffb2594 0x1e esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb25b2 0x2 + .rodata.__func__$3 + 0x3ffb25b4 0x18 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$4 + 0x3ffb25cc 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb25e5 0x3 + .rodata.__func__$5 + 0x3ffb25e8 0x17 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb25ff 0x1 + .rodata.__func__$6 + 0x3ffb2600 0x15 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb2615 0x3 + .rodata.__func__$7 + 0x3ffb2618 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb262b 0x1 + .rodata.__func__$8 + 0x3ffb262c 0x14 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .rodata.__func__$9 + 0x3ffb2640 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb2653 0x1 + .rodata.__func__$12 + 0x3ffb2654 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *liblog.a:log.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_format_text.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_lock.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_print.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:log_timestamp_common.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *liblog.a:util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.memspi_host_read_id_hs.str1.4 + 0x3ffb266d 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1a (size before relaxing) + *fill* 0x3ffb266d 0x3 + .rodata.TAG 0x3ffb2670 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb2677 0x1 + .rodata.esp_flash_chip_gd + 0x3ffb2678 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x3ffb2678 esp_flash_chip_gd + .rodata.chip_name + 0x3ffb26f4 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_generic_read.str1.4 + 0x3ffb26f7 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x39 (size before relaxing) + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x3ffb26f7 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4c (size before relaxing) + .rodata.spi_flash_chip_generic_read_unique_id.str1.4 + 0x3ffb26f7 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x48 (size before relaxing) + *fill* 0x3ffb26f7 0x1 + .rodata.__func__$0 + 0x3ffb26f8 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x3ffb2721 0x3 + .rodata.esp_flash_chip_generic + 0x3ffb2724 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x3ffb2724 esp_flash_chip_generic + .rodata.chip_name + 0x3ffb27a0 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x3ffb27a8 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb27b5 0x3 + .rodata.esp_flash_chip_issi + 0x3ffb27b8 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x3ffb27b8 esp_flash_chip_issi + .rodata.chip_name + 0x3ffb2834 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *fill* 0x3ffb2839 0x3 + .rodata.esp_flash_chip_mxic + 0x3ffb283c 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x3ffb283c esp_flash_chip_mxic + .rodata.chip_name + 0x3ffb28b8 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + .rodata.spi_flash_chip_winbond_read.str1.4 + 0x3ffb28bd 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x39 (size before relaxing) + *fill* 0x3ffb28bd 0x3 + .rodata.esp_flash_chip_winbond + 0x3ffb28c0 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x3ffb28c0 esp_flash_chip_winbond + .rodata.chip_name + 0x3ffb293c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .rodata.TAG 0x3ffb2944 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + *libspi_flash.a:spi_flash_wrap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) + 0x3ffb294c _data_end = ABSOLUTE (.) + +.ext_ram_noinit + 0x3f800000 0x0 + 0x3f800000 _ext_ram_noinit_start = ABSOLUTE (.) + *(.ext_ram_noinit*) + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_noinit_end = ABSOLUTE (.) + +.noinit 0x3ffb294c 0x0 + 0x3ffb294c . = ALIGN (0x4) + 0x3ffb294c _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x3ffb294c . = ALIGN (0x4) + 0x3ffb294c _noinit_end = ABSOLUTE (.) + +.ext_ram.bss 0x3f800000 0x0 + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_bss_start = ABSOLUTE (.) + 0x3f800000 . = ALIGN (0x4) + 0x3f800000 _ext_ram_bss_end = ABSOLUTE (.) + +.dram0.bss 0x3ffb2950 0xba0 + 0x3ffb2950 . = ALIGN (0x8) + 0x3ffb2950 _bss_start = ABSOLUTE (.) + *(.bss .bss.*) + .bss.s_correction_us + 0x3ffb2950 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .bss.app_elf_sha256_str + 0x3ffb2958 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3ffb2958 app_elf_sha256_str + *fill* 0x3ffb2962 0x2 + .bss.shutdown_handlers + 0x3ffb2964 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .bss.s_system_full_inited + 0x3ffb2978 0x1 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3ffb2979 0x3 + .bss.s_system_inited + 0x3ffb297c 0x2 esp-idf/esp_system/libesp_system.a(startup.c.obj) + *fill* 0x3ffb297e 0x2 + .bss.g_startup_time + 0x3ffb2980 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3ffb2980 g_startup_time + .bss.s_errno_array$1 + 0x3ffb2988 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .bss.s_resume_cores + 0x3ffb2990 0x1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb2991 0x3 + .bss.s_cpu_inited + 0x3ffb2994 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb2996 0x2 + .bss.s_cpu_up 0x3ffb2998 0x2 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x3ffb299a 0x2 + .bss.esp_ipc_isr_finish_cmd + 0x3ffb299c 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stored_interrupt_level + 0x3ffb29a0 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_count_of_nested_calls + 0x3ffb29a4 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.s_stall_state + 0x3ffb29ac 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .bss.esp_ipc_func_arg + 0x3ffb29b0 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb29b0 esp_ipc_func_arg + .bss.esp_ipc_func + 0x3ffb29b4 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb29b4 esp_ipc_func + .bss.esp_ipc_isr_start_fl + 0x3ffb29b8 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x3ffb29b8 esp_ipc_isr_start_fl + .bss.int_wdt_cpu1_ticked + 0x3ffb29bc 0x1 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x3ffb29bc int_wdt_cpu1_ticked + *fill* 0x3ffb29bd 0x3 + .bss.iwdt_context + 0x3ffb29c0 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .bss.s_dumping_core$0 + 0x3ffb29c8 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + *fill* 0x3ffb29c9 0x3 + .bss.g_panic_abort_details + 0x3ffb29cc 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3ffb29cc g_panic_abort_details + .bss.g_panic_abort + 0x3ffb29d0 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x3ffb29d0 g_panic_abort + *fill* 0x3ffb29d1 0x3 + .bss.g_exc_frames + 0x3ffb29d4 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x3ffb29d4 g_exc_frames + .bss.s_no_block_func_arg + 0x3ffb29dc 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_no_block_func_and_arg_are_ready + 0x3ffb29e4 0x2 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3ffb29e6 0x2 + .bss.s_no_block_func + 0x3ffb29e8 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_wait_for + 0x3ffb29f0 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func_arg + 0x3ffb29f8 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_func 0x3ffb2a00 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_ack + 0x3ffb2a08 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_mutex + 0x3ffb2a10 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.s_ipc_task_handle + 0x3ffb2a18 0x8 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .bss.tick_cb 0x3ffb2a20 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.idle_cb 0x3ffb2a60 0x40 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .bss.base$0 0x3ffb2aa0 0x4 esp-idf/log/liblog.a(log_timestamp.c.obj) + .bss.esp_log_cache_enabled + 0x3ffb2aa4 0x4 esp-idf/log/liblog.a(util.c.obj) + .bss.s_log_tags + 0x3ffb2aa8 0x4 esp-idf/log/liblog.a(log_linked_list.c.obj) + .bss.s_log_cache_misses + 0x3ffb2aac 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_cache_entry_count + 0x3ffb2ab0 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_cache_max_generation + 0x3ffb2ab4 0x4 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_cache + 0x3ffb2ab8 0xf8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .bss.s_log_mutex + 0x3ffb2bb0 0x4 esp-idf/log/liblog.a(log_lock.c.obj) + .bss.alloc_failed_callback + 0x3ffb2bb4 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss.registered_heaps + 0x3ffb2bb8 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x3ffb2bb8 registered_heaps + .bss.non_iram_int_disabled_flag + 0x3ffb2bbc 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3ffb2bbe 0x2 + .bss.non_iram_int_disabled + 0x3ffb2bc0 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x3ffb2bc8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x3ffb2bd0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .bss.ref_counts + 0x3ffb2bd4 0xe esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x3ffb2be2 0x2 + .bss.s_rtc_isr_handle + 0x3ffb2be4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .bss.s_brownout_callback + 0x3ffb2be8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .bss.s_cur_pll_freq + 0x3ffb2bec 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .bss.s_other_cpu_startup_done + 0x3ffb2bf0 0x1 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3ffb2bf1 0x3 + .bss.uxSchedulerSuspended + 0x3ffb2bf4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x3ffb2bfc 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNextTaskUnblockTime + 0x3ffb2c04 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x3ffb2c08 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x3ffb2c0c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x3ffb2c10 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendedTicks + 0x3ffb2c18 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x3ffb2c1c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x3ffb2c20 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x3ffb2c24 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x3ffb2c28 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x3ffb2c2c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxDeletedTasksWaitingCleanUp + 0x3ffb2c40 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x3ffb2c44 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x3ffb2c58 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x3ffb2c80 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x3ffb2c84 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x3ffb2c88 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x3ffb2c9c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x3ffb2cb0 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCBs + 0x3ffb2ea4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3ffb2ea4 pxCurrentTCBs + .bss.port_switch_flag + 0x3ffb2eac 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb2eac port_switch_flag + .bss.port_uxOldInterruptState + 0x3ffb2eb4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb2eb4 port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x3ffb2ebc 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb2ebc port_uxCriticalNesting + .bss.port_interruptNesting + 0x3ffb2ec4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb2ec4 port_interruptNesting + .bss.port_xSchedulerRunning + 0x3ffb2ecc 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3ffb2ecc port_xSchedulerRunning + .bss._xt_tick_divisor + 0x3ffb2ed4 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x3ffb2ed4 _xt_tick_divisor + .bss.s_common_recursive_mutex + 0x3ffb2ed8 0x54 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x3ffb2ed8 __lock___atexit_recursive_mutex + 0x3ffb2ed8 __lock___env_recursive_mutex + 0x3ffb2ed8 __lock___sinit_recursive_mutex + 0x3ffb2ed8 __lock___malloc_recursive_mutex + 0x3ffb2ed8 __lock___sfp_recursive_mutex + .bss.s_common_mutex + 0x3ffb2f2c 0x54 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x3ffb2f2c __lock___arc4random_mutex + 0x3ffb2f2c __lock___at_quick_exit_mutex + 0x3ffb2f2c __lock___dd_hash_mutex + 0x3ffb2f2c __lock___tz_mutex + .bss.__lock___libc_recursive_mutex + 0x3ffb2f80 0x54 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x3ffb2f80 __lock___libc_recursive_mutex + .bss.s_time_lock + 0x3ffb2fd4 0x4 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .bss.s_adjtime_total_correction_us + 0x3ffb2fd8 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .bss.s_adjtime_start_us + 0x3ffb2fe0 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .bss.s_boot_time_lock + 0x3ffb2fe8 0x4 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + *fill* 0x3ffb2fec 0x4 + .bss.s_microseconds_offset + 0x3ffb2ff0 0x8 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x3ffb2ff0 s_microseconds_offset + .bss.read_buf 0x3ffb2ff8 0x80 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .bss.write_buf + 0x3ffb3078 0x80 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .bss.s_ctx 0x3ffb30f8 0x1 esp-idf/hal/libhal.a(mmu_hal.c.obj) + *fill* 0x3ffb30f9 0x3 + .bss.s_cache_status + 0x3ffb30fc 0x8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .bss.flash_erasing + 0x3ffb3104 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.flash_brownout_needs_reset + 0x3ffb3105 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .bss.s_flash_op_complete + 0x3ffb3106 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x3ffb3107 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_mutex + 0x3ffb3108 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_cache_state + 0x3ffb310c 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_guard_ops + 0x3ffb3114 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.esp_flash_default_chip + 0x3ffb3118 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x3ffb3118 esp_flash_default_chip + .bss.s_exc_frame + 0x3ffb311c 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .bss.name_buffer$14 + 0x3ffb3120 0x20 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .bss.s_core_flash_config + 0x3ffb3140 0x10 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .bss.s_reg_dump$0 + 0x3ffb3150 0x24c esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .bss.s_extra_info + 0x3ffb339c 0x98 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .bss.s_fake_stacks_num + 0x3ffb3434 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .bss.s_mmu_ctx + 0x3ffb3438 0x80 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .bss.s_partition_list_lock + 0x3ffb34b8 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.s_partition_list + 0x3ffb34bc 0x4 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .bss.reason 0x3ffb34c0 0x8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .bss.p_twdt_obj + 0x3ffb34c8 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .bss.g_twdt_isr + 0x3ffb34cc 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x3ffb34cc g_twdt_isr + *fill* 0x3ffb34cd 0x3 + .bss.init_context + 0x3ffb34d0 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .bss.engines_in_use + 0x3ffb34dc 0x1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3ffb34dd 0x3 + .bss.engine_states + 0x3ffb34e0 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss.curr_partition$2 + 0x3ffb34ec 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.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) + *(.ext_ram.bss .ext_ram.bss.*) + *(COMMON) + 0x3ffb34f0 . = ALIGN (0x8) + 0x3ffb34f0 _bss_end = ABSOLUTE (.) + 0x00000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.appdesc 0x3f400020 0x100 + 0x3f400020 _rodata_reserved_start = ABSOLUTE (.) + 0x3f400020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x3f400020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x3f400020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + 0x3f400120 . = ALIGN (ALIGNOF (.flash.rodata)) + 0x00000001 ASSERT ((ADDR (.flash.rodata) == (ADDR (.flash.appdesc) + SIZEOF (.flash.appdesc))), The gap between .flash.appdesc and .flash.rodata must not exist to produce the final bin image.) + +.flash.rodata 0x3f400120 0x8368 + 0x3f400120 _flash_rodata_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libgcov.a) .rodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libgcov.a) .rodata.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libgcov.a) .sdata2 EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libgcov.a) .sdata2.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libgcov.a) .srodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:log_timestamp_common.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libesp_system.a:ubsan.* *libesp_system.a:image_process.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:clk_utils.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libgcov.a) .srodata.*) + .rodata.esp_timer_impl_init_system_time.str1.4 + 0x3f400120 0x5eab esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x46 (size before relaxing) + .rodata.__esp_system_init_fn_init_show_app_info.str1.4 + 0x3f405fcb 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xc6 (size before relaxing) + .rodata.__esp_system_init_fn_init_efuse_show_app_info.str1.4 + 0x3f405fcb 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0xa2 (size before relaxing) + .rodata.__esp_system_init_fn_init_efuse.str1.4 + 0x3f405fcb 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x31 (size before relaxing) + *fill* 0x3f405fcb 0x1 + .rodata.__FUNCTION__$0 + 0x3f405fcc 0x20 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .rodata.do_system_init_fn.str1.4 + 0x3f405fec 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x46 (size before relaxing) + .rodata.g_startup_fn + 0x3f405fec 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x3f405fec g_startup_fn + .rodata.__esp_system_init_fn_init_show_cpu_freq.str1.4 + 0x3f405ff4 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x51 (size before relaxing) + .rodata.__esp_system_init_fn_init_flash.str1.4 + 0x3f405ff4 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x40 (size before relaxing) + .rodata.__func__$0 + 0x3f405ff4 0x20 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .rodata.start_other_core.str1.4 + 0x3f406014 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb9 (size before relaxing) + .rodata.system_early_init.str1.4 + 0x3f406014 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x82 (size before relaxing) + .rodata 0x3f406014 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .rodata.str1.4 + 0x3f40601c 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x33 (size before relaxing) + .rodata.__func__$0 + 0x3f40601c 0x1e esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .rodata.select_rtc_slow_clk.str1.4 + 0x3f40603a 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x51 (size before relaxing) + .rodata.esp_clk_init.str1.4 + 0x3f40603a 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x68 (size before relaxing) + *fill* 0x3f40603a 0x2 + .rodata.__func__$0 + 0x3f40603c 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) + *fill* 0x3f406049 0x3 + .rodata 0x3f40604c 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .rodata 0x3f40605c 0x10 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .rodata.esp_panic_handler_increment_entry_count.str1.4 + 0x3f40606c 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4c (size before relaxing) + .rodata.esp_panic_handler.str1.4 + 0x3f40606c 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xc7 (size before relaxing) + .rodata.frame_to_panic_info.str1.4 + 0x3f40606c 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x8 (size before relaxing) + .rodata.print_state_for_core.str1.4 + 0x3f40606c 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x3 (size before relaxing) + .rodata.print_debug_exception_details.str1.4 + 0x3f40606c 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x93 (size before relaxing) + .rodata.print_illegal_instruction_details.str1.4 + 0x3f40606c 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a (size before relaxing) + .rodata.print_cache_err_details.str1.4 + 0x3f40606c 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x5f (size before relaxing) + .rodata.panic_print_registers.str1.4 + 0x3f40606c 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x1a1 (size before relaxing) + .rodata 0x3f40606c 0x60 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.panic_arch_fill_info.str1.4 + 0x3f4060cc 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x21 (size before relaxing) + .rodata.panic_soc_fill_info.str1.4 + 0x3f4060cc 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0xf (size before relaxing) + .rodata.str1.4 + 0x3f4060cc 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x28b (size before relaxing) + .rodata.pseudo_reason$0 + 0x3f4060cc 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.reason$1 + 0x3f4060ec 0xa0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .rodata.str1.4 + 0x3f40618c 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0xbd (size before relaxing) + .rodata.str1.4 + 0x3f40618c 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x42 (size before relaxing) + .rodata.esp_ipc_init.str1.4 + 0x3f40618c 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x15 (size before relaxing) + .rodata.__func__$0 + 0x3f40618c 0x9 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + *fill* 0x3f406195 0x3 + .rodata.__func__$1 + 0x3f406198 0xd esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .rodata.esp_log_cache_set_level.str1.4 + 0x3f4061a5 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x95 (size before relaxing) + *fill* 0x3f4061a5 0x3 + .rodata.__func__$0 + 0x3f4061a8 0x18 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .rodata.__func__$6 + 0x3f4061c0 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f4061d1 0x3 + .rodata.__func__$12 + 0x3f4061d4 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x3f4061ed 0x3 + .rodata.__func__$13 + 0x3f4061f0 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.register_heap.str1.4 + 0x3f406201 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x43 (size before relaxing) + .rodata.heap_caps_init.str1.4 + 0x3f406201 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x11c (size before relaxing) + *fill* 0x3f406201 0x3 + .rodata.__func__$1 + 0x3f406204 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$2 + 0x3f406218 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x3f406227 0x1 + .rodata.__func__$3 + 0x3f406228 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.assert_valid_block.str1.4 + 0x3f406236 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x32 (size before relaxing) + .rodata.multi_heap_register_impl.str1.4 + 0x3f406236 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2f (size before relaxing) + *fill* 0x3f406236 0x2 + .rodata.__func__$0 + 0x3f406238 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.control_construct.str1.4 + 0x3f406251 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xca (size before relaxing) + .rodata.default_walker.str1.4 + 0x3f406251 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x26 (size before relaxing) + .rodata.tlsf_check.str1.4 + 0x3f406251 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4a (size before relaxing) + .rodata.tlsf_add_pool.str1.4 + 0x3f406251 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x176 (size before relaxing) + .rodata.tlsf_remove_pool.str1.4 + 0x3f406251 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x116 (size before relaxing) + .rodata.tlsf_create.str1.4 + 0x3f406251 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x32 (size before relaxing) + .rodata.tlsf_malloc.str1.4 + 0x3f406251 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x1e7 (size before relaxing) + .rodata.tlsf_memalign_offs.str1.4 + 0x3f406251 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2b (size before relaxing) + .rodata.tlsf_free.str1.4 + 0x3f406251 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x110 (size before relaxing) + *fill* 0x3f406251 0x3 + .rodata.__func__$2 + 0x3f406254 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f406265 0x3 + .rodata.__func__$3 + 0x3f406268 0xd esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f406275 0x3 + .rodata.__func__$5 + 0x3f406278 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f406289 0x3 + .rodata.__func__$6 + 0x3f40628c 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f406296 0x2 + .rodata.__func__$7 + 0x3f406298 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f4062ab 0x1 + .rodata.__func__$8 + 0x3f4062ac 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$9 + 0x3f4062b8 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.__func__$10 + 0x3f4062c8 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f4062db 0x1 + .rodata.__func__$11 + 0x3f4062dc 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f4062f2 0x2 + .rodata.__func__$12 + 0x3f4062f4 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f406306 0x2 + .rodata.__func__$13 + 0x3f406308 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40631a 0x2 + .rodata.__func__$14 + 0x3f40631c 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40632e 0x2 + .rodata.__func__$16 + 0x3f406330 0xa esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40633a 0x2 + .rodata.__func__$17 + 0x3f40633c 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f40634e 0x2 + .rodata.__func__$19 + 0x3f406350 0x9 esp-idf/heap/libheap.a(tlsf.c.obj) + *fill* 0x3f406359 0x3 + .rodata.__func__$20 + 0x3f40635c 0xb esp-idf/heap/libheap.a(tlsf.c.obj) + .rodata.s_prepare_reserved_regions.str1.4 + 0x3f406367 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xfa (size before relaxing) + *fill* 0x3f406367 0x1 + .rodata.__func__$0 + 0x3f406368 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x3f406383 0x1 + .rodata.soc_memory_region_count + 0x3f406384 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f406384 soc_memory_region_count + .rodata.soc_memory_regions + 0x3f406388 0x35c esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f406388 soc_memory_regions + .rodata.str1.4 + 0x3f4066e4 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x27 (size before relaxing) + .rodata.soc_memory_types + 0x3f4066e4 0x50 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f4066e4 soc_memory_types + .rodata.str1.4 + 0x3f406734 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x179 (size before relaxing) + .rodata.__func__$1 + 0x3f406734 0x18 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.__func__$2 + 0x3f40674c 0xf esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .rodata.esp_cpu_stall.str1.4 + 0x3f40675b 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x52 (size before relaxing) + *fill* 0x3f40675b 0x1 + .rodata.__func__$1 + 0x3f40675c 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.__func__$2 + 0x3f40676c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .rodata.find_desc_for_source.str1.4 + 0x3f40677a 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x39 (size before relaxing) + .rodata.is_vect_desc_usable.str1.4 + 0x3f40677a 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x49 (size before relaxing) + .rodata.esp_intr_alloc_intrstatus_bind.str1.4 + 0x3f40677a 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xb2 (size before relaxing) + *fill* 0x3f40677a 0x2 + .rodata.__func__$0 + 0x3f40677c 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f40678d 0x3 + .rodata.__func__$2 + 0x3f406790 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f4067a6 0x2 + .rodata.__func__$3 + 0x3f4067a8 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x3f4067c1 0x3 + .rodata.__func__$5 + 0x3f4067c4 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.__func__$6 + 0x3f4067d8 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .rodata.periph_module_enable.str1.4 + 0x3f4067ed 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x4a (size before relaxing) + *fill* 0x3f4067ed 0x3 + .rodata.__func__$2 + 0x3f4067f0 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .rodata.rtcio_ll_force_hold_disable.str1.4 + 0x3f406805 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0xe8 (size before relaxing) + *fill* 0x3f406805 0x3 + .rodata.__func__$0 + 0x3f406808 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .rodata 0x3f406824 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .rodata.rtc_clk_cal_internal.str1.4 + 0x3f406829 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x9b (size before relaxing) + .rodata.rtc_clk_cal_ratio.str1.4 + 0x3f406829 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0xf (size before relaxing) + .rodata.rtc_time_get.str1.4 + 0x3f406829 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x1d (size before relaxing) + .rodata.rtc_clk_wait_for_slow_cycle.str1.4 + 0x3f406829 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x29 (size before relaxing) + *fill* 0x3f406829 0x3 + .rodata.__func__$9 + 0x3f40682c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.__func__$1 + 0x3f406838 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .rodata.esp_cpu_intr_get_desc.str1.4 + 0x3f40684d 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x82 (size before relaxing) + *fill* 0x3f40684d 0x3 + .rodata.__func__$0 + 0x3f406850 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + *fill* 0x3f406866 0x2 + .rodata.intr_desc_table + 0x3f406868 0x200 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .rodata.s_sleep_hook_register.str1.4 + 0x3f406a68 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x4b (size before relaxing) + .rodata.str1.4 + 0x3f406a68 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x56c (size before relaxing) + .rodata.esp_sleep_sub_mode_config.str1.4 + 0x3f406a68 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x70 (size before relaxing) + .rodata.esp_sleep_sub_mode_dump_config.str1.4 + 0x3f406a68 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x29 (size before relaxing) + .rodata.s_submode2str + 0x3f406a68 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .rodata.main_task.str1.4 + 0x3f406a90 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0xba (size before relaxing) + .rodata.esp_startup_start_app.str1.4 + 0x3f406a90 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x40 (size before relaxing) + .rodata.__func__$0 + 0x3f406a90 0xa esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x3f406a9a 0x2 + .rodata.__func__$1 + 0x3f406a9c 0x16 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8f (size before relaxing) + .rodata.xQueueGenericReset.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2c (size before relaxing) + .rodata.xQueueGenericCreateStatic.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x37 (size before relaxing) + .rodata.xQueueGetMutexHolder.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb (size before relaxing) + .rodata.xQueueGenericSend.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xfb (size before relaxing) + .rodata.prvInitialiseMutex.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3b (size before relaxing) + .rodata.xQueueGiveMutexRecursive.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .rodata.xQueueGiveFromISR.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x7d (size before relaxing) + .rodata.xQueueReceive.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x66 (size before relaxing) + .rodata.xQueueReceiveFromISR.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x52 (size before relaxing) + .rodata.uxQueueMessagesWaiting.str1.4 + 0x3f406ab2 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x7 (size before relaxing) + *fill* 0x3f406ab2 0x2 + .rodata.__func__$2 + 0x3f406ab4 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406ac1 0x3 + .rodata.__func__$5 + 0x3f406ac4 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406adb 0x1 + .rodata.__func__$7 + 0x3f406adc 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406af1 0x3 + .rodata.__func__$9 + 0x3f406af4 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$11 + 0x3f406b08 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406b1a 0x2 + .rodata.__func__$13 + 0x3f406b1c 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406b37 0x1 + .rodata.__func__$14 + 0x3f406b38 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406b4a 0x2 + .rodata.__func__$17 + 0x3f406b4c 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406b65 0x3 + .rodata.__func__$18 + 0x3f406b68 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406b81 0x3 + .rodata.__func__$20 + 0x3f406b84 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406b99 0x3 + .rodata.__func__$21 + 0x3f406b9c 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$23 + 0x3f406bb0 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x3f406bca 0x2 + .rodata.__func__$24 + 0x3f406bcc 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$25 + 0x3f406be0 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.prvIsYieldRequiredSMP.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4a (size before relaxing) + .rodata.prvSelectHighestPriorityTaskSMP.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x27 (size before relaxing) + .rodata.prvDeleteTCB.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + .rodata.prvInitialiseNewTask.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .rodata.eTaskGetState.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x6 (size before relaxing) + .rodata.xTaskIncrementTick.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8e (size before relaxing) + .rodata.vTaskPlaceOnEventList.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .rodata.xTaskRemoveFromEventList.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x49 (size before relaxing) + .rodata.vTaskSetTimeOutState.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa (size before relaxing) + .rodata.xTaskCheckForTimeOut.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe (size before relaxing) + .rodata.vTaskPrioritySet.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x17 (size before relaxing) + .rodata.vTaskDelete.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7f (size before relaxing) + .rodata.xTaskResumeAll.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7f (size before relaxing) + .rodata.xTaskPriorityDisinherit.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x41 (size before relaxing) + .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2b (size before relaxing) + .rodata.ulTaskGenericNotifyTake.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + .rodata.xTaskGenericNotify.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x83 (size before relaxing) + .rodata.xTaskIncrementTickOtherCores.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x55 (size before relaxing) + .rodata.xTaskCreatePinnedToCore.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbc (size before relaxing) + .rodata.xTaskCreateStaticPinnedToCore.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x65 (size before relaxing) + .rodata.prvCreateIdleTasks.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5 (size before relaxing) + .rodata.vTaskStartScheduler.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + .rodata.xTaskGetIdleTaskHandleForCore.str1.4 + 0x3f406bf3 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbe (size before relaxing) + *fill* 0x3f406bf3 0x1 + .rodata.__func__$2 + 0x3f406bf4 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406c15 0x3 + .rodata.__func__$3 + 0x3f406c18 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406c36 0x2 + .rodata.__func__$4 + 0x3f406c38 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406c56 0x2 + .rodata.__func__$5 + 0x3f406c58 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406c6d 0x3 + .rodata.__func__$6 + 0x3f406c70 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$7 + 0x3f406c88 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406ca5 0x3 + .rodata.__func__$9 + 0x3f406ca8 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406cc6 0x2 + .rodata.__func__$11 + 0x3f406cc8 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406cdb 0x1 + .rodata.__func__$13 + 0x3f406cdc 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$14 + 0x3f406cf4 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$15 + 0x3f406d18 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$17 + 0x3f406d30 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406d45 0x3 + .rodata.__func__$20 + 0x3f406d48 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406d61 0x3 + .rodata.__func__$23 + 0x3f406d64 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406d7a 0x2 + .rodata.__func__$24 + 0x3f406d7c 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$25 + 0x3f406d9c 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406daf 0x1 + .rodata.__func__$30 + 0x3f406db0 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406dbe 0x2 + .rodata.__func__$31 + 0x3f406dc0 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406dcf 0x1 + .rodata.__func__$32 + 0x3f406dd0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__func__$37 + 0x3f406de4 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406dfa 0x2 + .rodata.__func__$38 + 0x3f406dfc 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406e0d 0x3 + .rodata.__func__$40 + 0x3f406e10 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406e1b 0x1 + .rodata.__func__$42 + 0x3f406e1c 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x3f406e29 0x3 + .rodata.__func__$43 + 0x3f406e2c 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.non_ready_task_lists + 0x3f406e38 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.uxTopUsedPriority + 0x3f406e50 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3f406e50 uxTopUsedPriority + .rodata.vPortTaskWrapper.str1.4 + 0x3f406e54 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4d (size before relaxing) + .rodata.vPortTLSPointersDelCb.str1.4 + 0x3f406e54 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x67 (size before relaxing) + .rodata.pxPortInitialiseStack.str1.4 + 0x3f406e54 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x65 (size before relaxing) + .rodata.xPortEnterCriticalTimeout.str1.4 + 0x3f406e54 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xef (size before relaxing) + .rodata.vPortExitCritical.str1.4 + 0x3f406e54 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x40 (size before relaxing) + .rodata.vApplicationStackOverflowHook.str1.4 + 0x3f406e54 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3c (size before relaxing) + .rodata.__func__$0 + 0x3f406e54 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3f406e65 0x3 + .rodata.__func__$1 + 0x3f406e68 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3f406e7a 0x2 + .rodata.__func__$2 + 0x3f406e7c 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x3f406e8d 0x3 + .rodata.__func__$4 + 0x3f406e90 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vApplicationGetIdleTaskMemory.str1.4 + 0x3f406ea6 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x5a (size before relaxing) + *fill* 0x3f406ea6 0x2 + .rodata.__func__$1 + 0x3f406ea8 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) + .rodata.str1.4 + 0x3f406ec6 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x99 (size before relaxing) + .rodata.esp_libc_locks_init.str1.4 + 0x3f406ec6 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0xa5 (size before relaxing) + *fill* 0x3f406ec6 0x2 + .rodata.__func__$4 + 0x3f406ec8 0x14 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .rodata.__func__$3 + 0x3f406edc 0x13 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + *fill* 0x3f406eef 0x1 + .rodata.__func__$2 + 0x3f406ef0 0x15 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + *fill* 0x3f406f05 0x3 + .rodata.__func__$1 + 0x3f406f08 0x15 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + *fill* 0x3f406f1d 0x3 + .rodata.__func__$0 + 0x3f406f20 0xc esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .rodata.uart_hal_rxfifo_rst.str1.4 + 0x3f406f2c 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0xc1 (size before relaxing) + .rodata.uart_hal_write_txfifo.str1.4 + 0x3f406f2c 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x90 (size before relaxing) + .rodata.__func__$1 + 0x3f406f2c 0x15 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .rodata.spi_flash_init_lock.str1.4 + 0x3f406f41 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x45 (size before relaxing) + .rodata.str1.4 + 0x3f406f41 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x101 (size before relaxing) + *fill* 0x3f406f41 0x3 + .rodata.__func__$0 + 0x3f406f44 0x1c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.__func__$1 + 0x3f406f60 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x3f406f91 0x3 + .rodata.__func__$2 + 0x3f406f94 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x3f406fc6 0x2 + .rodata.__func__$3 + 0x3f406fc8 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.esp_mspi_get_io.str1.4 + 0x3f406fdc 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x3f (size before relaxing) + .rodata.__func__$0 + 0x3f406fdc 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.s_mspi_io_num_default + 0x3f406fec 0x6 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.esp_flash_init_default_chip.str1.4 + 0x3f406ff2 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x124 (size before relaxing) + *fill* 0x3f406ff2 0x2 + .rodata.__FUNCTION__$0 + 0x3f406ff4 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.TAG 0x3f407010 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.spi_flash_os_check_yield.str1.4 + 0x3f40701a 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x47 (size before relaxing) + *fill* 0x3f40701a 0x2 + .rodata.__func__$0 + 0x3f40701c 0x19 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.spi_flash_chip_list_check.str1.4 + 0x3f407035 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0xbd (size before relaxing) + .rodata.s_merge_contiguous_pages.str1.4 + 0x3f407035 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x44 (size before relaxing) + .rodata.spi_flash_munmap.str1.4 + 0x3f407035 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x32 (size before relaxing) + *fill* 0x3f407035 0x3 + .rodata.__func__$1 + 0x3f407038 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.detect_spi_flash_chip.str1.4 + 0x3f407049 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x1f (size before relaxing) + .rodata.esp_flash_read_unique_chip_id.str1.4 + 0x3f407049 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x7b (size before relaxing) + .rodata.esp_flash_init.str1.4 + 0x3f407049 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xb2 (size before relaxing) + .rodata.esp_flash_erase_region.str1.4 + 0x3f407049 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3f (size before relaxing) + .rodata.esp_flash_write.str1.4 + 0x3f407049 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + *fill* 0x3f407049 0x3 + .rodata.__func__$0 + 0x3f40704c 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.__func__$1 + 0x3f40705c 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x3f407073 0x1 + .rodata.io_mode_str + 0x3f407074 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.esp_core_dump_write_elf_and_check.str1.4 + 0x3f407128 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x32 (size before relaxing) + .rodata.esp_core_dump_get_user_ram_info.str1.4 + 0x3f407128 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x4c (size before relaxing) + .rodata.__func__$0 + 0x3f407128 0x20 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .rodata.s_memory_sections + 0x3f407148 0x20 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .rodata.TAG 0x3f407168 0x15 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .rodata.elf_write_segment_header.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x6f (size before relaxing) + .rodata.elf_process_note_segment.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x47 (size before relaxing) + .rodata.elf_add_segment.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x69 (size before relaxing) + .rodata.elf_save_interrupted_stack.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x47 (size before relaxing) + .rodata.elf_add_tcb.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x2b (size before relaxing) + .rodata.elf_process_task_tcb.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x5f (size before relaxing) + .rodata.elf_write_file_header.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x33 (size before relaxing) + .rodata.elf_write_note_header.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x6e (size before relaxing) + .rodata.elf_write_note.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x9e (size before relaxing) + .rodata.elf_add_note.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x78 (size before relaxing) + .rodata.elf_add_regs.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x39 (size before relaxing) + .rodata.elf_process_tasks_regs.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x92 (size before relaxing) + .rodata.elf_process_task_stack.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x47 (size before relaxing) + .rodata.elf_save_task.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x7f (size before relaxing) + .rodata.elf_write_tasks_data.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x3e (size before relaxing) + .rodata.elf_write_core_dump_user_data.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x6c (size before relaxing) + .rodata.elf_add_wdt_panic_details.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x81 (size before relaxing) + .rodata.elf_write_core_dump_info.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x167 (size before relaxing) + .rodata.esp_core_dump_do_write_elf_pass.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x101 (size before relaxing) + .rodata.esp_core_dump_write_elf.str1.4 + 0x3f40717d 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0xeb (size before relaxing) + *fill* 0x3f40717d 0x3 + .rodata.__FUNCTION__$1 + 0x3f407180 0x1a esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f40719a 0x2 + .rodata.__FUNCTION__$2 + 0x3f40719c 0x19 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f4071b5 0x3 + .rodata.__FUNCTION__$3 + 0x3f4071b8 0x1e esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f4071d6 0x2 + .rodata.__FUNCTION__$4 + 0x3f4071d8 0x17 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f4071ef 0x1 + .rodata.__FUNCTION__$5 + 0x3f4071f0 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .rodata.__FUNCTION__$6 + 0x3f4071fc 0x15 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f407211 0x3 + .rodata.__FUNCTION__$7 + 0x3f407214 0xe esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f407222 0x2 + .rodata.__FUNCTION__$8 + 0x3f407224 0x10 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .rodata.__FUNCTION__$9 + 0x3f407234 0x1b esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f40724f 0x1 + .rodata.__FUNCTION__$10 + 0x3f407250 0x16 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f407266 0x2 + .rodata.__FUNCTION__$11 + 0x3f407268 0x19 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f407281 0x3 + .rodata.__FUNCTION__$12 + 0x3f407284 0x19 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f40729d 0x3 + .rodata.__FUNCTION__$13 + 0x3f4072a0 0x16 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f4072b6 0x2 + .rodata.__FUNCTION__$15 + 0x3f4072b8 0xf esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f4072c7 0x1 + .rodata.__FUNCTION__$16 + 0x3f4072c8 0xd esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f4072d5 0x3 + .rodata.__FUNCTION__$17 + 0x3f4072d8 0x17 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f4072ef 0x1 + .rodata.__FUNCTION__$18 + 0x3f4072f0 0x15 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f407305 0x3 + .rodata.__FUNCTION__$19 + 0x3f407308 0x16 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x3f40731e 0x2 + .rodata.__FUNCTION__$20 + 0x3f407320 0x20 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .rodata.TAG 0x3f407340 0x12 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .rodata.core_dump_sha256_print.str1.4 + 0x3f407352 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x14 (size before relaxing) + .rodata.core_dump_sha_update.str1.4 + 0x3f407352 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x38 (size before relaxing) + *fill* 0x3f407352 0x2 + .rodata.TAG 0x3f407354 0x12 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .rodata.esp_core_dump_partition_init.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0xd7 (size before relaxing) + .rodata.esp_core_dump_flash_print_write_start.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x28 (size before relaxing) + .rodata.esp_core_dump_flash_print_write_end.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x30 (size before relaxing) + .rodata.esp_core_dump_flash_hw_init.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x79 (size before relaxing) + .rodata.esp_core_dump_flash_write_data.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x38 (size before relaxing) + .rodata.esp_core_dump_flash_write_prepare.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x89 (size before relaxing) + .rodata.esp_core_dump_flash_write_end.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x70 (size before relaxing) + .rodata.esp_core_dump_image_erase.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0xa0 (size before relaxing) + .rodata.esp_core_dump_partition_and_size_get.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x6b (size before relaxing) + .rodata.esp_core_dump_image_check.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x13c (size before relaxing) + .rodata.esp_core_dump_init.str1.4 + 0x3f407366 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x36 (size before relaxing) + *fill* 0x3f407366 0x2 + .rodata.__func__$0 + 0x3f407368 0x1a esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + *fill* 0x3f407382 0x2 + .rodata.TAG 0x3f407384 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .rodata.esp_core_dump_get_regs_from_stack.str1.4 + 0x3f407398 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x36 (size before relaxing) + .rodata.esp_core_dump_get_stack.str1.4 + 0x3f407398 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x76 (size before relaxing) + .rodata.esp_core_dump_get_task_regs_dump.str1.4 + 0x3f407398 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x5f (size before relaxing) + .rodata.__func__$1 + 0x3f407398 0x21 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + *fill* 0x3f4073b9 0x3 + .rodata.__func__$2 + 0x3f4073bc 0x18 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .rodata.TAG 0x3f4073d4 0x13 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .rodata.app_main.str1.4 + 0x3f4073e7 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + 0x104 (size before relaxing) + .rodata.str1.4 + 0x3f4073e7 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x23 (size before relaxing) + *fill* 0x3f4073e7 0x9 + .rodata 0x3f4073f0 0x24 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x3f4073f0 _xt_coproc_sa_offset + .rodata.s_get_bus_mask.str1.4 + 0x3f407414 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x91 (size before relaxing) + .rodata.s_reserve_irom_region.str1.4 + 0x3f407414 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xbe (size before relaxing) + .rodata.s_reserve_drom_region.str1.4 + 0x3f407414 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x8b (size before relaxing) + .rodata.esp_mmu_map_init.str1.4 + 0x3f407414 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x93 (size before relaxing) + .rodata.esp_mmu_map_get_max_consecutive_free_block_size.str1.4 + 0x3f407414 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x46 (size before relaxing) + .rodata.esp_mmu_map.str1.4 + 0x3f407414 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x12e (size before relaxing) + .rodata.esp_mmu_unmap.str1.4 + 0x3f407414 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x8c (size before relaxing) + .rodata.esp_mmu_vaddr_to_paddr.str1.4 + 0x3f407414 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x64 (size before relaxing) + .rodata.__FUNCTION__$1 + 0x3f407414 0x17 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f40742b 0x1 + .rodata.__FUNCTION__$2 + 0x3f40742c 0xe esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f40743a 0x2 + .rodata.__func__$3 + 0x3f40743c 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__FUNCTION__$4 + 0x3f407448 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$7 + 0x3f407454 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f40746a 0x2 + .rodata.__func__$8 + 0x3f40746c 0x14 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.__func__$9 + 0x3f407480 0x16 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x3f407496 0x2 + .rodata.__func__$10 + 0x3f407498 0x11 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .rodata.str1.4 + 0x3f4074a9 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x5 (size before relaxing) + *fill* 0x3f4074a9 0x3 + .rodata.g_mmu_mem_regions + 0x3f4074ac 0x48 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x3f4074ac g_mmu_mem_regions + .rodata.rtc_io_desc + 0x3f4074f4 0x3f0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + 0x3f4074f4 rtc_io_desc + .rodata.get_flash_clock_divider.str1.4 + 0x3f4078e4 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x7c (size before relaxing) + .rodata.load_partitions.str1.4 + 0x3f4078e4 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x66 (size before relaxing) + .rodata.ensure_partitions_loaded.str1.4 + 0x3f4078e4 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x2b (size before relaxing) + .rodata.esp_partition_blockdev_erase.str1.4 + 0x3f4078e4 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x3f (size before relaxing) + .rodata.esp_partition_next.str1.4 + 0x3f4078e4 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x3 (size before relaxing) + .rodata.esp_partition_get.str1.4 + 0x3f4078e4 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x11 (size before relaxing) + .rodata.__func__$4 + 0x3f4078e4 0x12 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + *fill* 0x3f4078f6 0x2 + .rodata.__func__$5 + 0x3f4078f8 0x13 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .rodata.esp_partition_write.str1.4 + 0x3f40790b 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x46 (size before relaxing) + *fill* 0x3f40790b 0x1 + .rodata.__func__$0 + 0x3f40790c 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + *fill* 0x3f40791f 0x1 + .rodata.__func__$5 + 0x3f407920 0x13 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .rodata.str1.4 + 0x3f407933 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x7f (size before relaxing) + *fill* 0x3f407933 0x1 + .rodata.__func__$8 + 0x3f407934 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.str1.4 + 0x3f40795c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x58 (size before relaxing) + .rodata.esp_crosscore_int_init.str1.4 + 0x3f40795c 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x2f (size before relaxing) + .rodata.__func__$0 + 0x3f40795c 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + *fill* 0x3f407973 0x1 + .rodata.__func__$1 + 0x3f407974 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .rodata.add_entry.str1.4 + 0x3f40798b 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa8 (size before relaxing) + .rodata.delete_entry.str1.4 + 0x3f40798b 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .rodata.task_wdt_timeout_abort.str1.4 + 0x3f40798b 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xb0 (size before relaxing) + .rodata.esp_task_wdt_add.str1.4 + 0x3f40798b 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x30 (size before relaxing) + .rodata.subscribe_idle.str1.4 + 0x3f40798b 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa8 (size before relaxing) + .rodata.esp_task_wdt_init.str1.4 + 0x3f40798b 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x81 (size before relaxing) + .rodata.esp_task_wdt_print_triggered_tasks.str1.4 + 0x3f40798b 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xad (size before relaxing) + .rodata.task_wdt_isr.str1.4 + 0x3f40798b 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x27 (size before relaxing) + *fill* 0x3f40798b 0x1 + .rodata.__FUNCTION__$5 + 0x3f40798c 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f40799f 0x1 + .rodata.__FUNCTION__$7 + 0x3f4079a0 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f4079aa 0x2 + .rodata.__FUNCTION__$8 + 0x3f4079ac 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f4079bd 0x3 + .rodata.__func__$12 + 0x3f4079c0 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f4079cf 0x1 + .rodata.__func__$13 + 0x3f4079d0 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f4079dd 0x3 + .rodata.__FUNCTION__$14 + 0x3f4079e0 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f4079f2 0x2 + .rodata.__func__$15 + 0x3f4079f4 0x17 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x3f407a0b 0x1 + .rodata.esp_unknown_msg + 0x3f407a0c 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x3f407a12 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x522 (size before relaxing) + *fill* 0x3f407a12 0x2 + .rodata.esp_err_msg_table + 0x3f407a14 0x198 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.1 + 0x3f407bac 0xff esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0xf0 (size before relaxing) + *fill* 0x3f407cab 0x1 + .rodata.__func__$0 + 0x3f407cac 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .rodata.str1.4 + 0x3f407ccc 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x2cd (size before relaxing) + .rodata.esp_isr_names + 0x3f407ccc 0x114 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x3f407ccc esp_isr_names + .rodata 0x3f407de0 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .rodata.g_spi_lock_main_flash_dev + 0x3f407df4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + 0x3f407df4 g_spi_lock_main_flash_dev + .rodata 0x3f407df8 0x20 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x3f407df8 Xthal_intlevel + .rodata.sha256_padding + 0x3f407e18 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.K 0x3f407e58 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha_get_engine_state.str1.4 + 0x3f407f58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4c (size before relaxing) + .rodata.esp_sha_lock_engine_common.str1.4 + 0x3f407f58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x14 (size before relaxing) + .rodata.esp_sha_read_digest_state.str1.4 + 0x3f407f58 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x48 (size before relaxing) + .rodata.__func__$0 + 0x3f407f58 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3f407f66 0x2 + .rodata.__func__$1 + 0x3f407f68 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3f407f82 0x2 + .rodata.__func__$2 + 0x3f407f84 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + *fill* 0x3f407f99 0x3 + .rodata.__func__$3 + 0x3f407f9c 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_ota_get_running_partition.str1.4 + 0x3f407fb7 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x5f (size before relaxing) + *fill* 0x3f407fb7 0x1 + .rodata.__func__$1 + 0x3f407fb8 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x3f407fd6 0x2 + .rodata 0x3f407fd8 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + .rodata.str1.1 + 0x3f407fdc 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + 0xf (size before relaxing) + .rodata 0x3f407fdc 0x90 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + *fill* 0x3f40806c 0x4 + .rodata 0x3f408070 0x340 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x3f4083b0 . = ALIGN (0x4) + 0x3f4083b0 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + 0x3f4083b0 . = ALIGN (0x4) + 0x3f4083b0 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x3f4083b0 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + 0x3f4083b0 . = ALIGN (0x4) + 0x3f4083b0 __preinit_array_start = ABSOLUTE (.) + 0x3f4083b0 . = ALIGN (0x4) + 0x3f4083b0 __bothinit_array_start = ABSOLUTE (.) + *(.preinit_array) + 0x3f4083b0 __preinit_array_end = ABSOLUTE (.) + 0x3f4083b0 . = ALIGN (0x4) + 0x3f4083b0 __init_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors.*)) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors) + .ctors 0x3f4083b0 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .ctors 0x3f4083b4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x3f4083b8 __init_array_end = ABSOLUTE (.) + 0x3f4083b8 __bothinit_array_end = ABSOLUTE (.) + 0x3f4083b8 . = ALIGN (0x4) + 0x3f4083b8 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x3f4083b8 0x48 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x3f408400 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x3f408400 . = ALIGN (0x4) + 0x3f408400 _esp_system_init_fn_array_start = ABSOLUTE (.) + *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) + .esp_system_init_fn.1 + 0x3f408400 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.10 + 0x3f408408 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.20 + 0x3f408410 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .esp_system_init_fn.21 + 0x3f408418 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.100 + 0x3f408420 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .esp_system_init_fn.101 + 0x3f408428 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .esp_system_init_fn.102 + 0x3f408430 0x8 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .esp_system_init_fn.103 + 0x3f408438 0x8 esp-idf/esp_security/libesp_security.a(init.c.obj) + .esp_system_init_fn.104 + 0x3f408440 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.105 + 0x3f408448 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.120 + 0x3f408450 0x8 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .esp_system_init_fn.130 + 0x3f408458 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .esp_system_init_fn.130 + 0x3f408460 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .esp_system_init_fn.140 + 0x3f408468 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .esp_system_init_fn.999 + 0x3f408470 0x8 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x3f408478 _esp_system_init_fn_array_end = ABSOLUTE (.) + 0x3f408478 _rodata_end = ABSOLUTE (.) + 0x3f408478 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x3f408478 _lit4_end = ABSOLUTE (.) + 0x3f408478 . = ALIGN (0x4) + 0x3f408478 _thread_local_start = ABSOLUTE (.) + 0x3f408478 _picolibc_reent_stub_start = ABSOLUTE (.) + *(.tdata.errno) + .tdata.errno 0x3f408478 0x4 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + 0x3f408478 errno + *(.tdata.tls_stdin) + .tdata.tls_stdin + 0x3f40847c 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3f40847c tls_stdin + *(.tdata.tls_stdout) + .tdata.tls_stdout + 0x3f408480 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3f408480 tls_stdout + *(.tdata.tls_stderr) + .tdata.tls_stderr + 0x3f408484 0x4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x3f408484 tls_stderr + 0x3f408488 _picolibc_reent_stub_end = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x3f408488 _thread_local_end = ABSOLUTE (.) + 0x00000001 ASSERT (((_picolibc_reent_stub_end - _picolibc_reent_stub_start) == 0x10), Newlib _reent stub have wrong size) + 0x00000010 _flash_rodata_align = ALIGNOF (.flash.rodata) + +.flash.rodata_noload + 0x3f408488 0x0 + 0x3f408488 _rodata_reserved_end = ABSOLUTE (.) + +.flash.text 0x400d0020 0xd0f6 + 0x400d0020 _stext = . + 0x400d0020 _instruction_reserved_start = ABSOLUTE (.) + 0x400d0020 _text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libfreertos.a:timers.* *libfreertos.a:tasks.* *libfreertos.a:stream_buffer.* *libfreertos.a:queue.* *libfreertos.a:portasm.* *libfreertos.a:port_systick.* *libfreertos.a:port.* *libfreertos.a:list.* *libfreertos.a:event_groups.* *libesp_timer.a:esp_timer_impl_lac.* *libesp_timer.a:esp_timer_impl_common.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_pm.a:pm_impl.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:esp_time_impl.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_gpio.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libxtensa.a *libxt_hal.a *libgcov.a) .literal EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libfreertos.a:timers.* *libfreertos.a:tasks.* *libfreertos.a:stream_buffer.* *libfreertos.a:queue.* *libfreertos.a:portasm.* *libfreertos.a:port_systick.* *libfreertos.a:port.* *libfreertos.a:list.* *libfreertos.a:event_groups.* *libesp_timer.a:esp_timer_impl_lac.* *libesp_timer.a:esp_timer_impl_common.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_pm.a:pm_impl.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:esp_time_impl.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_gpio.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libxtensa.a *libxt_hal.a *libgcov.a) .literal.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libfreertos.a:timers.* *libfreertos.a:tasks.* *libfreertos.a:stream_buffer.* *libfreertos.a:queue.* *libfreertos.a:portasm.* *libfreertos.a:port_systick.* *libfreertos.a:port.* *libfreertos.a:list.* *libfreertos.a:event_groups.* *libesp_timer.a:esp_timer_impl_lac.* *libesp_timer.a:esp_timer_impl_common.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_pm.a:pm_impl.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:esp_time_impl.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_gpio.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libxtensa.a *libxt_hal.a *libgcov.a) .text EXCLUDE_FILE(*libspi_flash.a:spi_flash_wrap.* *libspi_flash.a:spi_flash_os_func_noos.* *libspi_flash.a:spi_flash_os_func_app.* *libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libspi_flash.a:esp_flash_api.* *libsoc.a:lldesc.* *liblog.a:util.* *liblog.a:tag_log_level.* *liblog.a:log_write.* *liblog.a:log_timestamp_common.* *liblog.a:log_timestamp.* *liblog.a:log_print.* *liblog.a:log_lock.* *liblog.a:log_format_text.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:mmu_hal.* *libhal.a:cache_hal_esp32.* *libgcc.a:lib2funcs.* *libfreertos.a:timers.* *libfreertos.a:tasks.* *libfreertos.a:stream_buffer.* *libfreertos.a:queue.* *libfreertos.a:portasm.* *libfreertos.a:port_systick.* *libfreertos.a:port.* *libfreertos.a:list.* *libfreertos.a:event_groups.* *libesp_timer.a:esp_timer_impl_lac.* *libesp_timer.a:esp_timer_impl_common.* *libesp_system.a:ubsan.* *libesp_system.a:system_time.* *libesp_system.a:system_internal.* *libesp_system.a:reset_reason.* *libesp_system.a:panic.* *libesp_system.a:image_process.* *libesp_system.a:freertos_hooks.* *libesp_system.a:esp_system_chip.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_sys.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_print.* *libesp_pm.a:pm_impl.* *libesp_mm.a:esp_cache_utils.* *libesp_mm.a:esp_cache_msync.* *libesp_mm.a:cache_esp32.* *libesp_libc.a:stdatomic.* *libesp_libc.a:heap.* *libesp_libc.a:esp_time_impl.* *libesp_libc.a:assert.* *libesp_libc.a:abort.* *libesp_hw_support.a:sleep_modes.* *libesp_hw_support.a:sleep_modem.* *libesp_hw_support.a:sleep_gpio.* *libesp_hw_support.a:sar_periph_ctrl.* *libesp_hw_support.a:rtc_wdt.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:regi2c_ctrl.* *libesp_hw_support.a:periph_ctrl.* *libesp_hw_support.a:mspi_timing_tuning.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:esp_clk_tree.* *libesp_hw_support.a:esp_clk.* *libesp_hw_support.a:cpu.* *libesp_hw_support.a:clk_utils.* *libesp_hw_support.a:adc_share_hw_ctrl.* *libesp_hal_wdt.a:wdt_hal_iram.* *libesp_hal_mspi.a:spi_flash_hal_iram.* *libesp_hal_mspi.a:spi_flash_encrypt_hal_iram.* *libesp_hal_gpio.a:gpio_hal.* *libxtensa.a *libxt_hal.a *libgcov.a) .text.*) + .literal.esp_timer_early_init + 0x400d0020 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x8 (size before relaxing) + .literal.__esp_system_init_fn_esp_timer_init_nonos + 0x400d0020 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_timer_impl_init_system_time + 0x400d0020 0x14 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x28 (size before relaxing) + .literal.esp_app_format_init_elf_sha256 + 0x400d0034 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .literal.esp_app_get_elf_sha256 + 0x400d003c 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xc (size before relaxing) + .literal.__esp_system_init_fn_init_show_app_info + 0x400d0040 0x2c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x58 (size before relaxing) + .literal.__esp_system_init_fn_init_efuse_check + 0x400d006c 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x8 (size before relaxing) + .literal.__esp_system_init_fn_init_efuse_show_app_info + 0x400d006c 0x1c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x40 (size before relaxing) + .literal.__esp_system_init_fn_init_efuse + 0x400d0088 0x8 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x18 (size before relaxing) + .literal.esp_efuse_check_errors + 0x400d0090 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_register_shutdown_handler + 0x400d0090 0x4 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .literal.esp_restart + 0x400d0094 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0xc (size before relaxing) + .literal.do_system_init_fn + 0x400d0094 0x14 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x24 (size before relaxing) + .literal.do_core_init + 0x400d00a8 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x4 (size before relaxing) + .literal.do_secondary_init + 0x400d00a8 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x10 (size before relaxing) + .literal.start_cpu0_default + 0x400d00ac 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x14 (size before relaxing) + .literal.__esp_system_init_fn_init_show_cpu_freq + 0x400d00b0 0xc esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x24 (size before relaxing) + .literal.__esp_system_init_fn_init_brownout + 0x400d00bc 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_newlib_time + 0x400d00bc 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_flash + 0x400d00bc 0x10 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x24 (size before relaxing) + .literal.__esp_system_init_fn_init_disable_rtc_wdt + 0x400d00cc 0x4 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x10 (size before relaxing) + .literal.restore_app_mmu_from_pro_mmu + 0x400d00d0 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.core_intr_matrix_clear + 0x400d00d8 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.sys_rtc_init + 0x400d00dc 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x4 (size before relaxing) + .literal.start_other_core + 0x400d00dc 0x2c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x74 (size before relaxing) + .literal.system_early_init + 0x400d0108 0x24 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x98 (size before relaxing) + .literal.startup_resume_other_cores + 0x400d012c 0x4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .literal.mspi_init + 0x400d0130 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x10 (size before relaxing) + .literal.esp_ipc_isr_init + 0x400d0130 0x4 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x8 (size before relaxing) + .literal.esp_ipc_isr_port_init + 0x400d0134 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0xc (size before relaxing) + .literal.select_rtc_slow_clk + 0x400d0134 0x8 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x3c (size before relaxing) + .literal.esp_rtc_init + 0x400d013c 0x14 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x18 (size before relaxing) + .literal.esp_clk_init + 0x400d0150 0x18 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x78 (size before relaxing) + .literal.esp_perip_clk_init + 0x400d0168 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x60 (size before relaxing) + .literal.esp_cache_err_int_init + 0x400d0198 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x1c (size before relaxing) + .literal.esp_cache_err_get_cpuid + 0x400d01a0 0x8 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x10 (size before relaxing) + .literal.esp_int_wdt_init + 0x400d01a8 0x18 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x44 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x400d01c0 0x4 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x14 (size before relaxing) + .literal.frame_to_panic_info + 0x400d01c4 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.panic_handler + 0x400d01cc 0x14 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x60 (size before relaxing) + .literal.print_state_for_core + 0x400d01e0 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x14 (size before relaxing) + .literal.print_state + 0x400d01e8 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + .literal.panic_restart + 0x400d01e8 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xc (size before relaxing) + .literal.print_debug_exception_details + 0x400d01e8 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x40 (size before relaxing) + .literal.print_illegal_instruction_details + 0x400d0208 0x14 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.print_cache_err_details + 0x400d021c 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x34 (size before relaxing) + .literal.panic_print_registers + 0x400d022c 0x28 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x84 (size before relaxing) + .literal.panic_arch_fill_info + 0x400d0254 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .literal.panic_soc_fill_info + 0x400d0264 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x14 (size before relaxing) + .literal.panic_print_backtrace + 0x400d0274 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x4 (size before relaxing) + .literal.esp_ipc_init + 0x400d0274 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x38 (size before relaxing) + .literal.esp_ipc_call_nonblocking + 0x400d029c 0xc esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x28 (size before relaxing) + .literal.esp_log_is_tag_loggable + 0x400d02a8 0x0 esp-idf/log/liblog.a(log_level.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_linked_list_get_level + 0x400d02a8 0x8 esp-idf/log/liblog.a(log_linked_list.c.obj) + .literal.fix_cache_generation_overflow + 0x400d02b0 0xc esp-idf/log/liblog.a(log_binary_heap.c.obj) + .literal.heap_swap + 0x400d02bc 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x4 (size before relaxing) + .literal.heap_bubble_down + 0x400d02bc 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_cache_get_level + 0x400d02bc 0x14 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x2c (size before relaxing) + .literal.esp_log_cache_add + 0x400d02d0 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_get_minimum_free_size + 0x400d02d0 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_get_info + 0x400d02d4 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x10 (size before relaxing) + .literal.heap_caps_get_largest_free_block + 0x400d02d4 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x4 (size before relaxing) + .literal.sorted_add_to_registered_heaps + 0x400d02d4 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x4 (size before relaxing) + .literal.register_heap + 0x400d02d4 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x400d02e4 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x400d02e4 0x38 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x90 (size before relaxing) + .literal.__esp_system_init_fn_init_heap + 0x400d031c 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x4 (size before relaxing) + .literal.s_get_num_reserved_regions + 0x400d031c 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x400d0324 0x20 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x40 (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x400d0344 0x4 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x400d0348 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x20 (size before relaxing) + .literal.insert_vector_desc + 0x400d0350 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.find_desc_for_int + 0x400d0354 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.get_desc_for_int + 0x400d0354 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + .literal.find_desc_for_source + 0x400d035c 0xc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.is_vect_desc_usable + 0x400d0368 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.get_available_int + 0x400d0370 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x28 (size before relaxing) + .literal.esp_intr_ptr_in_isr_region + 0x400d0374 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .literal.esp_intr_alloc_intrstatus_bind + 0x400d038c 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x9c (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x400d03b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.esp_intr_alloc + 0x400d03b8 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.s_rtc_isr_noniram_hook + 0x400d03b8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .literal.s_rtc_isr_noniram_hook_relieve + 0x400d03bc 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x4 (size before relaxing) + .literal.rtc_isr_ensure_installed + 0x400d03bc 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x28 (size before relaxing) + .literal.rtc_isr_register + 0x400d03d4 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x24 (size before relaxing) + .literal.esp_brownout_init + 0x400d03dc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x14 (size before relaxing) + .literal.esp_chip_info + 0x400d03e4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0xc (size before relaxing) + .literal.esp_cpu_intr_get_desc + 0x400d03e8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x14 (size before relaxing) + .literal.other_cpu_startup_idle_hook_cb + 0x400d03f8 0x4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .literal.main_task + 0x400d03fc 0x24 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x60 (size before relaxing) + .literal.esp_startup_start_app + 0x400d0420 0x1c esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x38 (size before relaxing) + .literal.esp_startup_start_app_other_cores + 0x400d043c 0x4 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x18 (size before relaxing) + .literal._xt_tick_divisor_init + 0x400d0440 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0xc (size before relaxing) + .literal.pvPortMalloc + 0x400d0444 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x8 (size before relaxing) + .literal.vPortFree + 0x400d0444 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x4 (size before relaxing) + .literal.xPortCheckValidListMem + 0x400d0444 0xc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x14 (size before relaxing) + .literal.xPortCheckValidTCBMem + 0x400d0450 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x14 (size before relaxing) + .literal.xPortcheckValidStackMem + 0x400d0450 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x14 (size before relaxing) + .literal.vApplicationGetIdleTaskMemory + 0x400d0450 0x10 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x20 (size before relaxing) + .literal.__esp_system_init_fn_init_libc + 0x400d0460 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_libc_stdio + 0x400d0460 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x4 (size before relaxing) + .literal.esp_libc_locks_init + 0x400d0460 0x20 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x38 (size before relaxing) + .literal.adjust_boot_time + 0x400d0480 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x18 (size before relaxing) + .literal.get_adjusted_boot_time + 0x400d0488 0x4 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x10 (size before relaxing) + .literal.adjtime_corr_stop + 0x400d048c 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x14 (size before relaxing) + .literal._gettimeofday_r + 0x400d048c 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x14 (size before relaxing) + .literal.settimeofday + 0x400d0494 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x10 (size before relaxing) + .literal.esp_libc_time_init + 0x400d0494 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x4 (size before relaxing) + .literal.close + 0x400d0494 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.read 0x400d0494 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.write + 0x400d0494 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.lseek + 0x400d0494 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.gettimeofday + 0x400d0494 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.fstat + 0x400d0494 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.syscall_not_implemented + 0x400d0494 0x4 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .literal.esp_libc_init + 0x400d0498 0x10 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x1c (size before relaxing) + .literal.uart_hal_write_txfifo + 0x400d04a8 0x24 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.brownout_hal_config + 0x400d04cc 0x14 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_init_lock + 0x400d04e0 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x400d04f0 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x400d04f0 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.esp_mspi_get_io + 0x400d04f0 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x1c (size before relaxing) + .literal.esp_mspi_pin_reserve + 0x400d0504 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x8 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x400d0504 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x58 (size before relaxing) + .literal.esp_flash_app_init + 0x400d0528 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_chip_list_check + 0x400d052c 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x44 (size before relaxing) + .literal.spi_flash_mmap + 0x400d0554 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_munmap + 0x400d0554 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_cache2phys + 0x400d0560 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4 (size before relaxing) + .literal.__esp_system_init_fn_init_coredump + 0x400d0560 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + 0x4 (size before relaxing) + .literal.esp_core_dump_switch_task_stack_to_isr + 0x400d0560 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_core_dump_write_elf_and_check + 0x400d0564 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_core_dump_reset_tasks_snapshots_iter + 0x400d056c 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_core_dump_get_user_ram_info + 0x400d056c 0x10 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x14 (size before relaxing) + .literal.esp_core_dump_tcb_addr_is_sane + 0x400d057c 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x4 (size before relaxing) + .literal.esp_core_dump_in_isr_context + 0x400d057c 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_core_dump_enable_stack_overflow_detection + 0x400d0580 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x10 (size before relaxing) + .literal.esp_core_dump_port_write + 0x400d0580 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x8 (size before relaxing) + .literal.esp_core_dump_get_task_snapshot + 0x400d0580 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x28 (size before relaxing) + .literal.esp_core_dump_write + 0x400d0580 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x18 (size before relaxing) + .literal.elf_write_segment_header + 0x400d0580 0x10 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x24 (size before relaxing) + .literal.elf_process_note_segment + 0x400d0590 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x1c (size before relaxing) + .literal.elf_add_segment + 0x400d0598 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x34 (size before relaxing) + .literal.elf_save_interrupted_stack + 0x400d05a4 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x18 (size before relaxing) + .literal.elf_add_tcb + 0x400d05ac 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x18 (size before relaxing) + .literal.elf_process_task_tcb + 0x400d05b4 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x24 (size before relaxing) + .literal.esp_core_dump_store_section + 0x400d05c0 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x4 (size before relaxing) + .literal.elf_write_file_header + 0x400d05c0 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x20 (size before relaxing) + .literal.elf_write_core_dump_note_cb + 0x400d05c8 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x8 (size before relaxing) + .literal.elf_write_note_header + 0x400d05cc 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x34 (size before relaxing) + .literal.elf_write_note + 0x400d05e0 0x10 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x40 (size before relaxing) + .literal.elf_add_note + 0x400d05f0 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x24 (size before relaxing) + .literal.elf_add_regs + 0x400d05fc 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x1c (size before relaxing) + .literal.elf_process_tasks_regs + 0x400d0604 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x60 (size before relaxing) + .literal.elf_process_task_stack + 0x400d0610 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x28 (size before relaxing) + .literal.elf_save_task + 0x400d0618 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x28 (size before relaxing) + .literal.elf_process_task_data + 0x400d0624 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x44 (size before relaxing) + .literal.elf_write_tasks_data + 0x400d0628 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x1c (size before relaxing) + .literal.elf_write_core_dump_user_data + 0x400d0630 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x28 (size before relaxing) + .literal.elf_add_wdt_panic_details + 0x400d063c 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x4c (size before relaxing) + .literal.elf_write_core_dump_info + 0x400d0650 0x28 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x84 (size before relaxing) + .literal.esp_core_dump_do_write_elf_pass + 0x400d0678 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x50 (size before relaxing) + .literal.esp_core_dump_write_elf + 0x400d068c 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x70 (size before relaxing) + .literal.core_dump_sha256_start + 0x400d06a0 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x8 (size before relaxing) + .literal.core_dump_sha256_update + 0x400d06a0 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x4 (size before relaxing) + .literal.core_dump_sha256_finish + 0x400d06a0 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x8 (size before relaxing) + .literal.core_dump_sha256_print + 0x400d06a0 0x10 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x20 (size before relaxing) + .literal.core_dump_sha_init + 0x400d06b0 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x4 (size before relaxing) + .literal.core_dump_sha_update + 0x400d06b0 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x14 (size before relaxing) + .literal.core_dump_sha_finish + 0x400d06b8 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_core_dump_flash_custom_write + 0x400d06b8 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x14 (size before relaxing) + .literal.esp_core_dump_partition_init + 0x400d06bc 0x18 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x44 (size before relaxing) + .literal.esp_core_dump_flash_print_write_start + 0x400d06d4 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x10 (size before relaxing) + .literal.esp_core_dump_flash_print_write_end + 0x400d06d8 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x10 (size before relaxing) + .literal.esp_core_dump_flash_hw_init + 0x400d06dc 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x30 (size before relaxing) + .literal.esp_core_dump_flash_write_data + 0x400d06e8 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x28 (size before relaxing) + .literal.esp_core_dump_flash_write_prepare + 0x400d06ec 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x40 (size before relaxing) + .literal.esp_core_dump_flash_write_start + 0x400d06f8 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x4 (size before relaxing) + .literal.esp_core_dump_flash_write_end + 0x400d06f8 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x4c (size before relaxing) + .literal.esp_core_dump_partition_and_size_get + 0x400d0700 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x3c (size before relaxing) + .literal.esp_core_dump_image_check + 0x400d070c 0x28 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x7c (size before relaxing) + .literal.esp_core_dump_init + 0x400d0734 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x1c (size before relaxing) + .literal.esp_core_dump_get_fake_stack + 0x400d0738 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .literal.esp_core_dump_get_regs_from_stack + 0x400d0740 0x18 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x28 (size before relaxing) + .literal.esp_core_dump_port_init + 0x400d0758 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0xc (size before relaxing) + .literal.esp_core_dump_reset_fake_stacks + 0x400d0758 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x4 (size before relaxing) + .literal.esp_core_dump_get_isr_stack_top + 0x400d0758 0x4 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .literal.esp_core_dump_get_isr_stack_end + 0x400d075c 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x4 (size before relaxing) + .literal.esp_core_dump_check_stack + 0x400d075c 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .literal.esp_core_dump_mem_seg_is_sane + 0x400d0770 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x34 (size before relaxing) + .literal.esp_core_dump_get_stack + 0x400d0784 0x18 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x1c (size before relaxing) + .literal.esp_core_dump_check_task + 0x400d079c 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0xc (size before relaxing) + .literal.esp_core_dump_get_task_regs_dump + 0x400d079c 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x30 (size before relaxing) + .literal.esp_core_dump_port_set_crashed_tcb + 0x400d07b0 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x4 (size before relaxing) + .literal.esp_core_dump_get_extra_info + 0x400d07b0 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x4 (size before relaxing) + .literal.app_main + 0x400d07b0 0x3c esp-idf/main/libmain.a(hello_world_main.c.obj) + 0x74 (size before relaxing) + .literal._write_r_console + 0x400d07ec 0x4 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + 0xc (size before relaxing) + .literal._read_r_console + 0x400d07f0 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .literal._fstat_r_console + 0x400d07f8 0x8 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + 0xc (size before relaxing) + .literal.esp_system_console_put_char + 0x400d0800 0x4 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .literal.s_get_bus_mask + 0x400d0804 0x30 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x40 (size before relaxing) + .literal.s_reserve_irom_region + 0x400d0834 0x18 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x24 (size before relaxing) + .literal.s_reserve_drom_region + 0x400d084c 0x10 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x24 (size before relaxing) + .literal.esp_mmu_map_init + 0x400d085c 0x1c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x3c (size before relaxing) + .literal.esp_mmu_map + 0x400d0878 0x38 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xcc (size before relaxing) + .literal.esp_mmu_unmap + 0x400d08b0 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x48 (size before relaxing) + .literal.esp_mmu_vaddr_to_paddr + 0x400d08bc 0xc esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x34 (size before relaxing) + .literal.spi_flash_ll_calculate_clock_reg + 0x400d08c8 0x4 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .literal.get_flash_clock_divider + 0x400d08cc 0x10 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_cal_clock + 0x400d08dc 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_init + 0x400d08dc 0x14 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x400d08f0 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x400d08f0 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x4 (size before relaxing) + .literal.is_partition_encrypted + 0x400d08f0 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.load_partitions + 0x400d08f0 0x2c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x64 (size before relaxing) + .literal.ensure_partitions_loaded + 0x400d091c 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x24 (size before relaxing) + .literal.iterator_create + 0x400d0924 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_iterator_release + 0x400d0924 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_next + 0x400d0924 0xc esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x28 (size before relaxing) + .literal.esp_partition_find_err + 0x400d0930 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_find + 0x400d0930 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_get + 0x400d0930 0x8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_partition_find_first_err + 0x400d0938 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_find_first + 0x400d0938 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_mmap + 0x400d0938 0xc esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x18 (size before relaxing) + .literal.esp_partition_munmap + 0x400d0944 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_read + 0x400d0944 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x24 (size before relaxing) + .literal.esp_partition_is_flash_region_writable + 0x400d0948 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x400d0948 0x4 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_init_mem + 0x400d094c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_flash_update_id + 0x400d094c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.bootloader_flash_get_wp_pin + 0x400d094c 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.esp_crosscore_int_init + 0x400d094c 0x1c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .literal.find_entry_and_check_all_reset + 0x400d0968 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .literal.find_entry_from_task_handle_and_check_all_reset + 0x400d096c 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timer_feed + 0x400d096c 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x8 (size before relaxing) + .literal.add_entry + 0x400d096c 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x5c (size before relaxing) + .literal.get_task_affinity + 0x400d0984 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.task_wdt_timeout_abort + 0x400d0984 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x58 (size before relaxing) + .literal.task_wdt_timeout_handling + 0x400d099c 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.esp_task_wdt_add + 0x400d099c 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x20 (size before relaxing) + .literal.subscribe_idle + 0x400d09a4 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x34 (size before relaxing) + .literal.esp_task_wdt_init + 0x400d09bc 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x400d09d0 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.idle_hook_cb + 0x400d09d8 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.esp_task_wdt_print_triggered_tasks + 0x400d09d8 0x1c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x40 (size before relaxing) + .literal.task_wdt_isr + 0x400d09f4 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x64 (size before relaxing) + .literal.esp_task_wdt_impl_timer_allocate + 0x400d0a08 0xc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x44 (size before relaxing) + .literal.esp_task_wdt_impl_timeout_triggered + 0x400d0a14 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xc (size before relaxing) + .literal.esp_task_wdt_impl_timer_restart + 0x400d0a14 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x10 (size before relaxing) + .literal.esp_err_to_name + 0x400d0a14 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_cpu_configure_region_protection + 0x400d0a1c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x10 (size before relaxing) + .literal.esp_gpio_reserve + 0x400d0a20 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha256_software_process + 0x400d0a24 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.esp_internal_sha256_parallel_engine_process + 0x400d0a28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x10 (size before relaxing) + .literal.mbedtls_sha256_init + 0x400d0a28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x4 (size before relaxing) + .literal.mbedtls_sha256_free + 0x400d0a28 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x8 (size before relaxing) + .literal.mbedtls_sha256_starts + 0x400d0a28 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x44 (size before relaxing) + .literal.mbedtls_sha256_update + 0x400d0a68 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.mbedtls_sha256_finish + 0x400d0a68 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x14 (size before relaxing) + .literal.sha_get_engine_state + 0x400d0a6c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x24 (size before relaxing) + .literal.sha_ll_enable_bus_clock + 0x400d0a7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0xc (size before relaxing) + .literal.sha_ll_reset_register + 0x400d0a7c 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x10 (size before relaxing) + .literal.esp_sha_lock_engine_common + 0x400d0a7c 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x38 (size before relaxing) + .literal.esp_sha_lock_memory_block + 0x400d0a8c 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_unlock_memory_block + 0x400d0a90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x8 (size before relaxing) + .literal.esp_sha_try_lock_engine + 0x400d0a90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x4 (size before relaxing) + .literal.esp_sha_unlock_engine + 0x400d0a90 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x24 (size before relaxing) + .literal.esp_sha_read_digest_state + 0x400d0a90 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x28 (size before relaxing) + .literal.esp_sha_block + 0x400d0a98 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x28 (size before relaxing) + .literal.esp_ota_get_running_partition + 0x400d0a9c 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal.sha_ll_busy + 0x400d0ab4 0x10 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x20 (size before relaxing) + .literal.sha_ll_read_digest + 0x400d0ac4 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.sha_hal_hash_block + 0x400d0ac8 0xc esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.sha_hal_wait_idle + 0x400d0ad4 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x4 (size before relaxing) + .literal.sha_hal_read_digest + 0x400d0ad4 0x4 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x10 (size before relaxing) + .literal.esp_dport_access_read_buffer + 0x400d0ad8 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x4 (size before relaxing) + .literal.__libc_init_array + 0x400d0ad8 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .literal.__bufio_buffer_allocate_locked + 0x400d0ae0 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x8 (size before relaxing) + .literal.__bufio_fill_locked + 0x400d0ae0 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x4 (size before relaxing) + .literal.__bufio_flush + 0x400d0ae0 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x4 (size before relaxing) + .literal.__bufio_setdir_locked + 0x400d0ae0 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x4 (size before relaxing) + .literal.__bufio_put + 0x400d0ae0 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0xc (size before relaxing) + .literal.__bufio_get + 0x400d0ae0 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x14 (size before relaxing) + .literal.__bufio_seek + 0x400d0ae4 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x4 (size before relaxing) + .literal.__bufio_close + 0x400d0ae4 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0xc (size before relaxing) + .literal.fflush + 0x400d0ae4 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + 0xc (size before relaxing) + .literal.__flockfile_init + 0x400d0ae4 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + 0x10 (size before relaxing) + .literal.fprintf + 0x400d0ae4 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + 0x4 (size before relaxing) + .literal.printf + 0x400d0ae4 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + 0x8 (size before relaxing) + .literal.puts 0x400d0ae4 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + 0x10 (size before relaxing) + .literal.__ultoa_invert + 0x400d0ae4 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + 0x8 (size before relaxing) + .literal.skip_to_arg + 0x400d0ae4 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .literal.vfprintf + 0x400d0ae8 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + 0x4c (size before relaxing) + .literal.vprintf + 0x400d0b00 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + 0x8 (size before relaxing) + .literal.mulShiftAll64 + 0x400d0b00 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x14 (size before relaxing) + .literal.div10 + 0x400d0b00 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0xc (size before relaxing) + .literal.__dtoa_engine + 0x400d0b04 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x60 (size before relaxing) + .literal.__log10Pow2 + 0x400d0b08 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .literal.__log10Pow5 + 0x400d0b0c 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .literal.__pow5bits + 0x400d0b10 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .literal.__pow5Factor + 0x400d0b14 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + 0xc (size before relaxing) + .literal.__double_computePow5 + 0x400d0b18 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + 0x28 (size before relaxing) + .literal.__double_computeInvPow5 + 0x400d0b28 0x8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + 0x28 (size before relaxing) + .literal.__shiftright128 + 0x400d0b30 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x8 (size before relaxing) + .literal.__dtox_engine + 0x400d0b34 0x4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + 0x8 (size before relaxing) + .literal.esp_cpu_set_watchpoint + 0x400d0b38 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x8 (size before relaxing) + .literal.periph_ll_get_clk_en_mask + 0x400d0b38 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x18 (size before relaxing) + .literal.periph_ll_get_rst_en_mask + 0x400d0b40 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x10 (size before relaxing) + .literal.periph_ll_enable_clk_clear_rst + 0x400d0b40 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x20 (size before relaxing) + .literal.periph_module_enable + 0x400d0b44 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x34 (size before relaxing) + .literal.rtc_init + 0x400d0b58 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0xe8 (size before relaxing) + .literal.sar_periph_ctrl_init + 0x400d0bf8 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .literal.rtcio_ll_force_hold_disable + 0x400d0c00 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x20 (size before relaxing) + .literal.esp_deep_sleep_wakeup_io_reset + 0x400d0c14 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0xc (size before relaxing) + .literal.esp_sleep_sub_mode_config + 0x400d0c1c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x38 (size before relaxing) + .literal.esp_sleep_sub_mode_force_disable + 0x400d0c30 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x20 (size before relaxing) + .literal.esp_sleep_sub_mode_dump_config + 0x400d0c30 0xc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x18 (size before relaxing) + .literal.esp_time_impl_get_time_since_boot + 0x400d0c3c 0x4 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x8 (size before relaxing) + .literal.esp_sync_timekeeping_timers + 0x400d0c40 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x1c (size before relaxing) + .literal.esp_get_minimum_free_heap_size + 0x400d0c40 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x8 (size before relaxing) + .literal.esp_vApplicationIdleHook + 0x400d0c40 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x8 (size before relaxing) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x400d0c44 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x400d0c48 0x4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_deregister_freertos_idle_hook_for_cpu + 0x400d0c4c 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x10 (size before relaxing) + .literal.panic_print_char_uart + 0x400d0c4c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_char + 0x400d0c50 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.panic_print_str + 0x400d0c50 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.print_abort_details + 0x400d0c50 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_hex + 0x400d0c50 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panic_print_dec + 0x400d0c50 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler_disable_timg_wdts + 0x400d0c54 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x20 (size before relaxing) + .literal.disable_all_wdts + 0x400d0c5c 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x14 (size before relaxing) + .literal.esp_panic_handler_enable_rtc_wdt + 0x400d0c60 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x20 (size before relaxing) + .literal.esp_panic_handler_feed_wdts + 0x400d0c60 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x40 (size before relaxing) + .literal.esp_panic_handler_increment_entry_count + 0x400d0c64 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.esp_panic_handler + 0x400d0c68 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xbc (size before relaxing) + .literal.esp_timer_impl_early_init + 0x400d0c94 0x28 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x48 (size before relaxing) + .literal.vPortTaskWrapper + 0x400d0cbc 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.vPortTLSPointersDelCb + 0x400d0cc4 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1c (size before relaxing) + .literal.vPortCleanUpCoprocArea + 0x400d0cc8 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.pxPortInitialiseStack + 0x400d0cc8 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x34 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x400d0cf0 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.vPortTCBPreDeleteHook + 0x400d0cfc 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGenericReset + 0x400d0cfc 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.prvInitialiseNewQueue + 0x400d0d0c 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericCreateStatic + 0x400d0d0c 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x24 (size before relaxing) + .literal.xQueueGenericCreate + 0x400d0d1c 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGetMutexHolder + 0x400d0d20 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueGenericSend + 0x400d0d28 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x68 (size before relaxing) + .literal.prvInitialiseMutex + 0x400d0d38 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x400d0d44 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateMutexStatic + 0x400d0d44 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x400d0d44 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueSemaphoreTake + 0x400d0d4c 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x60 (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x400d0d58 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.uxQueueMessagesWaiting + 0x400d0d5c 0xc esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.vQueueDelete + 0x400d0d68 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.prvDeleteTCB + 0x400d0d70 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x24 (size before relaxing) + .literal.prvCheckTasksWaitingTermination + 0x400d0d80 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x400d0d98 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.prvIdleTask + 0x400d0dac 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.prvInitialiseNewTask + 0x400d0dac 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.prvInitialiseTaskLists + 0x400d0db4 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x400d0dc4 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.pxGetTaskListByIndex + 0x400d0dd0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.vTaskSuspendAll + 0x400d0dd4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x400d0dd8 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.vTaskInternalSetTimeOutState + 0x400d0de4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x400d0de8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x400d0dfc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.vTaskPrioritySet + 0x400d0e00 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.pcTaskGetName + 0x400d0e08 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskDelete + 0x400d0e14 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x60 (size before relaxing) + .literal.vTaskDelay + 0x400d0e1c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskResumeAll + 0x400d0e20 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x50 (size before relaxing) + .literal.xTaskPriorityInherit + 0x400d0e34 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x400d0e34 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskPriorityDisinheritAfterTimeout + 0x400d0e48 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x400d0e58 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.ulTaskGenericNotifyTake + 0x400d0e58 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x34 (size before relaxing) + .literal.xTaskGenericNotify + 0x400d0e64 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x400d0e88 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.xTaskCreateStaticPinnedToCore + 0x400d0e94 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.prvCreateIdleTasks + 0x400d0ea4 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskStartScheduler + 0x400d0eb0 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCoreID + 0x400d0ec0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCore + 0x400d0ec0 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCore + 0x400d0ecc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14 (size before relaxing) + .literal.xTaskGetNext + 0x400d0ed0 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.multi_heap_register_impl + 0x400d0ed0 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x18 (size before relaxing) + .literal.multi_heap_get_info_impl + 0x400d0edc 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x24 (size before relaxing) + .literal.control_construct + 0x400d0ee0 0x2c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x3c (size before relaxing) + .literal.default_walker + 0x400d0f0c 0xc esp-idf/heap/libheap.a(tlsf.c.obj) + 0x10 (size before relaxing) + .literal.tlsf_walk_pool + 0x400d0f18 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x14 (size before relaxing) + .literal.tlsf_fit_size + 0x400d0f28 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x4 (size before relaxing) + .literal.tlsf_add_pool + 0x400d0f28 0x1c esp-idf/heap/libheap.a(tlsf.c.obj) + 0x44 (size before relaxing) + .literal.tlsf_create + 0x400d0f44 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.tlsf_create_with_pool + 0x400d0f48 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0xc (size before relaxing) + .literal.log_level_get + 0x400d0f48 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x1c (size before relaxing) + .literal.esp_flash_read_chip_id + 0x400d0f48 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_app_disable_protect + 0x400d0f48 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .literal.esp_flash_app_enable_os_functions + 0x400d0f48 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x10 (size before relaxing) + .literal.xt_int_has_handler + 0x400d0f54 0x8 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .literal.xt_set_interrupt_handler + 0x400d0f5c 0x4 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .text.esp_timer_early_init + 0x400d0f60 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x13 (size before relaxing) + 0x400d0f60 esp_timer_early_init + *fill* 0x400d0f6f 0x1 + .text.__esp_system_init_fn_esp_timer_init_nonos + 0x400d0f70 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0xd (size before relaxing) + *fill* 0x400d0f7a 0x2 + .text.esp_timer_impl_init_system_time + 0x400d0f7c 0x56 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x5e (size before relaxing) + 0x400d0f7c esp_timer_impl_init_system_time + *fill* 0x400d0fd2 0x2 + .text.esp_app_format_init_elf_sha256 + 0x400d0fd4 0x5c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .text.esp_app_get_elf_sha256 + 0x400d1030 0x44 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x400d1030 esp_app_get_elf_sha256 + .text.__esp_system_init_fn_init_show_app_info + 0x400d1074 0x9d esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0xb5 (size before relaxing) + *fill* 0x400d1111 0x3 + .text.__esp_system_init_fn_init_efuse_check + 0x400d1114 0x12 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x15 (size before relaxing) + *fill* 0x400d1126 0x2 + .text.__esp_system_init_fn_init_efuse_show_app_info + 0x400d1128 0x8c esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x9c (size before relaxing) + .text.__esp_system_init_fn_init_efuse + 0x400d11b4 0x28 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x30 (size before relaxing) + .text.esp_efuse_check_errors + 0x400d11dc 0xa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0xd (size before relaxing) + 0x400d11dc esp_efuse_check_errors + *fill* 0x400d11e6 0x2 + .text.esp_register_shutdown_handler + 0x400d11e8 0x32 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x400d11e8 esp_register_shutdown_handler + *fill* 0x400d121a 0x2 + .text.esp_restart + 0x400d121c 0x20 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x26 (size before relaxing) + 0x400d121c esp_restart + *fill* 0x400d123c 0x0 + .text.do_system_init_fn + 0x400d123c 0x61 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x65 (size before relaxing) + *fill* 0x400d129d 0x3 + .text.do_core_init + 0x400d12a0 0xa esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0xe (size before relaxing) + *fill* 0x400d12aa 0x2 + .text.do_secondary_init + 0x400d12ac 0x5e esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x62 (size before relaxing) + *fill* 0x400d130a 0x2 + .text.start_cpu0_default + 0x400d130c 0x1d esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x29 (size before relaxing) + 0x400d130c start_cpu0 + *fill* 0x400d1329 0x3 + .text.__esp_system_init_fn_init_show_cpu_freq + 0x400d132c 0x42 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x4a (size before relaxing) + *fill* 0x400d136e 0x2 + .text.__esp_system_init_fn_init_brownout + 0x400d1370 0x10 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x13 (size before relaxing) + *fill* 0x400d1380 0x0 + .text.__esp_system_init_fn_init_newlib_time + 0x400d1380 0xa esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0xd (size before relaxing) + *fill* 0x400d138a 0x2 + .text.__esp_system_init_fn_init_flash + 0x400d138c 0x2f esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x37 (size before relaxing) + *fill* 0x400d13bb 0x1 + .text.__esp_system_init_fn_init_disable_rtc_wdt + 0x400d13bc 0x20 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x28 (size before relaxing) + .text.restore_app_mmu_from_pro_mmu + 0x400d13dc 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .text.core_intr_matrix_clear + 0x400d1404 0x23 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + *fill* 0x400d1427 0x1 + .text.sys_rtc_init + 0x400d1428 0x8 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0xb (size before relaxing) + *fill* 0x400d1430 0x0 + .text.start_other_core + 0x400d1430 0xe9 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x115 (size before relaxing) + *fill* 0x400d1519 0x3 + .text.system_early_init + 0x400d151c 0x16a esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x1a6 (size before relaxing) + *fill* 0x400d1686 0x2 + .text.startup_resume_other_cores + 0x400d1688 0x10 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x400d1688 startup_resume_other_cores + .text.mspi_init + 0x400d1698 0x11 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x1d (size before relaxing) + *fill* 0x400d16a9 0x3 + .text.esp_ipc_isr_init + 0x400d16ac 0x1f esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x400d16ac esp_ipc_isr_init + *fill* 0x400d16cb 0x1 + .text.esp_ipc_isr_port_init + 0x400d16cc 0x22 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x26 (size before relaxing) + 0x400d16cc esp_ipc_isr_port_init + *fill* 0x400d16ee 0x2 + .text.select_rtc_slow_clk + 0x400d16f0 0xc2 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0xde (size before relaxing) + *fill* 0x400d17b2 0x2 + .text.esp_rtc_init + 0x400d17b4 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x2b (size before relaxing) + 0x400d17b4 esp_rtc_init + *fill* 0x400d17dc 0x0 + .text.esp_clk_init + 0x400d17dc 0xf1 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x129 (size before relaxing) + 0x400d17dc esp_clk_init + *fill* 0x400d18cd 0x3 + .text.esp_perip_clk_init + 0x400d18d0 0xea esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x112 (size before relaxing) + 0x400d18d0 esp_perip_clk_init + *fill* 0x400d19ba 0x2 + .text.esp_cache_err_int_init + 0x400d19bc 0x54 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x5c (size before relaxing) + 0x400d19bc esp_cache_err_int_init + .text.esp_cache_err_get_cpuid + 0x400d1a10 0x29 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x2d (size before relaxing) + 0x400d1a10 esp_cache_err_get_cpuid + *fill* 0x400d1a39 0x3 + .text.esp_int_wdt_init + 0x400d1a3c 0x96 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0xb2 (size before relaxing) + 0x400d1a3c esp_int_wdt_init + *fill* 0x400d1ad2 0x2 + .text.esp_int_wdt_cpu_init + 0x400d1ad4 0x2c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x34 (size before relaxing) + 0x400d1ad4 esp_int_wdt_cpu_init + .text.frame_to_panic_info + 0x400d1b00 0x49 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x51 (size before relaxing) + *fill* 0x400d1b49 0x3 + .text.panic_handler + 0x400d1b4c 0xdc esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x108 (size before relaxing) + .text.print_state_for_core + 0x400d1c28 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x2a (size before relaxing) + *fill* 0x400d1c4e 0x2 + .text.print_state + 0x400d1c50 0x44 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x50 (size before relaxing) + .text.panic_restart + 0x400d1c94 0xf esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x18 (size before relaxing) + 0x400d1c94 panic_restart + *fill* 0x400d1ca3 0x1 + .text.print_debug_exception_details + 0x400d1ca4 0x50 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x68 (size before relaxing) + .text.print_illegal_instruction_details + 0x400d1cf4 0x4e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x66 (size before relaxing) + *fill* 0x400d1d42 0x2 + .text.print_cache_err_details + 0x400d1d44 0x51 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x64 (size before relaxing) + *fill* 0x400d1d95 0x3 + .text.panic_print_registers + 0x400d1d98 0xd7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x113 (size before relaxing) + 0x400d1d98 panic_print_registers + *fill* 0x400d1e6f 0x1 + .text.panic_arch_fill_info + 0x400d1e70 0x32 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d1e70 panic_arch_fill_info + *fill* 0x400d1ea2 0x2 + .text.panic_soc_fill_info + 0x400d1ea4 0x62 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d1ea4 panic_soc_fill_info + *fill* 0x400d1f06 0x2 + .text.panic_print_backtrace + 0x400d1f08 0x20 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d1f08 panic_print_backtrace + .text.esp_ipc_init + 0x400d1f28 0x85 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x91 (size before relaxing) + *fill* 0x400d1fad 0x3 + .text.esp_ipc_call_nonblocking + 0x400d1fb0 0x9e esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xae (size before relaxing) + 0x400d1fb0 esp_ipc_call_nonblocking + *fill* 0x400d204e 0x2 + .text.esp_log_is_tag_loggable + 0x400d2050 0x19 esp-idf/log/liblog.a(log_level.c.obj) + 0x1d (size before relaxing) + 0x400d2050 esp_log_is_tag_loggable + *fill* 0x400d2069 0x3 + .text.esp_log_linked_list_get_level + 0x400d206c 0x2b esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x400d206c esp_log_linked_list_get_level + *fill* 0x400d2097 0x1 + .text.fix_cache_generation_overflow + 0x400d2098 0x2c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .text.heap_swap + 0x400d20c4 0x22 esp-idf/log/liblog.a(log_binary_heap.c.obj) + *fill* 0x400d20e6 0x2 + .text.heap_bubble_down + 0x400d20e8 0x3b esp-idf/log/liblog.a(log_binary_heap.c.obj) + *fill* 0x400d2123 0x1 + .text.esp_log_cache_get_level + 0x400d2124 0xb8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0xbc (size before relaxing) + 0x400d2124 esp_log_cache_get_level + .text.esp_log_cache_add + 0x400d21dc 0x7b esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x7f (size before relaxing) + 0x400d21dc esp_log_cache_add + *fill* 0x400d2257 0x1 + .text.heap_caps_get_minimum_free_size + 0x400d2258 0x2b esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x2f (size before relaxing) + 0x400d2258 heap_caps_get_minimum_free_size + *fill* 0x400d2283 0x1 + .text.heap_caps_get_info + 0x400d2284 0x6d esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x71 (size before relaxing) + 0x400d2284 heap_caps_get_info + *fill* 0x400d22f1 0x3 + .text.heap_caps_get_largest_free_block + 0x400d22f4 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d22f4 heap_caps_get_largest_free_block + *fill* 0x400d2305 0x3 + .text.sorted_add_to_registered_heaps + 0x400d2308 0x4f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x400d2357 0x1 + .text.register_heap + 0x400d2358 0x2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x32 (size before relaxing) + *fill* 0x400d2384 0x0 + .text.heap_caps_enable_nonos_stack_heaps + 0x400d2384 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2c (size before relaxing) + 0x400d2384 heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x400d23ac 0x28f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2af (size before relaxing) + 0x400d23ac heap_caps_init + *fill* 0x400d263b 0x1 + .text.__esp_system_init_fn_init_heap + 0x400d263c 0xa esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xd (size before relaxing) + *fill* 0x400d2646 0x2 + .text.s_get_num_reserved_regions + 0x400d2648 0x11 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x400d2659 0x3 + .text.s_prepare_reserved_regions + 0x400d265c 0xb0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xb8 (size before relaxing) + .text.soc_get_available_memory_region_max_count + 0x400d270c 0x12 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x400d270c soc_get_available_memory_region_max_count + *fill* 0x400d271e 0x2 + .text.soc_get_available_memory_regions + 0x400d2720 0x112 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x116 (size before relaxing) + 0x400d2720 soc_get_available_memory_regions + *fill* 0x400d2832 0x2 + .text.insert_vector_desc + 0x400d2834 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x400d2884 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .text.get_desc_for_int + 0x400d28a8 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x5e (size before relaxing) + *fill* 0x400d28fa 0x2 + .text.find_desc_for_source + 0x400d28fc 0x6b esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + *fill* 0x400d2967 0x1 + .text.is_vect_desc_usable + 0x400d2968 0xe5 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0xe9 (size before relaxing) + *fill* 0x400d2a4d 0x3 + .text.get_available_int + 0x400d2a50 0x14d esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x15d (size before relaxing) + *fill* 0x400d2b9d 0x3 + .text.esp_intr_ptr_in_isr_region + 0x400d2ba0 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x400d2ba0 esp_intr_ptr_in_isr_region + .text.esp_intr_alloc_intrstatus_bind + 0x400d2bd8 0x309 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x33d (size before relaxing) + 0x400d2bd8 esp_intr_alloc_intrstatus_bind + *fill* 0x400d2ee1 0x3 + .text.esp_intr_alloc_intrstatus + 0x400d2ee4 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x400d2ee4 esp_intr_alloc_intrstatus + *fill* 0x400d2f05 0x3 + .text.esp_intr_alloc + 0x400d2f08 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x400d2f08 esp_intr_alloc + .text.s_rtc_isr_noniram_hook + 0x400d2f20 0xf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x400d2f2f 0x1 + .text.s_rtc_isr_noniram_hook_relieve + 0x400d2f30 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + *fill* 0x400d2f42 0x2 + .text.rtc_isr_ensure_installed + 0x400d2f44 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x63 (size before relaxing) + *fill* 0x400d2f9c 0x0 + .text.rtc_isr_register + 0x400d2f9c 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x6a (size before relaxing) + 0x400d2f9c rtc_isr_register + *fill* 0x400d2ff2 0x2 + .text.esp_brownout_init + 0x400d2ff4 0x47 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x4b (size before relaxing) + 0x400d2ff4 esp_brownout_init + *fill* 0x400d303b 0x1 + .text.esp_chip_info + 0x400d303c 0x9a esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x9e (size before relaxing) + 0x400d303c esp_chip_info + *fill* 0x400d30d6 0x2 + .text.esp_cpu_intr_get_desc + 0x400d30d8 0x3d esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x40 (size before relaxing) + 0x400d30d8 esp_cpu_intr_get_desc + *fill* 0x400d3115 0x3 + .text.other_cpu_startup_idle_hook_cb + 0x400d3118 0x12 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + *fill* 0x400d312a 0x2 + .text.main_task + 0x400d312c 0xae esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0xd6 (size before relaxing) + *fill* 0x400d31da 0x2 + .text.esp_startup_start_app + 0x400d31dc 0x45 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x58 (size before relaxing) + 0x400d31dc esp_startup_start_app + *fill* 0x400d3221 0x3 + .text.esp_startup_start_app_other_cores + 0x400d3224 0x26 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x36 (size before relaxing) + 0x400d3224 esp_startup_start_app_other_cores + *fill* 0x400d324a 0x2 + .text._xt_tick_divisor_init + 0x400d324c 0x1c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x1f (size before relaxing) + 0x400d324c _xt_tick_divisor_init + *fill* 0x400d3268 0x0 + .text.pvPortMalloc + 0x400d3268 0x12 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x400d3268 pvPortMalloc + *fill* 0x400d327a 0x2 + .text.vPortFree + 0x400d327c 0xa esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0xe (size before relaxing) + 0x400d327c vPortFree + *fill* 0x400d3286 0x2 + .text.xPortCheckValidListMem + 0x400d3288 0x49 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x400d3288 xPortCheckValidListMem + *fill* 0x400d32d1 0x3 + .text.xPortCheckValidTCBMem + 0x400d32d4 0x49 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x400d32d4 xPortCheckValidTCBMem + *fill* 0x400d331d 0x3 + .text.xPortcheckValidStackMem + 0x400d3320 0x48 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x400d3320 xPortcheckValidStackMem + .text.vApplicationGetIdleTaskMemory + 0x400d3368 0x40 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x4b (size before relaxing) + 0x400d3368 vApplicationGetIdleTaskMemory + *fill* 0x400d33a8 0x0 + .text.__esp_system_init_fn_init_libc + 0x400d33a8 0xa esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0xd (size before relaxing) + *fill* 0x400d33b2 0x2 + .text.__esp_system_init_fn_init_libc_stdio + 0x400d33b4 0xa esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0xd (size before relaxing) + *fill* 0x400d33be 0x2 + .text.esp_libc_locks_init + 0x400d33c0 0x5c esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x6e (size before relaxing) + 0x400d33c0 esp_newlib_locks_init + 0x400d33c0 esp_libc_locks_init + *fill* 0x400d341c 0x0 + .text.adjust_boot_time + 0x400d341c 0x12a esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x12e (size before relaxing) + *fill* 0x400d3546 0x2 + .text.get_adjusted_boot_time + 0x400d3548 0x1a esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x22 (size before relaxing) + *fill* 0x400d3562 0x2 + .text.adjtime_corr_stop + 0x400d3564 0x29 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x34 (size before relaxing) + *fill* 0x400d358d 0x3 + .text._gettimeofday_r + 0x400d3590 0x42 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x4a (size before relaxing) + 0x400d3590 _gettimeofday_r + *fill* 0x400d35d2 0x2 + .text.settimeofday + 0x400d35d4 0x3e esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x49 (size before relaxing) + 0x400d35d4 settimeofday + *fill* 0x400d3612 0x2 + .text.esp_libc_time_init + 0x400d3614 0x8 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0xb (size before relaxing) + 0x400d3614 esp_newlib_time_init + 0x400d3614 esp_libc_time_init + *fill* 0x400d361c 0x0 + .text.close 0x400d361c 0x11 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d361c close + *fill* 0x400d362d 0x3 + .text.read 0x400d3630 0x15 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d3630 read + *fill* 0x400d3645 0x3 + .text.write 0x400d3648 0x15 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d3648 write + *fill* 0x400d365d 0x3 + .text.lseek 0x400d3660 0x15 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d3660 lseek + *fill* 0x400d3675 0x3 + .text.gettimeofday + 0x400d3678 0x10 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x14 (size before relaxing) + 0x400d3678 gettimeofday + .text.fstat 0x400d3688 0x10 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x14 (size before relaxing) + 0x400d3688 fstat + .text.syscall_not_implemented + 0x400d3698 0x13 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + 0x400d3698 _rename_r + 0x400d3698 _lseek_r + 0x400d3698 _stat_r + 0x400d3698 _kill_r + 0x400d3698 _getpid_r + 0x400d3698 _system_r + 0x400d3698 _unlink_r + 0x400d3698 _fcntl_r + 0x400d3698 _open_r + 0x400d3698 _close_r + 0x400d3698 _link_r + 0x400d3698 _isatty_r + *fill* 0x400d36ab 0x1 + .text.esp_libc_init + 0x400d36ac 0x2e esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x32 (size before relaxing) + 0x400d36ac esp_libc_init + 0x400d36ac esp_setup_newlib_syscalls + 0x400d36ac esp_newlib_init + *fill* 0x400d36da 0x2 + .text.uart_hal_write_txfifo + 0x400d36dc 0x82 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x85 (size before relaxing) + 0x400d36dc uart_hal_write_txfifo + *fill* 0x400d375e 0x2 + .text.brownout_hal_config + 0x400d3760 0xb0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x400d3760 brownout_hal_config + .text.spi_flash_init_lock + 0x400d3810 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x26 (size before relaxing) + 0x400d3810 spi_flash_init_lock + *fill* 0x400d3832 0x2 + .text.spi_flash_op_lock + 0x400d3834 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x400d3834 spi_flash_op_lock + *fill* 0x400d3846 0x2 + .text.spi_flash_op_unlock + 0x400d3848 0xd esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + 0x400d3848 spi_flash_op_unlock + *fill* 0x400d3855 0x3 + .text.esp_mspi_get_io + 0x400d3858 0x54 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x58 (size before relaxing) + 0x400d3858 esp_mspi_get_io + .text.esp_mspi_pin_reserve + 0x400d38ac 0x43 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x47 (size before relaxing) + 0x400d38ac esp_mspi_pin_reserve + *fill* 0x400d38ef 0x1 + .text.esp_flash_init_default_chip + 0x400d38f0 0xf2 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x10a (size before relaxing) + 0x400d38f0 esp_flash_init_default_chip + *fill* 0x400d39e2 0x2 + .text.esp_flash_app_init + 0x400d39e4 0x17 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x1f (size before relaxing) + 0x400d39e4 esp_flash_app_init + *fill* 0x400d39fb 0x1 + .text.spi_flash_chip_list_check + 0x400d39fc 0xa6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x400d39fc spi_flash_chip_list_check + *fill* 0x400d3aa2 0x2 + .text.spi_flash_mmap + 0x400d3aa4 0x90 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x97 (size before relaxing) + 0x400d3aa4 spi_flash_mmap + *fill* 0x400d3b34 0x0 + .text.spi_flash_munmap + 0x400d3b34 0x3e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x4a (size before relaxing) + 0x400d3b34 spi_flash_munmap + *fill* 0x400d3b72 0x2 + .text.spi_flash_cache2phys + 0x400d3b74 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x29 (size before relaxing) + 0x400d3b74 spi_flash_cache2phys + *fill* 0x400d3b99 0x3 + .text.__esp_system_init_fn_init_coredump + 0x400d3b9c 0xa esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + 0xd (size before relaxing) + *fill* 0x400d3ba6 0x2 + .text.esp_core_dump_switch_task_stack_to_isr + 0x400d3ba8 0x29 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + *fill* 0x400d3bd1 0x3 + .text.esp_core_dump_write_elf_and_check + 0x400d3bd4 0x22 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x26 (size before relaxing) + 0x400d3bd4 esp_core_dump_write_elf_and_check + *fill* 0x400d3bf6 0x2 + .text.esp_core_dump_reset_tasks_snapshots_iter + 0x400d3bf8 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0xb (size before relaxing) + 0x400d3bf8 esp_core_dump_reset_tasks_snapshots_iter + *fill* 0x400d3c00 0x0 + .text.esp_core_dump_get_user_ram_info + 0x400d3c00 0x31 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x400d3c00 esp_core_dump_get_user_ram_info + *fill* 0x400d3c31 0x3 + .text.esp_core_dump_tcb_addr_is_sane + 0x400d3c34 0x12 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x400d3c34 esp_core_dump_tcb_addr_is_sane + *fill* 0x400d3c46 0x2 + .text.esp_core_dump_in_isr_context + 0x400d3c48 0x21 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x400d3c48 esp_core_dump_in_isr_context + *fill* 0x400d3c69 0x3 + .text.esp_core_dump_enable_stack_overflow_detection + 0x400d3c6c 0x32 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x3e (size before relaxing) + *fill* 0x400d3c9e 0x2 + .text.esp_core_dump_port_write + 0x400d3ca0 0xb esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x11 (size before relaxing) + 0x400d3ca0 esp_core_dump_port_write + *fill* 0x400d3cab 0x1 + .text.esp_core_dump_get_task_snapshot + 0x400d3cac 0x70 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x88 (size before relaxing) + 0x400d3cac esp_core_dump_get_task_snapshot + .text.esp_core_dump_write + 0x400d3d1c 0x24 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x34 (size before relaxing) + 0x400d3d1c esp_core_dump_write + .text.elf_write_segment_header + 0x400d3d40 0x60 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x64 (size before relaxing) + .text.elf_process_note_segment + 0x400d3da0 0x7b esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x83 (size before relaxing) + *fill* 0x400d3e1b 0x1 + .text.elf_add_segment + 0x400d3e1c 0xd0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0xe0 (size before relaxing) + .text.elf_save_interrupted_stack + 0x400d3eec 0x38 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x40 (size before relaxing) + .text.elf_add_tcb + 0x400d3f24 0x39 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + *fill* 0x400d3f5d 0x3 + .text.elf_process_task_tcb + 0x400d3f60 0x4a esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x4e (size before relaxing) + *fill* 0x400d3faa 0x2 + .text.esp_core_dump_store_section + 0x400d3fac 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x18 (size before relaxing) + .text.elf_write_file_header + 0x400d3fc0 0xb0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0xb8 (size before relaxing) + .text.elf_write_core_dump_note_cb + 0x400d4070 0x2c esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x30 (size before relaxing) + .text.elf_write_note_header + 0x400d409c 0x8a esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x92 (size before relaxing) + *fill* 0x400d4126 0x2 + .text.elf_write_note + 0x400d4128 0xd8 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0xe4 (size before relaxing) + .text.elf_add_note + 0x400d4200 0x56 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x5a (size before relaxing) + *fill* 0x400d4256 0x2 + .text.elf_add_regs + 0x400d4258 0x3c esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x40 (size before relaxing) + .text.elf_process_tasks_regs + 0x400d4294 0x156 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x17a (size before relaxing) + *fill* 0x400d43ea 0x2 + .text.elf_process_task_stack + 0x400d43ec 0x5e esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x66 (size before relaxing) + *fill* 0x400d444a 0x2 + .text.elf_save_task + 0x400d444c 0x68 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x74 (size before relaxing) + .text.elf_process_task_data + 0x400d44b4 0xed esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x108 (size before relaxing) + *fill* 0x400d45a1 0x3 + .text.elf_write_tasks_data + 0x400d45a4 0x3e esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x46 (size before relaxing) + *fill* 0x400d45e2 0x2 + .text.elf_write_core_dump_user_data + 0x400d45e4 0x7b esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x83 (size before relaxing) + *fill* 0x400d465f 0x1 + .text.elf_add_wdt_panic_details + 0x400d4660 0xf3 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x103 (size before relaxing) + *fill* 0x400d4753 0x1 + .text.elf_write_core_dump_info + 0x400d4754 0x138 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x160 (size before relaxing) + .text.esp_core_dump_do_write_elf_pass + 0x400d488c 0xe0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0xfc (size before relaxing) + .text.esp_core_dump_write_elf + 0x400d496c 0x136 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x162 (size before relaxing) + 0x400d496c esp_core_dump_write_elf + *fill* 0x400d4aa2 0x2 + .text.core_dump_sha256_start + 0x400d4aa4 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x18 (size before relaxing) + .text.core_dump_sha256_update + 0x400d4ab8 0x16 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + *fill* 0x400d4ace 0x2 + .text.core_dump_sha256_finish + 0x400d4ad0 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x18 (size before relaxing) + .text.core_dump_sha256_print + 0x400d4ae4 0x3e esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x400d4ae4 esp_core_dump_print_checksum + *fill* 0x400d4b22 0x2 + .text.core_dump_sha_init + 0x400d4b24 0x14 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x400d4b24 esp_core_dump_checksum_init + .text.core_dump_sha_update + 0x400d4b38 0x2f esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x32 (size before relaxing) + 0x400d4b38 esp_core_dump_checksum_update + *fill* 0x400d4b67 0x1 + .text.core_dump_sha_finish + 0x400d4b68 0x1a esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x1e (size before relaxing) + 0x400d4b68 esp_core_dump_checksum_finish + *fill* 0x400d4b82 0x2 + .text.esp_core_dump_flash_custom_write + 0x400d4b84 0x3a esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x3e (size before relaxing) + *fill* 0x400d4bbe 0x2 + .text.esp_core_dump_partition_init + 0x400d4bc0 0x8c esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0xa0 (size before relaxing) + .text.esp_core_dump_flash_print_write_start + 0x400d4c4c 0x16 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x1a (size before relaxing) + 0x400d4c4c esp_core_dump_print_write_start + *fill* 0x400d4c62 0x2 + .text.esp_core_dump_flash_print_write_end + 0x400d4c64 0x16 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x1a (size before relaxing) + 0x400d4c64 esp_core_dump_print_write_end + *fill* 0x400d4c7a 0x2 + .text.esp_core_dump_flash_hw_init + 0x400d4c7c 0x76 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x7a (size before relaxing) + 0x400d4c7c esp_core_dump_write_init + *fill* 0x400d4cf2 0x2 + .text.esp_core_dump_flash_write_data + 0x400d4cf4 0xac esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0xb8 (size before relaxing) + 0x400d4cf4 esp_core_dump_write_data + .text.esp_core_dump_flash_write_prepare + 0x400d4da0 0xaa esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0xb6 (size before relaxing) + 0x400d4da0 esp_core_dump_write_prepare + *fill* 0x400d4e4a 0x2 + .text.esp_core_dump_flash_write_start + 0x400d4e4c 0xd esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x10 (size before relaxing) + 0x400d4e4c esp_core_dump_write_start + *fill* 0x400d4e59 0x3 + .text.esp_core_dump_flash_write_end + 0x400d4e5c 0xfe esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x10e (size before relaxing) + 0x400d4e5c esp_core_dump_write_end + *fill* 0x400d4f5a 0x2 + .text.esp_core_dump_partition_and_size_get + 0x400d4f5c 0xc8 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0xd8 (size before relaxing) + 0x400d4f5c esp_core_dump_partition_and_size_get + .text.esp_core_dump_image_check + 0x400d5024 0x139 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x160 (size before relaxing) + 0x400d5024 esp_core_dump_image_check + *fill* 0x400d515d 0x3 + .text.esp_core_dump_init + 0x400d5160 0x33 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x3f (size before relaxing) + 0x400d5160 esp_core_dump_init + *fill* 0x400d5193 0x1 + .text.esp_core_dump_get_fake_stack + 0x400d5194 0x1e esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + *fill* 0x400d51b2 0x2 + .text.esp_core_dump_get_regs_from_stack + 0x400d51b4 0x1fd esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x205 (size before relaxing) + *fill* 0x400d53b1 0x3 + .text.esp_core_dump_port_init + 0x400d53b4 0x34 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x400d53b4 esp_core_dump_port_init + .text.esp_core_dump_reset_fake_stacks + 0x400d53e8 0xc esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x400d53e8 esp_core_dump_reset_fake_stacks + .text.esp_core_dump_get_isr_stack_top + 0x400d53f4 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x400d53f4 esp_core_dump_get_isr_stack_top + .text.esp_core_dump_get_isr_stack_end + 0x400d53fc 0x20 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x400d53fc esp_core_dump_get_isr_stack_end + .text.esp_core_dump_check_stack + 0x400d541c 0x4d esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x400d541c esp_core_dump_check_stack + *fill* 0x400d5469 0x3 + .text.esp_core_dump_mem_seg_is_sane + 0x400d546c 0x99 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x9d (size before relaxing) + 0x400d546c esp_core_dump_mem_seg_is_sane + *fill* 0x400d5505 0x3 + .text.esp_core_dump_get_stack + 0x400d5508 0x45 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x49 (size before relaxing) + 0x400d5508 esp_core_dump_get_stack + *fill* 0x400d554d 0x3 + .text.esp_core_dump_check_task + 0x400d5550 0x30 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x38 (size before relaxing) + 0x400d5550 esp_core_dump_check_task + .text.esp_core_dump_get_task_regs_dump + 0x400d5580 0x66 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x6e (size before relaxing) + 0x400d5580 esp_core_dump_get_task_regs_dump + *fill* 0x400d55e6 0x2 + .text.esp_core_dump_port_set_crashed_tcb + 0x400d55e8 0xa esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x400d55e8 esp_core_dump_port_set_crashed_tcb + *fill* 0x400d55f2 0x2 + .text.esp_core_dump_get_extra_info + 0x400d55f4 0x11 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x400d55f4 esp_core_dump_get_extra_info + *fill* 0x400d5605 0x3 + .text.app_main + 0x400d5608 0xaa esp-idf/main/libmain.a(hello_world_main.c.obj) + 0xd2 (size before relaxing) + 0x400d5608 app_main + *fill* 0x400d56b2 0x2 + .text._write_r_console + 0x400d56b4 0x40 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + 0x44 (size before relaxing) + 0x400d56b4 _write_r_console + 0x400d56b4 _write_r + .text._read_r_console + 0x400d56f4 0x4e esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + 0x400d56f4 _read_r + 0x400d56f4 _read_r_console + *fill* 0x400d5742 0x2 + .text._fstat_r_console + 0x400d5744 0x30 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + 0x400d5744 _fstat_r + .text.esp_system_console_put_char + 0x400d5774 0xe esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + 0x400d5774 esp_system_console_put_char + *fill* 0x400d5782 0x2 + .text.s_get_bus_mask + 0x400d5784 0xd5 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xd9 (size before relaxing) + *fill* 0x400d5859 0x3 + .text.s_reserve_irom_region + 0x400d585c 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x80 (size before relaxing) + .text.s_reserve_drom_region + 0x400d58d8 0x7c esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x80 (size before relaxing) + .text.esp_mmu_map_init + 0x400d5954 0x190 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x19c (size before relaxing) + 0x400d5954 esp_mmu_map_init + .text.esp_mmu_map + 0x400d5ae4 0x3ca esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x419 (size before relaxing) + 0x400d5ae4 esp_mmu_map + *fill* 0x400d5eae 0x2 + .text.esp_mmu_unmap + 0x400d5eb0 0x126 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x141 (size before relaxing) + 0x400d5eb0 esp_mmu_unmap + *fill* 0x400d5fd6 0x2 + .text.esp_mmu_vaddr_to_paddr + 0x400d5fd8 0xb6 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0xca (size before relaxing) + 0x400d5fd8 esp_mmu_vaddr_to_paddr + *fill* 0x400d608e 0x2 + .text.spi_flash_ll_calculate_clock_reg + 0x400d6090 0x2d esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + *fill* 0x400d60bd 0x3 + .text.get_flash_clock_divider + 0x400d60c0 0x64 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x78 (size before relaxing) + .text.spi_flash_cal_clock + 0x400d6124 0x19 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x1d (size before relaxing) + *fill* 0x400d613d 0x3 + .text.spi_flash_hal_init + 0x400d6140 0xfa esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0xfe (size before relaxing) + 0x400d6140 spi_flash_hal_init + *fill* 0x400d623a 0x2 + .text.spi_flash_hal_supports_direct_write + 0x400d623c 0x12 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x400d623c spi_flash_hal_supports_direct_write + *fill* 0x400d624e 0x2 + .text.spi_flash_hal_supports_direct_read + 0x400d6250 0x12 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x400d6250 spi_flash_hal_supports_direct_read + *fill* 0x400d6262 0x2 + .text.is_partition_encrypted + 0x400d6264 0x53 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x57 (size before relaxing) + *fill* 0x400d62b7 0x1 + .text.load_partitions + 0x400d62b8 0x15e esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x17a (size before relaxing) + *fill* 0x400d6416 0x2 + .text.ensure_partitions_loaded + 0x400d6418 0x4c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x58 (size before relaxing) + .text.iterator_create + 0x400d6464 0x24 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .text.esp_partition_iterator_release + 0x400d6488 0xa esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0xe (size before relaxing) + 0x400d6488 esp_partition_iterator_release + *fill* 0x400d6492 0x2 + .text.esp_partition_next + 0x400d6494 0x84 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x8c (size before relaxing) + 0x400d6494 esp_partition_next + .text.esp_partition_find_err + 0x400d6518 0x5b esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x63 (size before relaxing) + 0x400d6518 esp_partition_find_err + *fill* 0x400d6573 0x1 + .text.esp_partition_find + 0x400d6574 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x400d6574 esp_partition_find + .text.esp_partition_get + 0x400d6590 0x19 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x1c (size before relaxing) + 0x400d6590 esp_partition_get + *fill* 0x400d65a9 0x3 + .text.esp_partition_find_first_err + 0x400d65ac 0x43 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x4b (size before relaxing) + 0x400d65ac esp_partition_find_first_err + *fill* 0x400d65ef 0x1 + .text.esp_partition_find_first + 0x400d65f0 0x1c esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x400d65f0 esp_partition_find_first + .text.esp_partition_mmap + 0x400d660c 0x67 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x400d660c esp_partition_mmap + *fill* 0x400d6673 0x1 + .text.esp_partition_munmap + 0x400d6674 0xa esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0xe (size before relaxing) + 0x400d6674 esp_partition_munmap + *fill* 0x400d667e 0x2 + .text.esp_partition_read + 0x400d6680 0x86 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x8a (size before relaxing) + 0x400d6680 esp_partition_read + *fill* 0x400d6706 0x2 + .text.esp_partition_is_flash_region_writable + 0x400d6708 0x55 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x400d6708 esp_partition_is_flash_region_writable + *fill* 0x400d675d 0x3 + .text.esp_partition_main_flash_region_safe + 0x400d6760 0x39 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x3d (size before relaxing) + 0x400d6760 esp_partition_main_flash_region_safe + *fill* 0x400d6799 0x3 + .text.bootloader_init_mem + 0x400d679c 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0xb (size before relaxing) + 0x400d679c bootloader_init_mem + *fill* 0x400d67a4 0x0 + .text.bootloader_flash_update_id + 0x400d67a4 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x10 (size before relaxing) + 0x400d67a4 bootloader_flash_update_id + *fill* 0x400d67b1 0x3 + .text.bootloader_flash_get_wp_pin + 0x400d67b4 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x49 (size before relaxing) + 0x400d67b4 bootloader_flash_get_wp_pin + *fill* 0x400d67f9 0x3 + .text.esp_crosscore_int_init + 0x400d67fc 0x66 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x76 (size before relaxing) + 0x400d67fc esp_crosscore_int_init + *fill* 0x400d6862 0x2 + .text.find_entry_and_check_all_reset + 0x400d6864 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400d689a 0x2 + .text.find_entry_from_task_handle_and_check_all_reset + 0x400d689c 0x37 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400d68d3 0x1 + .text.task_wdt_timer_feed + 0x400d68d4 0x24 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .text.add_entry + 0x400d68f8 0x101 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x11d (size before relaxing) + *fill* 0x400d69f9 0x3 + .text.get_task_affinity + 0x400d69fc 0x25 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + *fill* 0x400d6a21 0x3 + .text.task_wdt_timeout_abort + 0x400d6a24 0xac esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xbf (size before relaxing) + 0x400d6a24 task_wdt_timeout_abort + *fill* 0x400d6ad0 0x0 + .text.task_wdt_timeout_handling + 0x400d6ad0 0xb3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xc2 (size before relaxing) + *fill* 0x400d6b83 0x1 + .text.esp_task_wdt_add + 0x400d6b84 0x44 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x50 (size before relaxing) + 0x400d6b84 esp_task_wdt_add + .text.subscribe_idle + 0x400d6bc8 0x5b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x6b (size before relaxing) + *fill* 0x400d6c23 0x1 + .text.esp_task_wdt_init + 0x400d6c24 0xe0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xfc (size before relaxing) + 0x400d6c24 esp_task_wdt_init + .text.esp_task_wdt_reset + 0x400d6d04 0x8b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xa2 (size before relaxing) + 0x400d6d04 esp_task_wdt_reset + *fill* 0x400d6d8f 0x1 + .text.idle_hook_cb + 0x400d6d90 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x400d6d9a 0x2 + .text.esp_task_wdt_print_triggered_tasks + 0x400d6d9c 0xd2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x400d6d9c esp_task_wdt_print_triggered_tasks + *fill* 0x400d6e6e 0x2 + .text.task_wdt_isr + 0x400d6e70 0xb9 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0xd8 (size before relaxing) + *fill* 0x400d6f29 0x3 + .text.esp_task_wdt_impl_timer_allocate + 0x400d6f2c 0xdc esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0xec (size before relaxing) + 0x400d6f2c esp_task_wdt_impl_timer_allocate + .text.esp_task_wdt_impl_timeout_triggered + 0x400d7008 0x17 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x1f (size before relaxing) + 0x400d7008 esp_task_wdt_impl_timeout_triggered + *fill* 0x400d701f 0x1 + .text.esp_task_wdt_impl_timer_restart + 0x400d7020 0x25 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x31 (size before relaxing) + 0x400d7020 esp_task_wdt_impl_timer_restart + *fill* 0x400d7045 0x3 + .text.esp_err_to_name + 0x400d7048 0x2a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x400d7048 esp_err_to_name + *fill* 0x400d7072 0x2 + .text.esp_cpu_configure_region_protection + 0x400d7074 0x2f esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x33 (size before relaxing) + 0x400d7074 esp_cpu_configure_region_protection + *fill* 0x400d70a3 0x1 + .text.esp_gpio_reserve + 0x400d70a4 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x400d70a4 esp_gpio_reserve + .text.mbedtls_sha256_software_process + 0x400d70bc 0x9b8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.esp_internal_sha256_parallel_engine_process + 0x400d7a74 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x5d (size before relaxing) + *fill* 0x400d7ac6 0x2 + .text.mbedtls_sha256_init + 0x400d7ac8 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x400d7ac8 mbedtls_sha256_init + *fill* 0x400d7ada 0x2 + .text.mbedtls_sha256_free + 0x400d7adc 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x22 (size before relaxing) + 0x400d7adc mbedtls_sha256_free + *fill* 0x400d7af7 0x1 + .text.mbedtls_sha256_starts + 0x400d7af8 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x400d7af8 mbedtls_sha256_starts + *fill* 0x400d7b72 0x2 + .text.mbedtls_sha256_update + 0x400d7b74 0xa8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x400d7b74 mbedtls_sha256_update + .text.mbedtls_sha256_finish + 0x400d7c1c 0x159 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x165 (size before relaxing) + 0x400d7c1c mbedtls_sha256_finish + *fill* 0x400d7d75 0x3 + .text.sha_get_engine_state + 0x400d7d78 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x78 (size before relaxing) + .text.sha_ll_enable_bus_clock + 0x400d7de0 0x34 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.sha_ll_reset_register + 0x400d7e14 0x36 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x3e (size before relaxing) + *fill* 0x400d7e4a 0x2 + .text.esp_sha_lock_engine_common + 0x400d7e4c 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x88 (size before relaxing) + .text.esp_sha_lock_memory_block + 0x400d7ebc 0xd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x10 (size before relaxing) + 0x400d7ebc esp_sha_lock_memory_block + *fill* 0x400d7ec9 0x3 + .text.esp_sha_unlock_memory_block + 0x400d7ecc 0xb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0xe (size before relaxing) + 0x400d7ecc esp_sha_unlock_memory_block + *fill* 0x400d7ed7 0x1 + .text.esp_sha_try_lock_engine + 0x400d7ed8 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x400d7ed8 esp_sha_try_lock_engine + *fill* 0x400d7ee9 0x3 + .text.esp_sha_unlock_engine + 0x400d7eec 0x4e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x62 (size before relaxing) + 0x400d7eec esp_sha_unlock_engine + *fill* 0x400d7f3a 0x2 + .text.esp_sha_read_digest_state + 0x400d7f3c 0x30 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x44 (size before relaxing) + 0x400d7f3c esp_sha_read_digest_state + .text.esp_sha_block + 0x400d7f6c 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x68 (size before relaxing) + 0x400d7f6c esp_sha_block + .text.esp_ota_get_running_partition + 0x400d7fc4 0x7d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x91 (size before relaxing) + 0x400d7fc4 esp_ota_get_running_partition + *fill* 0x400d8041 0x3 + .text.sha_ll_busy + 0x400d8044 0x3c esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x48 (size before relaxing) + .text.sha_ll_read_digest + 0x400d8080 0x5b esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x5f (size before relaxing) + *fill* 0x400d80db 0x1 + .text.sha_hal_hash_block + 0x400d80dc 0x4a esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x400d80dc sha_hal_hash_block + *fill* 0x400d8126 0x2 + .text.sha_hal_wait_idle + 0x400d8128 0xb esp-idf/hal/libhal.a(sha_hal.c.obj) + 0xe (size before relaxing) + 0x400d8128 sha_hal_wait_idle + *fill* 0x400d8133 0x1 + .text.sha_hal_read_digest + 0x400d8134 0x60 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x64 (size before relaxing) + 0x400d8134 sha_hal_read_digest + .text.esp_dport_access_read_buffer + 0x400d8194 0x2f esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x400d8194 esp_dport_access_read_buffer + *fill* 0x400d81c3 0x1 + .text.__libc_init_array + 0x400d81c4 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + 0x400d81c4 __libc_init_array + .text.__bufio_buffer_allocate_locked + 0x400d81dc 0x44 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d81dc __bufio_buffer_allocate_locked + .text.__bufio_fill_locked + 0x400d8220 0x40 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d8220 __bufio_fill_locked + .text.__bufio_flush + 0x400d8260 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d8260 __bufio_flush + .text.__bufio_setdir_locked + 0x400d8270 0x1f /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d8270 __bufio_setdir_locked + *fill* 0x400d828f 0x1 + .text.__bufio_put + 0x400d8290 0x5e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d8290 __bufio_put + *fill* 0x400d82ee 0x2 + .text.__bufio_get + 0x400d82f0 0x6c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d82f0 __bufio_get + .text.__bufio_seek + 0x400d835c 0x58 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d835c __bufio_seek + .text.__bufio_close + 0x400d83b4 0x3c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d83b4 __bufio_close + .text.fflush 0x400d83f0 0x3c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + 0x400d83f0 fflush + .text.__flockfile_init + 0x400d842c 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + 0x400d842c __flockfile_init + .text.fprintf 0x400d8450 0x29 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + 0x400d8450 fprintf + *fill* 0x400d8479 0x3 + .text.printf 0x400d847c 0x2e /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + 0x400d847c printf + *fill* 0x400d84aa 0x2 + .text.puts 0x400d84ac 0x6c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + 0x400d84ac puts + .text.__ultoa_invert + 0x400d8518 0x61 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + *fill* 0x400d8579 0x3 + .text.skip_to_arg + 0x400d857c 0x166 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + *fill* 0x400d86e2 0x2 + .text.vfprintf + 0x400d86e4 0xb09 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + 0x400d86e4 __d_vfprintf + 0x400d86e4 vfprintf + *fill* 0x400d91ed 0x3 + .text.vprintf 0x400d91f0 0x1a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + 0x400d91f0 vprintf + *fill* 0x400d920a 0x2 + .text.mulShiftAll64 + 0x400d920c 0x1ab /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + *fill* 0x400d93b7 0x1 + .text.div10 0x400d93b8 0x24 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .text.__dtoa_engine + 0x400d93dc 0x510 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x400d93dc __dtoa_engine + .text.__log10Pow2 + 0x400d98ec 0xe /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + 0x400d98ec __log10Pow2 + *fill* 0x400d98fa 0x2 + .text.__log10Pow5 + 0x400d98fc 0xe /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + 0x400d98fc __log10Pow5 + *fill* 0x400d990a 0x2 + .text.__pow5bits + 0x400d990c 0x10 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + 0x400d990c __pow5bits + .text.__pow5Factor + 0x400d991c 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + 0x400d991c __pow5Factor + .text.__double_computePow5 + 0x400d994c 0xef /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + 0x400d994c __double_computePow5 + *fill* 0x400d9a3b 0x1 + .text.__double_computeInvPow5 + 0x400d9a3c 0xfa /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + 0x400d9a3c __double_computeInvPow5 + *fill* 0x400d9b36 0x2 + .text.__shiftright128 + 0x400d9b38 0x2c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x400d9b38 __shiftright128 + .text.__dtox_engine + 0x400d9b64 0x137 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + 0x400d9b64 __dtox_engine + *fill* 0x400d9c9b 0x0 + *fill* 0x400d9c9b 0x1 + .text.esp_timer_init_include_func + 0x400d9c9c 0x5 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x400d9c9c esp_timer_init_include_func + *fill* 0x400d9ca1 0x0 + *fill* 0x400d9ca1 0x0 + *fill* 0x400d9ca1 0x3 + .text.init_efuse_secure + 0x400d9ca4 0x7 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + *fill* 0x400d9cab 0x0 + *fill* 0x400d9cab 0x1 + .text.esp_efuse_startup_include_func + 0x400d9cac 0x5 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x400d9cac esp_efuse_startup_include_func + *fill* 0x400d9cb1 0x0 + *fill* 0x400d9cb1 0x3 + .text.esp_efuse_utility_check_errors + 0x400d9cb4 0x7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x400d9cb4 esp_efuse_utility_check_errors + *fill* 0x400d9cbb 0x1 + .text.__esp_system_init_fn_esp_security_init + 0x400d9cbc 0x7 esp-idf/esp_security/libesp_security.a(init.c.obj) + *fill* 0x400d9cc3 0x1 + .text.esp_security_init_include_impl + 0x400d9cc4 0x5 esp-idf/esp_security/libesp_security.a(init.c.obj) + 0x400d9cc4 esp_security_init_include_impl + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x0 + *fill* 0x400d9cc9 0x3 + .text.esp_system_include_startup_funcs + 0x400d9ccc 0x5 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x400d9ccc esp_system_include_startup_funcs + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x0 + *fill* 0x400d9cd1 0x3 + .text.esp_cache_err_get_panic_info + 0x400d9cd4 0x5 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x400d9cd4 esp_cache_err_get_panic_info + *fill* 0x400d9cd9 0x0 + *fill* 0x400d9cd9 0x0 + *fill* 0x400d9cd9 0x0 + *fill* 0x400d9cd9 0x0 + *fill* 0x400d9cd9 0x0 + *fill* 0x400d9cd9 0x0 + *fill* 0x400d9cd9 0x0 + *fill* 0x400d9cd9 0x3 + .text.panic_soc_check_pseudo_cause + 0x400d9cdc 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d9cdc panic_soc_check_pseudo_cause + *fill* 0x400d9ce3 0x0 + *fill* 0x400d9ce3 0x1 + .text.panic_get_address + 0x400d9ce4 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d9ce4 panic_get_address + *fill* 0x400d9ceb 0x1 + .text.panic_get_cause + 0x400d9cec 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d9cec panic_get_cause + .text.panic_set_address + 0x400d9cf4 0x7 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d9cf4 panic_set_address + *fill* 0x400d9cfb 0x1 + .text.panic_clear_active_interrupts + 0x400d9cfc 0x5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x400d9cfc panic_clear_active_interrupts + *fill* 0x400d9d01 0x0 + *fill* 0x400d9d01 0x0 + *fill* 0x400d9d01 0x0 + *fill* 0x400d9d01 0x0 + *fill* 0x400d9d01 0x0 + *fill* 0x400d9d01 0x0 + *fill* 0x400d9d01 0x0 + *fill* 0x400d9d01 0x3 + .text.heap_caps_match + 0x400d9d04 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x400d9d04 heap_caps_match + *fill* 0x400d9d32 0x0 + *fill* 0x400d9d32 0x0 + *fill* 0x400d9d32 0x0 + *fill* 0x400d9d32 0x0 + *fill* 0x400d9d32 0x0 + *fill* 0x400d9d32 0x0 + *fill* 0x400d9d32 0x0 + *fill* 0x400d9d32 0x0 + *fill* 0x400d9d32 0x2 + .text.s_compare_reserved_regions + 0x400d9d34 0xc esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + *fill* 0x400d9d40 0x0 + *fill* 0x400d9d40 0x0 + *fill* 0x400d9d40 0x0 + *fill* 0x400d9d40 0x0 + *fill* 0x400d9d40 0x0 + *fill* 0x400d9d40 0x0 + .text.esp_intr_get_cpu + 0x400d9d40 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x400d9d40 esp_intr_get_cpu + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x0 + *fill* 0x400d9d5a 0x2 + .text.esp_libc_init_funcs + 0x400d9d5c 0x5 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x400d9d5c esp_libc_init_funcs + *fill* 0x400d9d61 0x0 + *fill* 0x400d9d61 0x3 + .text.esp_libc_include_pthread_impl + 0x400d9d64 0x5 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + 0x400d9d64 esp_libc_include_pthread_impl + *fill* 0x400d9d69 0x3 + .text.esp_libc_include_getentropy_impl + 0x400d9d6c 0x5 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + 0x400d9d6c esp_libc_include_getentropy_impl + *fill* 0x400d9d71 0x0 + *fill* 0x400d9d71 0x0 + *fill* 0x400d9d71 0x0 + *fill* 0x400d9d71 0x0 + *fill* 0x400d9d71 0x0 + *fill* 0x400d9d71 0x0 + *fill* 0x400d9d71 0x0 + *fill* 0x400d9d71 0x0 + *fill* 0x400d9d71 0x0 + *fill* 0x400d9d71 0x3 + .text.esp_libc_include_syscalls_impl + 0x400d9d74 0x5 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x400d9d74 esp_libc_include_syscalls_impl + *fill* 0x400d9d79 0x0 + *fill* 0x400d9d79 0x3 + .text.esp_libc_include_reent_syscalls_impl + 0x400d9d7c 0x5 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + 0x400d9d7c esp_libc_include_reent_syscalls_impl + *fill* 0x400d9d81 0x0 + *fill* 0x400d9d81 0x3 + .text.esp_libc_init_global_stdio + 0x400d9d84 0x5 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x400d9d84 esp_libc_init_global_stdio + *fill* 0x400d9d89 0x3 + .text.esp_libc_include_init_funcs + 0x400d9d8c 0x5 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x400d9d8c esp_libc_include_init_funcs + *fill* 0x400d9d91 0x3 + .text.pthread_include_pthread_impl + 0x400d9d94 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x400d9d94 pthread_include_pthread_impl + *fill* 0x400d9d99 0x3 + .text.pthread_include_pthread_cond_var_impl + 0x400d9d9c 0x5 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x400d9d9c pthread_include_pthread_cond_var_impl + *fill* 0x400d9da1 0x3 + .text.pthread_include_pthread_local_storage_impl + 0x400d9da4 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x400d9da4 pthread_include_pthread_local_storage_impl + *fill* 0x400d9da9 0x3 + .text.pthread_include_pthread_rwlock_impl + 0x400d9dac 0x5 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x400d9dac pthread_include_pthread_rwlock_impl + *fill* 0x400d9db1 0x3 + .text.pthread_include_pthread_semaphore_impl + 0x400d9db4 0x5 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x400d9db4 pthread_include_pthread_semaphore_impl + *fill* 0x400d9db9 0x3 + .text.__cxa_guard_dummy + 0x400d9dbc 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x400d9dbc __cxa_guard_dummy + *fill* 0x400d9dc1 0x3 + .text.__cxx_init_dummy + 0x400d9dc4 0x5 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + 0x400d9dc4 __cxx_init_dummy + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x0 + *fill* 0x400d9dc9 0x3 + .text.esp_system_include_coredump_init + 0x400d9dcc 0x5 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + 0x400d9dcc esp_system_include_coredump_init + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x0 + *fill* 0x400d9dd1 0x3 + .text.core_dump_sha_size + 0x400d9dd4 0x7 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x400d9dd4 esp_core_dump_checksum_size + *fill* 0x400d9ddb 0x1 + .text.core_dump_sha_version + 0x400d9ddc 0x8 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x400d9ddc esp_core_dump_elf_version + *fill* 0x400d9de4 0x0 + *fill* 0x400d9de4 0x0 + *fill* 0x400d9de4 0x0 + *fill* 0x400d9de4 0x0 + *fill* 0x400d9de4 0x0 + *fill* 0x400d9de4 0x0 + *fill* 0x400d9de4 0x0 + *fill* 0x400d9de4 0x0 + *fill* 0x400d9de4 0x0 + *fill* 0x400d9de4 0x0 + .text.esp_core_dump_get_epc_regs + 0x400d9de4 0x46 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + *fill* 0x400d9e2a 0x2 + .text.esp_core_dump_get_eps_regs + 0x400d9e2c 0x3c esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + *fill* 0x400d9e68 0x0 + .text.esp_core_dump_get_arch_id + 0x400d9e68 0x7 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x400d9e68 esp_core_dump_get_arch_id + *fill* 0x400d9e6f 0x0 + *fill* 0x400d9e6f 0x0 + *fill* 0x400d9e6f 0x0 + *fill* 0x400d9e6f 0x0 + *fill* 0x400d9e6f 0x0 + *fill* 0x400d9e6f 0x0 + *fill* 0x400d9e6f 0x0 + *fill* 0x400d9e6f 0x0 + *fill* 0x400d9e6f 0x0 + *fill* 0x400d9e6f 0x1 + .text.s_mem_caps_check + 0x400d9e70 0x25 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x400d9e95 0x3 + .text.s_find_available_region + 0x400d9e98 0x2a esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x400d9ec2 0x2 + .text.s_is_enclosed + 0x400d9ec4 0x1d esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x400d9ee1 0x3 + .text.s_is_overlapped + 0x400d9ee4 0x36 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x0 + *fill* 0x400d9f1a 0x2 + .text.mpu_hal_set_region_access + 0x400d9f1c 0x4c esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x400d9f1c mpu_hal_set_region_access + .text.mbedtls_zeroize + 0x400d9f68 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x0 + *fill* 0x400d9f81 0x3 + .text.__bufio_flush_locked + 0x400d9f84 0x6b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d9f84 __bufio_flush_locked + *fill* 0x400d9fef 0x0 + *fill* 0x400d9fef 0x0 + *fill* 0x400d9fef 0x1 + .text.__bufio_setvbuf + 0x400d9ff0 0x38 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x400d9ff0 __bufio_setvbuf + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + *fill* 0x400da028 0x0 + .text.__umul128 + 0x400da028 0x43 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x400da028 __umul128 + *fill* 0x400da06b 0x0 + *libesp_hal_gpio.a:gpio_hal.*(.literal.gpio_hal_intr_disable .literal.gpio_hal_intr_enable_on_core .literal.gpio_hal_iomux_in .literal.gpio_hal_iomux_out .literal.gpio_hal_matrix_in .literal.gpio_hal_matrix_out .text .text.gpio_hal_intr_disable .text.gpio_hal_intr_enable_on_core .text.gpio_hal_iomux_in .text.gpio_hal_iomux_out .text.gpio_hal_matrix_in .text.gpio_hal_matrix_out) + *libesp_hw_support.a:adc_share_hw_ctrl.*(.literal.adc2_wifi_acquire .literal.adc2_wifi_release .literal.adc_lock_acquire .literal.adc_lock_release .literal.adc_lock_try_acquire .text .text.adc2_wifi_acquire .text.adc2_wifi_release .text.adc_lock_acquire .text.adc_lock_release .text.adc_lock_try_acquire) + *libesp_hw_support.a:cpu.*(.literal.esp_cpu_set_watchpoint .text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint) + *fill* 0x400da06b 0x1 + .text.esp_cpu_set_watchpoint + 0x400da06c 0x91 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x400da06c esp_cpu_set_watchpoint + *fill* 0x400da0fd 0x3 + .text.esp_cpu_set_breakpoint + 0x400da100 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x400da100 esp_cpu_set_breakpoint + *fill* 0x400da124 0x0 + .text.esp_cpu_clear_watchpoint + 0x400da124 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x400da124 esp_cpu_clear_watchpoint + *libesp_hw_support.a:esp_clk.*(.literal.esp_clk_rtc_time .text .text.esp_clk_rtc_time) + *libesp_hw_support.a:esp_clk_tree.*(.literal.esp_clk_tree_src_get_freq_hz .text .text.esp_clk_tree_initialize .text.esp_clk_tree_src_get_freq_hz) + *fill* 0x400da141 0x3 + .text.esp_clk_tree_initialize + 0x400da144 0x5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x400da144 esp_clk_tree_initialize + *libesp_hw_support.a:periph_ctrl.*(.literal.periph_ll_disable_clk_set_rst .literal.periph_ll_enable_clk_clear_rst .literal.periph_ll_get_clk_en_mask .literal.periph_ll_get_rst_en_mask .literal.periph_ll_reset .literal.periph_module_disable .literal.periph_module_enable .text .text.periph_ll_disable_clk_set_rst .text.periph_ll_enable_clk_clear_rst .text.periph_ll_get_clk_en_mask .text.periph_ll_get_rst_en_mask .text.periph_ll_reset .text.periph_module_disable .text.periph_module_enable) + *fill* 0x400da149 0x3 + .text.periph_ll_get_clk_en_mask + 0x400da14c 0xaa esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x400da1f6 0x2 + .text.periph_ll_get_rst_en_mask + 0x400da1f8 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + *fill* 0x400da27e 0x2 + .text.periph_ll_enable_clk_clear_rst + 0x400da280 0x51 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x5d (size before relaxing) + *fill* 0x400da2d1 0x3 + .text.periph_module_enable + 0x400da2d4 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x87 (size before relaxing) + 0x400da2d4 periph_module_enable + *fill* 0x400da344 0x0 + *fill* 0x400da344 0x0 + *fill* 0x400da344 0x0 + *fill* 0x400da344 0x0 + *libesp_hw_support.a:regi2c_ctrl.*(.text) + *libesp_hw_support.a:rtc_init.*(.literal.rtc_init .text .text.rtc_init) + *fill* 0x400da344 0x0 + .text.rtc_init + 0x400da344 0x3ab esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x3cf (size before relaxing) + 0x400da344 rtc_init + *fill* 0x400da6ef 0x0 + *libesp_hw_support.a:rtc_sleep.*(.literal.rtc_deep_sleep_start .text .text.rtc_deep_sleep_start) + *libesp_hw_support.a:sar_periph_ctrl.*(.literal.s_sar_power_acquire .literal.s_sar_power_release .literal.sar_periph_ctrl_adc_continuous_power_acquire .literal.sar_periph_ctrl_adc_continuous_power_release .literal.sar_periph_ctrl_adc_oneshot_power_acquire .literal.sar_periph_ctrl_adc_oneshot_power_release .literal.sar_periph_ctrl_init .literal.sar_periph_ctrl_pwdet_power_acquire .literal.sar_periph_ctrl_pwdet_power_release .text .text.adc_reset_lock_acquire .text.adc_reset_lock_release .text.s_sar_power_acquire .text.s_sar_power_release .text.sar_periph_ctrl_adc_continuous_power_acquire .text.sar_periph_ctrl_adc_continuous_power_release .text.sar_periph_ctrl_adc_oneshot_power_acquire .text.sar_periph_ctrl_adc_oneshot_power_release .text.sar_periph_ctrl_adc_reset .text.sar_periph_ctrl_init .text.sar_periph_ctrl_pwdet_power_acquire .text.sar_periph_ctrl_pwdet_power_release) + *fill* 0x400da6ef 0x1 + .text.sar_periph_ctrl_init + 0x400da6f0 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x400da6f0 sar_periph_ctrl_init + *fill* 0x400da708 0x0 + *libesp_hw_support.a:sleep_gpio.*(.literal.esp_deep_sleep_wakeup_io_reset .literal.esp_sleep_config_gpio_isolate .literal.esp_sleep_enable_gpio_switch .literal.rtcio_ll_force_hold_disable .text .text.esp_deep_sleep_wakeup_io_reset .text.esp_sleep_config_gpio_isolate .text.esp_sleep_enable_gpio_switch .text.rtcio_ll_force_hold_disable) + .text.rtcio_ll_force_hold_disable + 0x400da708 0x63 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + *fill* 0x400da76b 0x1 + .text.esp_deep_sleep_wakeup_io_reset + 0x400da76c 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x68 (size before relaxing) + 0x400da76c esp_deep_sleep_wakeup_io_reset + *fill* 0x400da7d0 0x0 + *libesp_hw_support.a:sleep_modem.*(.literal.esp_pm_register_inform_out_light_sleep_overhead_callback .literal.esp_pm_register_light_sleep_default_params_config_callback .literal.esp_pm_unregister_inform_out_light_sleep_overhead_callback .literal.esp_pm_unregister_light_sleep_default_params_config_callback .text .text.esp_pm_register_inform_out_light_sleep_overhead_callback .text.esp_pm_register_light_sleep_default_params_config_callback .text.esp_pm_unregister_inform_out_light_sleep_overhead_callback .text.esp_pm_unregister_light_sleep_default_params_config_callback .text.sleep_modem_configure) + *libesp_hw_support.a:sleep_modes.*(.literal.esp_deep_sleep .literal.esp_deep_sleep_deregister_hook .literal.esp_deep_sleep_register_hook .literal.esp_deep_sleep_try .literal.esp_get_deep_sleep_wake_stub .literal.esp_sleep_acquire_lp_use_xtal .literal.esp_sleep_disable_ext1_wakeup_io .literal.esp_sleep_disable_wakeup_source .literal.esp_sleep_enable_adc_tsens_monitor .literal.esp_sleep_enable_ext0_wakeup .literal.esp_sleep_enable_ext1_wakeup .literal.esp_sleep_enable_ext1_wakeup_io .literal.esp_sleep_enable_gpio_wakeup .literal.esp_sleep_enable_lowpower_analog_mode .literal.esp_sleep_enable_touchpad_wakeup .literal.esp_sleep_enable_uart_wakeup .literal.esp_sleep_get_ext1_wakeup_status .literal.esp_sleep_get_touchpad_wakeup_status .literal.esp_sleep_get_wakeup_cause .literal.esp_sleep_get_wakeup_causes .literal.esp_sleep_is_valid_wakeup_gpio .literal.esp_sleep_overhead_out_time_refresh .literal.esp_sleep_pd_config .literal.esp_sleep_periph_use_8m .literal.esp_sleep_release_lp_use_xtal .literal.esp_sleep_sub_mode_config .literal.esp_sleep_sub_mode_dump_config .literal.esp_sleep_sub_mode_force_disable .literal.ext0_wakeup_prepare .literal.ext1_wakeup_prepare .literal.rtc_sleep_enable_ultra_low .literal.rtcio_ll_ext0_set_wakeup_pin .literal.rtcio_ll_force_hold_enable .literal.rtcio_ll_function_select .literal.rtcio_ll_input_enable .literal.rtcio_ll_iomux_func_sel .literal.s_sleep_hook_deregister .literal.s_sleep_hook_register .literal.touch_wakeup_prepare .text .text.esp_deep_sleep .text.esp_deep_sleep_deregister_hook .text.esp_deep_sleep_register_hook .text.esp_deep_sleep_try .text.esp_get_deep_sleep_wake_stub .text.esp_sleep_acquire_lp_use_xtal .text.esp_sleep_disable_bt_wakeup .text.esp_sleep_disable_ext1_wakeup_io .text.esp_sleep_disable_wakeup_source .text.esp_sleep_disable_wifi_beacon_wakeup .text.esp_sleep_disable_wifi_wakeup .text.esp_sleep_enable_adc_tsens_monitor .text.esp_sleep_enable_bt_wakeup .text.esp_sleep_enable_ext0_wakeup .text.esp_sleep_enable_ext1_wakeup .text.esp_sleep_enable_ext1_wakeup_io .text.esp_sleep_enable_gpio_wakeup .text.esp_sleep_enable_lowpower_analog_mode .text.esp_sleep_enable_touchpad_wakeup .text.esp_sleep_enable_uart_wakeup .text.esp_sleep_enable_ulp_wakeup .text.esp_sleep_enable_wifi_beacon_wakeup .text.esp_sleep_enable_wifi_wakeup .text.esp_sleep_get_ext1_wakeup_status .text.esp_sleep_get_touchpad_wakeup_status .text.esp_sleep_get_wakeup_cause .text.esp_sleep_get_wakeup_causes .text.esp_sleep_is_valid_wakeup_gpio .text.esp_sleep_overhead_out_time_refresh .text.esp_sleep_pd_config .text.esp_sleep_periph_use_8m .text.esp_sleep_release_lp_use_xtal .text.esp_sleep_sub_mode_config .text.esp_sleep_sub_mode_dump_config .text.esp_sleep_sub_mode_force_disable .text.ext0_wakeup_prepare .text.ext1_wakeup_prepare .text.rtc_sleep_enable_ultra_low .text.rtcio_ll_ext0_set_wakeup_pin .text.rtcio_ll_force_hold_enable .text.rtcio_ll_function_select .text.rtcio_ll_input_enable .text.rtcio_ll_iomux_func_sel .text.s_sleep_hook_deregister .text.s_sleep_hook_register .text.touch_wakeup_prepare) + .text.esp_sleep_sub_mode_config + 0x400da7d0 0xa2 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0xb2 (size before relaxing) + 0x400da7d0 esp_sleep_sub_mode_config + *fill* 0x400da872 0x2 + .text.esp_sleep_sub_mode_force_disable + 0x400da874 0x55 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x61 (size before relaxing) + 0x400da874 esp_sleep_sub_mode_force_disable + *fill* 0x400da8c9 0x3 + .text.esp_sleep_sub_mode_dump_config + 0x400da8cc 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x44 (size before relaxing) + 0x400da8cc esp_sleep_sub_mode_dump_config + *fill* 0x400da90c 0x0 + *fill* 0x400da90c 0x0 + *libesp_libc.a:esp_time_impl.*(.literal.esp_sync_timekeeping_timers .literal.esp_time_impl_get_time .literal.esp_time_impl_get_time_since_boot .text .text.esp_sync_timekeeping_timers .text.esp_time_impl_get_time .text.esp_time_impl_get_time_since_boot) + .text.esp_time_impl_get_time_since_boot + 0x400da90c 0x1b esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x400da90c esp_time_impl_get_time_since_boot + *fill* 0x400da927 0x1 + .text.esp_sync_timekeeping_timers + 0x400da928 0x4d esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x5c (size before relaxing) + 0x400da928 esp_sync_timekeeping_timers + *fill* 0x400da975 0x0 + *libesp_pm.a:pm_impl.*(.literal.esp_pm_get_configuration .literal.esp_pm_impl_get_mode .literal.esp_pm_impl_idle_hook .literal.esp_pm_impl_init .literal.esp_pm_impl_waiti .text .text.esp_pm_configure .text.esp_pm_get_configuration .text.esp_pm_impl_get_mode .text.esp_pm_impl_idle_hook .text.esp_pm_impl_init .text.esp_pm_impl_waiti) + *libesp_system.a:esp_system_chip.*(.literal.esp_get_free_heap_size .literal.esp_get_free_internal_heap_size .literal.esp_get_idf_version .literal.esp_get_minimum_free_heap_size .text .text.esp_get_free_heap_size .text.esp_get_free_internal_heap_size .text.esp_get_idf_version .text.esp_get_minimum_free_heap_size) + *fill* 0x400da975 0x3 + .text.esp_get_minimum_free_heap_size + 0x400da978 0xd esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x10 (size before relaxing) + 0x400da978 esp_get_minimum_free_heap_size + *libesp_system.a:freertos_hooks.*(.literal.esp_deregister_freertos_idle_hook .literal.esp_deregister_freertos_idle_hook_for_cpu .literal.esp_deregister_freertos_tick_hook .literal.esp_deregister_freertos_tick_hook_for_cpu .literal.esp_register_freertos_idle_hook .literal.esp_register_freertos_idle_hook_for_cpu .literal.esp_register_freertos_tick_hook .literal.esp_register_freertos_tick_hook_for_cpu .literal.esp_vApplicationIdleHook .text .text.esp_deregister_freertos_idle_hook .text.esp_deregister_freertos_idle_hook_for_cpu .text.esp_deregister_freertos_tick_hook .text.esp_deregister_freertos_tick_hook_for_cpu .text.esp_register_freertos_idle_hook .text.esp_register_freertos_idle_hook_for_cpu .text.esp_register_freertos_tick_hook .text.esp_register_freertos_tick_hook_for_cpu .text.esp_vApplicationIdleHook) + *fill* 0x400da985 0x3 + .text.esp_vApplicationIdleHook + 0x400da988 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x33 (size before relaxing) + 0x400da988 esp_vApplicationIdleHook + *fill* 0x400da9b8 0x0 + .text.esp_register_freertos_idle_hook_for_cpu + 0x400da9b8 0x51 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x59 (size before relaxing) + 0x400da9b8 esp_register_freertos_idle_hook_for_cpu + *fill* 0x400daa09 0x3 + .text.esp_register_freertos_tick_hook_for_cpu + 0x400daa0c 0x4d esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x55 (size before relaxing) + 0x400daa0c esp_register_freertos_tick_hook_for_cpu + *fill* 0x400daa59 0x3 + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x400daa5c 0x3c esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x40 (size before relaxing) + 0x400daa5c esp_deregister_freertos_idle_hook_for_cpu + *fill* 0x400daa98 0x0 + *fill* 0x400daa98 0x0 + *fill* 0x400daa98 0x0 + *libesp_system.a:panic.*(.literal.disable_all_wdts .literal.esp_panic_handler .literal.esp_panic_handler_disable_timg_wdts .literal.esp_panic_handler_enable_rtc_wdt .literal.esp_panic_handler_feed_wdts .literal.esp_panic_handler_increment_entry_count .literal.panic_print_char .literal.panic_print_char_uart .literal.panic_print_dec .literal.panic_print_hex .literal.panic_print_str .literal.print_abort_details .text .text.disable_all_wdts .text.esp_panic_handler .text.esp_panic_handler_disable_timg_wdts .text.esp_panic_handler_enable_rtc_wdt .text.esp_panic_handler_feed_wdts .text.esp_panic_handler_increment_entry_count .text.esp_reset_reason_get_hint .text.esp_reset_reason_set_hint .text.panic_print_char .text.panic_print_char_uart .text.panic_print_dec .text.panic_print_hex .text.panic_print_str .text.print_abort_details) + .text.panic_print_char_uart + 0x400daa98 0x38 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .text.panic_print_char + 0x400daad0 0xb esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0xe (size before relaxing) + 0x400daad0 panic_print_char + *fill* 0x400daadb 0x1 + .text.panic_print_str + 0x400daadc 0x1e esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x400daadc panic_print_str + *fill* 0x400daafa 0x2 + .text.print_abort_details + 0x400daafc 0xd esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x10 (size before relaxing) + *fill* 0x400dab09 0x3 + .text.panic_print_hex + 0x400dab0c 0x2c esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x2f (size before relaxing) + 0x400dab0c panic_print_hex + *fill* 0x400dab38 0x0 + .text.panic_print_dec + 0x400dab38 0x40 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x46 (size before relaxing) + 0x400dab38 panic_print_dec + *fill* 0x400dab78 0x0 + .text.esp_panic_handler_disable_timg_wdts + 0x400dab78 0x3e esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x4e (size before relaxing) + 0x400dab78 esp_panic_handler_disable_timg_wdts + *fill* 0x400dabb6 0x2 + .text.disable_all_wdts + 0x400dabb8 0x1a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x26 (size before relaxing) + *fill* 0x400dabd2 0x2 + .text.esp_panic_handler_enable_rtc_wdt + 0x400dabd4 0x42 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x56 (size before relaxing) + 0x400dabd4 esp_panic_handler_enable_rtc_wdt + *fill* 0x400dac16 0x2 + .text.esp_panic_handler_feed_wdts + 0x400dac18 0x76 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x9a (size before relaxing) + 0x400dac18 esp_panic_handler_feed_wdts + *fill* 0x400dac8e 0x2 + .text.esp_panic_handler_increment_entry_count + 0x400dac90 0x25 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x29 (size before relaxing) + 0x400dac90 esp_panic_handler_increment_entry_count + *fill* 0x400dacb5 0x3 + .text.esp_panic_handler + 0x400dacb8 0x14a esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x1ab (size before relaxing) + 0x400dacb8 esp_panic_handler + *fill* 0x400dae02 0x0 + *fill* 0x400dae02 0x0 + *fill* 0x400dae02 0x0 + *fill* 0x400dae02 0x0 + *fill* 0x400dae02 0x0 + *fill* 0x400dae02 0x0 + *fill* 0x400dae02 0x0 + *fill* 0x400dae02 0x0 + *fill* 0x400dae02 0x2 + .text.esp_reset_reason_set_hint + 0x400dae04 0x5 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x400dae04 esp_reset_reason_set_hint + *fill* 0x400dae09 0x3 + .text.esp_reset_reason_get_hint + 0x400dae0c 0x7 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x400dae0c esp_reset_reason_get_hint + *fill* 0x400dae13 0x0 + *libesp_system.a:reset_reason.*(.literal.esp_reset_reason .literal.esp_reset_reason_clear_hint .literal.esp_reset_reason_get_hint .literal.esp_reset_reason_init .text .text.esp_reset_reason .text.esp_reset_reason_clear_hint .text.esp_reset_reason_get_hint .text.esp_reset_reason_init .text.get_reset_reason) + *libesp_system.a:system_internal.*(.text) + *libesp_system.a:system_time.*(.text) + *libesp_timer.a:esp_timer_impl_common.*(.text) + *libesp_timer.a:esp_timer_impl_lac.*(.literal.esp_timer_impl_deinit .literal.esp_timer_impl_early_init .literal.esp_timer_impl_get_alarm_reg .literal.esp_timer_impl_init .text .text.esp_timer_impl_deinit .text.esp_timer_impl_early_init .text.esp_timer_impl_get_alarm_reg .text.esp_timer_impl_init) + *fill* 0x400dae13 0x1 + .text.esp_timer_impl_early_init + 0x400dae14 0xcb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xd3 (size before relaxing) + 0x400dae14 esp_timer_impl_early_init + *fill* 0x400daedf 0x0 + *libfreertos.a:event_groups.*(.literal.vEventGroupClearBitsCallback .literal.vEventGroupDelete .literal.vEventGroupSetBitsCallback .literal.xEventGroupClearBits .literal.xEventGroupCreate .literal.xEventGroupCreateStatic .literal.xEventGroupGetStaticBuffer .literal.xEventGroupSetBits .literal.xEventGroupSync .literal.xEventGroupWaitBits .text .text.prvTestWaitCondition .text.vEventGroupClearBitsCallback .text.vEventGroupDelete .text.vEventGroupSetBitsCallback .text.xEventGroupClearBits .text.xEventGroupCreate .text.xEventGroupCreateStatic .text.xEventGroupGetStaticBuffer .text.xEventGroupSetBits .text.xEventGroupSync .text.xEventGroupWaitBits) + *libfreertos.a:list.*(.text .text.vListInitialise .text.vListInitialiseItem .text.vListInsert) + *fill* 0x400daedf 0x1 + .text.vListInitialise + 0x400daee0 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x400daee0 vListInitialise + .text.vListInitialiseItem + 0x400daf04 0xc esp-idf/freertos/libfreertos.a(list.c.obj) + 0x400daf04 vListInitialiseItem + .text.vListInsert + 0x400daf10 0x5c esp-idf/freertos/libfreertos.a(list.c.obj) + 0x400daf10 vListInsert + *libfreertos.a:port.*(.literal.pxPortInitialiseStack .literal.vApplicationStackOverflowHook .literal.vPortCleanUpCoprocArea .literal.vPortEndScheduler .literal.vPortExitCriticalCompliance .literal.vPortTCBPreDeleteHook .literal.vPortTLSPointersDelCb .literal.vPortTaskWrapper .literal.xPortEnterCriticalTimeoutCompliance .text .text.pxPortInitialiseStack .text.vApplicationStackOverflowHook .text.vPortCleanUpCoprocArea .text.vPortEndScheduler .text.vPortExitCriticalCompliance .text.vPortTCBPreDeleteHook .text.vPortTLSPointersDelCb .text.vPortTaskWrapper .text.xPortEnterCriticalTimeoutCompliance .text.xPortGetTickRateHz) + .text.vPortTaskWrapper + 0x400daf6c 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x32 (size before relaxing) + *fill* 0x400daf92 0x2 + .text.vPortTLSPointersDelCb + 0x400daf94 0x54 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x58 (size before relaxing) + .text.vPortCleanUpCoprocArea + 0x400dafe8 0x16 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1a (size before relaxing) + *fill* 0x400daffe 0x2 + .text.pxPortInitialiseStack + 0x400db000 0x9d esp-idf/freertos/libfreertos.a(port.c.obj) + 0xa1 (size before relaxing) + 0x400db000 pxPortInitialiseStack + *fill* 0x400db09d 0x3 + .text.vApplicationStackOverflowHook + 0x400db0a0 0x3d esp-idf/freertos/libfreertos.a(port.c.obj) + 0x400db0a0 vApplicationStackOverflowHook + *fill* 0x400db0dd 0x3 + .text.vPortTCBPreDeleteHook + 0x400db0e0 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x16 (size before relaxing) + 0x400db0e0 vPortTCBPreDeleteHook + *fill* 0x400db0f2 0x0 + *fill* 0x400db0f2 0x0 + *fill* 0x400db0f2 0x0 + *fill* 0x400db0f2 0x0 + *libfreertos.a:queue.*(.literal.prvInitialiseMutex .literal.prvInitialiseNewQueue .literal.uxQueueMessagesWaiting .literal.uxQueueSpacesAvailable .literal.vQueueDelete .literal.vQueueWaitForMessageRestricted .literal.xQueueAddToSet .literal.xQueueCreateCountingSemaphore .literal.xQueueCreateCountingSemaphoreStatic .literal.xQueueCreateMutex .literal.xQueueCreateMutexStatic .literal.xQueueCreateSet .literal.xQueueGenericCreate .literal.xQueueGenericCreateStatic .literal.xQueueGenericGetStaticBuffers .literal.xQueueGenericReset .literal.xQueueGenericSend .literal.xQueueGetMutexHolder .literal.xQueueGiveMutexRecursive .literal.xQueuePeek .literal.xQueueReceive .literal.xQueueRemoveFromSet .literal.xQueueSelectFromSet .literal.xQueueSemaphoreTake .literal.xQueueTakeMutexRecursive .text .text.prvGetDisinheritPriorityAfterTimeout .text.prvInitialiseMutex .text.prvInitialiseNewQueue .text.uxQueueMessagesWaiting .text.uxQueueSpacesAvailable .text.vQueueDelete .text.vQueueWaitForMessageRestricted .text.xQueueAddToSet .text.xQueueCreateCountingSemaphore .text.xQueueCreateCountingSemaphoreStatic .text.xQueueCreateMutex .text.xQueueCreateMutexStatic .text.xQueueCreateSet .text.xQueueGenericCreate .text.xQueueGenericCreateStatic .text.xQueueGenericGetStaticBuffers .text.xQueueGenericReset .text.xQueueGenericSend .text.xQueueGetMutexHolder .text.xQueueGiveMutexRecursive .text.xQueuePeek .text.xQueueReceive .text.xQueueRemoveFromSet .text.xQueueSelectFromSet .text.xQueueSemaphoreTake .text.xQueueTakeMutexRecursive) + *fill* 0x400db0f2 0x2 + .text.xQueueGenericReset + 0x400db0f4 0xb3 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc7 (size before relaxing) + 0x400db0f4 xQueueGenericReset + *fill* 0x400db1a7 0x1 + .text.prvInitialiseNewQueue + 0x400db1a8 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x23 (size before relaxing) + *fill* 0x400db1c7 0x1 + .text.xQueueGenericCreateStatic + 0x400db1c8 0x8e esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x9a (size before relaxing) + 0x400db1c8 xQueueGenericCreateStatic + *fill* 0x400db256 0x2 + .text.xQueueGenericCreate + 0x400db258 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x5c (size before relaxing) + 0x400db258 xQueueGenericCreate + .text.xQueueGetMutexHolder + 0x400db2ac 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3a (size before relaxing) + 0x400db2ac xQueueGetMutexHolder + *fill* 0x400db2e2 0x2 + .text.xQueueGenericSend + 0x400db2e4 0x13c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x16c (size before relaxing) + 0x400db2e4 xQueueGenericSend + .text.prvInitialiseMutex + 0x400db420 0x3e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x400db45e 0x2 + .text.xQueueCreateMutex + 0x400db460 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a (size before relaxing) + 0x400db460 xQueueCreateMutex + *fill* 0x400db476 0x2 + .text.xQueueCreateMutexStatic + 0x400db478 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1e (size before relaxing) + 0x400db478 xQueueCreateMutexStatic + *fill* 0x400db492 0x2 + .text.xQueueGiveMutexRecursive + 0x400db494 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x48 (size before relaxing) + 0x400db494 xQueueGiveMutexRecursive + .text.xQueueSemaphoreTake + 0x400db4d4 0x108 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x134 (size before relaxing) + 0x400db4d4 xQueueSemaphoreTake + .text.xQueueTakeMutexRecursive + 0x400db5dc 0x40 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x44 (size before relaxing) + 0x400db5dc xQueueTakeMutexRecursive + .text.uxQueueMessagesWaiting + 0x400db61c 0x2c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + 0x400db61c uxQueueMessagesWaiting + .text.vQueueDelete + 0x400db648 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x27 (size before relaxing) + 0x400db648 vQueueDelete + *fill* 0x400db66c 0x0 + .text.prvGetDisinheritPriorityAfterTimeout + 0x400db66c 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x400db68a 0x0 + *fill* 0x400db68a 0x0 + *fill* 0x400db68a 0x0 + *fill* 0x400db68a 0x0 + *fill* 0x400db68a 0x0 + *fill* 0x400db68a 0x0 + *fill* 0x400db68a 0x0 + *fill* 0x400db68a 0x0 + *libfreertos.a:stream_buffer.*(.literal.prvInitialiseNewStreamBuffer .literal.prvReadBytesFromBuffer .literal.prvWriteBytesToBuffer .literal.vStreamBufferDelete .literal.xStreamBufferBytesAvailable .literal.xStreamBufferGenericCreate .literal.xStreamBufferGenericCreateStatic .literal.xStreamBufferGetStaticBuffers .literal.xStreamBufferIsEmpty .literal.xStreamBufferIsFull .literal.xStreamBufferNextMessageLengthBytes .literal.xStreamBufferReceive .literal.xStreamBufferReset .literal.xStreamBufferSend .literal.xStreamBufferSetTriggerLevel .literal.xStreamBufferSpacesAvailable .text .text.prvInitialiseNewStreamBuffer .text.prvReadBytesFromBuffer .text.prvWriteBytesToBuffer .text.vStreamBufferDelete .text.xStreamBufferBytesAvailable .text.xStreamBufferGenericCreate .text.xStreamBufferGenericCreateStatic .text.xStreamBufferGetStaticBuffers .text.xStreamBufferIsEmpty .text.xStreamBufferIsFull .text.xStreamBufferNextMessageLengthBytes .text.xStreamBufferReceive .text.xStreamBufferReset .text.xStreamBufferSend .text.xStreamBufferSetTriggerLevel .text.xStreamBufferSpacesAvailable) + *libfreertos.a:tasks.*(.literal.eTaskGetState .literal.pcTaskGetName .literal.prvAddCurrentTaskToDelayedList .literal.prvAddNewTaskToReadyList .literal.prvCheckTasksWaitingTermination .literal.prvCreateIdleTasks .literal.prvDeleteTCB .literal.prvIdleTask .literal.prvInitialiseNewTask .literal.prvInitialiseTaskLists .literal.prvReleaseKernelLock .literal.prvTakeKernelLock .literal.prvTaskPriorityRaise .literal.prvTaskPriorityRestore .literal.pvTaskGetCurrentTCBForCore .literal.pvTaskGetThreadLocalStoragePointer .literal.pvTaskIncrementMutexHeldCount .literal.pxGetTaskListByIndex .literal.pxTaskGetStackStart .literal.ulTaskGenericNotifyTake .literal.ulTaskGenericNotifyValueClear .literal.uxTaskGetNumberOfTasks .literal.uxTaskGetSnapshotAll .literal.uxTaskGetStackHighWaterMark .literal.uxTaskGetStackHighWaterMark2 .literal.uxTaskPriorityGet .literal.uxTaskResetEventItemValue .literal.vTaskDelay .literal.vTaskDelete .literal.vTaskEndScheduler .literal.vTaskInternalSetTimeOutState .literal.vTaskMissedYield .literal.vTaskPlaceOnEventList .literal.vTaskPlaceOnEventListRestricted .literal.vTaskPlaceOnUnorderedEventList .literal.vTaskPriorityDisinheritAfterTimeout .literal.vTaskPrioritySet .literal.vTaskRemoveFromUnorderedEventList .literal.vTaskResume .literal.vTaskSetThreadLocalStoragePointer .literal.vTaskSetThreadLocalStoragePointerAndDelCallback .literal.vTaskSetTimeOutState .literal.vTaskStartScheduler .literal.vTaskSuspend .literal.vTaskSuspendAll .literal.xTaskAbortDelay .literal.xTaskCatchUpTicks .literal.xTaskCheckForTimeOut .literal.xTaskCreatePinnedToCore .literal.xTaskCreateStaticPinnedToCore .literal.xTaskDelayUntil .literal.xTaskGenericNotify .literal.xTaskGenericNotifyStateClear .literal.xTaskGenericNotifyWait .literal.xTaskGetCoreID .literal.xTaskGetCurrentTaskHandle .literal.xTaskGetCurrentTaskHandleForCore .literal.xTaskGetHandle .literal.xTaskGetIdleTaskHandle .literal.xTaskGetIdleTaskHandleForCore .literal.xTaskGetNext .literal.xTaskGetStackStart .literal.xTaskGetStaticBuffers .literal.xTaskPriorityDisinherit .literal.xTaskPriorityInherit .literal.xTaskResumeAll .text .text.eTaskGetState .text.pcTaskGetName .text.prvAddCurrentTaskToDelayedList .text.prvAddNewTaskToReadyList .text.prvCheckTasksWaitingTermination .text.prvCreateIdleTasks .text.prvDeleteTCB .text.prvIdleTask .text.prvInitialiseNewTask .text.prvInitialiseTaskLists .text.prvReleaseKernelLock .text.prvSearchForNameWithinSingleList .text.prvTakeKernelLock .text.prvTaskCheckFreeStackSpace .text.prvTaskPriorityRaise .text.prvTaskPriorityRestore .text.pvTaskGetCurrentTCBForCore .text.pvTaskGetThreadLocalStoragePointer .text.pvTaskIncrementMutexHeldCount .text.pxGetTaskListByIndex .text.pxTaskGetStackStart .text.ulTaskGenericNotifyTake .text.ulTaskGenericNotifyValueClear .text.uxTaskGetNumberOfTasks .text.uxTaskGetSnapshotAll .text.uxTaskGetStackHighWaterMark .text.uxTaskGetStackHighWaterMark2 .text.uxTaskPriorityGet .text.uxTaskResetEventItemValue .text.vTaskDelay .text.vTaskDelete .text.vTaskEndScheduler .text.vTaskInternalSetTimeOutState .text.vTaskMissedYield .text.vTaskPlaceOnEventList .text.vTaskPlaceOnEventListRestricted .text.vTaskPlaceOnUnorderedEventList .text.vTaskPriorityDisinheritAfterTimeout .text.vTaskPrioritySet .text.vTaskRemoveFromUnorderedEventList .text.vTaskResume .text.vTaskSetThreadLocalStoragePointer .text.vTaskSetThreadLocalStoragePointerAndDelCallback .text.vTaskSetTimeOutState .text.vTaskStartScheduler .text.vTaskSuspend .text.vTaskSuspendAll .text.xTaskAbortDelay .text.xTaskCatchUpTicks .text.xTaskCheckForTimeOut .text.xTaskCreatePinnedToCore .text.xTaskCreateStaticPinnedToCore .text.xTaskDelayUntil .text.xTaskGenericNotify .text.xTaskGenericNotifyStateClear .text.xTaskGenericNotifyWait .text.xTaskGetCoreID .text.xTaskGetCurrentTaskHandle .text.xTaskGetCurrentTaskHandleForCore .text.xTaskGetHandle .text.xTaskGetIdleTaskHandle .text.xTaskGetIdleTaskHandleForCore .text.xTaskGetNext .text.xTaskGetStackStart .text.xTaskGetStaticBuffers .text.xTaskPriorityDisinherit .text.xTaskPriorityInherit .text.xTaskResumeAll .text.xTimerCreateTimerTask) + *fill* 0x400db68a 0x2 + .text.prvDeleteTCB + 0x400db68c 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4b (size before relaxing) + *fill* 0x400db6c8 0x0 + .text.prvCheckTasksWaitingTermination + 0x400db6c8 0x96 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x9e (size before relaxing) + *fill* 0x400db75e 0x2 + .text.prvAddCurrentTaskToDelayedList + 0x400db760 0x116 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x11e (size before relaxing) + *fill* 0x400db876 0x2 + .text.prvIdleTask + 0x400db878 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + *fill* 0x400db884 0x0 + .text.prvInitialiseNewTask + 0x400db884 0xa0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa8 (size before relaxing) + .text.prvInitialiseTaskLists + 0x400db924 0x65 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x75 (size before relaxing) + *fill* 0x400db989 0x3 + .text.prvAddNewTaskToReadyList + 0x400db98c 0x1a4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1b3 (size before relaxing) + *fill* 0x400dbb30 0x0 + .text.pxGetTaskListByIndex + 0x400dbb30 0x42 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x400dbb72 0x2 + .text.vTaskSuspendAll + 0x400dbb74 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x32 (size before relaxing) + 0x400dbb74 vTaskSuspendAll + *fill* 0x400dbba2 0x2 + .text.vTaskPlaceOnEventList + 0x400dbba4 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x57 (size before relaxing) + 0x400dbba4 vTaskPlaceOnEventList + *fill* 0x400dbbeb 0x1 + .text.vTaskInternalSetTimeOutState + 0x400dbbec 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x400dbbec vTaskInternalSetTimeOutState + *fill* 0x400dbc05 0x3 + .text.xTaskCheckForTimeOut + 0x400dbc08 0xb3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xbe (size before relaxing) + 0x400dbc08 xTaskCheckForTimeOut + *fill* 0x400dbcbb 0x1 + .text.xTaskGetCurrentTaskHandle + 0x400dbcbc 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x400dbcbc xTaskGetCurrentTaskHandle + *fill* 0x400dbcdb 0x1 + .text.vTaskPrioritySet + 0x400dbcdc 0x173 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x187 (size before relaxing) + 0x400dbcdc vTaskPrioritySet + *fill* 0x400dbe4f 0x1 + .text.pcTaskGetName + 0x400dbe50 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x29 (size before relaxing) + 0x400dbe50 pcTaskGetName + *fill* 0x400dbe72 0x2 + .text.vTaskDelete + 0x400dbe74 0xf4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x117 (size before relaxing) + 0x400dbe74 vTaskDelete + *fill* 0x400dbf68 0x0 + .text.vTaskDelay + 0x400dbf68 0x3b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4f (size before relaxing) + 0x400dbf68 vTaskDelay + *fill* 0x400dbfa3 0x1 + .text.xTaskResumeAll + 0x400dbfa4 0x1e4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1f7 (size before relaxing) + 0x400dbfa4 xTaskResumeAll + *fill* 0x400dc188 0x0 + .text.xTaskPriorityInherit + 0x400dc188 0x110 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x117 (size before relaxing) + 0x400dc188 xTaskPriorityInherit + *fill* 0x400dc298 0x0 + .text.xTaskPriorityDisinherit + 0x400dc298 0xe8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf7 (size before relaxing) + 0x400dc298 xTaskPriorityDisinherit + *fill* 0x400dc380 0x0 + .text.vTaskPriorityDisinheritAfterTimeout + 0x400dc380 0xf8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xff (size before relaxing) + 0x400dc380 vTaskPriorityDisinheritAfterTimeout + *fill* 0x400dc478 0x0 + .text.pvTaskIncrementMutexHeldCount + 0x400dc478 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4a (size before relaxing) + 0x400dc478 pvTaskIncrementMutexHeldCount + *fill* 0x400dc4bf 0x1 + .text.ulTaskGenericNotifyTake + 0x400dc4c0 0xea esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xfe (size before relaxing) + 0x400dc4c0 ulTaskGenericNotifyTake + *fill* 0x400dc5aa 0x2 + .text.xTaskGenericNotify + 0x400dc5ac 0x1cf esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1e2 (size before relaxing) + 0x400dc5ac xTaskGenericNotify + *fill* 0x400dc77b 0x1 + .text.xTaskCreatePinnedToCore + 0x400dc77c 0x8c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa0 (size before relaxing) + 0x400dc77c xTaskCreatePinnedToCore + .text.xTaskCreateStaticPinnedToCore + 0x400dc808 0xdc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xf0 (size before relaxing) + 0x400dc808 xTaskCreateStaticPinnedToCore + .text.prvCreateIdleTasks + 0x400dc8e4 0x8d esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x91 (size before relaxing) + *fill* 0x400dc971 0x3 + .text.vTaskStartScheduler + 0x400dc974 0x61 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x74 (size before relaxing) + 0x400dc974 vTaskStartScheduler + *fill* 0x400dc9d5 0x3 + .text.xTaskGetCoreID + 0x400dc9d8 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x400dc9d8 xTaskGetCoreID + *fill* 0x400dc9e8 0x0 + .text.xTaskGetIdleTaskHandleForCore + 0x400dc9e8 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + 0x400dc9e8 xTaskGetIdleTaskHandleForCore + .text.xTaskGetCurrentTaskHandleForCore + 0x400dca20 0x2b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x400dca20 xTaskGetCurrentTaskHandleForCore + *fill* 0x400dca4b 0x1 + .text.xTaskGetNext + 0x400dca4c 0x76 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7a (size before relaxing) + 0x400dca4c xTaskGetNext + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x0 + *fill* 0x400dcac2 0x2 + .text.xTimerCreateTimerTask + 0x400dcac4 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x400dcac4 xTimerCreateTimerTask + *fill* 0x400dcacb 0x0 + *fill* 0x400dcacb 0x0 + *fill* 0x400dcacb 0x0 + *libfreertos.a:timers.*(.literal.pcTimerGetName .literal.prvCheckForValidListAndQueue .literal.prvGetNextExpireTime .literal.prvInitialiseNewTimer .literal.prvInsertTimerInActiveList .literal.prvProcessExpiredTimer .literal.prvProcessReceivedCommands .literal.prvProcessTimerOrBlockTask .literal.prvReloadTimer .literal.prvSampleTimeNow .literal.prvSwitchTimerLists .literal.prvTimerTask .literal.pvTimerGetTimerID .literal.uxTimerGetReloadMode .literal.vTimerSetReloadMode .literal.vTimerSetTimerID .literal.xTimerCreate .literal.xTimerCreateStatic .literal.xTimerCreateTimerTask .literal.xTimerGetExpiryTime .literal.xTimerGetPeriod .literal.xTimerGetReloadMode .literal.xTimerGetStaticBuffer .literal.xTimerGetTimerDaemonTaskHandle .literal.xTimerIsTimerActive .literal.xTimerPendFunctionCall .text .text.pcTimerGetName .text.prvCheckForValidListAndQueue .text.prvGetNextExpireTime .text.prvInitialiseNewTimer .text.prvInsertTimerInActiveList .text.prvProcessExpiredTimer .text.prvProcessReceivedCommands .text.prvProcessTimerOrBlockTask .text.prvReloadTimer .text.prvSampleTimeNow .text.prvSwitchTimerLists .text.prvTimerTask .text.pvTimerGetTimerID .text.uxTimerGetReloadMode .text.vTimerSetReloadMode .text.vTimerSetTimerID .text.xTimerCreate .text.xTimerCreateStatic .text.xTimerCreateTimerTask .text.xTimerGetExpiryTime .text.xTimerGetPeriod .text.xTimerGetReloadMode .text.xTimerGetStaticBuffer .text.xTimerGetTimerDaemonTaskHandle .text.xTimerIsTimerActive .text.xTimerPendFunctionCall) + *libheap.a:multi_heap.*(.literal.multi_heap_check .literal.multi_heap_dump .literal.multi_heap_dump_tlsf .literal.multi_heap_find_containing_block_impl .literal.multi_heap_get_info_impl .literal.multi_heap_register_impl .literal.multi_heap_reset_minimum_free_bytes .literal.multi_heap_restore_minimum_free_bytes .literal.multi_heap_walk .text .text.multi_heap_check .text.multi_heap_dump .text.multi_heap_dump_tlsf .text.multi_heap_find_containing_block_impl .text.multi_heap_free_size_impl .text.multi_heap_get_info_impl .text.multi_heap_get_info_tlsf .text.multi_heap_minimum_free_size_impl .text.multi_heap_register_impl .text.multi_heap_reset_minimum_free_bytes .text.multi_heap_restore_minimum_free_bytes .text.multi_heap_walk) + *fill* 0x400dcacb 0x1 + .text.multi_heap_register_impl + 0x400dcacc 0x48 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x50 (size before relaxing) + 0x400dcacc multi_heap_register_impl + 0x400dcacc multi_heap_register + .text.multi_heap_get_info_impl + 0x400dcb14 0x5c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x78 (size before relaxing) + 0x400dcb14 multi_heap_get_info_impl + 0x400dcb14 multi_heap_get_info + *fill* 0x400dcb70 0x0 + .text.multi_heap_get_info_tlsf + 0x400dcb70 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x400dcb96 0x2 + .text.multi_heap_minimum_free_size_impl + 0x400dcb98 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x400dcb98 multi_heap_minimum_free_size + 0x400dcb98 multi_heap_minimum_free_size_impl + *fill* 0x400dcba2 0x0 + *libheap.a:tlsf.*(.literal.control_construct .literal.default_walker .literal.integrity_walker .literal.tlsf_add_pool .literal.tlsf_check .literal.tlsf_check_pool .literal.tlsf_create .literal.tlsf_create_with_pool .literal.tlsf_fit_size .literal.tlsf_malloc_addr .literal.tlsf_remove_pool .literal.tlsf_walk_pool .text .text.control_construct .text.default_walker .text.integrity_walker .text.tlsf_add_pool .text.tlsf_check .text.tlsf_check_pool .text.tlsf_create .text.tlsf_create_with_pool .text.tlsf_destroy .text.tlsf_find_containing_block .text.tlsf_fit_size .text.tlsf_malloc_addr .text.tlsf_pool_overhead .text.tlsf_remove_pool .text.tlsf_walk_pool) + *fill* 0x400dcba2 0x2 + .text.control_construct + 0x400dcba4 0x17c esp-idf/heap/libheap.a(tlsf.c.obj) + .text.default_walker + 0x400dcd20 0x21 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x24 (size before relaxing) + *fill* 0x400dcd41 0x3 + .text.tlsf_walk_pool + 0x400dcd44 0x60 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400dcd44 tlsf_walk_pool + .text.tlsf_fit_size + 0x400dcda4 0x62 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400dcda4 tlsf_fit_size + *fill* 0x400dce06 0x2 + .text.tlsf_add_pool + 0x400dce08 0x190 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x1a0 (size before relaxing) + 0x400dce08 tlsf_add_pool + .text.tlsf_create + 0x400dcf98 0x2a esp-idf/heap/libheap.a(tlsf.c.obj) + 0x2e (size before relaxing) + 0x400dcf98 tlsf_create + *fill* 0x400dcfc2 0x2 + .text.tlsf_create_with_pool + 0x400dcfc4 0x2b esp-idf/heap/libheap.a(tlsf.c.obj) + 0x33 (size before relaxing) + 0x400dcfc4 tlsf_create_with_pool + *fill* 0x400dcfef 0x1 + .text.tlsf_pool_overhead + 0x400dcff0 0x7 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x400dcff0 tlsf_pool_overhead + *fill* 0x400dcff7 0x0 + *fill* 0x400dcff7 0x0 + *liblog.a:log_timestamp.*(.text) + *liblog.a:log_write.*(.literal.esp_log_set_vprintf .text .text.esp_log_set_vprintf) + *liblog.a:tag_log_level.*(.literal.esp_log_level_get .literal.esp_log_level_set .literal.log_level_get .literal.log_level_set .text .text.esp_log_level_get .text.esp_log_level_set .text.log_level_get .text.log_level_set) + *fill* 0x400dcff7 0x1 + .text.log_level_get + 0x400dcff8 0x45 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x50 (size before relaxing) + *fill* 0x400dd03d 0x0 + *libspi_flash.a:esp_flash_api.*(.literal.esp_flash_app_disable_protect .literal.esp_flash_get_protectable_regions .literal.esp_flash_read_chip_id .literal.esp_flash_read_id .literal.esp_flash_read_unique_chip_id .literal.esp_flash_suspend_cmd_init .literal.find_region .text .text.esp_flash_app_disable_protect .text.esp_flash_get_protectable_regions .text.esp_flash_read_chip_id .text.esp_flash_read_id .text.esp_flash_read_unique_chip_id .text.esp_flash_suspend_cmd_init .text.find_region) + *fill* 0x400dd03d 0x3 + .text.esp_flash_read_chip_id + 0x400dd040 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x14 (size before relaxing) + 0x400dd040 esp_flash_read_chip_id + .text.esp_flash_app_disable_protect + 0x400dd050 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x28 (size before relaxing) + 0x400dd050 esp_flash_app_disable_protect + *libspi_flash.a:spi_flash_os_func_app.*(.literal.esp_flash_app_enable_os_functions .literal.esp_flash_deinit_os_functions .literal.esp_flash_init_os_functions .text .text.esp_flash_app_enable_os_functions .text.esp_flash_deinit_os_functions .text.esp_flash_init_main_bus_lock .text.esp_flash_init_os_functions .text.esp_flash_set_dangerous_write_protection .text.use_bus_lock) + .text.esp_flash_app_enable_os_functions + 0x400dd074 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x400dd074 esp_flash_app_enable_os_functions + *libspi_flash.a:spi_flash_os_func_noos.*(.text) + *libxtensa.a:xt_trax.*(.literal .literal.* .text .text.*) + *libxtensa.a:xtensa_intr.*(.literal .literal.* .text .text.*) + .text.xt_int_has_handler + 0x400dd09c 0x1b esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x400dd09c xt_int_has_handler + *fill* 0x400dd0b7 0x1 + .text.xt_set_interrupt_handler + 0x400dd0b8 0x4e esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x400dd0b8 xt_set_interrupt_handler + *fill* 0x400dd106 0x0 + *(.stub) + *(.gnu.warning) + *(.gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + 0x400dd116 . = (. + 0x10) + *fill* 0x400dd106 0x10 + 0x400dd116 _text_end = ABSOLUTE (.) + 0x400dd116 _instruction_reserved_end = ABSOLUTE (.) + 0x400dd116 _etext = . + 0x00000000 _flash_cache_start = ABSOLUTE (0x0) + +.iram0.text_end + 0x4008ad63 0x1 + 0x4008ad64 . = ALIGN (0x4) + *fill* 0x4008ad63 0x1 + 0x4008ad64 _iram_text_end = ABSOLUTE (.) + +.iram0.data 0x4008ad64 0x0 + 0x4008ad64 . = ALIGN (0x4) + 0x4008ad64 _iram_data_start = ABSOLUTE (.) + *(.iram.data .iram.data.*) + 0x4008ad64 _coredump_iram_start = ABSOLUTE (.) + *(.iram2.coredump .iram2.coredump.*) + 0x4008ad64 _coredump_iram_end = ABSOLUTE (.) + 0x4008ad64 _iram_data_end = ABSOLUTE (.) + +.iram0.bss 0x4008ad64 0x0 + 0x4008ad64 . = ALIGN (0x4) + 0x4008ad64 _iram_bss_start = ABSOLUTE (.) + *(.iram.bss .iram.bss.*) + 0x4008ad64 _iram_bss_end = ABSOLUTE (.) + 0x4008ad64 . = ALIGN (0x4) + 0x4008ad64 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x3ffb34f0 0x0 + 0x3ffb34f0 . = ALIGN (0x8) + 0x3ffb34f0 _heap_low_start = ABSOLUTE (.) + +.noload 0x00000000 0x4 + 0x00000000 . = 0x0 + 0x00000000 0x4 LONG 0x0 + 0x00000004 _noload_keep_in_elf_start = ABSOLUTE (.) + *(.noload_keep_in_elf .noload_keep_in_elf.*) + 0x00000004 _noload_keep_in_elf_end = ABSOLUTE (.) + +.debug + *(.debug) + +.line + *(.line) + +.debug_srcinfo + *(.debug_srcinfo) + +.debug_sfnames + *(.debug_sfnames) + +.debug_aranges 0x00000000 0x44e8 + *(.debug_aranges) + .debug_aranges + 0x00000000 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_aranges + 0x00000030 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_aranges + 0x00000060 0x68 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_aranges + 0x000000c8 0x38 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_aranges + 0x00000100 0x40 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_aranges + 0x00000140 0xa0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x000001e0 0x60 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x00000240 0x28 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_aranges + 0x00000268 0x30 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_aranges + 0x00000298 0x48 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_aranges + 0x000002e0 0x48 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_aranges + 0x00000328 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_aranges + 0x000003e0 0x70 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_aranges + 0x00000450 0x48 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_aranges + 0x00000498 0x60 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_aranges + 0x000004f8 0x28 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_aranges + 0x00000520 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_aranges + 0x00000540 0x20 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_aranges + 0x00000560 0x40 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_aranges + 0x000005a0 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_aranges + 0x000005c8 0x30 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_aranges + 0x000005f8 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_aranges + 0x00000628 0x98 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_aranges + 0x000006c0 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_aranges + 0x00000718 0x20 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_aranges + 0x00000738 0x80 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_aranges + 0x000007b8 0x50 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_aranges + 0x00000808 0x20 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x00000828 0x48 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_aranges + 0x00000870 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_aranges + 0x000008d8 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_aranges + 0x000008f8 0x28 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_aranges + 0x00000920 0x28 esp-idf/log/liblog.a(util.c.obj) + .debug_aranges + 0x00000948 0x28 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x00000970 0x30 esp-idf/log/liblog.a(log_write.c.obj) + .debug_aranges + 0x000009a0 0x28 esp-idf/log/liblog.a(log_level.c.obj) + .debug_aranges + 0x000009c8 0x40 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_aranges + 0x00000a08 0x40 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_aranges + 0x00000a48 0x50 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_aranges + 0x00000a98 0x30 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_aranges + 0x00000ac8 0x130 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x00000bf8 0x58 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x00000c50 0xf8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x00000d48 0xd8 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_aranges + 0x00000e20 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_aranges + 0x00000e60 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_aranges + 0x00000e78 0x50 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_aranges + 0x00000ec8 0x28 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_aranges + 0x00000ef0 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_aranges + 0x00000f50 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_aranges + 0x00000f88 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_aranges + 0x00000ff0 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_aranges + 0x000010f0 0xa8 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_aranges + 0x00001198 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_aranges + 0x000011f0 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_aranges + 0x00001230 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_aranges + 0x00001258 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_aranges + 0x000012a8 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_aranges + 0x000012e0 0x148 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_aranges + 0x00001428 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_aranges + 0x00001458 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_aranges + 0x000014b8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_aranges + 0x000014d8 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_aranges + 0x00001560 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_aranges + 0x00001580 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_aranges + 0x000015d8 0x250 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_aranges + 0x00001828 0x38 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_aranges + 0x00001860 0x148 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x000019a8 0x2c8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x00001c70 0xa8 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00001d18 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x00001d38 0x28 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_aranges + 0x00001d60 0x50 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_aranges + 0x00001db0 0x28 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_aranges + 0x00001dd8 0x28 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_aranges + 0x00001e00 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x00001e40 0x30 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_aranges + 0x00001e70 0x20 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_aranges + 0x00001e90 0x38 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_aranges + 0x00001ec8 0x80 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_aranges + 0x00001f48 0xd8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_aranges + 0x00002020 0x30 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_aranges + 0x00002050 0x28 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_aranges + 0x00002078 0x80 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_aranges + 0x000020f8 0xb8 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_aranges + 0x000021b0 0x30 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_aranges + 0x000021e0 0x48 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_aranges + 0x00002228 0x38 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_aranges + 0x00002260 0x20 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_aranges + 0x00002280 0x1a0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x00002420 0x88 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_aranges + 0x000024a8 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x00002508 0x78 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_aranges + 0x00002580 0x58 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_aranges + 0x000025d8 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x00002628 0x30 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_aranges + 0x00002658 0x50 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x000026a8 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_aranges + 0x00002700 0x90 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_aranges + 0x00002790 0x50 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_aranges + 0x000027e0 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_aranges + 0x00002820 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_aranges + 0x00002840 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_aranges + 0x00002870 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x000028e8 0x58 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x00002940 0x68 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x000029a8 0xc8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x00002a70 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x00002ab0 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x00002ad0 0x128 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x00002bf8 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x00002c30 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_aranges + 0x00002c60 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x00002ca8 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_aranges + 0x00002d10 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x00002d88 0x78 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x00002e00 0x110 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x00002f10 0x28 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .debug_aranges + 0x00002f38 0x80 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .debug_aranges + 0x00002fb8 0x108 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .debug_aranges + 0x000030c0 0x60 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .debug_aranges + 0x00003120 0x88 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .debug_aranges + 0x000031a8 0xb0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .debug_aranges + 0x00003258 0x20 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_aranges + 0x00003278 0x20 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_aranges + 0x00003298 0x20 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x000032b8 0x38 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_aranges + 0x000032f0 0x78 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_aranges + 0x00003368 0x38 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_aranges + 0x000033a0 0x20 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_aranges + 0x000033c0 0xd8 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_aranges + 0x00003498 0x18 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_aranges + 0x000034b0 0x28 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_aranges + 0x000034d8 0x30 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_aranges + 0x00003508 0x20 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_aranges + 0x00003528 0x30 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_aranges + 0x00003558 0x18 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .debug_aranges + 0x00003570 0x48 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_aranges + 0x000035b8 0xa8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00003660 0x60 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_aranges + 0x000036c0 0x70 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_aranges + 0x00003730 0xd8 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_aranges + 0x00003808 0x78 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_aranges + 0x00003880 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x000038a0 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_aranges + 0x000038e8 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x00003998 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x00003a10 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_aranges + 0x00003a38 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_aranges + 0x00003a68 0x58 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_aranges + 0x00003ac0 0xe0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_aranges + 0x00003ba0 0x50 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_aranges + 0x00003bf0 0x20 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_aranges + 0x00003c10 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x00003c38 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_aranges + 0x00003c68 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_aranges + 0x00003c88 0x18 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_aranges + 0x00003ca0 0x18 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_aranges + 0x00003cb8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_aranges + 0x00003cd8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_aranges + 0x00003d08 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_aranges + 0x00003df8 0x130 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_aranges + 0x00003f28 0x20 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_aranges + 0x00003f48 0x20 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_aranges + 0x00003f68 0x20 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_aranges + 0x00003f88 0x18 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_aranges + 0x00003fa0 0x20 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_aranges + 0x00003fc0 0x20 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_aranges + 0x00003fe0 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x00004048 0x78 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x000040c0 0x140 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x00004200 0x48 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_aranges + 0x00004248 0x20 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_aranges + 0x00004268 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .debug_aranges + 0x00004288 0x18 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + .debug_aranges + 0x000042a0 0x68 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .debug_aranges + 0x00004308 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .debug_aranges + 0x00004328 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_aranges + 0x00004348 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .debug_aranges + 0x00004368 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .debug_aranges + 0x00004388 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .debug_aranges + 0x000043a8 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .debug_aranges + 0x000043d8 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .debug_aranges + 0x000043f8 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_aranges + 0x00004428 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_aranges + 0x00004450 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_aranges + 0x00004470 0x30 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .debug_aranges + 0x000044a0 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_aranges + 0x000044c8 0x20 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + +.debug_pubnames + *(.debug_pubnames) + +.debug_info 0x00000000 0xd9350 + *(.debug_info .gnu.linkonce.wi.*) + .debug_info 0x00000000 0x16a esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_info 0x0000016a 0x33b esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_info 0x000004a5 0x2273 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_info 0x00002718 0x762 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_info 0x00002e7a 0x75f esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_info 0x000035d9 0x1505 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x00004ade 0xfb9 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x00005a97 0x151 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_info 0x00005be8 0x351 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_info 0x00005f39 0x5c6 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_info 0x000064ff 0x36fa esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_info 0x00009bf9 0xe80 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_info 0x0000aa79 0x50af esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_info 0x0000fb28 0x3a5 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_info 0x0000fecd 0xe92 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_info 0x00010d5f 0x31b esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_info 0x0001107a 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_info 0x0001109d 0x24 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_info 0x000110c1 0x3f5d esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_info 0x0001501e 0x35e5 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_info 0x00018603 0x45f esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_info 0x00018a62 0x3807 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_info 0x0001c269 0x53bf esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_info 0x00021628 0xbe7 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_info 0x0002220f 0x23 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_info 0x00022232 0xc23 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_info 0x00022e55 0x127f esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_info 0x000240d4 0x23 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_info 0x000240f7 0xf5b esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_info 0x00025052 0xa48 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_info 0x00025a9a 0x14be esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_info 0x00026f58 0x26a esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_info 0x000271c2 0x2c4 esp-idf/log/liblog.a(util.c.obj) + .debug_info 0x00027486 0x3a4 esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x0002782a 0x38d esp-idf/log/liblog.a(log_write.c.obj) + .debug_info 0x00027bb7 0x167 esp-idf/log/liblog.a(log_level.c.obj) + .debug_info 0x00027d1e 0x456 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_info 0x00028174 0x45f esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_info 0x000285d3 0x49c esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_info 0x00028a6f 0x3df esp-idf/log/liblog.a(log_lock.c.obj) + .debug_info 0x00028e4e 0x23e9 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x0002b237 0x123f esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x0002c476 0x1920 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x0002dd96 0x8754 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_info 0x000364ea 0x975 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_info 0x00036e5f 0x52d esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_info 0x0003738c 0xefb esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_info 0x00038287 0x110 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_info 0x00038397 0x828 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_info 0x00038bbf 0x181 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_info 0x00038d40 0xaba esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_info 0x000397fa 0x2d8c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_info 0x0003c586 0x1001 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_info 0x0003d587 0x27e0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_info 0x0003fd67 0x9d9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_info 0x00040740 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_info 0x00040834 0x21f3 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_info 0x00042a27 0x2904 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_info 0x0004532b 0x6890 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_info 0x0004bbbb 0x24ee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_info 0x0004e0a9 0x2218 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_info 0x000502c1 0x2305 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_info 0x000525c6 0x1abd esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_info 0x00054083 0x23f esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_info 0x000542c2 0xda5 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_info 0x00055067 0x83d0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_info 0x0005d437 0x8ab esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_info 0x0005dce2 0x34ce esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x000611b0 0x75e8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x00068798 0x1d92 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x0006a52a 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x0006a54e 0xe0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_info 0x0006a62e 0x383 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_info 0x0006a9b1 0x4fd esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_info 0x0006aeae 0x1f3 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_info 0x0006b0a1 0x2fb esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x0006b39c 0x16f esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_info 0x0006b50b 0x2f2 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_info 0x0006b7fd 0x4f1 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_info 0x0006bcee 0x53b esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_info 0x0006c229 0x12a2 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_info 0x0006d4cb 0x298 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_info 0x0006d763 0x13a esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_info 0x0006d89d 0xbd5 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_info 0x0006e472 0xc85 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_info 0x0006f0f7 0x101 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_info 0x0006f1f8 0x7c9 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_info 0x0006f9c1 0xfd4 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_info 0x00070995 0xa3 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_info 0x00070a38 0x29b6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x000733ee 0x12a4 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_info 0x00074692 0xb91 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x00075223 0xda0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_info 0x00075fc3 0x563 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_info 0x00076526 0x1514 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x00077a3a 0x228 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_info 0x00077c62 0x2311 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x00079f73 0x283e esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_info 0x0007c7b1 0x18c3 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_info 0x0007e074 0xaa5 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_info 0x0007eb19 0x1ad3 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_info 0x000805ec 0x20fb esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_info 0x000826e7 0x17b esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_info 0x00082862 0xcc9 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x0008352b 0x428 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x00083953 0x47a4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x000880f7 0x142d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00089524 0xc8b esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x0008a1af 0xf37 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x0008b0e6 0x2b4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x0008dc32 0x1034 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x0008ec66 0x1169 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_info 0x0008fdcf 0x1167 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00090f36 0x1683 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_info 0x000925b9 0x3102 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x000956bb 0xea7 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x00096562 0x5174 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x0009b6d6 0x13c esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .debug_info 0x0009b812 0xdc7 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .debug_info 0x0009c5d9 0x3e84 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .debug_info 0x000a045d 0x66c esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .debug_info 0x000a0ac9 0x2183 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .debug_info 0x000a2c4c 0x1899 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .debug_info 0x000a44e5 0xbd5 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_info 0x000a50ba 0x24 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_info 0x000a50de 0x3b esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_info 0x000a5119 0x56c esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_info 0x000a5685 0x2f esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_info 0x000a56b4 0x566 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_info 0x000a5c1a 0xde esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_info 0x000a5cf8 0x343b esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_info 0x000a9133 0x1c1 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_info 0x000a92f4 0x146 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_info 0x000a943a 0x1af esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_info 0x000a95e9 0x194 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_info 0x000a977d 0xc7c esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_info 0x000aa3f9 0x37c esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .debug_info 0x000aa775 0x2ac9 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_info 0x000ad23e 0x39ab esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_info 0x000b0be9 0x429 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_info 0x000b1012 0x4333 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_info 0x000b5345 0x2b29 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_info 0x000b7e6e 0x1474 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_info 0x000b92e2 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x000b9381 0xc76 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_info 0x000b9ff7 0x4006 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x000bdffd 0x1da5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x000bfda2 0x217b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_info 0x000c1f1d 0x377 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_info 0x000c2294 0x9aa esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_info 0x000c2c3e 0x2b2d esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_info 0x000c576b 0x3c88 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_info 0x000c93f3 0x23 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_info 0x000c9416 0x480 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x000c9896 0x1ba esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_info 0x000c9a50 0x184 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_info 0x000c9bd4 0x258 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_info 0x000c9e2c 0x2c3 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_info 0x000ca0ef 0x17b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_info 0x000ca26a 0x1d8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_info 0x000ca442 0x24a5 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_info 0x000cc8e7 0x27e4 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_info 0x000cf0cb 0x245 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_info 0x000cf310 0x5d /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_info 0x000cf36d 0x78 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_info 0x000cf3e5 0x55 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_info 0x000cf43a 0x7a /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_info 0x000cf4b4 0x7a /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_info 0x000cf52e 0x868 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x000cfd96 0xdaf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x000d0b45 0x36ff esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x000d4244 0x6e8 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_info 0x000d492c 0x16b esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_info 0x000d4a97 0xd9 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .debug_info 0x000d4b70 0x84 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + .debug_info 0x000d4bf4 0xe46 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .debug_info 0x000d5a3a 0x2a9 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .debug_info 0x000d5ce3 0x1f8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_info 0x000d5edb 0x253 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .debug_info 0x000d612e 0x24b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .debug_info 0x000d6379 0x31c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .debug_info 0x000d6695 0xcb0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .debug_info 0x000d7345 0x237 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .debug_info 0x000d757c 0x1151 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_info 0x000d86cd 0xf9 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_info 0x000d87c6 0xd0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_info 0x000d8896 0x548 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .debug_info 0x000d8dde 0x291 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_info 0x000d906f 0x2e1 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + +.debug_abbrev 0x00000000 0x1d9cd + *(.debug_abbrev) + .debug_abbrev 0x00000000 0x112 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_abbrev 0x00000112 0x1ee esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_abbrev 0x00000300 0x56c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_abbrev 0x0000086c 0x2e0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_abbrev 0x00000b4c 0x285 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_abbrev 0x00000dd1 0x386 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x00001157 0x321 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x00001478 0xfb esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_abbrev 0x00001573 0x158 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_abbrev 0x000016cb 0x2e4 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_abbrev 0x000019af 0x393 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_abbrev 0x00001d42 0x2f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_abbrev 0x00002032 0x622 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_abbrev 0x00002654 0x22c esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_abbrev 0x00002880 0x325 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_abbrev 0x00002ba5 0x10c esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_abbrev 0x00002cb1 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_abbrev 0x00002cc5 0x14 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_abbrev 0x00002cd9 0x4a2 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_abbrev 0x0000317b 0x3fd esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_abbrev 0x00003578 0x1cb esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_abbrev 0x00003743 0x3a6 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_abbrev 0x00003ae9 0x5e8 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_abbrev 0x000040d1 0x3b2 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_abbrev 0x00004483 0x14 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_abbrev 0x00004497 0x2c5 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_abbrev 0x0000475c 0x3c6 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_abbrev 0x00004b22 0x14 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x00004b36 0x3aa esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_abbrev 0x00004ee0 0x291 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_abbrev 0x00005171 0x235 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_abbrev 0x000053a6 0x17b esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_abbrev 0x00005521 0xf6 esp-idf/log/liblog.a(util.c.obj) + .debug_abbrev 0x00005617 0x22a esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x00005841 0x1e6 esp-idf/log/liblog.a(log_write.c.obj) + .debug_abbrev 0x00005a27 0x11b esp-idf/log/liblog.a(log_level.c.obj) + .debug_abbrev 0x00005b42 0x20c esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_abbrev 0x00005d4e 0x212 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_abbrev 0x00005f60 0x234 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_abbrev 0x00006194 0x13a esp-idf/log/liblog.a(log_lock.c.obj) + .debug_abbrev 0x000062ce 0x536 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x00006804 0x4ec esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x00006cf0 0x3ef esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x000070df 0x4ed esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_abbrev 0x000075cc 0x353 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_abbrev 0x0000791f 0xfc esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_abbrev 0x00007a1b 0x3be esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_abbrev 0x00007dd9 0xa5 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_abbrev 0x00007e7e 0x242 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_abbrev 0x000080c0 0xc7 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_abbrev 0x00008187 0x2ed esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_abbrev 0x00008474 0x5dc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_abbrev 0x00008a50 0x2a7 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_abbrev 0x00008cf7 0x39b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_abbrev 0x00009092 0x234 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_abbrev 0x000092c6 0x80 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_abbrev 0x00009346 0x462 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_abbrev 0x000097a8 0x48d esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_abbrev 0x00009c35 0x6ad esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_abbrev 0x0000a2e2 0x284 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_abbrev 0x0000a566 0x474 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_abbrev 0x0000a9da 0x272 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_abbrev 0x0000ac4c 0x3a7 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_abbrev 0x0000aff3 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_abbrev 0x0000b11f 0x2e6 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_abbrev 0x0000b405 0x72f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_abbrev 0x0000bb34 0x360 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_abbrev 0x0000be94 0x40b esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x0000c29f 0x521 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x0000c7c0 0x617 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x0000cdd7 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x0000cdeb 0xa4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_abbrev 0x0000ce8f 0x1a1 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_abbrev 0x0000d030 0x14f esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_abbrev 0x0000d17f 0x175 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_abbrev 0x0000d2f4 0x106 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x0000d3fa 0xfb esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_abbrev 0x0000d4f5 0x1bd esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_abbrev 0x0000d6b2 0x256 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_abbrev 0x0000d908 0x196 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_abbrev 0x0000da9e 0x42f esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_abbrev 0x0000decd 0x188 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_abbrev 0x0000e055 0xf7 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_abbrev 0x0000e14c 0x33d esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_abbrev 0x0000e489 0x25e esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_abbrev 0x0000e6e7 0xc5 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_abbrev 0x0000e7ac 0x1f1 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_abbrev 0x0000e99d 0x23c esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_abbrev 0x0000ebd9 0x6f esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_abbrev 0x0000ec48 0x569 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x0000f1b1 0x36e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_abbrev 0x0000f51f 0x2ed esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x0000f80c 0x2cf esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_abbrev 0x0000fadb 0x1d8 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_abbrev 0x0000fcb3 0x54e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x00010201 0x13c esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_abbrev 0x0001033d 0x229 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x00010566 0x350 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_abbrev 0x000108b6 0x3c3 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_abbrev 0x00010c79 0x27d esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_abbrev 0x00010ef6 0x324 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_abbrev 0x0001121a 0x238 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_abbrev 0x00011452 0xe0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_abbrev 0x00011532 0x352 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x00011884 0x29b esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x00011b1f 0x5f6 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x00012115 0x431 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x00012546 0x293 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x000127d9 0x271 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x00012a4a 0x524 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x00012f6e 0x266 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x000131d4 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_abbrev 0x000133f4 0x285 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x00013679 0x34b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_abbrev 0x000139c4 0x48b esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x00013e4f 0x39d esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x000141ec 0x60b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x000147f7 0xe1 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .debug_abbrev 0x000148d8 0x43f esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .debug_abbrev 0x00014d17 0x4e4 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .debug_abbrev 0x000151fb 0x21e esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .debug_abbrev 0x00015419 0x3bd esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .debug_abbrev 0x000157d6 0x47a esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .debug_abbrev 0x00015c50 0x24b esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_abbrev 0x00015e9b 0x14 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_abbrev 0x00015eaf 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x00015ed7 0x255 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_abbrev 0x0001612c 0x26 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_abbrev 0x00016152 0x1d1 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_abbrev 0x00016323 0x9b esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_abbrev 0x000163be 0x545 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_abbrev 0x00016903 0xbd esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_abbrev 0x000169c0 0xbe esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_abbrev 0x00016a7e 0x14d esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_abbrev 0x00016bcb 0xf1 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_abbrev 0x00016cbc 0x315 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_abbrev 0x00016fd1 0xbd esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0001708e 0x42f esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_abbrev 0x000174bd 0x501 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x000179be 0x23c esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_abbrev 0x00017bfa 0x3eb esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_abbrev 0x00017fe5 0x432 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_abbrev 0x00018417 0x2d1 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_abbrev 0x000186e8 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x0001874a 0x242 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_abbrev 0x0001898c 0x668 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x00018ff4 0x44d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x00019441 0x1c3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_abbrev 0x00019604 0x192 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_abbrev 0x00019796 0x2c9 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_abbrev 0x00019a5f 0x4f3 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_abbrev 0x00019f52 0x405 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_abbrev 0x0001a357 0x14 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_abbrev 0x0001a36b 0x1ac esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x0001a517 0x110 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_abbrev 0x0001a627 0xf3 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_abbrev 0x0001a71a 0x86 esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_abbrev 0x0001a7a0 0x9f esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_abbrev 0x0001a83f 0x10b esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_abbrev 0x0001a94a 0xca esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_abbrev 0x0001aa14 0x4b5 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_abbrev 0x0001aec9 0x267 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_abbrev 0x0001b130 0x13e esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_abbrev 0x0001b26e 0x14 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_abbrev 0x0001b282 0x14 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_abbrev 0x0001b296 0x43 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_abbrev 0x0001b2d9 0x14 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_abbrev 0x0001b2ed 0x14 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_abbrev 0x0001b301 0x2d4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x0001b5d5 0x2fd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x0001b8d2 0x463 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x0001bd35 0x272 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_abbrev 0x0001bfa7 0xde esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_abbrev 0x0001c085 0xa2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .debug_abbrev 0x0001c127 0x68 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + .debug_abbrev 0x0001c18f 0x3f2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .debug_abbrev 0x0001c581 0x181 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .debug_abbrev 0x0001c702 0x10b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_abbrev 0x0001c80d 0x15b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .debug_abbrev 0x0001c968 0x15d /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .debug_abbrev 0x0001cac5 0x1b7 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .debug_abbrev 0x0001cc7c 0x370 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .debug_abbrev 0x0001cfec 0x144 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .debug_abbrev 0x0001d130 0x397 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_abbrev 0x0001d4c7 0x94 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_abbrev 0x0001d55b 0x75 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_abbrev 0x0001d5d0 0x15d /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .debug_abbrev 0x0001d72d 0xf9 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_abbrev 0x0001d826 0x1a7 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + +.debug_line 0x00000000 0x8ef69 + *(.debug_line) + .debug_line 0x00000000 0x1f0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_line 0x000001f0 0x3e6 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_line 0x000005d6 0x1409 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_line 0x000019df 0x6d4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_line 0x000020b3 0x595 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_line 0x00002648 0x1424 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x00003a6c 0x116b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x00004bd7 0x1b6 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_line 0x00004d8d 0x37a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_line 0x00005107 0x5aa esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_line 0x000056b1 0x756 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_line 0x00005e07 0x635 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_line 0x0000643c 0x1714 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_line 0x00007b50 0x501 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_line 0x00008051 0xbf0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_line 0x00008c41 0x209 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_line 0x00008e4a 0x85 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .debug_line 0x00008ecf 0x195 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .debug_line 0x00009064 0xa8c esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_line 0x00009af0 0x7f0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_line 0x0000a2e0 0x378 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_line 0x0000a658 0x6fc esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_line 0x0000ad54 0xf67 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_line 0x0000bcbb 0x94b esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_line 0x0000c606 0x14a esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .debug_line 0x0000c750 0xaef esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_line 0x0000d23f 0x1042 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_line 0x0000e281 0xa6 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .debug_line 0x0000e327 0x9dc esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_line 0x0000ed03 0x9df esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_line 0x0000f6e2 0x28f esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_line 0x0000f971 0x360 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_line 0x0000fcd1 0x1f5 esp-idf/log/liblog.a(util.c.obj) + .debug_line 0x0000fec6 0x29d esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x00010163 0x248 esp-idf/log/liblog.a(log_write.c.obj) + .debug_line 0x000103ab 0x16e esp-idf/log/liblog.a(log_level.c.obj) + .debug_line 0x00010519 0x3fb esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_line 0x00010914 0x481 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_line 0x00010d95 0x668 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_line 0x000113fd 0x2fb esp-idf/log/liblog.a(log_lock.c.obj) + .debug_line 0x000116f8 0x208d esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x00013785 0x1189 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x0001490e 0x13d3 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x00015ce1 0x92f4 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_line 0x0001efd5 0x9bb esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_line 0x0001f990 0x16e esp-idf/heap/libheap.a(memory_layout.c.obj) + .debug_line 0x0001fafe 0xf1d esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_line 0x00020a1b 0x138 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_line 0x00020b53 0xa87 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_line 0x000215da 0x240 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_line 0x0002181a 0x796 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_line 0x00021fb0 0x316e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_line 0x0002511e 0xe4a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_line 0x00025f68 0x929 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_line 0x00026891 0x7de esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_line 0x0002706f 0x125 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_line 0x00027194 0x1b18 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_line 0x00028cac 0x94e esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_line 0x000295fa 0x3a47 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_line 0x0002d041 0x1604 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_line 0x0002e645 0x14a2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_line 0x0002fae7 0x3ce esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_line 0x0002feb5 0x9df esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_line 0x00030894 0x1bf esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_line 0x00030a53 0x8f4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_line 0x00031347 0x4f5f esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_line 0x000362a6 0x8a8 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_line 0x00036b4e 0x32d0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x00039e1e 0x89e2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x00042800 0x1601 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x00043e01 0x4c4 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x000442c5 0x159 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_line 0x0004441e 0x4a9 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_line 0x000448c7 0x37e esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_line 0x00044c45 0x336 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_line 0x00044f7b 0x566 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x000454e1 0x1cf esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_line 0x000456b0 0x304 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_line 0x000459b4 0x54f esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_line 0x00045f03 0x489 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_line 0x0004638c 0xc2c esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_line 0x00046fb8 0x1e1 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_line 0x00047199 0x1f9 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_line 0x00047392 0xdf5 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_line 0x00048187 0x78a esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_line 0x00048911 0x169 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_line 0x00048a7a 0x4b2 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_line 0x00048f2c 0x35d esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_line 0x00049289 0xa9 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_line 0x00049332 0x293b esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x0004bc6d 0xda7 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_line 0x0004ca14 0xa7a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x0004d48e 0xf96 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_line 0x0004e424 0x89b esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_line 0x0004ecbf 0xb1f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x0004f7de 0x1ac esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_line 0x0004f98a 0x386 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x0004fd10 0x9b7 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_line 0x000506c7 0x15c7 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_line 0x00051c8e 0xaa8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_line 0x00052736 0x89f esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_line 0x00052fd5 0x2ce esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_line 0x000532a3 0x1d2 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_line 0x00053475 0xd36 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x000541ab 0x4d9 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x00054684 0x135d esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x000559e1 0xe89 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x0005686a 0x46f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x00056cd9 0x4b7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x00057190 0x2617 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x000597a7 0x379 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x00059b20 0x3e5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_line 0x00059f05 0x57b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x0005a480 0xc70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_line 0x0005b0f0 0xcb7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x0005bda7 0xf5e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x0005cd05 0x3ee8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x00060bed 0x1b8 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .debug_line 0x00060da5 0xbf4 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .debug_line 0x00061999 0x3643 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .debug_line 0x00064fdc 0x56a esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .debug_line 0x00065546 0x1702 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .debug_line 0x00066c48 0x1b78 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .debug_line 0x000687c0 0x492 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_line 0x00068c52 0x34d esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .debug_line 0x00068f9f 0xc6 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .debug_line 0x00069065 0x55d esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_line 0x000695c2 0x963 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_line 0x00069f25 0x529 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_line 0x0006a44e 0x127 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_line 0x0006a575 0x3c60 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_line 0x0006e1d5 0x17d esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .debug_line 0x0006e352 0x14c esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_line 0x0006e49e 0x1f6 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_line 0x0006e694 0x31d esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_line 0x0006e9b1 0xcb9 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_line 0x0006f66a 0x13b esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .debug_line 0x0006f7a5 0x8b0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_line 0x00070055 0x1a96 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_line 0x00071aeb 0x46e esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_line 0x00071f59 0x14c7 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_line 0x00073420 0x2396 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_line 0x000757b6 0xc70 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_line 0x00076426 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000764ea 0xe5c esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_line 0x00077346 0x17d9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x00078b1f 0x1c3b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x0007a75a 0x1cf esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_line 0x0007a929 0x2c1 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_line 0x0007abea 0x707 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_line 0x0007b2f1 0x2e2e esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_line 0x0007e11f 0x9db esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_line 0x0007eafa 0xf4 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .debug_line 0x0007ebee 0x2da esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x0007eec8 0x256 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_line 0x0007f11e 0x23b esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_line 0x0007f359 0x8c esp-idf/soc/libsoc.a(interrupts.c.obj) + .debug_line 0x0007f3e5 0x123 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .debug_line 0x0007f508 0x188 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_line 0x0007f690 0x1aa esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_line 0x0007f83a 0x2090 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_line 0x000818ca 0x208b esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_line 0x00083955 0x25a esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_line 0x00083baf 0x2ef /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .debug_line 0x00083e9e 0x6a /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .debug_line 0x00083f08 0x50 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .debug_line 0x00083f58 0x66 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .debug_line 0x00083fbe 0x66 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .debug_line 0x00084024 0x10aa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x000850ce 0x993 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x00085a61 0x34e1 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x00088f42 0x6be esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_line 0x00089600 0x1be esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_line 0x000897be 0xa8 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .debug_line 0x00089866 0x3a /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + .debug_line 0x000898a0 0xc1c /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .debug_line 0x0008a4bc 0x183 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .debug_line 0x0008a63f 0xa5 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_line 0x0008a6e4 0xe7 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .debug_line 0x0008a7cb 0x105 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .debug_line 0x0008a8d0 0x231 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .debug_line 0x0008ab01 0x2367 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .debug_line 0x0008ce68 0xc1 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .debug_line 0x0008cf29 0x12e9 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_line 0x0008e212 0xd2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_line 0x0008e2e4 0x97 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_line 0x0008e37b 0x608 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .debug_line 0x0008e983 0x1d4 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_line 0x0008eb57 0x412 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + +.debug_frame 0x00000000 0xa1e0 + *(.debug_frame) + .debug_frame 0x00000000 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_frame 0x00000058 0x58 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_frame 0x000000b0 0x100 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_frame 0x000001b0 0x70 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_frame 0x00000220 0x88 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_frame 0x000002a8 0x1a8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x00000450 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x00000538 0x40 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_frame 0x00000578 0x58 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_frame 0x000005d0 0xa0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_frame 0x00000670 0xa0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_frame 0x00000710 0x1f0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_frame 0x00000900 0x118 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_frame 0x00000a18 0xa0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_frame 0x00000ab8 0xe8 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_frame 0x00000ba0 0x40 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_frame 0x00000be0 0x88 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_frame 0x00000c68 0x40 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_frame 0x00000ca8 0x58 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_frame 0x00000d00 0x58 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_frame 0x00000d58 0x190 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_frame 0x00000ee8 0xd0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_frame 0x00000fb8 0x148 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_frame 0x00001100 0xb8 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_frame 0x000011b8 0xa0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_frame 0x00001258 0x100 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_frame 0x00001358 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_frame 0x00001380 0x40 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_frame 0x000013c0 0x40 esp-idf/log/liblog.a(util.c.obj) + .debug_frame 0x00001400 0x40 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x00001440 0x58 esp-idf/log/liblog.a(log_write.c.obj) + .debug_frame 0x00001498 0x40 esp-idf/log/liblog.a(log_level.c.obj) + .debug_frame 0x000014d8 0x88 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_frame 0x00001560 0x88 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_frame 0x000015e8 0xb8 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_frame 0x000016a0 0x58 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_frame 0x000016f8 0x358 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x00001a50 0xd0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x00001b20 0x2b0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x00001dd0 0x250 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_frame 0x00002020 0x88 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_frame 0x000020a8 0xb8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_frame 0x00002160 0x40 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_frame 0x000021a0 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_frame 0x00002288 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_frame 0x000022f8 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_frame 0x000023f8 0x2c8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_frame 0x000026c0 0x1c0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_frame 0x00002880 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_frame 0x00002950 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_frame 0x000029d8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_frame 0x00002a18 0xb8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_frame 0x00002ad0 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_frame 0x00002b40 0x3a0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_frame 0x00002ee0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_frame 0x00002f38 0xe8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_frame 0x00003020 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_frame 0x00003048 0x160 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_frame 0x000031a8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_frame 0x000031d0 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_frame 0x000032a0 0x6b8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_frame 0x00003958 0x70 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_frame 0x000039c8 0x3a0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x00003d68 0x820 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x00004588 0x1c0 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x00004748 0x40 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_frame 0x00004788 0xb8 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_frame 0x00004840 0x40 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_frame 0x00004880 0x40 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_frame 0x000048c0 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x00004948 0x58 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_frame 0x000049a0 0x28 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_frame 0x000049c8 0x70 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_frame 0x00004a38 0x148 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_frame 0x00004b80 0x250 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_frame 0x00004dd0 0x58 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_frame 0x00004e28 0x40 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_frame 0x00004e68 0x148 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_frame 0x00004fb0 0x1f0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_frame 0x000051a0 0x58 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_frame 0x000051f8 0xa0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_frame 0x00005298 0x70 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_frame 0x00005308 0x28 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_frame 0x00005330 0x4a8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x000057d8 0x160 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_frame 0x00005938 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x00005a20 0x130 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_frame 0x00005b50 0xd0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_frame 0x00005c20 0xb8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x00005cd8 0x58 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_frame 0x00005d30 0xb8 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00005de8 0xd0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_frame 0x00005eb8 0x178 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_frame 0x00006030 0xb8 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_frame 0x000060e8 0x88 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_frame 0x00006170 0x28 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_frame 0x00006198 0x58 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_frame 0x000061f0 0x130 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x00006320 0xd0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x000063f0 0x100 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x000064f0 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x00006710 0x88 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x00006798 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_frame 0x000067c0 0x340 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x00006b00 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x00006b70 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_frame 0x00006bc8 0xa0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x00006c68 0x100 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_frame 0x00006d68 0x130 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x00006e98 0x130 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x00006fc8 0x2f8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x000072c0 0x40 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .debug_frame 0x00007300 0x148 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .debug_frame 0x00007448 0x2e0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .debug_frame 0x00007728 0xe8 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .debug_frame 0x00007810 0x160 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .debug_frame 0x00007970 0x1d8 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .debug_frame 0x00007b48 0x28 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_frame 0x00007b70 0x70 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_frame 0x00007be0 0x70 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_frame 0x00007c50 0x28 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_frame 0x00007c78 0x250 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_frame 0x00007ec8 0x40 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_frame 0x00007f08 0x58 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_frame 0x00007f60 0x28 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_frame 0x00007f88 0x58 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_frame 0x00007fe0 0xa0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_frame 0x00008080 0x1c0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x00008240 0xe8 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_frame 0x00008328 0x118 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_frame 0x00008440 0x250 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_frame 0x00008690 0x130 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_frame 0x000087c0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x000087e8 0xa0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_frame 0x00008888 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x00008a60 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x00008b90 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_frame 0x00008bd0 0x58 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_frame 0x00008c28 0xd0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_frame 0x00008cf8 0x268 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_frame 0x00008f60 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_frame 0x00009018 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x00009058 0x58 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_frame 0x000090b0 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_frame 0x000090d8 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_frame 0x00009100 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_frame 0x00009158 0x298 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_frame 0x000093f0 0x358 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_frame 0x00009748 0x28 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_frame 0x00009770 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x00009870 0x130 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x000099a0 0x388 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x00009d28 0xa0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_frame 0x00009dc8 0x28 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .debug_frame 0x00009df0 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .debug_frame 0x00009e18 0x100 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .debug_frame 0x00009f18 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .debug_frame 0x00009f40 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_frame 0x00009f68 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .debug_frame 0x00009f90 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .debug_frame 0x00009fb8 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .debug_frame 0x00009fe0 0x58 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .debug_frame 0x0000a038 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .debug_frame 0x0000a060 0x58 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_frame 0x0000a0b8 0x40 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_frame 0x0000a0f8 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_frame 0x0000a120 0x58 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .debug_frame 0x0000a178 0x40 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_frame 0x0000a1b8 0x28 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + +.debug_str 0x00000000 0x1f7ce + *(.debug_str) + .debug_str 0x00000000 0x1f7ce esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x31d (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x464 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x190f (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x53c (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0xbb8 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x103d (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0xee7 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + 0x2d8 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x928 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x58d (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x2a92 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x713 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x35aa (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x454 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0xcbc (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x939 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + 0x59 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + 0x4e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x3248 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x2113 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x9c9 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x2a74 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x330e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0xf2f (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + 0x58 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x620 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0xe26 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + 0x56 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0xe1e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0xb5e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + 0x932 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x374 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/log/liblog.a(util.c.obj) + 0x925 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x3af (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/log/liblog.a(log_write.c.obj) + 0x3ec (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/log/liblog.a(log_level.c.obj) + 0x2fd (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x46d (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x3e9 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x408 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0x98b (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x12bf (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xedd (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x9da (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x9fd (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0xc1b (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0xb9b (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x60b (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x273 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x549 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x296 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x105f (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x1340 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0xd13 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x1f43 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x1192 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + 0x2ce (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x1908 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x21a3 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x3d99 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x17fe (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x1d8b (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x17c6 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x18c9 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x327 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0xd36 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x599e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x64a (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xe21 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x22f2 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1302 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x59 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x27f (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x372 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x44d (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x333 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x37b (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x316 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x2ad (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x34f (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x3df (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0xf64 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + 0x387 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + 0x27e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0xd7d (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x5dc (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + 0x28f (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0xf0a (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x87a (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + 0x229 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x15de (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0xf8f (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0xc22 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x735 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x43c (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x1187 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + 0x3c0 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1825 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x1905 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0xd31 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0xbba (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0xa48 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x16aa (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x32a (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x7ee (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x5f5 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x2a46 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xd22 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0xe30 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0xb12 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x1c3b (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xcc4 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x13d2 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0xd71 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0xe1c (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x2101 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x7c6 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x2758 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + 0x2e0 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x11a9 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x21a0 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x544 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x1c4d (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x1398 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + 0x834 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + 0x3e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + 0x56 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x3b3 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + 0x56 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + 0x45e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + 0x264 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x13e0 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x37b (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x2da (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x2e9 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x2c0 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0xcef (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + 0x924 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x1dab (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x18a1 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x47c (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x2424 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x1e17 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x1107 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x262 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0xea3 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x25f3 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x1755 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x168e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x31b (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0xb87 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x13de (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x2bc4 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + 0x56 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x979 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x30f (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x29c (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x88d (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x8de (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x2e8 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x2ef (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + 0x12c9 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0xceb (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x2ff (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x82 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x50c (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0xcc9 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x248e (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x479 (size before relaxing) + .debug_str 0x0001f7ce 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x293 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + 0x1cd (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + 0x125 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x596 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + 0x293 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + 0x292 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + 0x258 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + 0x257 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + 0x2a0 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + 0x443 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + 0x258 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x497 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + 0x1c1 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + 0x1b4 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + 0x2c7 (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x21a (size before relaxing) + .debug_str 0x0001f7ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + 0x259 (size before relaxing) + +.debug_loc 0x00000000 0x3d2bc + *(.debug_loc) + .debug_loc 0x00000000 0x15 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_loc 0x00000015 0x484 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_loc 0x00000499 0x10c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_loc 0x000005a5 0x4d esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_loc 0x000005f2 0x720 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x00000d12 0x68e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x000013a0 0x13a esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_loc 0x000014da 0x84 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_loc 0x0000155e 0x37 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_loc 0x00001595 0x19d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_loc 0x00001732 0x4c6 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_loc 0x00001bf8 0x62 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_loc 0x00001c5a 0x2c0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_loc 0x00001f1a 0x15 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_loc 0x00001f2f 0x262 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_loc 0x00002191 0xf2 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_loc 0x00002283 0x4a esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_loc 0x000022cd 0xa7 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_loc 0x00002374 0x370 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_loc 0x000026e4 0x117 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_loc 0x000027fb 0x23e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_loc 0x00002a39 0x6c6 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_loc 0x000030ff 0x322 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_loc 0x00003421 0x433 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_loc 0x00003854 0x38 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_loc 0x0000388c 0x22 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_loc 0x000038ae 0x2a esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x000038d8 0x22 esp-idf/log/liblog.a(log_write.c.obj) + .debug_loc 0x000038fa 0x4e esp-idf/log/liblog.a(log_level.c.obj) + .debug_loc 0x00003948 0xae esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_loc 0x000039f6 0x1a7 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_loc 0x00003b9d 0x2d1 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_loc 0x00003e6e 0x125d esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x000050cb 0x821 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x000058ec 0x8df esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x000061cb 0xbf88 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_loc 0x00012153 0x3a1 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_loc 0x000124f4 0x859 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_loc 0x00012d4d 0x44 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_loc 0x00012d91 0x573 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_loc 0x00013304 0x176 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_loc 0x0001347a 0x179 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_loc 0x000135f3 0x1b04 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_loc 0x000150f7 0x83d esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_loc 0x00015934 0x2dd esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_loc 0x00015c11 0x28b esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_loc 0x00015e9c 0x5f1 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_loc 0x0001648d 0x116 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_loc 0x000165a3 0x133a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_loc 0x000178dd 0x152 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_loc 0x00017a2f 0x555 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_loc 0x00017f84 0x24 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_loc 0x00017fa8 0xca esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_loc 0x00018072 0x2b esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_loc 0x0001809d 0x279 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_loc 0x00018316 0x196c esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_loc 0x00019c82 0x44 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_loc 0x00019cc6 0x1f8a esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x0001bc50 0x37d3 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x0001f423 0x803 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x0001fc26 0x1d7 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_loc 0x0001fdfd 0xcc esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_loc 0x0001fec9 0x22 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_loc 0x0001feeb 0x8c esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x0001ff77 0x75 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_loc 0x0001ffec 0x22f esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_loc 0x0002021b 0x290 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_loc 0x000204ab 0x38a esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_loc 0x00020835 0x56 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_loc 0x0002088b 0x74 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_loc 0x000208ff 0x57c esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_loc 0x00020e7b 0x344 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_loc 0x000211bf 0x2b esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_loc 0x000211ea 0x94 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_loc 0x0002127e 0x156a esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x000227e8 0x53e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_loc 0x00022d26 0x569 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x0002328f 0x648 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_loc 0x000238d7 0x472 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_loc 0x00023d49 0x29f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x00023fe8 0x45 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x0002402d 0x2ef esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_loc 0x0002431c 0x1102 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_loc 0x0002541e 0x54b esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_loc 0x00025969 0x41f esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_loc 0x00025d88 0xa9 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_loc 0x00025e31 0x1f2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x00026023 0x18a esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x000261ad 0x5c6 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x00026773 0x772 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x00026ee5 0x12f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x00027014 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_loc 0x00027070 0x121d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x0002828d 0x1a5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x00028432 0x14c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_loc 0x0002857e 0x2dd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x0002885b 0x48f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_loc 0x00028cea 0x456 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x00029140 0x9b0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x00029af0 0x1676 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x0002b166 0x1dc esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .debug_loc 0x0002b342 0x163b esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .debug_loc 0x0002c97d 0xd8 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .debug_loc 0x0002ca55 0x602 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .debug_loc 0x0002d057 0xd27 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .debug_loc 0x0002dd7e 0x3d esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_loc 0x0002ddbb 0x177 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_loc 0x0002df32 0x2ae esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_loc 0x0002e1e0 0x2237 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_loc 0x00030417 0xb7 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_loc 0x000304ce 0x64f esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_loc 0x00030b1d 0x304 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_loc 0x00030e21 0x1058 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x00031e79 0x9a esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_loc 0x00031f13 0xbc0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_loc 0x00032ad3 0x12b0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_loc 0x00033d83 0x841 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_loc 0x000345c4 0x1d5 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_loc 0x00034799 0xca7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x00035440 0x793 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x00035bd3 0x16 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_loc 0x00035be9 0x11c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_loc 0x00035d05 0xe6f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_loc 0x00036b74 0x50a esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_loc 0x0003707e 0xd9 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x00037157 0xd0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_loc 0x00037227 0x23 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_loc 0x0003724a 0x9e esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_loc 0x000372e8 0x1892 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_loc 0x00038b7a 0x146f esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_loc 0x00039fe9 0xa9 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_loc 0x0003a092 0x1301 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x0003b393 0x2e4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x0003b677 0x17c0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x0003ce37 0x3fc esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_loc 0x0003d233 0x89 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + +.debug_macinfo + *(.debug_macinfo) + +.debug_pubtypes + *(.debug_pubtypes) + +.debug_ranges 0x00000000 0x44e8 + *(.debug_ranges) + .debug_ranges 0x00000000 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .debug_ranges 0x00000020 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .debug_ranges 0x00000040 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_ranges 0x00000098 0x28 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .debug_ranges 0x000000c0 0x30 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .debug_ranges 0x000000f0 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x00000198 0x128 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x000002c0 0x18 esp-idf/esp_security/libesp_security.a(init.c.obj) + .debug_ranges 0x000002d8 0x38 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .debug_ranges 0x00000310 0x38 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .debug_ranges 0x00000348 0x38 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .debug_ranges 0x00000380 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .debug_ranges 0x00000428 0x90 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .debug_ranges 0x000004b8 0x38 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .debug_ranges 0x000004f0 0x50 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .debug_ranges 0x00000540 0x18 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .debug_ranges 0x00000558 0x30 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .debug_ranges 0x00000588 0x18 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .debug_ranges 0x000005a0 0x20 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .debug_ranges 0x000005c0 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .debug_ranges 0x000005e0 0x88 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .debug_ranges 0x00000668 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .debug_ranges 0x000006b0 0x70 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .debug_ranges 0x00000720 0x88 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .debug_ranges 0x000007a8 0x38 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .debug_ranges 0x000007e0 0x70 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .debug_ranges 0x00000850 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .debug_ranges 0x00000860 0x18 esp-idf/log/liblog.a(log_timestamp.c.obj) + .debug_ranges 0x00000878 0x18 esp-idf/log/liblog.a(util.c.obj) + .debug_ranges 0x00000890 0x48 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x000008d8 0x20 esp-idf/log/liblog.a(log_write.c.obj) + .debug_ranges 0x000008f8 0x18 esp-idf/log/liblog.a(log_level.c.obj) + .debug_ranges 0x00000910 0x30 esp-idf/log/liblog.a(tag_log_level.c.obj) + .debug_ranges 0x00000940 0x30 esp-idf/log/liblog.a(log_linked_list.c.obj) + .debug_ranges 0x00000970 0x40 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .debug_ranges 0x000009b0 0x20 esp-idf/log/liblog.a(log_lock.c.obj) + .debug_ranges 0x000009d0 0x1f8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x00000bc8 0xd8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x00000ca0 0xe8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x00000d88 0x188 esp-idf/heap/libheap.a(tlsf.c.obj) + .debug_ranges 0x00000f10 0x58 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .debug_ranges 0x00000f68 0xe8 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .debug_ranges 0x00001050 0x18 esp-idf/soc/libsoc.a(dport_access.c.obj) + .debug_ranges 0x00001068 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .debug_ranges 0x000010d0 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .debug_ranges 0x000010f8 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .debug_ranges 0x00001168 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .debug_ranges 0x00001300 0x98 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .debug_ranges 0x00001398 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .debug_ranges 0x000013e0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .debug_ranges 0x00001410 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .debug_ranges 0x00001428 0xa0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .debug_ranges 0x000014c8 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .debug_ranges 0x00001508 0x1d8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .debug_ranges 0x000016e0 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .debug_ranges 0x00001700 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .debug_ranges 0x00001750 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .debug_ranges 0x00001760 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .debug_ranges 0x000017d8 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .debug_ranges 0x000017e8 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .debug_ranges 0x00001830 0x2b8 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .debug_ranges 0x00001ae8 0x28 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .debug_ranges 0x00001b10 0x1f8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x00001d08 0x408 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x00002110 0x128 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x00002238 0x18 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_ranges 0x00002250 0x40 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .debug_ranges 0x00002290 0x18 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .debug_ranges 0x000022a8 0x18 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .debug_ranges 0x000022c0 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x000022f0 0x20 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .debug_ranges 0x00002310 0x10 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .debug_ranges 0x00002320 0x40 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .debug_ranges 0x00002360 0x70 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .debug_ranges 0x000023d0 0xc8 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .debug_ranges 0x00002498 0x20 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .debug_ranges 0x000024b8 0x18 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .debug_ranges 0x000024d0 0x70 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .debug_ranges 0x00002540 0xc0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .debug_ranges 0x00002600 0x20 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .debug_ranges 0x00002620 0x38 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .debug_ranges 0x00002658 0x28 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .debug_ranges 0x00002680 0x10 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .debug_ranges 0x00002690 0x1e0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x00002870 0x78 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .debug_ranges 0x000028e8 0x70 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x00002958 0x68 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .debug_ranges 0x000029c0 0x48 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .debug_ranges 0x00002a08 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x00002a48 0x20 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .debug_ranges 0x00002a68 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00002aa8 0x48 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .debug_ranges 0x00002af0 0x98 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .debug_ranges 0x00002b88 0x40 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .debug_ranges 0x00002bc8 0x30 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .debug_ranges 0x00002bf8 0x10 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .debug_ranges 0x00002c08 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .debug_ranges 0x00002c28 0x68 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x00002c90 0x60 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x00002cf0 0x98 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x00002d88 0xb8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x00002e40 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x00002e70 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_ranges 0x00002e80 0x118 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x00002f98 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x00002fc0 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .debug_ranges 0x00002fe0 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00003018 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .debug_ranges 0x00003070 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x000030d8 0xc8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x000031a0 0x160 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x00003300 0x18 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .debug_ranges 0x00003318 0x70 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .debug_ranges 0x00003388 0x140 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .debug_ranges 0x000034c8 0x50 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .debug_ranges 0x00003518 0x78 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .debug_ranges 0x00003590 0xa0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .debug_ranges 0x00003630 0x10 esp-idf/main/libmain.a(hello_world_main.c.obj) + .debug_ranges 0x00003640 0x28 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .debug_ranges 0x00003668 0x70 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .debug_ranges 0x000036d8 0x28 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .debug_ranges 0x00003700 0x10 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .debug_ranges 0x00003710 0x128 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .debug_ranges 0x00003838 0x18 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .debug_ranges 0x00003850 0x20 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .debug_ranges 0x00003870 0x10 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .debug_ranges 0x00003880 0x20 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .debug_ranges 0x000038a0 0x38 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .debug_ranges 0x000038d8 0xb0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x00003988 0x50 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .debug_ranges 0x000039d8 0x60 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .debug_ranges 0x00003a38 0x108 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .debug_ranges 0x00003b40 0x80 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .debug_ranges 0x00003bc0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x00003bd0 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .debug_ranges 0x00003c20 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x00003cc0 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x00003d28 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .debug_ranges 0x00003d40 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .debug_ranges 0x00003d60 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .debug_ranges 0x00003da8 0xd0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .debug_ranges 0x00003e78 0x58 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .debug_ranges 0x00003ed0 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x00003ee8 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .debug_ranges 0x00003f08 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .debug_ranges 0x00003f18 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .debug_ranges 0x00003f28 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .debug_ranges 0x00003f48 0x128 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .debug_ranges 0x00004070 0x120 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .debug_ranges 0x00004190 0x58 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .debug_ranges 0x000041e8 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x00004240 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x000042a8 0x1f8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x000044a0 0x38 esp-idf/hal/libhal.a(sha_hal.c.obj) + .debug_ranges 0x000044d8 0x10 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + +.debug_weaknames + *(.debug_weaknames) + +.debug_funcnames + *(.debug_funcnames) + +.debug_typenames + *(.debug_typenames) + +.debug_varnames + *(.debug_varnames) + +.debug_gnu_pubnames + *(.debug_gnu_pubnames) + +.debug_gnu_pubtypes + *(.debug_gnu_pubtypes) + +.debug_types + *(.debug_types) + +.debug_addr + *(.debug_addr) + +.debug_line_str + 0x00000000 0x7ce + *(.debug_line_str) + .debug_line_str + 0x00000000 0x7ce /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + 0x18c (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + 0x152 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x303 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + 0x248 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + 0x246 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + 0x2a5 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + 0x2a2 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + 0x242 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + 0x2ea (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + 0x2a5 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x24e (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + 0x1f3 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + 0x1fc (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + 0x24a (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x1f9 (size before relaxing) + .debug_line_str + 0x000007ce 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + 0x259 (size before relaxing) + +.debug_loclists + 0x00000000 0x28db + *(.debug_loclists) + .debug_loclists + 0x00000000 0x29 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .debug_loclists + 0x00000029 0x4f6 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .debug_loclists + 0x0000051f 0x54 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .debug_loclists + 0x00000573 0x34 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .debug_loclists + 0x000005a7 0x34 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .debug_loclists + 0x000005db 0xa0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .debug_loclists + 0x0000067b 0xcfe /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .debug_loclists + 0x00001379 0x29 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .debug_loclists + 0x000013a2 0xade /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_loclists + 0x00001e80 0x46 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_loclists + 0x00001ec6 0x29 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_loclists + 0x00001eef 0x5cb /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .debug_loclists + 0x000024ba 0x196 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_loclists + 0x00002650 0x28b /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + +.debug_macro + *(.debug_macro) + +.debug_names + *(.debug_names) + +.debug_rnglists + 0x00000000 0x36b + *(.debug_rnglists) + .debug_rnglists + 0x00000000 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .debug_rnglists + 0x00000013 0x61 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .debug_rnglists + 0x00000074 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .debug_rnglists + 0x00000087 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .debug_rnglists + 0x0000009a 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .debug_rnglists + 0x000000ad 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .debug_rnglists + 0x000000c0 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .debug_rnglists + 0x000000d3 0xf6 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .debug_rnglists + 0x000001c9 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .debug_rnglists + 0x000001dc 0x106 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .debug_rnglists + 0x000002e2 0x19 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .debug_rnglists + 0x000002fb 0x13 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .debug_rnglists + 0x0000030e 0x21 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .debug_rnglists + 0x0000032f 0x19 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .debug_rnglists + 0x00000348 0x23 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + +.debug_str_offsets + *(.debug_str_offsets) + +.comment 0x00000000 0x6f + *(.comment) + .comment 0x00000000 0x6f esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(util.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_write.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_level.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + 0x41 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + 0x30 (size before relaxing) + .comment 0x0000006f 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + 0x30 (size before relaxing) + +.note.GNU-stack + *(.note.GNU-stack) + +.xtensa.info 0x00000000 0x38 + *(.xtensa.info) + .xtensa.info 0x00000000 0x38 CMakeFiles/hello_world.elf.dir/project_elf_src_esp32.c.obj + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_security/libesp_security.a(init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_timestamp.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(util.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_write.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_level.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(tag_log_level.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_linked_list.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_binary_heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/log/liblog.a(log_lock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/heap/libheap.a(heap_caps_base.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(app_startup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(port_systick.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(time.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(random.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(brownout_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/main/libmain.a(hello_world_main.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(interrupts.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(mpu_hal.c.obj) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/hal/libhal.a(sha_hal.c.obj) + .xtensa.info 0x00000038 0x0 esp-idf/soc/libsoc.a(dport_access_common.c.obj) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + .xtensa.info 0x00000038 0x0 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + +.xt.prop + *(.xt.prop .xt.prop.* .gnu.linkonce.prop.*) + +.xt.lit + *(.xt.lit .xt.lit.* .gnu.linkonce.p.*) + +/DISCARD/ + *(.fini) + *(.eh_frame_hdr) + *(.eh_frame) + 0x00000001 ASSERT (((_iram_end - ORIGIN (iram0_0_seg)) <= LENGTH (iram0_0_seg)), IRAM0 segment data does not fit.) + 0x00000001 ASSERT (((_heap_low_start - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) +OUTPUT(hello_world.elf elf32-xtensa-le) + +Cross Reference Table + +Symbol File +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Read_Disable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +Cache_Read_Enable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +DEBUG_HELPER_TAG esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +EFUSE esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_CPU_FREQ_RATED esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_PACKAGE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_PACKAGE_4BIT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_REV2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_DISABLE_SDIO_HOST esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_VERSION 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_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_RD_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_HD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ABS_DONE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC1_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_HIGH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC2_TP_LOW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_ADC_VREF esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLK3_PART_RESERVE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_BLOCK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_BLOCK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +ESP_EFUSE_WR_DIS_CLK8M_FREQ esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CODING_SCHEME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CONSOLE_DEBUG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_CUSTOM_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_DIS_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_JTAG_DISABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_KEY_STATUS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_MAC_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_CS0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_D esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_SPI_PAD_CONFIG_Q esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_UART_DOWNLOAD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_VOL_LEVEL_HP_INV esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_WR_DIS_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_REG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_XPD_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) +GPIO esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +GPIO_HOLD_MASK esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +GPIO_PIN_MUX_REG_OFFSET esp-idf/soc/libsoc.a(gpio_periph.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +RTCCNTL esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +RTCIO esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +SENS esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +SPI0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) +SPI1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +SPI2 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) +SPI3 esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) +TIMERG0 esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +TIMERG1 esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +UART0 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +UART1 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) +UART2 esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) +Xthal_intlevel /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(interrupts--intlevel.o) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_DebugExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_DoubleExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_KernelExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level2Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level3Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level4Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_Level5Vector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_NMIExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_UserExceptionVector esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowOverflow8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow12 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow4 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_WindowUnderflow8 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +__adddf3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__ashldi3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashldi3.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) +__ashrdi3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_ashrdi3.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) +__assert esp-idf/esp_libc/libesp_libc.a(assert.c.obj) +__assert_func esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.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(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +__atomic_add_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_compare_exchange esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_compare_exchange_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_exchange_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_fetch_add_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_fetch_and_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_fetch_nand_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_fetch_or_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_fetch_sub_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_fetch_xor_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_load esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_load_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) +__atomic_nand_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_or_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_store esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_store_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_sub_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__atomic_xor_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__bothinit_array_end /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) +__bothinit_array_start /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) +__bswapdi2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapdi2.o) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +__bswapsi2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/hal/libhal.a(sha_hal.c.obj) +__bufio_buffer_allocate_locked /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) +__bufio_close /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_fill_locked /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) +__bufio_flush /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_flush_locked /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) +__bufio_get /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_put /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_seek /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__bufio_setdir_locked /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) +__bufio_setvbuf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +__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/cxx/libcxx.a(cxx_init.cpp.obj) +__cxx_init_dummy esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) +__d_vfprintf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) +__divdf3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__divdi3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divdi3.o) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +__divsf3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_divsf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__double_computeInvPow5 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) +__double_computePow5 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) +__dso_handle esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) +__dtoa_engine /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) +__dtox_engine /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtox_engine.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) +__errno esp-idf/esp_libc/libesp_libc.a(errno.c.obj) +__esp_idf_pthread_rwlock_lazy_allocation esp-idf/cxx/libcxx.a(cxx_init.cpp.obj) +__extendsfdf2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_extendsfdf2.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__file_str_put /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_filestrput.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) +__fixdfsi /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__fixunsdfsi /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_fixunsdfsi.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatsidf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__floatunsidf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_floatsidf.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__flockfile_init /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) +__itoa /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) +__libc_init_array /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_misc_init.c.o) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +__lock___arc4random_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___at_quick_exit_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___atexit_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___dd_hash_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___env_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___libc_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) +__lock___malloc_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___sfp_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___sinit_recursive_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__lock___tz_mutex esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__log10Pow2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) +__log10Pow5 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_log10.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) +__lshrdi3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_lshrdi3.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) +__moddi3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_moddi3.o) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +__muldf3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_muldf3.o) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +__popcountsi2 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_popcountsi2.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5Factor /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) +__pow5bits /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_pow5bits.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) +__retarget_lock_acquire esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_acquire_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) +__retarget_lock_close esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_close_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_init esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_init_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) +__retarget_lock_release esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_release_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_flockfile_init.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) +__retarget_lock_try_acquire esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__retarget_lock_try_acquire_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +__shiftright128 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) +__subdf3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_addsubdf3.o) +__sync_add_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_and_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_bool_compare_and_swap_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_add_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_and_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_nand_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_or_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_sub_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_fetch_and_xor_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_lock_release_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_lock_test_and_set_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_nand_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_or_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_sub_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_val_compare_and_swap_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__sync_xor_and_fetch_8 esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) +__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 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_udivdi3.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +__umoddi3 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/lib/gcc/xtensa-esp-elf/15.2.0/esp32/no-rtti/libgcc.a(_umoddi3.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +__umul128 /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_umul128.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_ryu_table.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_dtoa_ryu.c.o) +__utoa /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.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) +_close_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_coredump_dram_end esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +_coredump_dram_start esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +_coredump_iram_end esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +_coredump_iram_start esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +_coredump_rtc_end esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +_coredump_rtc_fast_end esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +_coredump_rtc_fast_start esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +_coredump_rtc_start esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_esp_error_check_failed esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +_esp_error_check_failed_without_abort esp-idf/esp_system/libesp_system.a(esp_err.c.obj) +_esp_system_init_fn_array_end esp-idf/esp_system/libesp_system.a(startup.c.obj) +_esp_system_init_fn_array_start esp-idf/esp_system/libesp_system.a(startup.c.obj) +_exit esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_fcntl_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_flash_rodata_align esp-idf/freertos/libfreertos.a(port.c.obj) +_flash_rodata_start esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_coproc_exc_hook esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_dispatch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_frxt_setup_switch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_frxt_task_coproc_state esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_frxt_tick_timer_init esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_frxt_timer_int esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_fstat_r esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_getpid_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_gettimeofday_r esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_heap_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_instruction_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_instruction_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_invalid_pc_placeholder esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_isatty_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +_kill_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +_link_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_lock_acquire esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +_lock_acquire_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +_lock_close esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_close_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_init esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_init_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_release esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +_lock_release_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +_lock_try_acquire esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lock_try_acquire_recursive esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +_lseek_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_open_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +_raise_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +_read_r esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_read_r_console esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +_rename_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_rodata_reserved_end esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +_rodata_reserved_start esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + 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_fast_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_fast_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_reserved_length esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rtc_slow_length esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +_rtc_slow_reserved_end esp-idf/heap/libheap.a(memory_layout.c.obj) +_rtc_slow_reserved_start esp-idf/heap/libheap.a(memory_layout.c.obj) +_sbrk_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +_stat_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_strerror_r /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) +_system_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_thread_local_end esp-idf/freertos/libfreertos.a(port.c.obj) +_thread_local_start esp-idf/freertos/libfreertos.a(port.c.obj) +_times_r esp-idf/esp_libc/libesp_libc.a(time.c.obj) +_unlink_r esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_user_strerror /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) +_vector_table esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +_write_r esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +_write_r_console esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +_xt_alloca_exc esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_context_restore esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_context_save esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +_xt_coproc_init esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_owner_sa esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_owner_sa_lock esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_release esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_restorecs esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_coproc_sa_offset esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +_xt_coproc_savecs esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_exception_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_xt_interrupt_table esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +_xt_medint2_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_medint3_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_panic esp-idf/esp_system/libesp_system.a(panic_handler_asm.S.obj) + esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +_xt_tick_divisor esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_tick_divisor_init esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +_xt_user_exit esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xtos_set_intlevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +abort esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +adc_reset_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +adc_reset_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +adjtime esp-idf/esp_libc/libesp_libc.a(time.c.obj) +aligned_alloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +app_elf_sha256_str esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +app_main esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +block_absorb_post_hook esp-idf/heap/libheap.a(tlsf.c.obj) +bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +bootloader_common_check_chip_revision_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_common_check_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/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_chip_ver_pkg esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_read_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +bootloader_common_vddsdio_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_get_spi_mode esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_get_wp_pin esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +bootloader_flash_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_is_octal_mode_enabled esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_unlock_default esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_flash_update_size esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +bootloader_init_spi_flash esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha512_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +bootloader_sha512_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +bootloader_sha512_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +brownout_hal_config esp-idf/hal/libhal.a(brownout_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +bzero /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +cache_flash_mmu_set_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +cache_hal_get_cache_line_size esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +cache_hal_init esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +cache_hal_invalidate_addr esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +cache_hal_is_cache_enabled esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +cache_hal_resume esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) +cache_hal_suspend esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) +cache_hal_vaddr_to_cache_level_id esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +cache_register_writeback esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) +cache_sync esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +call_start_cpu0 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +call_start_cpu1 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +calloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +cfree esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +clk_hal_apb_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_apll_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_clock_output_setup esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_clock_output_teardown esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_cpu_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clk_hal_lp_slow_get_freq_hz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) +clk_hal_soc_root_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) +clk_hal_xtal_get_freq_mhz esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +clock_getres esp-idf/esp_libc/libesp_libc.a(time.c.obj) +clock_gettime esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/esp_libc/libesp_libc.a(time.c.obj) +close esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +creat esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +div /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_div.c.o) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) +do_multicore_settings esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +efuse_hal_blk_version esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_flash_encryption_enabled esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +efuse_hal_get_chip_ver_pkg esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_disable_blk_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_disable_wafer_version_major esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_get_rated_freq_mhz esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse.c.obj) +efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) +efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +environ /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_environ.c.o) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +errno esp-idf/esp_libc/libesp_libc.a(errno.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/esp_libc/libesp_libc.a(random.c.obj) + esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) +esp_app_desc esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_app_get_description esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_app_get_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +esp_backtrace_get_next_frame esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) +esp_backtrace_get_start esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_backtrace_print esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_backtrace_print_all_tasks esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_backtrace_print_from_frame esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_brownout_disable esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +esp_brownout_init esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_brownout_register_callback esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +esp_cache_err_get_cpuid esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_cache_err_get_panic_info esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +esp_cache_err_int_init esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_cache_get_alignment esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) +esp_cache_get_line_size_by_addr esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_cache_msync esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) +esp_cache_resume_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_cache_suspend_ext_mem_cache esp-idf/esp_mm/libesp_mm.a(esp_cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_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-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_cpu_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_clk_private_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_private_unlock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_rtc_time esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_clk_slowclk_cal_get esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_slowclk_cal_set esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +esp_clk_tree_enable_power esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_enable_src esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_initialize esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_clk_tree_is_power_on esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_lp_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_lp_slow_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_rc_fast_d256_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_rc_fast_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_src_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_tree_xtal32k_get_freq_hz esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) +esp_clk_utils_mspi_speed_mode_sync_after_cpu_freq_switching esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_clk_utils_mspi_speed_mode_sync_before_cpu_freq_switching esp-idf/esp_hw_support/libesp_hw_support.a(clk_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_clk_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +esp_core_dump_check_stack esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) +esp_core_dump_check_task esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_checksum_finish esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_core_dump_checksum_init esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_core_dump_checksum_size esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_core_dump_checksum_update esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_core_dump_elf_version esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_get_arch_id esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_get_extra_info esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_get_isr_stack_end esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_get_isr_stack_top esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_get_panic_reason esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_get_stack esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_get_summary esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_get_task_regs_dump esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_get_task_snapshot esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_get_user_ram_info esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_get_user_ram_segments esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_image_check esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_core_dump_image_erase esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_core_dump_image_get esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_core_dump_in_isr_context esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_init esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) +esp_core_dump_mem_seg_is_sane esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_partition_and_size_get esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_port_init esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_port_set_crashed_tcb esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_port_write esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_print_checksum esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_core_dump_print_write_end esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_print_write_start esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_reset_fake_stacks esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_reset_tasks_snapshots_iter esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_setup_stack esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_summary_parse_backtrace_info esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_summary_parse_exc_regs esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_summary_parse_extra_info esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_tcb_addr_is_sane esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) +esp_core_dump_write esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_core_dump_write_data esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_write_elf esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_write_elf_and_check esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_core_dump_write_end esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_write_init esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_write_prepare esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_core_dump_write_start esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_cpu_clear_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_cpu_compare_and_set esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) +esp_cpu_intr_get_desc esp-idf/esp_hw_support/libesp_hw_support.a(esp_cpu_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) +esp_cpu_set_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_crosscore_int_send_freq_switch esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_gdb_call esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +esp_crosscore_int_send_print_backtrace esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_twdt_abort esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_crosscore_int_send_yield esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +esp_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_deregister_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_disable_rom_logging esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_register_hook esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_try esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_try_to_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deep_sleep_wakeup_io_reset esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_default_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_deregister_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_deregister_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_deregister_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_deregister_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_dport_access_read_buffer esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) +esp_dport_access_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/hal/libhal.a(cache_hal_esp32.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.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(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_dport_access_sequence_reg_read esp-idf/soc/libsoc.a(dport_access.c.obj) + esp-idf/soc/libsoc.a(dport_access_common.c.obj) + esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/hal/libhal.a(mmu_hal.c.obj) +esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +esp_efuse_destroy_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_disable_basic_rom_console esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.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_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_startup_include_func esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +esp_efuse_utility_apply_34_encoding esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_burn_chip_opt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_pending esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_debug_dump_single_block esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) +esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +esp_fill_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_libc/libesp_libc.a(random.c.obj) +esp_flash_app_disable_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_app_disable_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.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_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_flash_chip_boya esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_driver_initialized esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_chip_gd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_generic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_issi esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_mxic esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_mxic_opi esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_th esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_chip_winbond esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) +esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +esp_flash_deinit_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_encryption_cfg_verify_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_flash_encryption_init_checks esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_flash_erase_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_erase_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_flash_get_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_physical_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protectable_regions esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/main/libmain.a(hello_world_main.c.obj) +esp_flash_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_init_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_flash_init_main esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_init_main_bus_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_flash_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_noos_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_flash_read_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_flash_read_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_unique_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_registered_chips esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_dangerous_write_protection esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_flash_set_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_set_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_suspend_cmd_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_deep_sleep_wake_stub esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) +esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_free_internal_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_idf_version esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/main/libmain.a(hello_world_main.c.obj) +esp_gpio_is_reserved esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +esp_gpio_reserve esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_gpio_revoke esp-idf/esp_hw_support/libesp_hw_support.a(esp_gpio_reserve.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +esp_heap_adjust_alignment_to_hw esp-idf/esp_mm/libesp_mm.a(heap_align_hw.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +esp_image_bootloader_offset_get esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_bootloader_offset_set esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +esp_int_wdt_cpu_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_int_wdt_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_intr_alloc esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_alloc_bind esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_alloc_intrstatus_bind esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_disable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) +esp_intr_dump esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) +esp_intr_free esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_get_cpu esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) +esp_intr_get_intno esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_mark_shared esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_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_ptr_in_isr_region esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_reserve esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_intr_set_in_iram esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_ipc_call esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +esp_ipc_call_blocking esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_ipc_call_nonblocking esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_ipc_func esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_func_arg esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_call esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_call_blocking esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_end_fl esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_handler esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +esp_ipc_isr_init esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +esp_ipc_isr_port_init esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_port_int_trigger esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_ipc_isr_release_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.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(cpu_start.c.obj) +esp_ipc_isr_stall_abort esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_ipc_isr_stall_other_cpu esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp_mm/libesp_mm.a(cache_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.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(cpu_start.c.obj) +esp_ipc_isr_stall_pause esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_ipc_isr_stall_resume esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_ipc_isr_start_fl esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_handler.S.obj) +esp_ipc_isr_waiting_for_finish_cmd esp-idf/esp_system/libesp_system.a(esp_ipc_isr_routines.S.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) +esp_isr_names esp-idf/soc/libsoc.a(interrupts.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +esp_libc_include_assert_impl esp-idf/esp_libc/libesp_libc.a(assert.c.obj) +esp_libc_include_getentropy_impl esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) +esp_libc_include_heap_impl esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +esp_libc_include_init_funcs esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_libc_include_pthread_impl esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) +esp_libc_include_reent_syscalls_impl esp-idf/esp_libc/libesp_libc.a(reent_syscalls.c.obj) +esp_libc_include_syscalls_impl esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +esp_libc_init esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(init.c.obj) +esp_libc_init_funcs esp-idf/esp_libc/libesp_libc.a(init.c.obj) +esp_libc_init_global_stdio esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/esp_libc/libesp_libc.a(init.c.obj) +esp_libc_locks_init esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_libc_time_init esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_light_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_log esp-idf/log/liblog.a(log.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_log_cache_add esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_cache_clean esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_cache_get_level esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_cache_set_level esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_default_level esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_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(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_log_early_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +esp_log_impl_lock esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_impl_lock_timeout esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_impl_unlock esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_is_tag_loggable esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_level_get esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_level_get_timeout esp-idf/log/liblog.a(tag_log_level.c.obj) + esp-idf/log/liblog.a(log_level.c.obj) +esp_log_level_set esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_linked_list_clean esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_linked_list_get_level esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_linked_list_set_level esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_set_default_level esp-idf/log/liblog.a(log_level.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +esp_log_set_vprintf esp-idf/log/liblog.a(log_write.c.obj) +esp_log_timestamp esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_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(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_log_util_is_constrained esp-idf/log/liblog.a(util.c.obj) +esp_log_util_set_cache_enabled_cb esp-idf/log/liblog.a(util.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_log_va esp-idf/log/liblog.a(log.c.obj) + esp-idf/log/liblog.a(log_write.c.obj) +esp_log_vprint_func esp-idf/log/liblog.a(log_write.c.obj) + esp-idf/log/liblog.a(log.c.obj) +esp_log_write esp-idf/log/liblog.a(log_write.c.obj) +esp_log_writev esp-idf/log/liblog.a(log_write.c.obj) +esp_mmu_map esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_dump_mapped_blocks esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_dump_mapped_blocks_private esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_mmu_map_get_max_consecutive_free_block_size esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_map_init esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_mmu_map_reserve_block_with_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +esp_mmu_paddr_find_caps esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_paddr_to_vaddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_unmap esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mmu_vaddr_to_paddr esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_mspi_32bit_address_flash_feature_check esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_mspi_get_io esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_mspi_pin_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_mspi_pin_reserve esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_newlib_init esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_newlib_locks_init esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +esp_newlib_time_init esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_ota_abort esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_app_partition_count esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_bootloader_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_invalidate_inactive_ota_data_slot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_invalid_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_invalid_rollback_and_reboot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_mark_app_valid_cancel_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_resume esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_set_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_set_final_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_write esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_write_with_offset esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_panic_handler esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_disable_timg_wdts esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_enable_rtc_wdt esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_feed_wdts esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_panic_handler_increment_entry_count esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_panic_handler_reset_modules_on_exit_and_halt esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_partition_check_identity esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_copy esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_deregister_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_erase_range esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_partition_find esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_find_err esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_find_first esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_partition_find_first_err esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_get esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_get_blockdev esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_get_main_flash_sector_size esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_get_sha256 esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_is_flash_region_writable esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_iterator_release esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_partition_mmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_partition_munmap esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_partition_next esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_ptr_get_blockdev esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_read esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_partition_read_raw esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) +esp_partition_register_external esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_partition_unload_all esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_verify esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_verify_err esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_partition_write esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_partition_write_raw esp-idf/esp_partition/libesp_partition.a(partition_target.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_register_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_register_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_unregister_inform_out_light_sleep_overhead_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pm_unregister_light_sleep_default_params_config_callback esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +esp_pthread_get_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_get_default_config esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_init esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_pthread_set_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_ptr_byte_accessible esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +esp_ptr_dma_ext_capable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) +esp_ptr_executable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_ptr_external_ram esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) +esp_random esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) +esp_reent_cleanup esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_register_freertos_idle_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_idle_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_register_freertos_tick_hook esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +esp_restart esp-idf/esp_system/libesp_system.a(esp_system.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) +esp_restart_noos esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +esp_restart_noos_dig esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +esp_rom_delay_us esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + 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/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_rom_efuse_get_flash_gpio_info esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_rom_get_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_gpio_connect_in_signal esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_rom_gpio_connect_out_signal esp-idf/esp_rom/libesp_rom.a(esp_rom_gpio.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_rom_gpio_pad_pullup_only esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_rom_gpio_pad_select_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_install_channel_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_install_uart_printf esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +esp_rom_output_flush_tx esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +esp_rom_output_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_output_rx_one_char esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +esp_rom_output_set_as_console esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_output_to_channels esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +esp_rom_output_tx_one_char esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) +esp_rom_output_tx_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_serial_output.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_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(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_startup.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_rom_regi2c_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_read_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_regi2c_write_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +esp_rom_route_intr_matrix esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr_port.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_rom_set_cpu_ticks_per_us esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_rom_software_reset_cpu esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +esp_rom_software_reset_system esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +esp_rom_spiflash_clear_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_readmode esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_area esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_block esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_erase_sector esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_lock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_prepare_encrypted_data esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_statushigh esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_read_user_cmd esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_set_bp esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_unlock esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_wait_idle esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +esp_rom_spiflash_write esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_disable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_encrypted_enable esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rom_spiflash_write_status esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +esp_rtc_get_time_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_rtc_init esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +esp_security_init_include_impl esp-idf/esp_security/libesp_security.a(init.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/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_setup_newlib_syscalls esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +esp_sha_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_lock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_lock_memory_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_read_digest_state esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_set_mode esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_try_lock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_unlock_engine esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +esp_sha_unlock_memory_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sleep_acquire_lp_use_xtal esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_config_gpio_isolate esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_disable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wakeup_source esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_disable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_adc_tsens_monitor esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_bt_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext0_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext1_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ext1_wakeup_io esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_gpio_switch esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +esp_sleep_enable_gpio_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_lowpower_analog_mode esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_timer_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_touchpad_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_uart_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_ulp_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_wifi_beacon_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_enable_wifi_wakeup esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_execute_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(sleep_event.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_ext1_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_touchpad_wakeup_status esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_wakeup_cause esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_get_wakeup_causes esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_gpio_pupd_config_workaround_apply esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_gpio_pupd_config_workaround_unapply esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_is_valid_wakeup_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_isolate_digital_gpio esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_overhead_out_time_refresh esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_pd_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_periph_use_8m esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_release_lp_use_xtal esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_sleep_sub_mode_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_sleep_sub_mode_dump_config esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_sleep_sub_mode_force_disable esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +esp_startup_start_app esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_startup_start_app_other_cores esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +esp_sync_timekeeping_timers esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_system_abort esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +esp_system_console_put_char esp-idf/esp_stdio/libesp_stdio.a(stdio_simple.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.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/esp_libc/libesp_libc.a(esp_time_impl.c.obj) +esp_system_get_time_resolution esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_system_include_coredump_init esp-idf/espcoredump/libespcoredump.a(core_dump_init.c.obj) +esp_system_include_startup_funcs esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +esp_system_reset_modules_on_exit esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +esp_task_wdt_add esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_add_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_deinit esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_delete esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_delete_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timeout_triggered esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_allocate esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_feed esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_free esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_restart esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_impl_timer_stop esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_init esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +esp_task_wdt_isr_user_handler esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_print_triggered_tasks esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +esp_task_wdt_reconfigure esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_reset_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_restart esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_status esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_task_wdt_stop esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +esp_time_impl_get_boot_time esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_time_impl_get_time esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_time_impl_get_time_since_boot esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_time_impl_set_boot_time esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) +esp_timer_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_init_system_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_impl_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_set_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_set_alarm_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_impl_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) +esp_timer_init_include_func esp-idf/esp_timer/libesp_timer.a(esp_timer_init.c.obj) +esp_timer_private_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_private_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +esp_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(port_systick.c.obj) +esp_wake_deep_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +ets_get_detected_xtal_freq esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +ets_install_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_install_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +ets_isr_mask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_isr_unmask esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +ets_set_appcpu_boot_addr esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +ets_update_cpu_frequency_rom esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +fcntl esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +fflush /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fflush.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) +flash_init_state esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +fprintf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +fputs /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputs.c.o) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +free esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.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/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +fstat esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) +fstatvfs esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +fsync esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) +fwrite /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +g_exc_frames esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +g_flash_guard_default_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +g_flash_guard_no_os_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) +g_mmu_mem_regions esp-idf/esp_mm/libesp_mm.a(ext_mem_layout.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +g_panic_abort esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +g_panic_abort_details esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +g_rom_flashchip esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/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(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) +g_rom_spiflash_chip esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) +g_rom_spiflash_dummy_len_plus esp-idf/esp_rom/libesp_rom.a(esp_rom_spiflash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +g_spi_lock_main_flash_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +g_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_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) +g_ticks_per_us_app esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) +g_ticks_per_us_pro esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +g_twdt_isr esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +get_temp_buffer_not_supported esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) +getentropy esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) +getpid esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +getrandom esp-idf/esp_libc/libesp_libc.a(random.c.obj) + esp-idf/esp_libc/libesp_libc.a(getentropy.c.obj) +gettimeofday esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) +gpio_config esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_config_as_analog esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_deep_sleep_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_deep_sleep_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_dump_io_configuration esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_func_sel esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_get_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_get_io_config esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_get_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_intr_disable esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_intr_enable_on_core esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_iomux_in esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_iomux_out esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_isolate_in_sleep esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) +gpio_hal_matrix_in esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hal_matrix_out esp-idf/esp_hal_gpio/libesp_hal_gpio.a(gpio_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_input_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_install_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_intr_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_intr_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_iomux_input esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_iomux_output esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_isr_handler_add esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_isr_handler_remove esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_isr_register esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_matrix_input esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_matrix_output esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_od_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_od_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_output_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_output_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_pulldown_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_pulldown_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_pullup_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_pullup_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_reset_pin esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_intr_type esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_sleep_sel_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_sel_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_sleep_set_pull_mode esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +gpio_uninstall_isr_service esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +gpio_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +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) +heap_caps_aligned_alloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_alloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +heap_caps_calloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_add_region_allowed esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +heap_caps_free esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_containing_block_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +heap_caps_malloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_malloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_libc/libesp_libc.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_monitor_local_minimum_free_size_start esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_monitor_local_minimum_free_size_stop esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_print_heap_info esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc_base esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_realloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +heap_caps_realloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_register_failed_alloc_callback esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_walk esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_walk_all esp-idf/heap/libheap.a(heap_caps.c.obj) +int_wdt_cpu1_ticked esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +isatty esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +itoa /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_itoa.c.o) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) +ld_include_highint_hdl esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +link esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +lseek esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +mallinfo esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +malloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) +malloc_stats esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +malloc_trim esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +malloc_usable_size esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +mallopt esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_internal_sha512_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +mbedtls_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) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_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) + esp-idf/espcoredump/libespcoredump.a(core_dump_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) + esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) +mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_sha.c.obj) +mbedtls_sha512_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) +mbedtls_sha512_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha512_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha512_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha512_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha512_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +memalign esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +memcmp /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_memcmp.c.o) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +memcpy /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memcpy.S.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fwrite.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(hw_random.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) + esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) +memset /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_memset.S.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_bzero.c.o) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha512.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/esp_stdio/libesp_stdio.a(stdio_syscalls_simple.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.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_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_libc/libesp_libc.a(heap.c.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(log_write.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +memspi_host_erase_block esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_chip esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_erase_sector esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_flush_cache esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_init_pointers esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +memspi_host_program_page esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_id_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_read_status_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_set_write_protect esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +memspi_host_write_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_check_valid_ext_vaddr_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_ctx_init esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_paddr_to_vaddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) +mmu_hal_unmap_all esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +mmu_hal_unmap_region esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_hal_vaddr_to_paddr esp-idf/hal/libhal.a(mmu_hal.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +mmu_init esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +modem_domain_pd_allowed esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +mpu_hal_set_region_access esp-idf/hal/libhal.a(mpu_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(cpu_region_protect.c.obj) +multi_heap_aligned_alloc esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_impl_offs esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_aligned_alloc_offs esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_aligned_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_check esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_dump esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_find_containing_block esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_find_containing_block_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_free esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_free_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_allocated_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_allocated_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_first_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_full_block_size esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_info esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_info_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_next_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_is_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_malloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_malloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_minimum_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_minimum_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_realloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) +multi_heap_realloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_register esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_register_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_reset_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_restore_minimum_free_bytes esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_set_lock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_walk esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +offset_cpsa esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +offset_pxEndOfStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +offset_xCoreID esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +open esp-idf/esp_libc/libesp_libc.a(syscalls.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_chip.c.obj) +panic_arch_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_clear_active_interrupts esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +panic_get_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_get_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_prepare_frame_from_ctx esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +panic_print_backtrace esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_print_char esp-idf/esp_system/libesp_system.a(panic.c.obj) +panic_print_dec esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +panic_print_hex esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +panic_print_registers esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_print_str esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_restart esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +panic_set_address esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_soc_check_pseudo_cause esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +panic_soc_fill_info esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +pcTaskGetName esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +periph_inform_out_light_sleep_overhead esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +periph_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) +periph_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +periph_module_reset esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32.c.obj) +periph_rcc_acquire_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +periph_rcc_acquire_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +periph_rcc_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +periph_rcc_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +periph_rcc_release_enter esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +periph_rcc_release_exit esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +port_IntStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_interruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_start_app_hook esp-idf/freertos/libfreertos.a(app_startup.c.obj) +port_switch_flag esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_uxCriticalNesting esp-idf/freertos/libfreertos.a(port.c.obj) +port_uxOldInterruptState esp-idf/freertos/libfreertos.a(port.c.obj) +port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +posix_memalign esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +printf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +prvReleaseKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) +prvTakeKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) +prvTaskPriorityRaise esp-idf/freertos/libfreertos.a(tasks.c.obj) +prvTaskPriorityRestore esp-idf/freertos/libfreertos.a(tasks.c.obj) +pthread_attr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cancel esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cond_broadcast esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_signal esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_cond_timedwait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_cond_wait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_condattr_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_getclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_getpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setclock esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_condattr_setpshared esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_getschedparam esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_cond_var_impl esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_include_pthread_impl esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_local_storage_impl esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pthread_include_pthread_rwlock_impl esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_include_pthread_semaphore_impl esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +pthread_internal_local_storage_destructor_callback esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_join esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_create esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pthread_lazy_init_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_rwlock_destroy esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_init esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_rdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_timedrdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_timedwrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_tryrdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_trywrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_unlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_rwlock_wrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) +pthread_self esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setcancelstate esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) +pthread_setschedparam esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setschedprio esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_sigmask esp-idf/esp_libc/libesp_libc.a(pthread.c.obj) +putc /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) +putc_unlocked /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fputc.c.o) +puts /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +pvPortMalloc esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvTaskGetCurrentTCBForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) +pvTaskGetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pvTaskIncrementMutexHeldCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +pvalloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +pxCurrentTCBs esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +pxPortInitialiseStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +qsort /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_search_qsort.c.o) + esp-idf/heap/libheap.a(memory_layout_utils.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) +read esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +realloc esp-idf/esp_libc/libesp_libc.a(heap.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/hal/libhal.a(clk_tree_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_ctrl_write_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +regi2c_enter_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_exit_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_saradc_disable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +regi2c_saradc_enable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) +registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps_base.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +rename esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +rom_flash_chip_dummy esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +rom_flash_chip_dummy_hpm esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +rom_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_32k_disable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_calc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_coeff_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_apll_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_set_xtal_for_sleep esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_cpu_set_to_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk_tree_common.c.obj) +rtc_clk_freq_to_period esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) +rtc_clk_get_lact_compensation_delay esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) +rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) +rtc_gpio_deinit esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_force_hold_dis_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_force_hold_en_all esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_get_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_get_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_hold_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_hold_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_init esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_iomux_func_sel esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_is_valid_gpio esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_gpio_isolate esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_pulldown_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_pulldown_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_pullup_dis esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_pullup_en esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_set_direction esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_set_direction_in_sleep esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_set_drive_capability esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_set_level esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtc_gpio_wakeup_disable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_gpio_wakeup_enable esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) +rtc_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +rtc_io_desc esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +rtc_io_num_map esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_periph.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_gpio.c.obj) +rtc_io_number_get esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_isr_deregister esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +rtc_isr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +rtc_isr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +rtc_isr_register esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +rtc_sleep_enable_ultra_low esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_get_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_low_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_sleep_pd 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_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +rtc_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) +rtc_time_slowclk_to_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_time_us_to_slowclk esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_vddsdio_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtc_vddsdio_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +rtcio_hal_isolate esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtcio_hal_set_direction esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +rtcio_hal_set_direction_in_sleep esp-idf/esp_hal_gpio/libesp_hal_gpio.a(rtc_io_hal.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_microseconds_offset esp-idf/esp_libc/libesp_libc.a(esp_time_impl.c.obj) +s_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) +s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +sar_periph_ctrl_adc_continuous_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_continuous_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_oneshot_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_oneshot_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_adc_reset esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_init esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) +sar_periph_ctrl_power_disable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sar_periph_ctrl_power_enable esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sar_periph_ctrl_pwdet_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sar_periph_ctrl_pwdet_power_release esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) +sched_get_priority_max esp-idf/pthread/libpthread.a(pthread.c.obj) +sched_get_priority_min esp-idf/pthread/libpthread.a(pthread.c.obj) +sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) +sem_destroy esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_getvalue esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_init esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_post esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_timedwait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_trywait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +sem_wait esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +set_rtc_memory_crc esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +settimeofday esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/esp_libc/libesp_libc.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_read_digest esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_set_mode esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sha_hal_wait_idle esp-idf/hal/libhal.a(sha_hal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +sleep esp-idf/esp_libc/libesp_libc.a(time.c.obj) +sleep_modem_configure esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +sleep_modem_reject_triggers esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +sleep_modem_wifi_modem_state_skip_light_sleep esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modem.c.obj) +snprintf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) +soc_get_available_memory_region_max_count esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_get_available_memory_regions esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_region_count esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_regions esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_type_count esp-idf/heap/libheap.a(memory_layout.c.obj) +soc_memory_types esp-idf/heap/libheap.a(memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_reserved_memory_region_end esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +soc_reserved_memory_region_start esp-idf/heap/libheap.a(memory_layout_utils.c.obj) +spi_bus_add_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_deinit_lock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_init_lock esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_acquire_end esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_bus_lock_acquire_start esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_bus_lock_bg_check_dev_acq esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_check_dev_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_clear_req esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_entry esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_exit esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_req_exist esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_bg_request esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_get_acquiring_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_get_by_id esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_get_dev_id esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_register_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_set_bg_control esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_lock_touch esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_bus_lock_unregister_dev esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_bus_lock_wait_bg_done esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +spi_bus_remove_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_brownout_need_reset esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(brownout.c.obj) +spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(esp_err.c.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +spi_flash_check_and_flush_cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_chip_gd_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_gd_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_read_unique_id_none esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_issi_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_issi_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_list_check esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_chip_mxic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_mxic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) +spi_flash_chip_winbond_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_winbond_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_chip_winbond_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_chip_winbond_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) +spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_disable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) +spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_mmu_map.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_enable_interrupts_caches_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_encryption_hal_check esp-idf/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_encrypt_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_guard_get esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_guard_set esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_hal_check_status esp-idf/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_enter_dpd_mode esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_erase_block esp-idf/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_exit_dpd_mode esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) +spi_flash_hal_init esp-idf/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_setup_read_suspend esp-idf/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.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/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_hal_suspend esp-idf/esp_hal_mspi/libesp_hal_mspi.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +spi_flash_init_chip_state esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) +spi_flash_init_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +spi_flash_mmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +spi_flash_mmap_dump esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_mmap_get_free_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) +spi_flash_mmap_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_munmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition_target.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +spi_flash_needs_reset_check esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +spi_flash_op_block_func esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_restore_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +spi_flash_set_erasing_flag esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +spi_flash_set_rom_required_regs esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_periph_signal esp-idf/esp_hal_gpspi/libesp_hal_gpspi.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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) +start_write_addr esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +startup_resume_other_cores esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) + esp-idf/esp_system/libesp_system.a(startup.c.obj) +stat esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +statvfs esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +stderr esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +stdin esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) +stdout esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_puts.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_bufio.c.o) + esp-idf/main/libmain.a(hello_world_main.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) +strcat /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcat.c.o) + esp-idf/esp_libc/libesp_libc.a(abort.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +strcmp /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcmp.S.o) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/log/liblog.a(log_binary_heap.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/log/liblog.a(tag_log_level.c.obj) +strcpy /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strcpy.S.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) +strcspn /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strcspn.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strerror /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) +strerror_l /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror.c.o) +strerror_r /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcat /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + esp-idf/esp_system/libesp_system.a(ubsan.c.obj) +strlcpy /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcpy.c.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +strlen /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strlen.S.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strlcat.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strerror_r.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/esp_libc/libesp_libc.a(assert.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log_linked_list.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +strncpy /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_machine_xtensa_strncpy.S.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp_partition/libesp_partition.a(partition.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +strnlen /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strnlen.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) +strstr /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_string_strstr.c.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +syscall_table_ptr_app esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +syscall_table_ptr_pro esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +system esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +task_wdt_timeout_abort esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) +timestamp_id esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +tls_stderr esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +tls_stdin esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +tls_stdout esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +tlsf_add_pool esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_alloc_overhead esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_block_size esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_check esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_check_hook esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_check_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_create esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_create_with_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_destroy esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_find_containing_block esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_fit_size esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_free esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_get_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_malloc esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_malloc_addr esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_memalign esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_memalign_offs esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_pool_overhead esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_realloc esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_remove_pool esp-idf/heap/libheap.a(tlsf.c.obj) +tlsf_size esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +tlsf_walk_pool esp-idf/heap/libheap.a(tlsf.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) +touch_hal_config_controller esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) +touch_hal_prepare_deep_sleep esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) +touch_hal_save_sleep_config esp-idf/esp_hal_touch_sens/libesp_hal_touch_sens.a(touch_sens_hal.c.obj) +uart_hal_read_rxfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) +uart_hal_rxfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) +uart_hal_tx_break esp-idf/hal/libhal.a(uart_hal_iram.c.obj) +uart_hal_txfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) +uart_hal_write_txfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) +ulTaskGenericNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) +unlink esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) +usleep esp-idf/esp_libc/libesp_libc.a(time.c.obj) +utoa /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_stdlib_utoa.c.o) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxQueueMessagesWaiting esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) +uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +uxTaskGetSnapshotAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +uxTaskGetStackHighWaterMark esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetStackHighWaterMark2 esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTopUsedPriority esp-idf/freertos/libfreertos.a(tasks.c.obj) +vApplicationGetIdleTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vApplicationGetTimerTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) +vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +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) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +vPortExitCriticalCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +vPortFree esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) +vPortSetupTimer esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +vPortTCBPreDeleteHook esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortYield esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vPortYieldFromInt esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +vQueueDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) +vSemaphoreDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +vStreamBufferDelete esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vStreamBufferGenericDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/main/libmain.a(hello_world_main.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +vTaskDelete esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +vTaskDeleteWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskGenericNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.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) +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/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +vTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskResume esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointerAndDelCallback esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +vTaskSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +vTaskStartScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +vTaskSuspend esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskSuspendAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system.c.obj) +vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +valloc esp-idf/esp_libc/libesp_libc.a(heap.c.obj) +vfprintf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vfprintf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_snprintf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_printf.c.o) + /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_fprintf.c.o) +vprintf /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf/bin/../xtensa-esp-elf/../picolibc/xtensa-esp-elf/lib/esp32/no-rtti/libc.a(libc_tinystdio_vprintf.c.o) + esp-idf/log/liblog.a(log_write.c.obj) +wdt_hal_config_stage esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_deinit esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) +wdt_hal_disable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +wdt_hal_enable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) +wdt_hal_feed esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) +wdt_hal_handle_intr esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) +wdt_hal_init esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +wdt_hal_is_enabled esp-idf/esp_hal_wdt/libesp_hal_wdt.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/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) +wdt_hal_write_protect_disable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +wdt_hal_write_protect_enable esp-idf/esp_hal_wdt/libesp_hal_wdt.a(wdt_hal_iram.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt_impl_timergroup.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_system/libesp_system.a(panic.c.obj) + esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(clk.c.obj) + esp-idf/esp_system/libesp_system.a(startup_funcs.c.obj) +wifi_bt_common_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +wifi_bt_common_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) +write esp-idf/esp_libc/libesp_libc.a(syscalls.c.obj) + esp-idf/esp_libc/libesp_libc.a(picolibc_init.c.obj) +xPortCheckValidListMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortCheckValidTCBMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xPortEnterCriticalTimeout esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(rtc_io.c.obj) + esp-idf/esp_driver_gpio/libesp_driver_gpio.a(gpio.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_common.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +xPortEnterCriticalTimeoutCompliance esp-idf/freertos/libfreertos.a(port.c.obj) +xPortGetFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +xPortGetMinimumEverFreeHeapSize esp-idf/freertos/libfreertos.a(heap_idf.c.obj) +xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) +xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_libc/libesp_libc.a(stdatomic.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_mm/libesp_mm.a(esp_cache_msync.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sleep_modes.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(sar_periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/log/liblog.a(util.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc_isr.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) + esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) +xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port_systick.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +xPortcheckValidStackMem esp-idf/freertos/libfreertos.a(heap_idf.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) +xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) +xQueueCreateMutexStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +xQueueGenericCreateStatic esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueGenericGetStaticBuffers esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xQueueGenericReset esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericSend esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGetMutexHolder esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +xQueueGetMutexHolderFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeek esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeekFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceive esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueReceiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +xQueueRemoveFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSelectFromSetFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueSemaphoreTake esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/pthread/libpthread.a(pthread_semaphore.c.obj) + esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) +xSemaphoreCreateGenericWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(spi_bus_lock.c.obj) +xStreamBufferBytesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferGenericCreate esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferGenericCreateStatic esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferGenericCreateWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferGetStaticBuffers esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xStreamBufferIsEmpty esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferIsFull esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferNextMessageLengthBytes esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceive esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceiveCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReceiveFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferReset esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSend esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSendCompletedFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSendFromISR esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSetTriggerLevel esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xStreamBufferSpacesAvailable esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskAbortDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCatchUpTicks esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(app_startup.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xTaskCreatePinnedToCoreWithCaps esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskGenericNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) +xTaskGenericNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetCoreID esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(stream_buffer.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +xTaskGetCurrentTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_common.c.obj) +xTaskGetHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandleForCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) +xTaskGetNext esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/espcoredump/libespcoredump.a(core_dump_elf.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/esp_libc/libesp_libc.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/log/liblog.a(log_lock.c.obj) + esp-idf/log/liblog.a(util.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) + esp-idf/esp_system/libesp_system.a(esp_ipc.c.obj) +xTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetStaticBuffers esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(idf_additions.c.obj) +xTaskGetTickCount esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_libc/libesp_libc.a(time.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +xTaskGetTickCountFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log_timestamp.c.obj) +xTaskIncrementTick esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +xTaskIncrementTickOtherCores esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port_systick.c.obj) +xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskResumeAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers.c.obj) +xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(tasks.c.obj) +xt_clock_freq esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) +xt_debugexception esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_highint4 esp-idf/esp_system/libesp_system.a(highint_hdl.S.obj) +xt_highint5 esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_int_has_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_ints_off esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) + esp-idf/esp_system/libesp_system.a(system_internal.c.obj) + esp-idf/esp_system/libesp_system.a(esp_system_chip.c.obj) +xt_ints_on esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_nmi esp-idf/xtensa/libxtensa.a(xtensa_vectors.S.obj) +xt_set_exception_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) +xt_set_interrupt_handler esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xt_unhandled_exception esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) + esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) +xt_unhandled_interrupt esp-idf/xtensa/libxtensa.a(xtensa_intr.c.obj) + esp-idf/xtensa/libxtensa.a(xtensa_intr_asm.S.obj) +xthal_restore_extra_nw /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--restore_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_save_extra_nw /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(state_asm--save_extra_nw.o) + esp-idf/xtensa/libxtensa.a(xtensa_context.S.obj) +xthal_set_intclear /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(int_asm--set_intclear.o) + esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) +xthal_spill_registers_into_stack_nw /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) +xthal_window_spill /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_system/libesp_system.a(debug_helpers_asm.S.obj) +xthal_window_spill_nw /Users/fuhanxi/esp/esp-idf/components/xtensa/esp32/libxt_hal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/build/partition_table/partition-table.bin b/tests/fixtures/hello_world_esp32_coredump_flash/build/partition_table/partition-table.bin new file mode 100644 index 00000000..04feee04 Binary files /dev/null and b/tests/fixtures/hello_world_esp32_coredump_flash/build/partition_table/partition-table.bin differ diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/main/CMakeLists.txt b/tests/fixtures/hello_world_esp32_coredump_flash/main/CMakeLists.txt new file mode 100644 index 00000000..2d35451d --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_flash/main/CMakeLists.txt @@ -0,0 +1,5 @@ +idf_component_register(SRCS "hello_world_main.c" + INCLUDE_DIRS "" + REQUIRES spi_flash espcoredump) + +target_compile_options(${COMPONENT_LIB} PRIVATE -w) diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/main/hello_world_main.c b/tests/fixtures/hello_world_esp32_coredump_flash/main/hello_world_main.c new file mode 100644 index 00000000..041c491d --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_flash/main/hello_world_main.c @@ -0,0 +1,46 @@ +/* + * SPDX-FileCopyrightText: 2010-2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include "sdkconfig.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_chip_info.h" +#include "esp_flash.h" + +void app_main(void) +{ + printf("Hello world!\n"); + *((int*) 0) = 0; + /* Print chip information */ + esp_chip_info_t chip_info; + uint32_t flash_size; + esp_chip_info(&chip_info); + printf("This is %s chip with %d CPU core(s), WiFi%s%s, ", + CONFIG_IDF_TARGET, + chip_info.cores, + (chip_info.features & CHIP_FEATURE_BT) ? "/BT" : "", + (chip_info.features & CHIP_FEATURE_BLE) ? "/BLE" : ""); + + printf("silicon revision %d, ", chip_info.revision); + if(esp_flash_get_size(NULL, &flash_size) != ESP_OK) { + printf("Get flash size failed"); + return; + } + + printf("%uMB %s flash\n", flash_size / (1024 * 1024), + (chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external"); + + printf("Minimum free heap size: %d bytes\n", esp_get_minimum_free_heap_size()); + + for (int i = 10; i >= 0; i--) { + printf("Restarting in %d seconds...\n", i); + vTaskDelay(1000 / portTICK_PERIOD_MS); + } + printf("Restarting now.\n"); + fflush(stdout); + esp_restart(); +} diff --git a/tests/fixtures/hello_world_esp32_coredump_flash/sdkconfig.defaults b/tests/fixtures/hello_world_esp32_coredump_flash/sdkconfig.defaults new file mode 100644 index 00000000..799ea2cb --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_flash/sdkconfig.defaults @@ -0,0 +1,7 @@ + # This file was generated using idf.py save-defconfig. It can be edited manually. + # Espressif IoT Development Framework (ESP-IDF) 6.1.0 Project Minimal Configuration + # + # default: +CONFIG_IDF_TARGET="esp32" +CONFIG_ESP_COREDUMP_ENABLE_TO_FLASH=y +CONFIG_APP_REPRODUCIBLE_BUILD=y diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/CMakeLists.txt b/tests/fixtures/hello_world_esp32_coredump_uart/CMakeLists.txt new file mode 100644 index 00000000..3a8afc30 --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_uart/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.16) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +idf_build_set_property(MINIMAL_BUILD ON) +project(hello_world) diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/build/bootloader/bootloader.bin b/tests/fixtures/hello_world_esp32_coredump_uart/build/bootloader/bootloader.bin new file mode 100644 index 00000000..314f798c Binary files /dev/null and b/tests/fixtures/hello_world_esp32_coredump_uart/build/bootloader/bootloader.bin differ diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/build/config/sdkconfig.json b/tests/fixtures/hello_world_esp32_coredump_uart/build/config/sdkconfig.json new file mode 100644 index 00000000..d4e83ca3 --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_uart/build/config/sdkconfig.json @@ -0,0 +1,791 @@ +{ + "APP_BUILD_BOOTLOADER": true, + "APP_BUILD_GENERATE_BINARIES": true, + "APP_BUILD_TYPE_APP_2NDBOOT": true, + "APP_BUILD_TYPE_RAM": false, + "APP_BUILD_USE_FLASH_SECTIONS": true, + "APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false, + "APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false, + "APP_EXCLUDE_PROJECT_NAME_VAR": false, + "APP_EXCLUDE_PROJECT_VER_VAR": false, + "APP_NO_BLOBS": false, + "APP_PROJECT_VER_FROM_CONFIG": false, + "APP_REPRODUCIBLE_BUILD": true, + "APP_RETRIEVE_LEN_ELF_SHA": 9, + "BOOTLOADER_APP_ROLLBACK_ENABLE": false, + "BOOTLOADER_APP_TEST": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, + "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_CPU_CLK_FREQ_MHZ": 80, + "BOOTLOADER_CUSTOM_RESERVE_RTC": false, + "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_DC_AWARE": false, + "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "BOOTLOADER_LOG_COLORS": false, + "BOOTLOADER_LOG_LEVEL": 3, + "BOOTLOADER_LOG_LEVEL_DEBUG": false, + "BOOTLOADER_LOG_LEVEL_ERROR": false, + "BOOTLOADER_LOG_LEVEL_INFO": true, + "BOOTLOADER_LOG_LEVEL_NONE": false, + "BOOTLOADER_LOG_LEVEL_VERBOSE": false, + "BOOTLOADER_LOG_LEVEL_WARN": false, + "BOOTLOADER_LOG_MODE_TEXT": true, + "BOOTLOADER_LOG_MODE_TEXT_EN": true, + "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, + "BOOTLOADER_LOG_VERSION": 1, + "BOOTLOADER_LOG_VERSION_1": true, + "BOOTLOADER_OFFSET_IN_FLASH": 4096, + "BOOTLOADER_PROJECT_VER": 1, + "BOOTLOADER_REGION_PROTECTION_ENABLE": true, + "BOOTLOADER_RESERVE_RTC_SIZE": 0, + "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, + "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, + "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, + "BOOTLOADER_VDDSDIO_BOOST_1_8V": false, + "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, + "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, + "BOOTLOADER_WDT_ENABLE": true, + "BOOTLOADER_WDT_TIME_MS": 9000, + "COMPILER_ASSERT_NDEBUG_EVALUATE": false, + "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE": true, + "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": false, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_WARNINGS": false, + "COMPILER_DISABLE_GCC15_WARNINGS": false, + "COMPILER_DUMP_RTL_FILES": false, + "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, + "COMPILER_HIDE_PATHS_MACROS": true, + "COMPILER_NO_MERGE_CONSTANTS": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, + "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, + "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, + "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, + "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, + "COMPILER_OPTIMIZATION_DEBUG": true, + "COMPILER_OPTIMIZATION_NONE": false, + "COMPILER_OPTIMIZATION_PERF": false, + "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_ORPHAN_SECTIONS_ERROR": true, + "COMPILER_ORPHAN_SECTIONS_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": false, + "COMPILER_RT_LIB_GCCLIB": true, + "COMPILER_RT_LIB_NAME": "gcc", + "COMPILER_STACK_CHECK_MODE_ALL": false, + "COMPILER_STACK_CHECK_MODE_NONE": true, + "COMPILER_STACK_CHECK_MODE_NORM": false, + "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_STATIC_ANALYZER": false, + "COMPILER_WARN_WRITE_STRINGS": false, + "EFUSE_CODE_SCHEME_COMPAT_3_4": true, + "EFUSE_CODE_SCHEME_COMPAT_NONE": false, + "EFUSE_CODE_SCHEME_COMPAT_REPEAT": false, + "EFUSE_CUSTOM_TABLE": false, + "EFUSE_MAX_BLK_LEN": 192, + "EFUSE_VIRTUAL": false, + "ESP32_DISABLE_BASIC_ROM_CONSOLE": false, + "ESP32_REV_MAX_FULL": 399, + "ESP32_REV_MIN": 0, + "ESP32_REV_MIN_0": true, + "ESP32_REV_MIN_1": false, + "ESP32_REV_MIN_1_1": false, + "ESP32_REV_MIN_2": false, + "ESP32_REV_MIN_3": false, + "ESP32_REV_MIN_3_1": false, + "ESP32_REV_MIN_FULL": 0, + "ESP32_TRACEMEM_RESERVE_DRAM": 0, + "ESP32_TRAX": false, + "ESP32_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false, + "ESP32_USE_FIXED_STATIC_RAM_SIZE": false, + "ESPTOOLPY_AFTER": "hard-reset", + "ESPTOOLPY_AFTER_NORESET": false, + "ESPTOOLPY_AFTER_RESET": true, + "ESPTOOLPY_BEFORE": "default-reset", + "ESPTOOLPY_BEFORE_NORESET": false, + "ESPTOOLPY_BEFORE_RESET": true, + "ESPTOOLPY_FLASHFREQ": "40m", + "ESPTOOLPY_FLASHFREQ_20M": false, + "ESPTOOLPY_FLASHFREQ_26M": false, + "ESPTOOLPY_FLASHFREQ_40M": true, + "ESPTOOLPY_FLASHFREQ_80M": false, + "ESPTOOLPY_FLASHMODE": "dio", + "ESPTOOLPY_FLASHMODE_DIO": true, + "ESPTOOLPY_FLASHMODE_DOUT": false, + "ESPTOOLPY_FLASHMODE_QIO": false, + "ESPTOOLPY_FLASHMODE_QOUT": false, + "ESPTOOLPY_FLASHSIZE": "2MB", + "ESPTOOLPY_FLASHSIZE_128MB": false, + "ESPTOOLPY_FLASHSIZE_16MB": false, + "ESPTOOLPY_FLASHSIZE_1MB": false, + "ESPTOOLPY_FLASHSIZE_2MB": true, + "ESPTOOLPY_FLASHSIZE_32MB": false, + "ESPTOOLPY_FLASHSIZE_4MB": false, + "ESPTOOLPY_FLASHSIZE_64MB": false, + "ESPTOOLPY_FLASHSIZE_8MB": false, + "ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true, + "ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false, + "ESPTOOLPY_MONITOR_BAUD": 115200, + "ESPTOOLPY_NO_STUB": false, + "ESP_BROWNOUT_DET": true, + "ESP_BROWNOUT_DET_LVL": 0, + "ESP_BROWNOUT_DET_LVL_SEL_0": true, + "ESP_BROWNOUT_DET_LVL_SEL_1": false, + "ESP_BROWNOUT_DET_LVL_SEL_2": false, + "ESP_BROWNOUT_DET_LVL_SEL_3": false, + "ESP_BROWNOUT_DET_LVL_SEL_4": false, + "ESP_BROWNOUT_DET_LVL_SEL_5": false, + "ESP_BROWNOUT_DET_LVL_SEL_6": false, + "ESP_BROWNOUT_DET_LVL_SEL_7": false, + "ESP_BROWNOUT_USE_INTR": true, + "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, + "ESP_CONSOLE_UART": true, + "ESP_CONSOLE_UART_BAUDRATE": 115200, + "ESP_CONSOLE_UART_CUSTOM": false, + "ESP_CONSOLE_UART_DEFAULT": true, + "ESP_CONSOLE_UART_NUM": 0, + "ESP_COREDUMP_CAPTURE_DRAM": false, + "ESP_COREDUMP_DECODE": "info", + "ESP_COREDUMP_DECODE_DISABLE": false, + "ESP_COREDUMP_DECODE_INFO": true, + "ESP_COREDUMP_ENABLE": true, + "ESP_COREDUMP_ENABLE_TO_FLASH": false, + "ESP_COREDUMP_ENABLE_TO_NONE": false, + "ESP_COREDUMP_ENABLE_TO_UART": true, + "ESP_COREDUMP_LOGS": true, + "ESP_COREDUMP_MAX_TASKS_NUM": 64, + "ESP_COREDUMP_STACK_SIZE": 0, + "ESP_COREDUMP_UART_DELAY": 0, + "ESP_DEBUG_OCDAWARE": true, + "ESP_DEBUG_STUBS_ENABLE": false, + "ESP_DEFAULT_CPU_FREQ_MHZ": 160, + "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, + "ESP_DEFAULT_CPU_FREQ_MHZ_240": false, + "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_EFUSE_BLOCK_REV_MAX_FULL": 99, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, + "ESP_ERR_TO_NAME_LOOKUP": true, + "ESP_INTR_IN_IRAM": true, + "ESP_INT_WDT": true, + "ESP_INT_WDT_CHECK_CPU1": true, + "ESP_INT_WDT_TIMEOUT_MS": 300, + "ESP_IPC_ENABLE": true, + "ESP_IPC_ISR_ENABLE": true, + "ESP_IPC_TASK_STACK_SIZE": 1024, + "ESP_IPC_USES_CALLERS_PRIORITY": true, + "ESP_MAC_ADDR_UNIVERSE_BT": true, + "ESP_MAC_ADDR_UNIVERSE_ETH": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, + "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAC_IGNORE_MAC_CRC_ERROR": false, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, + "ESP_MAIN_TASK_AFFINITY": 0, + "ESP_MAIN_TASK_AFFINITY_CPU0": true, + "ESP_MAIN_TASK_AFFINITY_CPU1": false, + "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, + "ESP_MAIN_TASK_STACK_SIZE": 3584, + "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, + "ESP_PANIC_HANDLER_IRAM": false, + "ESP_PERIPH_CTRL_FUNC_IN_IRAM": true, + "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, + "ESP_REV_MAX_FULL": 399, + "ESP_REV_MIN_FULL": 0, + "ESP_ROM_HAS_CRC_BE": true, + "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_MZ_CRC32": true, + "ESP_ROM_HAS_NEWLIB": true, + "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, + "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, + "ESP_ROM_HAS_OUTPUT_PUTC_FUNC": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_UART_BUF_SWITCH": true, + "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_PRINT_IN_IRAM": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, + "ESP_ROM_USB_OTG_NUM": -1, + "ESP_ROM_USB_SERIAL_DEVICE_NUM": -1, + "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, + "ESP_SLEEP_DEBUG": false, + "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, + "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, + "ESP_SLEEP_GPIO_RESET_WORKAROUND": false, + "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, + "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true, + "ESP_SLEEP_SET_FLASH_DPD": false, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 2000, + "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, + "ESP_SYSTEM_CHECK_INT_LEVEL_5": false, + "ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": false, + "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, + "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, + "ESP_SYSTEM_IN_IRAM": true, + "ESP_SYSTEM_PANIC_PRINT_HALT": false, + "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, + "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, + "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true, + "ESP_TASK_WDT_EN": true, + "ESP_TASK_WDT_INIT": true, + "ESP_TASK_WDT_PANIC": false, + "ESP_TASK_WDT_TIMEOUT_S": 5, + "ESP_TIMER_IMPL_TG0_LAC": true, + "ESP_TIMER_INTERRUPT_LEVEL": 1, + "ESP_TIMER_IN_IRAM": true, + "ESP_TIMER_ISR_AFFINITY_CPU0": true, + "ESP_TIMER_PROFILING": false, + "ESP_TIMER_SHOW_EXPERIMENTAL": false, + "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, + "ESP_TIMER_TASK_AFFINITY": 0, + "ESP_TIMER_TASK_AFFINITY_CPU0": true, + "ESP_TIMER_TASK_STACK_SIZE": 3584, + "ESP_TIME_FUNCS_USE_ESP_TIMER": true, + "ESP_TIME_FUNCS_USE_RTC_TIMER": true, + "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, + "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, + "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, + "FREERTOS_CHECK_STACKOVERFLOW_NONE": false, + "FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false, + "FREERTOS_CORETIMER_0": true, + "FREERTOS_CORETIMER_1": false, + "FREERTOS_DEBUG_OCDAWARE": true, + "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, + "FREERTOS_FPU_IN_ISR": false, + "FREERTOS_GENERATE_RUN_TIME_STATS": false, + "FREERTOS_HZ": 100, + "FREERTOS_IDLE_TASK_STACKSIZE": 1536, + "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_IN_IRAM": false, + "FREERTOS_ISR_STACKSIZE": 2096, + "FREERTOS_MAX_TASK_NAME_LEN": 16, + "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_NUMBER_OF_CORES": 2, + "FREERTOS_PORT": true, + "FREERTOS_QUEUE_REGISTRY_SIZE": 0, + "FREERTOS_SMP": false, + "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, + "FREERTOS_SYSTICK_USES_CCOUNT": true, + "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, + "FREERTOS_TASK_PRE_DELETION_HOOK": false, + "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, + "FREERTOS_TICK_SUPPORT_CORETIMER": true, + "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, + "FREERTOS_TIMER_TASK_AFFINITY_CPU1": false, + "FREERTOS_TIMER_TASK_NO_AFFINITY": true, + "FREERTOS_TIMER_TASK_PRIORITY": 1, + "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_TLSP_DELETION_CALLBACKS": true, + "FREERTOS_UNICORE": false, + "FREERTOS_USE_APPLICATION_TASK_TAG": false, + "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, + "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TIMERS": true, + "FREERTOS_USE_TRACE_FACILITY": false, + "FREERTOS_WATCHPOINT_END_OF_STACK": false, + "GPIO_CTRL_FUNC_IN_IRAM": false, + "HAL_ASSERTION_DISABLE": false, + "HAL_ASSERTION_ENABLE": false, + "HAL_ASSERTION_EQUALS_SYSTEM": true, + "HAL_ASSERTION_SILENT": false, + "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "HAL_GPIO_USE_ROM_IMPL": true, + "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, + "HEAP_HAS_EXEC_HEAP": true, + "HEAP_PLACE_FUNCTION_INTO_FLASH": false, + "HEAP_POISONING_COMPREHENSIVE": false, + "HEAP_POISONING_DISABLED": true, + "HEAP_POISONING_LIGHT": false, + "HEAP_TASK_TRACKING": false, + "HEAP_TRACING_OFF": true, + "HEAP_TRACING_STANDALONE": false, + "HEAP_TRACING_TOHOST": false, + "HEAP_USE_HOOKS": false, + "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, + "IDF_FIRMWARE_CHIP_ID": 0, + "IDF_INIT_VERSION": "6.1.0", + "IDF_TARGET": "esp32", + "IDF_TARGET_ARCH": "xtensa", + "IDF_TARGET_ARCH_XTENSA": true, + "IDF_TARGET_ESP32": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LIBC_ASSERT_BUFFER_SIZE": 200, + "LIBC_LOCKS_PLACE_IN_IRAM": true, + "LIBC_MISC_IN_IRAM": true, + "LIBC_NEWLIB": false, + "LIBC_PICOLIBC": true, + "LIBC_PICOLIBC_NEWLIB_COMPATIBILITY": true, + "LIBC_TIME_SYSCALL_USE_HRT": false, + "LIBC_TIME_SYSCALL_USE_NONE": false, + "LIBC_TIME_SYSCALL_USE_RTC": false, + "LIBC_TIME_SYSCALL_USE_RTC_HRT": true, + "LOG_COLORS": false, + "LOG_DEFAULT_LEVEL": 3, + "LOG_DEFAULT_LEVEL_DEBUG": false, + "LOG_DEFAULT_LEVEL_ERROR": false, + "LOG_DEFAULT_LEVEL_INFO": true, + "LOG_DEFAULT_LEVEL_NONE": false, + "LOG_DEFAULT_LEVEL_VERBOSE": false, + "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_DYNAMIC_LEVEL_CONTROL": true, + "LOG_IN_IRAM": true, + "LOG_MASTER_LEVEL": false, + "LOG_MAXIMUM_EQUALS_DEFAULT": true, + "LOG_MAXIMUM_LEVEL": 3, + "LOG_MAXIMUM_LEVEL_DEBUG": false, + "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_MODE_TEXT": true, + "LOG_MODE_TEXT_EN": true, + "LOG_TAG_LEVEL_CACHE_ARRAY": false, + "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, + "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, + "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, + "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, + "LOG_TAG_LEVEL_IMPL_NONE": false, + "LOG_TIMESTAMP_SOURCE_RTOS": true, + "LOG_TIMESTAMP_SOURCE_SYSTEM": false, + "LOG_VERSION": 1, + "LOG_VERSION_1": true, + "LOG_VERSION_2": false, + "MBEDTLS_AES_C": true, + "MBEDTLS_AES_FEWER_TABLES": false, + "MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH": false, + "MBEDTLS_AES_ROM_TABLES": true, + "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION": false, + "MBEDTLS_ARIA_C": true, + "MBEDTLS_ASN1_PARSE_C": true, + "MBEDTLS_ASN1_WRITE_C": true, + "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, + "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, + "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, + "MBEDTLS_BASE64_C": true, + "MBEDTLS_BIGNUM_C": true, + "MBEDTLS_BLOWFISH_C": false, + "MBEDTLS_CAMELLIA_C": false, + "MBEDTLS_CCM_C": true, + "MBEDTLS_CERTIFICATE_BUNDLE": true, + "MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": true, + "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST": false, + "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": 200, + "MBEDTLS_CHACHA20_C": false, + "MBEDTLS_CIPHER_C": true, + "MBEDTLS_CIPHER_MODE_CBC": true, + "MBEDTLS_CIPHER_MODE_CFB": true, + "MBEDTLS_CIPHER_MODE_CTR": true, + "MBEDTLS_CIPHER_MODE_OFB": true, + "MBEDTLS_CIPHER_MODE_XTS": true, + "MBEDTLS_CIPHER_PADDING": true, + "MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS": true, + "MBEDTLS_CIPHER_PADDING_PKCS7": true, + "MBEDTLS_CIPHER_PADDING_ZEROS": true, + "MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN": true, + "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, + "MBEDTLS_CMAC_C": true, + "MBEDTLS_COMPILER_OPTIMIZATION_NONE": true, + "MBEDTLS_COMPILER_OPTIMIZATION_PERF": false, + "MBEDTLS_COMPILER_OPTIMIZATION_SIZE": false, + "MBEDTLS_CTR_DRBG_C": true, + "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": false, + "MBEDTLS_CUSTOM_MEM_ALLOC": false, + "MBEDTLS_DEBUG": false, + "MBEDTLS_DEFAULT_MEM_ALLOC": false, + "MBEDTLS_DES_C": false, + "MBEDTLS_DHM_C": true, + "MBEDTLS_DYNAMIC_BUFFER": false, + "MBEDTLS_ECDH_C": true, + "MBEDTLS_ECDSA_C": true, + "MBEDTLS_ECDSA_DETERMINISTIC": true, + "MBEDTLS_ECJPAKE_C": false, + "MBEDTLS_ECP_C": true, + "MBEDTLS_ECP_DP_BP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_BP512R1_ENABLED": true, + "MBEDTLS_ECP_DP_CURVE25519_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP192R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP224R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256K1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, + "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, + "MBEDTLS_ECP_FIXED_POINT_OPTIM": false, + "MBEDTLS_ECP_NIST_OPTIM": true, + "MBEDTLS_ECP_RESTARTABLE": false, + "MBEDTLS_ENTROPY_C": true, + "MBEDTLS_ENTROPY_FORCE_SHA256": false, + "MBEDTLS_ERROR_STRINGS": true, + "MBEDTLS_GCM_C": true, + "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, + "MBEDTLS_GENPRIME": true, + "MBEDTLS_HARDWARE_AES": true, + "MBEDTLS_HARDWARE_MPI": true, + "MBEDTLS_HARDWARE_SHA": true, + "MBEDTLS_HAVE_TIME": true, + "MBEDTLS_HAVE_TIME_DATE": false, + "MBEDTLS_HKDF_C": false, + "MBEDTLS_HMAC_DRBG_C": true, + "MBEDTLS_INTERNAL_MEM_ALLOC": true, + "MBEDTLS_KEY_EXCHANGE_DHE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, + "MBEDTLS_KEY_EXCHANGE_ECDH_RSA": true, + "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, + "MBEDTLS_KEY_EXCHANGE_RSA": true, + "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": false, + "MBEDTLS_MD5_C": true, + "MBEDTLS_MD_C": true, + "MBEDTLS_NIST_KW_C": false, + "MBEDTLS_OID_C": true, + "MBEDTLS_PEM_PARSE_C": true, + "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PKCS12_C": true, + "MBEDTLS_PKCS1_V15": true, + "MBEDTLS_PKCS1_V21": true, + "MBEDTLS_PKCS5_C": true, + "MBEDTLS_PKCS7_C": true, + "MBEDTLS_PK_C": true, + "MBEDTLS_PK_PARSE_C": true, + "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, + "MBEDTLS_PK_PARSE_EC_EXTENDED": true, + "MBEDTLS_PK_RSA_ALT_SUPPORT": true, + "MBEDTLS_PK_WRITE_C": true, + "MBEDTLS_PLATFORM_TIME_ALT": false, + "MBEDTLS_POLY1305_C": false, + "MBEDTLS_PSK_MODES": false, + "MBEDTLS_RIPEMD160_C": false, + "MBEDTLS_ROM_MD5": true, + "MBEDTLS_RSA_C": true, + "MBEDTLS_SELF_TEST": true, + "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, + "MBEDTLS_SHA1_C": true, + "MBEDTLS_SHA224_C": false, + "MBEDTLS_SHA256_C": true, + "MBEDTLS_SHA384_C": true, + "MBEDTLS_SHA3_C": true, + "MBEDTLS_SHA512_C": true, + "MBEDTLS_SSL_ALL_ALERT_MESSAGES": true, + "MBEDTLS_SSL_ALPN": true, + "MBEDTLS_SSL_CACHE_C": true, + "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, + "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, + "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": false, + "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT": false, + "MBEDTLS_SSL_MAX_FRAGMENT_LENGTH": true, + "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, + "MBEDTLS_SSL_PROTO_DTLS": false, + "MBEDTLS_SSL_PROTO_GMTSSL1_1": false, + "MBEDTLS_SSL_PROTO_TLS1_2": true, + "MBEDTLS_SSL_PROTO_TLS1_3": false, + "MBEDTLS_SSL_RENEGOTIATION": true, + "MBEDTLS_SSL_SERVER_NAME_INDICATION": true, + "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": false, + "MBEDTLS_THREADING_C": false, + "MBEDTLS_TLS_CLIENT": true, + "MBEDTLS_TLS_CLIENT_ONLY": false, + "MBEDTLS_TLS_DISABLED": false, + "MBEDTLS_TLS_ENABLED": true, + "MBEDTLS_TLS_SERVER": true, + "MBEDTLS_TLS_SERVER_AND_CLIENT": true, + "MBEDTLS_TLS_SERVER_ONLY": false, + "MBEDTLS_VERSION_C": true, + "MBEDTLS_VERSION_FEATURES": false, + "MBEDTLS_VER_4_X_SUPPORT": false, + "MBEDTLS_X509_CREATE_C": false, + "MBEDTLS_X509_CRL_PARSE_C": true, + "MBEDTLS_X509_CRT_PARSE_C": true, + "MBEDTLS_X509_CSR_PARSE_C": true, + "MBEDTLS_X509_REMOVE_INFO": false, + "MBEDTLS_X509_RSASSA_PSS_SUPPORT": true, + "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, + "MBEDTLS_X509_USE_C": true, + "MBEDTLS_XTEA_C": false, + "MMU_PAGE_MODE": "64KB", + "MMU_PAGE_SIZE": 65536, + "MMU_PAGE_SIZE_64KB": true, + "PARTITION_TABLE_CUSTOM": false, + "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", + "PARTITION_TABLE_FILENAME": "partitions_singleapp.csv", + "PARTITION_TABLE_MD5": true, + "PARTITION_TABLE_OFFSET": 32768, + "PARTITION_TABLE_SINGLE_APP": true, + "PARTITION_TABLE_SINGLE_APP_LARGE": false, + "PARTITION_TABLE_TWO_OTA": false, + "PARTITION_TABLE_TWO_OTA_LARGE": false, + "PM_ENABLE": false, + "PM_SLEEP_FUNC_IN_IRAM": true, + "PM_SLP_IRAM_OPT": true, + "PTHREAD_DEFAULT_CORE_0": false, + "PTHREAD_DEFAULT_CORE_1": false, + "PTHREAD_DEFAULT_CORE_NO_AFFINITY": true, + "PTHREAD_STACK_MIN": 768, + "PTHREAD_TASK_CORE_DEFAULT": -1, + "PTHREAD_TASK_NAME_DEFAULT": "pthread", + "PTHREAD_TASK_PRIO_DEFAULT": 5, + "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, + "RTC_CLK_CAL_CYCLES": 1024, + "RTC_CLK_SRC_EXT_CRYS": false, + "RTC_CLK_SRC_EXT_OSC": false, + "RTC_CLK_SRC_INT_8MD256": false, + "RTC_CLK_SRC_INT_RC": true, + "SECURE_BOOT": false, + "SECURE_BOOT_V1_SUPPORTED": true, + "SECURE_FLASH_ENC_ENABLED": false, + "SECURE_SIGNED_APPS_NO_SECURE_BOOT": false, + "SOC_ADC_ATTEN_NUM": 4, + "SOC_ADC_DIGI_CONTROLLER_NUM": 2, + "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, + "SOC_ADC_DIGI_MAX_BITWIDTH": 12, + "SOC_ADC_DIGI_MIN_BITWIDTH": 9, + "SOC_ADC_DIGI_MONITOR_NUM": 0, + "SOC_ADC_DIGI_RESULT_BYTES": 2, + "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DMA_SUPPORTED": true, + "SOC_ADC_MAX_CHANNEL_NUM": 10, + "SOC_ADC_PATT_LEN_MAX": 16, + "SOC_ADC_PERIPH_NUM": 2, + "SOC_ADC_RTC_CTRL_SUPPORTED": true, + "SOC_ADC_RTC_MAX_BITWIDTH": 12, + "SOC_ADC_RTC_MIN_BITWIDTH": 9, + "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 2000000, + "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 20000, + "SOC_ADC_SHARED_POWER": true, + "SOC_ADC_SUPPORTED": true, + "SOC_AES_SUPPORTED": true, + "SOC_AES_SUPPORT_AES_128": true, + "SOC_AES_SUPPORT_AES_192": true, + "SOC_AES_SUPPORT_AES_256": true, + "SOC_BLE_MESH_SUPPORTED": true, + "SOC_BLE_MULTI_CONN_OPTIMIZATION": true, + "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, + "SOC_BROWNOUT_RESET_SUPPORTED": true, + "SOC_BT_CLASSIC_SUPPORTED": true, + "SOC_BT_H2C_ENC_KEY_CTRL_ENH_VSC_SUPPORTED": true, + "SOC_BT_SUPPORTED": true, + "SOC_CAPS_ECO_VER_MAX": 301, + "SOC_CCOMP_TIMER_SUPPORTED": true, + "SOC_CLK_APLL_SUPPORTED": true, + "SOC_CLK_LP_FAST_SUPPORT_XTAL_D4": true, + "SOC_CLK_RC_FAST_D256_SUPPORTED": true, + "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, + "SOC_CLK_TREE_SUPPORTED": true, + "SOC_CLK_XTAL32K_SUPPORTED": true, + "SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true, + "SOC_CPU_BREAKPOINTS_NUM": 2, + "SOC_CPU_CORES_NUM": 2, + "SOC_CPU_HAS_FPU": true, + "SOC_CPU_INTR_NUM": 32, + "SOC_CPU_WATCHPOINTS_NUM": 2, + "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 64, + "SOC_DAC_CHAN_NUM": 2, + "SOC_DAC_DMA_16BIT_ALIGN": true, + "SOC_DAC_RESOLUTION": 8, + "SOC_DAC_SUPPORTED": true, + "SOC_DEEP_SLEEP_SUPPORTED": true, + "SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": 5, + "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 1, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EMAC_RMII_CLK_OUT_INTERNAL_LOOPBACK": true, + "SOC_EMAC_SUPPORTED": true, + "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, + "SOC_FLASH_ENC_SUPPORTED": true, + "SOC_GPIO_CLOCKOUT_BY_IO_MUX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_IN_RANGE_MAX": 39, + "SOC_GPIO_OUT_RANGE_MAX": 33, + "SOC_GPIO_PIN_COUNT": 40, + "SOC_GPIO_PORT": 1, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 15667178, + "SOC_GPIO_VALID_GPIO_MASK": 1099511627775, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, + "SOC_HP_CPU_HAS_MULTIPLE_CORES": true, + "SOC_HP_I2C_NUM": 2, + "SOC_I2C_CMD_REG_NUM": 16, + "SOC_I2C_FIFO_LEN": 32, + "SOC_I2C_NUM": 2, + "SOC_I2C_STOP_INDEPENDENT": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, + "SOC_I2C_SUPPORT_APB": true, + "SOC_I2C_SUPPORT_SLAVE": true, + "SOC_I2S_HW_VERSION_1": true, + "SOC_I2S_I80_LCD_SUPPORTED": true, + "SOC_I2S_PDM_MAX_RX_LINES": 1, + "SOC_I2S_PDM_MAX_TX_LINES": 1, + "SOC_I2S_SUPPORTED": true, + "SOC_I2S_SUPPORTS_APLL": true, + "SOC_I2S_SUPPORTS_PCM2PDM": true, + "SOC_I2S_SUPPORTS_PDM": true, + "SOC_I2S_SUPPORTS_PDM2PCM": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, + "SOC_I2S_SUPPORTS_PDM_TX": true, + "SOC_IDCACHE_PER_CORE": true, + "SOC_LCD_I80_SUPPORTED": true, + "SOC_LEDC_CHANNEL_NUM": 8, + "SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": true, + "SOC_LEDC_SUPPORTED": true, + "SOC_LEDC_SUPPORT_APB_CLOCK": true, + "SOC_LEDC_SUPPORT_HS_MODE": true, + "SOC_LEDC_SUPPORT_REF_TICK": true, + "SOC_LEDC_TIMER_BIT_WIDTH": 20, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_PERIPH_SHARE_INTERRUPT": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, + "SOC_MCPWM_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, + "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 3, + "SOC_MMU_PERIPH_NUM": 2, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 1, + "SOC_MPI_SUPPORTED": true, + "SOC_MPU_MIN_REGION_SIZE": 536870912, + "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MPU_SUPPORTED": true, + "SOC_PCNT_SUPPORTED": true, + "SOC_PHY_COMBO_MODULE": true, + "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PM_MODEM_PD_BY_SW": true, + "SOC_PM_SUPPORTED": true, + "SOC_PM_SUPPORT_EXT0_WAKEUP": true, + "SOC_PM_SUPPORT_EXT1_WAKEUP": true, + "SOC_PM_SUPPORT_EXT_WAKEUP": true, + "SOC_PM_SUPPORT_MODEM_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_RTC_FAST_MEM_PD": true, + "SOC_PM_SUPPORT_RTC_PERIPH_PD": true, + "SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": true, + "SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, + "SOC_RMT_MEM_WORDS_PER_CHANNEL": 64, + "SOC_RMT_SUPPORTED": true, + "SOC_RNG_SUPPORTED": true, + "SOC_RSA_MAX_BIT_LEN": 4096, + "SOC_RTCIO_HOLD_SUPPORTED": true, + "SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true, + "SOC_RTCIO_PIN_COUNT": 18, + "SOC_RTCIO_WAKE_SUPPORTED": true, + "SOC_RTC_FAST_MEM_SUPPORTED": true, + "SOC_RTC_MEM_SUPPORTED": true, + "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, + "SOC_RTC_SLOW_MEM_SUPPORTED": true, + "SOC_SDIO_SLAVE_SUPPORTED": true, + "SOC_SDMMC_DATA_WIDTH_MAX": 8, + "SOC_SDMMC_HOST_SUPPORTED": true, + "SOC_SDMMC_NUM_SLOTS": 2, + "SOC_SDMMC_USE_IOMUX": true, + "SOC_SDM_SUPPORTED": true, + "SOC_SECURE_BOOT_SUPPORTED": true, + "SOC_SECURE_BOOT_V1": true, + "SOC_SHARED_IDCACHE_SUPPORTED": true, + "SOC_SHA_ENDIANNESS_BE": true, + "SOC_SHA_SUPPORTED": true, + "SOC_SHA_SUPPORT_PARALLEL_ENG": true, + "SOC_SHA_SUPPORT_SHA1": true, + "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SHA_SUPPORT_SHA384": true, + "SOC_SHA_SUPPORT_SHA512": true, + "SOC_SPIRAM_SUPPORTED": true, + "SOC_SPI_EXTERNAL_NOR_FLASH_SUPPORTED": true, + "SOC_SPI_FLASH_SUPPORTED": true, + "SOC_SPI_HD_BOTH_INOUT_SUPPORTED": true, + "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, + "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, + "SOC_SPI_PERIPH_NUM": 3, + "SOC_SUPPORT_COEXISTENCE": true, + "SOC_TOUCH_MAX_CHAN_ID": 9, + "SOC_TOUCH_MIN_CHAN_ID": 0, + "SOC_TOUCH_SAMPLE_CFG_NUM": 1, + "SOC_TOUCH_SENSOR_SUPPORTED": true, + "SOC_TOUCH_SENSOR_VERSION": 1, + "SOC_TOUCH_SUPPORT_SLEEP_WAKEUP": true, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_MASK_FILTER_NUM": 1, + "SOC_TWAI_SUPPORTED": true, + "SOC_UART_BITRATE_MAX": 5000000, + "SOC_UART_FIFO_LEN": 128, + "SOC_UART_HP_NUM": 3, + "SOC_UART_NUM": 3, + "SOC_UART_SUPPORTED": true, + "SOC_UART_SUPPORT_APB_CLK": true, + "SOC_UART_SUPPORT_REF_TICK": true, + "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, + "SOC_ULP_FSM_SUPPORTED": true, + "SOC_ULP_HAS_ADC": true, + "SOC_ULP_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, + "SOC_WIFI_CSI_SUPPORT": true, + "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_NAN_SUPPORT": true, + "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_WAPI_SUPPORT": true, + "SOC_XTAL_SUPPORT_26M": true, + "SOC_XTAL_SUPPORT_40M": true, + "SPI_FLASH_BROWNOUT_RESET": true, + "SPI_FLASH_BROWNOUT_RESET_XMC": true, + "SPI_FLASH_BYPASS_BLOCK_ERASE": false, + "SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false, + "SPI_FLASH_DANGEROUS_WRITE_ABORTS": true, + "SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false, + "SPI_FLASH_DANGEROUS_WRITE_FAILS": false, + "SPI_FLASH_ENABLE_COUNTERS": false, + "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, + "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, + "SPI_FLASH_ERASE_YIELD_TICKS": 1, + "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND": false, + "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, + "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, + "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, + "SPI_FLASH_SHARE_SPI1_BUS": false, + "SPI_FLASH_SIZE_OVERRIDE": false, + "SPI_FLASH_SUPPORT_BOYA_CHIP": false, + "SPI_FLASH_SUPPORT_GD_CHIP": true, + "SPI_FLASH_SUPPORT_ISSI_CHIP": true, + "SPI_FLASH_SUPPORT_MXIC_CHIP": true, + "SPI_FLASH_SUPPORT_TH_CHIP": false, + "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true, + "SPI_FLASH_VERIFY_WRITE": false, + "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, + "SPI_FLASH_YIELD_DURING_ERASE": true, + "XTAL_FREQ": 40, + "XTAL_FREQ_26": false, + "XTAL_FREQ_32": false, + "XTAL_FREQ_40": true, + "XTAL_FREQ_AUTO": false +} \ No newline at end of file diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/build/flasher_args.json b/tests/fixtures/hello_world_esp32_coredump_uart/build/flasher_args.json new file mode 100644 index 00000000..3bfc7058 --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_uart/build/flasher_args.json @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash-mode", "dio", + "--flash-size", "2MB", + "--flash-freq", "40m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "2MB", + "flash_freq": "40m" + }, + "flash_files" : { + "0x1000" : "bootloader/bootloader.bin", + "0x8000" : "partition_table/partition-table.bin", + "0x10000" : "hello_world.bin" + }, + "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "hello_world.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard-reset", + "before" : "default-reset", + "stub" : true, + "chip" : "esp32" + } +} diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/build/gdbinit/prefix_map b/tests/fixtures/hello_world_esp32_coredump_uart/build/gdbinit/prefix_map new file mode 100644 index 00000000..d8408d82 --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_uart/build/gdbinit/prefix_map @@ -0,0 +1,45 @@ +set substitute-path /COMPONENT_XTENSA_DIR /Users/fuhanxi/esp/esp-idf/components/xtensa +set substitute-path /COMPONENT_ESP_STDIO_DIR /Users/fuhanxi/esp/esp-idf/components/esp_stdio +set substitute-path /COMPONENT_ESP_HAL_TIMG_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_timg +set substitute-path /COMPONENT_ESP_TIMER_DIR /Users/fuhanxi/esp/esp-idf/components/esp_timer +set substitute-path /COMPONENT_ESP_MM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_mm +set substitute-path /COMPONENT_ESP_HAL_GPIO_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_gpio +set substitute-path /COMPONENT_ESP_HAL_GPSPI_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_gpspi +set substitute-path /COMPONENT_ESP_HAL_MSPI_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_mspi +set substitute-path /COMPONENT_ESP_HAL_WDT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_wdt +set substitute-path /COMPONENT_ESP_BLOCKDEV_DIR /Users/fuhanxi/esp/esp-idf/components/esp_blockdev +set substitute-path /COMPONENT_BOOTLOADER_DIR /Users/fuhanxi/esp/esp-idf/components/bootloader +set substitute-path /COMPONENT_ESPTOOL_PY_DIR /Users/fuhanxi/esp/esp-idf/components/esptool_py +set substitute-path /COMPONENT_PARTITION_TABLE_DIR /Users/fuhanxi/esp/esp-idf/components/partition_table +set substitute-path /COMPONENT_ESP_APP_FORMAT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_app_format +set substitute-path /COMPONENT_ESP_BOOTLOADER_FORMAT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_bootloader_format +set substitute-path /COMPONENT_APP_UPDATE_DIR /Users/fuhanxi/esp/esp-idf/components/app_update +set substitute-path /COMPONENT_ESP_PARTITION_DIR /Users/fuhanxi/esp/esp-idf/components/esp_partition +set substitute-path /COMPONENT_EFUSE_DIR /Users/fuhanxi/esp/esp-idf/components/efuse +set substitute-path /COMPONENT_ESP_SECURITY_DIR /Users/fuhanxi/esp/esp-idf/components/esp_security +set substitute-path /COMPONENT_ESP_DRIVER_GPIO_DIR /Users/fuhanxi/esp/esp-idf/components/esp_driver_gpio +set substitute-path /COMPONENT_ESP_PM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_pm +set substitute-path /COMPONENT_MBEDTLS_DIR /Users/fuhanxi/esp/esp-idf/components/mbedtls +set substitute-path /COMPONENT_ESP_HAL_I2S_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_i2s +set substitute-path /COMPONENT_ESP_HAL_ANA_CONV_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_ana_conv +set substitute-path /COMPONENT_BOOTLOADER_SUPPORT_DIR /Users/fuhanxi/esp/esp-idf/components/bootloader_support +set substitute-path /COMPONENT_ESP_USB_CDC_ROM_CONSOLE_DIR /Users/fuhanxi/esp/esp-idf/components/esp_usb_cdc_rom_console +set substitute-path /COMPONENT_ESP_SYSTEM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_system +set substitute-path /COMPONENT_ESP_COMMON_DIR /Users/fuhanxi/esp/esp-idf/components/esp_common +set substitute-path /COMPONENT_ESP_ROM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_rom +set substitute-path /COMPONENT_LOG_DIR /Users/fuhanxi/esp/esp-idf/components/log +set substitute-path /COMPONENT_HEAP_DIR /Users/fuhanxi/esp/esp-idf/components/heap +set substitute-path /COMPONENT_SOC_DIR /Users/fuhanxi/esp/esp-idf/components/soc +set substitute-path /COMPONENT_ESP_HAL_DMA_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_dma +set substitute-path /COMPONENT_ESP_HAL_USB_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_usb +set substitute-path /COMPONENT_ESP_HAL_TOUCH_SENS_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_touch_sens +set substitute-path /COMPONENT_ESP_HW_SUPPORT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hw_support +set substitute-path /COMPONENT_FREERTOS_DIR /Users/fuhanxi/esp/esp-idf/components/freertos +set substitute-path /COMPONENT_ESP_LIBC_DIR /Users/fuhanxi/esp/esp-idf/components/esp_libc +set substitute-path /COMPONENT_PTHREAD_DIR /Users/fuhanxi/esp/esp-idf/components/pthread +set substitute-path /COMPONENT_CXX_DIR /Users/fuhanxi/esp/esp-idf/components/cxx +set substitute-path /COMPONENT_HAL_DIR /Users/fuhanxi/esp/esp-idf/components/hal +set substitute-path /COMPONENT_SPI_FLASH_DIR /Users/fuhanxi/esp/esp-idf/components/spi_flash +set substitute-path /COMPONENT_ESPCOREDUMP_DIR /Users/fuhanxi/esp/esp-idf/components/espcoredump +set substitute-path /COMPONENT_MAIN_DIR /Users/fuhanxi/esp/pytest-embedded/tests/fixtures/hello_world_esp32_coredump_uart/main +set substitute-path /TOOLCHAIN /Users/fuhanxi/.espressif/tools/xtensa-esp-elf/esp-15.2.0_20251204/xtensa-esp-elf diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/build/hello_world.bin b/tests/fixtures/hello_world_esp32_coredump_uart/build/hello_world.bin new file mode 100644 index 00000000..038e7f5e Binary files /dev/null and b/tests/fixtures/hello_world_esp32_coredump_uart/build/hello_world.bin differ diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/build/hello_world.elf b/tests/fixtures/hello_world_esp32_coredump_uart/build/hello_world.elf new file mode 100755 index 00000000..d3658943 Binary files /dev/null and b/tests/fixtures/hello_world_esp32_coredump_uart/build/hello_world.elf differ diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/build/partition_table/partition-table.bin b/tests/fixtures/hello_world_esp32_coredump_uart/build/partition_table/partition-table.bin new file mode 100644 index 00000000..b8fa03b4 Binary files /dev/null and b/tests/fixtures/hello_world_esp32_coredump_uart/build/partition_table/partition-table.bin differ diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/main/CMakeLists.txt b/tests/fixtures/hello_world_esp32_coredump_uart/main/CMakeLists.txt new file mode 100644 index 00000000..2d35451d --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_uart/main/CMakeLists.txt @@ -0,0 +1,5 @@ +idf_component_register(SRCS "hello_world_main.c" + INCLUDE_DIRS "" + REQUIRES spi_flash espcoredump) + +target_compile_options(${COMPONENT_LIB} PRIVATE -w) diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/main/hello_world_main.c b/tests/fixtures/hello_world_esp32_coredump_uart/main/hello_world_main.c new file mode 100644 index 00000000..041c491d --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_uart/main/hello_world_main.c @@ -0,0 +1,46 @@ +/* + * SPDX-FileCopyrightText: 2010-2022 Espressif Systems (Shanghai) CO LTD + * + * SPDX-License-Identifier: CC0-1.0 + */ + +#include +#include "sdkconfig.h" +#include "freertos/FreeRTOS.h" +#include "freertos/task.h" +#include "esp_chip_info.h" +#include "esp_flash.h" + +void app_main(void) +{ + printf("Hello world!\n"); + *((int*) 0) = 0; + /* Print chip information */ + esp_chip_info_t chip_info; + uint32_t flash_size; + esp_chip_info(&chip_info); + printf("This is %s chip with %d CPU core(s), WiFi%s%s, ", + CONFIG_IDF_TARGET, + chip_info.cores, + (chip_info.features & CHIP_FEATURE_BT) ? "/BT" : "", + (chip_info.features & CHIP_FEATURE_BLE) ? "/BLE" : ""); + + printf("silicon revision %d, ", chip_info.revision); + if(esp_flash_get_size(NULL, &flash_size) != ESP_OK) { + printf("Get flash size failed"); + return; + } + + printf("%uMB %s flash\n", flash_size / (1024 * 1024), + (chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "embedded" : "external"); + + printf("Minimum free heap size: %d bytes\n", esp_get_minimum_free_heap_size()); + + for (int i = 10; i >= 0; i--) { + printf("Restarting in %d seconds...\n", i); + vTaskDelay(1000 / portTICK_PERIOD_MS); + } + printf("Restarting now.\n"); + fflush(stdout); + esp_restart(); +} diff --git a/tests/fixtures/hello_world_esp32_coredump_uart/sdkconfig.defaults b/tests/fixtures/hello_world_esp32_coredump_uart/sdkconfig.defaults new file mode 100644 index 00000000..83022590 --- /dev/null +++ b/tests/fixtures/hello_world_esp32_coredump_uart/sdkconfig.defaults @@ -0,0 +1,7 @@ + # This file was generated using idf.py save-defconfig. It can be edited manually. + # Espressif IoT Development Framework (ESP-IDF) 6.1.0 Project Minimal Configuration + # + # default: +CONFIG_IDF_TARGET="esp32" +CONFIG_ESP_COREDUMP_ENABLE_TO_UART=y +CONFIG_APP_REPRODUCIBLE_BUILD=y diff --git a/tests/fixtures/hello_world_esp32c3_panic/CMakeLists.txt b/tests/fixtures/hello_world_esp32c3_panic/CMakeLists.txt new file mode 100644 index 00000000..3a8afc30 --- /dev/null +++ b/tests/fixtures/hello_world_esp32c3_panic/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minimum_required(VERSION 3.16) + +include($ENV{IDF_PATH}/tools/cmake/project.cmake) +idf_build_set_property(MINIMAL_BUILD ON) +project(hello_world) diff --git a/tests/fixtures/hello_world_esp32c3_panic/build/bootloader/bootloader.bin b/tests/fixtures/hello_world_esp32c3_panic/build/bootloader/bootloader.bin index 6fd50376..a4e77c8a 100644 Binary files a/tests/fixtures/hello_world_esp32c3_panic/build/bootloader/bootloader.bin and b/tests/fixtures/hello_world_esp32c3_panic/build/bootloader/bootloader.bin differ diff --git a/tests/fixtures/hello_world_esp32c3_panic/build/config/sdkconfig.json b/tests/fixtures/hello_world_esp32c3_panic/build/config/sdkconfig.json index db05b676..e92f2f35 100644 --- a/tests/fixtures/hello_world_esp32c3_panic/build/config/sdkconfig.json +++ b/tests/fixtures/hello_world_esp32c3_panic/build/config/sdkconfig.json @@ -1,36 +1,26 @@ { - "ADC_CALI_SUPPRESS_DEPRECATE_WARN": false, - "ADC_CONTINUOUS_ISR_IRAM_SAFE": false, - "ADC_ONESHOT_CTRL_FUNC_IN_IRAM": false, - "ADC_SUPPRESS_DEPRECATE_WARN": false, - "APPTRACE_DEST_JTAG": false, - "APPTRACE_DEST_NONE": true, - "APPTRACE_DEST_UART1": false, - "APPTRACE_DEST_UART_NONE": true, - "APPTRACE_DEST_USB_CDC": false, - "APPTRACE_LOCK_ENABLE": true, - "APPTRACE_UART_TASK_PRIO": 1, "APP_BUILD_BOOTLOADER": true, "APP_BUILD_GENERATE_BINARIES": true, "APP_BUILD_TYPE_APP_2NDBOOT": true, - "APP_BUILD_TYPE_ELF_RAM": false, + "APP_BUILD_TYPE_RAM": false, "APP_BUILD_USE_FLASH_SECTIONS": true, - "APP_COMPILE_TIME_DATE": true, "APP_EXCLUDE_PROJECT_NAME_VAR": false, "APP_EXCLUDE_PROJECT_VER_VAR": false, "APP_NO_BLOBS": false, "APP_PROJECT_VER_FROM_CONFIG": false, "APP_REPRODUCIBLE_BUILD": true, - "APP_RETRIEVE_LEN_ELF_SHA": 16, + "APP_RETRIEVE_LEN_ELF_SHA": 9, "BOOTLOADER_APP_ROLLBACK_ENABLE": false, "BOOTLOADER_APP_TEST": false, "BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false, - "BOOTLOADER_COMPILER_OPTIMIZATION_NONE": false, "BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false, "BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true, + "BOOTLOADER_CPU_CLK_FREQ_MHZ": 80, "BOOTLOADER_CUSTOM_RESERVE_RTC": false, "BOOTLOADER_FACTORY_RESET": false, + "BOOTLOADER_FLASH_DC_AWARE": false, "BOOTLOADER_FLASH_XMC_SUPPORT": true, + "BOOTLOADER_LOG_COLORS": false, "BOOTLOADER_LOG_LEVEL": 3, "BOOTLOADER_LOG_LEVEL_DEBUG": false, "BOOTLOADER_LOG_LEVEL_ERROR": false, @@ -38,13 +28,18 @@ "BOOTLOADER_LOG_LEVEL_NONE": false, "BOOTLOADER_LOG_LEVEL_VERBOSE": false, "BOOTLOADER_LOG_LEVEL_WARN": false, + "BOOTLOADER_LOG_MODE_TEXT": true, + "BOOTLOADER_LOG_MODE_TEXT_EN": true, + "BOOTLOADER_LOG_TIMESTAMP_SOURCE_CPU_TICKS": true, + "BOOTLOADER_LOG_VERSION": 1, + "BOOTLOADER_LOG_VERSION_1": true, "BOOTLOADER_OFFSET_IN_FLASH": 0, + "BOOTLOADER_PROJECT_VER": 1, "BOOTLOADER_REGION_PROTECTION_ENABLE": true, "BOOTLOADER_RESERVE_RTC_SIZE": 0, "BOOTLOADER_SKIP_VALIDATE_ALWAYS": false, "BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false, "BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false, - "BOOTLOADER_VDDSDIO_BOOST_1_9V": true, "BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false, "BOOTLOADER_WDT_ENABLE": true, "BOOTLOADER_WDT_TIME_MS": 9000, @@ -52,62 +47,60 @@ "BOOT_ROM_LOG_ALWAYS_ON": true, "BOOT_ROM_LOG_ON_GPIO_HIGH": false, "BOOT_ROM_LOG_ON_GPIO_LOW": false, - "BT_ENABLED": false, + "COMPILER_ASSERT_NDEBUG_EVALUATE": false, "COMPILER_CXX_EXCEPTIONS": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_COLD_CONSTEXPR": false, + "COMPILER_CXX_GLIBCXX_CONSTEXPR_NO_CHANGE": true, "COMPILER_CXX_RTTI": false, + "COMPILER_DISABLE_DEFAULT_ERRORS": false, + "COMPILER_DISABLE_GCC12_WARNINGS": false, + "COMPILER_DISABLE_GCC13_WARNINGS": false, + "COMPILER_DISABLE_GCC14_WARNINGS": false, + "COMPILER_DISABLE_GCC15_WARNINGS": false, "COMPILER_DUMP_RTL_FILES": false, "COMPILER_FLOAT_LIB_FROM_GCCLIB": true, "COMPILER_HIDE_PATHS_MACROS": true, + "COMPILER_NO_MERGE_CONSTANTS": false, "COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false, "COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true, "COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false, "COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2, "COMPILER_OPTIMIZATION_CHECKS_SILENT": false, - "COMPILER_OPTIMIZATION_DEFAULT": true, + "COMPILER_OPTIMIZATION_DEBUG": true, "COMPILER_OPTIMIZATION_NONE": false, "COMPILER_OPTIMIZATION_PERF": false, "COMPILER_OPTIMIZATION_SIZE": false, + "COMPILER_ORPHAN_SECTIONS_ERROR": true, + "COMPILER_ORPHAN_SECTIONS_PLACE": false, + "COMPILER_ORPHAN_SECTIONS_WARNING": false, + "COMPILER_RT_LIB_GCCLIB": true, + "COMPILER_RT_LIB_NAME": "gcc", "COMPILER_SAVE_RESTORE_LIBCALLS": false, "COMPILER_STACK_CHECK_MODE_ALL": false, "COMPILER_STACK_CHECK_MODE_NONE": true, "COMPILER_STACK_CHECK_MODE_NORM": false, "COMPILER_STACK_CHECK_MODE_STRONG": false, + "COMPILER_STATIC_ANALYZER": false, "COMPILER_WARN_WRITE_STRINGS": false, "EFUSE_CUSTOM_TABLE": false, "EFUSE_MAX_BLK_LEN": 256, "EFUSE_VIRTUAL": false, - "ESP32C3_REV_MIN": 3, + "ESP32C3_REV_MAX_FULL": 199, "ESP32C3_REV_MIN_0": false, "ESP32C3_REV_MIN_1": false, + "ESP32C3_REV_MIN_101": false, "ESP32C3_REV_MIN_2": false, "ESP32C3_REV_MIN_3": true, "ESP32C3_REV_MIN_4": false, + "ESP32C3_REV_MIN_FULL": 3, "ESP32C3_UNIVERSAL_MAC_ADDRESSES": 4, "ESP32C3_UNIVERSAL_MAC_ADDRESSES_FOUR": true, "ESP32C3_UNIVERSAL_MAC_ADDRESSES_TWO": false, - "ESP32_WIFI_AMPDU_RX_ENABLED": true, - "ESP32_WIFI_AMPDU_TX_ENABLED": true, - "ESP32_WIFI_CSI_ENABLED": false, - "ESP32_WIFI_DYNAMIC_RX_BUFFER_NUM": 32, - "ESP32_WIFI_DYNAMIC_TX_BUFFER": true, - "ESP32_WIFI_DYNAMIC_TX_BUFFER_NUM": 32, - "ESP32_WIFI_ENABLED": true, - "ESP32_WIFI_ENABLE_WPA3_OWE_STA": true, - "ESP32_WIFI_ENABLE_WPA3_SAE": true, - "ESP32_WIFI_IRAM_OPT": true, - "ESP32_WIFI_MGMT_SBUF_NUM": 32, - "ESP32_WIFI_NVS_ENABLED": true, - "ESP32_WIFI_RX_BA_WIN": 6, - "ESP32_WIFI_RX_IRAM_OPT": true, - "ESP32_WIFI_SOFTAP_BEACON_MAX_LEN": 752, - "ESP32_WIFI_STATIC_RX_BUFFER_NUM": 10, - "ESP32_WIFI_STATIC_TX_BUFFER": false, - "ESP32_WIFI_TX_BA_WIN": 6, - "ESP32_WIFI_TX_BUFFER_TYPE": 1, - "ESPTOOLPY_AFTER": "hard_reset", + "ESPTOOLPY_AFTER": "hard-reset", "ESPTOOLPY_AFTER_NORESET": false, "ESPTOOLPY_AFTER_RESET": true, - "ESPTOOLPY_BEFORE": "default_reset", + "ESPTOOLPY_BEFORE": "default-reset", "ESPTOOLPY_BEFORE_NORESET": false, "ESPTOOLPY_BEFORE_RESET": true, "ESPTOOLPY_FLASHFREQ": "80m", @@ -141,7 +134,9 @@ "ESP_BROWNOUT_DET_LVL_SEL_5": false, "ESP_BROWNOUT_DET_LVL_SEL_6": false, "ESP_BROWNOUT_DET_LVL_SEL_7": true, + "ESP_BROWNOUT_USE_INTR": true, "ESP_CONSOLE_NONE": false, + "ESP_CONSOLE_ROM_SERIAL_PORT_NUM": 0, "ESP_CONSOLE_SECONDARY_NONE": false, "ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG": true, "ESP_CONSOLE_UART": true, @@ -150,6 +145,7 @@ "ESP_CONSOLE_UART_DEFAULT": true, "ESP_CONSOLE_UART_NUM": 0, "ESP_CONSOLE_USB_SERIAL_JTAG": false, + "ESP_CONSOLE_USB_SERIAL_JTAG_ENABLED": true, "ESP_COREDUMP_ENABLE_TO_FLASH": false, "ESP_COREDUMP_ENABLE_TO_NONE": true, "ESP_COREDUMP_ENABLE_TO_UART": false, @@ -158,16 +154,10 @@ "ESP_DEFAULT_CPU_FREQ_MHZ": 160, "ESP_DEFAULT_CPU_FREQ_MHZ_160": true, "ESP_DEFAULT_CPU_FREQ_MHZ_80": false, + "ESP_EFUSE_BLOCK_REV_MAX_FULL": 199, + "ESP_EFUSE_BLOCK_REV_MIN_FULL": 0, "ESP_ERR_TO_NAME_LOOKUP": true, - "ESP_EVENT_LOOP_PROFILING": false, - "ESP_EVENT_POST_FROM_IRAM_ISR": true, - "ESP_EVENT_POST_FROM_ISR": true, - "ESP_HTTPS_OTA_ALLOW_HTTP": false, - "ESP_HTTPS_OTA_DECRYPT_CB": false, - "ESP_HTTPS_SERVER_ENABLE": false, - "ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH": false, - "ESP_HTTP_CLIENT_ENABLE_DIGEST_AUTH": false, - "ESP_HTTP_CLIENT_ENABLE_HTTPS": true, + "ESP_INTR_IN_IRAM": true, "ESP_INT_WDT": true, "ESP_INT_WDT_TIMEOUT_MS": 300, "ESP_IPC_TASK_STACK_SIZE": 1024, @@ -175,133 +165,91 @@ "ESP_MAC_ADDR_UNIVERSE_ETH": true, "ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true, "ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES": 4, + "ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true, + "ESP_MAC_USE_CUSTOM_MAC_AS_BASE_MAC": false, "ESP_MAIN_TASK_AFFINITY": 0, "ESP_MAIN_TASK_AFFINITY_CPU0": true, "ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false, "ESP_MAIN_TASK_STACK_SIZE": 3584, "ESP_MINIMAL_SHARED_STACK_SIZE": 2048, - "ESP_NETIF_BRIDGE_EN": false, - "ESP_NETIF_IP_LOST_TIMER_INTERVAL": 120, - "ESP_NETIF_L2_TAP": false, - "ESP_NETIF_LOOPBACK": false, - "ESP_NETIF_TCPIP_LWIP": true, "ESP_PANIC_HANDLER_IRAM": false, - "ESP_PHY_CALIBRATION_AND_DATA_STORAGE": true, - "ESP_PHY_ENABLE_USB": true, - "ESP_PHY_INIT_DATA_IN_PARTITION": false, - "ESP_PHY_MAX_TX_POWER": 20, - "ESP_PHY_MAX_WIFI_TX_POWER": 20, - "ESP_PHY_REDUCE_TX_POWER": true, - "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_0": true, - "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_1": true, - "ESP_PROTOCOMM_SUPPORT_SECURITY_VERSION_2": false, + "ESP_PERIPH_CTRL_FUNC_IN_IRAM": true, + "ESP_REGI2C_CTRL_FUNC_IN_IRAM": true, + "ESP_REV_MAX_FULL": 199, + "ESP_REV_MIN_FULL": 3, + "ESP_ROM_CONSOLE_OUTPUT_SECONDARY": true, "ESP_ROM_GET_CLK_FREQ": true, "ESP_ROM_HAS_CRC_BE": true, "ESP_ROM_HAS_CRC_LE": true, + "ESP_ROM_HAS_ENCRYPTED_WRITES_USING_LEGACY_DRV": true, "ESP_ROM_HAS_ERASE_0_REGION_BUG": true, + "ESP_ROM_HAS_ETS_PRINTF_BUG": true, "ESP_ROM_HAS_JPEG_DECODE": true, + "ESP_ROM_HAS_LAYOUT_TABLE": true, + "ESP_ROM_HAS_MZ_CRC32": true, + "ESP_ROM_HAS_NEWLIB": true, + "ESP_ROM_HAS_NEWLIB_32BIT_TIME": true, + "ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true, "ESP_ROM_HAS_RETARGETABLE_LOCKING": true, + "ESP_ROM_HAS_SPI_FLASH": true, + "ESP_ROM_HAS_SPI_FLASH_MMAP": true, + "ESP_ROM_HAS_SUBOPTIMAL_NEWLIB_ON_MISALIGNED_MEMORY": true, + "ESP_ROM_HAS_SW_FLOAT": true, + "ESP_ROM_HAS_VERSION": true, + "ESP_ROM_NEEDS_SET_CACHE_MMU_SIZE": true, "ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true, + "ESP_ROM_PRINT_IN_IRAM": true, + "ESP_ROM_RAM_APP_NEEDS_MMU_INIT": true, + "ESP_ROM_SUPPORT_DEEP_SLEEP_WAKEUP_STUB": true, "ESP_ROM_UART_CLK_IS_XTAL": true, + "ESP_ROM_USB_OTG_NUM": -1, "ESP_ROM_USB_SERIAL_DEVICE_NUM": 3, + "ESP_SLEEP_CACHE_SAFE_ASSERTION": false, + "ESP_SLEEP_DEBUG": false, "ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true, + "ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true, "ESP_SLEEP_GPIO_RESET_WORKAROUND": true, "ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false, "ESP_SLEEP_POWER_DOWN_FLASH": false, + "ESP_SLEEP_SET_FLASH_DPD": false, + "ESP_SLEEP_WAIT_FLASH_READY_EXTRA_DELAY": 0, "ESP_SYSTEM_ALLOW_RTC_FAST_MEM_AS_HEAP": true, - "ESP_SYSTEM_BROWNOUT_INTR": true, "ESP_SYSTEM_CHECK_INT_LEVEL_4": true, "ESP_SYSTEM_EVENT_QUEUE_SIZE": 32, "ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304, - "ESP_SYSTEM_GDBSTUB_RUNTIME": false, - "ESP_SYSTEM_MEMPROT_FEATURE": true, - "ESP_SYSTEM_MEMPROT_FEATURE_LOCK": true, - "ESP_SYSTEM_PANIC_GDBSTUB": false, + "ESP_SYSTEM_HW_PC_RECORD": true, + "ESP_SYSTEM_HW_STACK_GUARD": true, + "ESP_SYSTEM_IN_IRAM": true, + "ESP_SYSTEM_MEMPROT": true, + "ESP_SYSTEM_MEMPROT_PMS": true, + "ESP_SYSTEM_MEMPROT_PMS_LOCK": true, + "ESP_SYSTEM_NO_BACKTRACE": true, "ESP_SYSTEM_PANIC_PRINT_HALT": false, "ESP_SYSTEM_PANIC_PRINT_REBOOT": true, + "ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0, "ESP_SYSTEM_PANIC_SILENT_REBOOT": false, "ESP_SYSTEM_RTC_FAST_MEM_AS_HEAP_DEPCHECK": true, "ESP_SYSTEM_SINGLE_CORE_MODE": true, "ESP_SYSTEM_USE_EH_FRAME": false, - "ESP_TASK_WDT": true, + "ESP_SYSTEM_USE_FRAME_POINTER": false, "ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true, + "ESP_TASK_WDT_EN": true, + "ESP_TASK_WDT_INIT": true, "ESP_TASK_WDT_PANIC": false, "ESP_TASK_WDT_TIMEOUT_S": 5, "ESP_TIMER_IMPL_SYSTIMER": true, "ESP_TIMER_INTERRUPT_LEVEL": 1, + "ESP_TIMER_IN_IRAM": true, + "ESP_TIMER_ISR_AFFINITY_CPU0": true, "ESP_TIMER_PROFILING": false, + "ESP_TIMER_SHOW_EXPERIMENTAL": false, "ESP_TIMER_SUPPORTS_ISR_DISPATCH_METHOD": false, + "ESP_TIMER_TASK_AFFINITY": 0, + "ESP_TIMER_TASK_AFFINITY_CPU0": true, "ESP_TIMER_TASK_STACK_SIZE": 3584, "ESP_TIME_FUNCS_USE_ESP_TIMER": true, "ESP_TIME_FUNCS_USE_RTC_TIMER": true, - "ESP_TLS_CLIENT_SESSION_TICKETS": false, - "ESP_TLS_INSECURE": false, - "ESP_TLS_PSK_VERIFICATION": false, - "ESP_TLS_SERVER": false, - "ESP_TLS_USE_DS_PERIPHERAL": true, - "ESP_TLS_USING_MBEDTLS": true, - "ESP_WIFI_EXTERNAL_COEXIST_ENABLE": false, - "ESP_WIFI_FTM_ENABLE": false, - "ESP_WIFI_GCMP_SUPPORT": false, - "ESP_WIFI_GMAC_SUPPORT": false, - "ESP_WIFI_SLP_BEACON_LOST_OPT": false, - "ESP_WIFI_SLP_IRAM_OPT": false, - "ESP_WIFI_SOFTAP_SUPPORT": true, - "ESP_WIFI_STA_DISCONNECTED_PM_ENABLE": false, - "ETH_ENABLED": true, - "ETH_SPI_ETHERNET_DM9051": false, - "ETH_SPI_ETHERNET_KSZ8851SNL": false, - "ETH_SPI_ETHERNET_W5500": false, - "ETH_TRANSMIT_MUTEX": false, - "ETH_USE_OPENETH": false, - "ETH_USE_SPI_ETHERNET": true, - "FATFS_AUTO_TYPE": true, - "FATFS_CODEPAGE": 437, - "FATFS_CODEPAGE_437": true, - "FATFS_CODEPAGE_720": false, - "FATFS_CODEPAGE_737": false, - "FATFS_CODEPAGE_771": false, - "FATFS_CODEPAGE_775": false, - "FATFS_CODEPAGE_850": false, - "FATFS_CODEPAGE_852": false, - "FATFS_CODEPAGE_855": false, - "FATFS_CODEPAGE_857": false, - "FATFS_CODEPAGE_860": false, - "FATFS_CODEPAGE_861": false, - "FATFS_CODEPAGE_862": false, - "FATFS_CODEPAGE_863": false, - "FATFS_CODEPAGE_864": false, - "FATFS_CODEPAGE_865": false, - "FATFS_CODEPAGE_866": false, - "FATFS_CODEPAGE_869": false, - "FATFS_CODEPAGE_932": false, - "FATFS_CODEPAGE_936": false, - "FATFS_CODEPAGE_949": false, - "FATFS_CODEPAGE_950": false, - "FATFS_CODEPAGE_DYNAMIC": false, - "FATFS_FAT12": false, - "FATFS_FAT16": false, - "FATFS_FS_LOCK": 0, - "FATFS_LFN_HEAP": false, - "FATFS_LFN_NONE": true, - "FATFS_LFN_STACK": false, - "FATFS_PER_FILE_CACHE": true, - "FATFS_SECTORS_PER_CLUSTER_1": true, - "FATFS_SECTORS_PER_CLUSTER_128": false, - "FATFS_SECTORS_PER_CLUSTER_16": false, - "FATFS_SECTORS_PER_CLUSTER_2": false, - "FATFS_SECTORS_PER_CLUSTER_32": false, - "FATFS_SECTORS_PER_CLUSTER_4": false, - "FATFS_SECTORS_PER_CLUSTER_64": false, - "FATFS_SECTORS_PER_CLUSTER_8": false, - "FATFS_SECTOR_1024": false, - "FATFS_SECTOR_2048": false, - "FATFS_SECTOR_4096": true, - "FATFS_SECTOR_512": false, - "FATFS_TIMEOUT_MS": 10000, - "FATFS_USE_FASTSEEK": false, - "FATFS_VOLUME_COUNT": 2, - "FREERTOS_ASSERT_ON_UNTESTED_FUNCTION": true, "FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true, "FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false, "FREERTOS_CHECK_STACKOVERFLOW_CANARY": true, @@ -311,71 +259,85 @@ "FREERTOS_CORETIMER_SYSTIMER_LVL3": false, "FREERTOS_DEBUG_OCDAWARE": true, "FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false, - "FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false, - "FREERTOS_ENABLE_TASK_SNAPSHOT": true, "FREERTOS_GENERATE_RUN_TIME_STATS": false, "FREERTOS_HZ": 100, "FREERTOS_IDLE_TASK_STACKSIZE": 1536, "FREERTOS_INTERRUPT_BACKTRACE": true, + "FREERTOS_IN_IRAM": false, "FREERTOS_ISR_STACKSIZE": 1536, "FREERTOS_MAX_TASK_NAME_LEN": 16, "FREERTOS_NO_AFFINITY": 2147483647, + "FREERTOS_NUMBER_OF_CORES": 1, "FREERTOS_OPTIMIZED_SCHEDULER": true, - "FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false, - "FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": false, + "FREERTOS_PORT": true, "FREERTOS_QUEUE_REGISTRY_SIZE": 0, "FREERTOS_SMP": false, "FREERTOS_SUPPORT_STATIC_ALLOCATION": true, "FREERTOS_SYSTICK_USES_SYSTIMER": true, "FREERTOS_TASK_FUNCTION_WRAPPER": true, + "FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1, + "FREERTOS_TASK_PRE_DELETION_HOOK": false, "FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1, "FREERTOS_TICK_SUPPORT_SYSTIMER": true, "FREERTOS_TIMER_QUEUE_LENGTH": 10, + "FREERTOS_TIMER_SERVICE_TASK_CORE_AFFINITY": 2147483647, + "FREERTOS_TIMER_SERVICE_TASK_NAME": "Tmr Svc", + "FREERTOS_TIMER_TASK_AFFINITY_CPU0": false, + "FREERTOS_TIMER_TASK_NO_AFFINITY": true, "FREERTOS_TIMER_TASK_PRIORITY": 1, "FREERTOS_TIMER_TASK_STACK_DEPTH": 2048, + "FREERTOS_TLSP_DELETION_CALLBACKS": true, "FREERTOS_UNICORE": true, + "FREERTOS_USE_APPLICATION_TASK_TAG": false, "FREERTOS_USE_IDLE_HOOK": false, + "FREERTOS_USE_LIST_DATA_INTEGRITY_CHECK_BYTES": false, "FREERTOS_USE_TICK_HOOK": false, + "FREERTOS_USE_TIMERS": true, "FREERTOS_USE_TRACE_FACILITY": false, "FREERTOS_WATCHPOINT_END_OF_STACK": false, "GDMA_CTRL_FUNC_IN_IRAM": false, - "GDMA_ISR_IRAM_SAFE": false, + "GDMA_ENABLE_DEBUG_LOG": false, + "GDMA_ISR_HANDLER_IN_IRAM": true, + "GDMA_OBJ_DRAM_SAFE": true, "GPIO_CTRL_FUNC_IN_IRAM": false, - "GPTIMER_CTRL_FUNC_IN_IRAM": false, - "GPTIMER_ENABLE_DEBUG_LOG": false, - "GPTIMER_ISR_IRAM_SAFE": false, - "GPTIMER_SUPPRESS_DEPRECATE_WARN": false, "HAL_ASSERTION_DISABLE": false, "HAL_ASSERTION_ENABLE": false, "HAL_ASSERTION_EQUALS_SYSTEM": true, "HAL_ASSERTION_SILENT": false, "HAL_DEFAULT_ASSERTION_LEVEL": 2, + "HAL_GPIO_USE_ROM_IMPL": true, "HEAP_ABORT_WHEN_ALLOCATION_FAILS": false, + "HEAP_PLACE_FUNCTION_INTO_FLASH": false, "HEAP_POISONING_COMPREHENSIVE": false, "HEAP_POISONING_DISABLED": true, "HEAP_POISONING_LIGHT": false, + "HEAP_TASK_TRACKING": false, "HEAP_TRACING_OFF": true, "HEAP_TRACING_STANDALONE": false, "HEAP_TRACING_TOHOST": false, - "HTTPD_ERR_RESP_NO_DELAY": true, - "HTTPD_LOG_PURGE_DATA": false, - "HTTPD_MAX_REQ_HDR_LEN": 512, - "HTTPD_MAX_URI_LEN": 512, - "HTTPD_PURGE_BUF_LEN": 32, - "HTTPD_QUEUE_WORK_BLOCKING": false, - "HTTPD_WS_SUPPORT": false, - "I2S_ENABLE_DEBUG_LOG": false, - "I2S_ISR_IRAM_SAFE": false, - "I2S_SUPPRESS_DEPRECATE_WARN": false, + "HEAP_USE_HOOKS": false, "IDF_CMAKE": true, + "IDF_EXPERIMENTAL_FEATURES": false, "IDF_FIRMWARE_CHIP_ID": 5, + "IDF_INIT_VERSION": "6.1.0", "IDF_TARGET": "esp32c3", "IDF_TARGET_ARCH": "riscv", "IDF_TARGET_ARCH_RISCV": true, "IDF_TARGET_ESP32C3": true, - "LCD_ENABLE_DEBUG_LOG": false, - "LCD_PANEL_IO_FORMAT_BUF_SIZE": 32, - "LOG_COLORS": true, + "IDF_TOOLCHAIN": "gcc", + "IDF_TOOLCHAIN_GCC": true, + "LIBC_ASSERT_BUFFER_SIZE": 200, + "LIBC_LOCKS_PLACE_IN_IRAM": true, + "LIBC_MISC_IN_IRAM": true, + "LIBC_NEWLIB": false, + "LIBC_OPTIMIZED_MISALIGNED_ACCESS": true, + "LIBC_PICOLIBC": true, + "LIBC_PICOLIBC_NEWLIB_COMPATIBILITY": true, + "LIBC_TIME_SYSCALL_USE_HRT": false, + "LIBC_TIME_SYSCALL_USE_NONE": false, + "LIBC_TIME_SYSCALL_USE_RTC": false, + "LIBC_TIME_SYSCALL_USE_RTC_HRT": true, + "LOG_COLORS": false, "LOG_DEFAULT_LEVEL": 3, "LOG_DEFAULT_LEVEL_DEBUG": false, "LOG_DEFAULT_LEVEL_ERROR": false, @@ -383,129 +345,76 @@ "LOG_DEFAULT_LEVEL_NONE": false, "LOG_DEFAULT_LEVEL_VERBOSE": false, "LOG_DEFAULT_LEVEL_WARN": false, + "LOG_DYNAMIC_LEVEL_CONTROL": true, + "LOG_IN_IRAM": true, + "LOG_MASTER_LEVEL": false, "LOG_MAXIMUM_EQUALS_DEFAULT": true, "LOG_MAXIMUM_LEVEL": 3, "LOG_MAXIMUM_LEVEL_DEBUG": false, "LOG_MAXIMUM_LEVEL_VERBOSE": false, + "LOG_MODE_TEXT": true, + "LOG_MODE_TEXT_EN": true, + "LOG_TAG_LEVEL_CACHE_ARRAY": false, + "LOG_TAG_LEVEL_CACHE_BINARY_MIN_HEAP": true, + "LOG_TAG_LEVEL_IMPL_CACHE_AND_LINKED_LIST": true, + "LOG_TAG_LEVEL_IMPL_CACHE_SIZE": 31, + "LOG_TAG_LEVEL_IMPL_LINKED_LIST": false, + "LOG_TAG_LEVEL_IMPL_NONE": false, "LOG_TIMESTAMP_SOURCE_RTOS": true, "LOG_TIMESTAMP_SOURCE_SYSTEM": false, - "LWIP_AUTOIP": false, - "LWIP_BRIDGEIF_MAX_PORTS": 7, - "LWIP_BROADCAST_PING": false, - "LWIP_CHECKSUM_CHECK_ICMP": true, - "LWIP_CHECKSUM_CHECK_IP": false, - "LWIP_CHECKSUM_CHECK_UDP": false, - "LWIP_DEBUG": false, - "LWIP_DHCPS": true, - "LWIP_DHCPS_LEASE_UNIT": 60, - "LWIP_DHCPS_MAX_STATION_NUM": 8, - "LWIP_DHCP_DISABLE_CLIENT_ID": false, - "LWIP_DHCP_DISABLE_VENDOR_CLASS_ID": true, - "LWIP_DHCP_DOES_ARP_CHECK": true, - "LWIP_DHCP_GET_NTP_SRV": false, - "LWIP_DHCP_OPTIONS_LEN": 68, - "LWIP_DHCP_RESTORE_LAST_IP": false, - "LWIP_DNS_SUPPORT_MDNS_QUERIES": true, - "LWIP_ESP_GRATUITOUS_ARP": true, - "LWIP_ESP_LWIP_ASSERT": true, - "LWIP_GARP_TMR_INTERVAL": 60, - "LWIP_HOOK_IP6_INPUT_CUSTOM": false, - "LWIP_HOOK_IP6_INPUT_DEFAULT": false, - "LWIP_HOOK_IP6_INPUT_NONE": true, - "LWIP_HOOK_IP6_ROUTE_CUSTOM": false, - "LWIP_HOOK_IP6_ROUTE_DEFAULT": false, - "LWIP_HOOK_IP6_ROUTE_NONE": true, - "LWIP_HOOK_ND6_GET_GW_CUSTOM": false, - "LWIP_HOOK_ND6_GET_GW_DEFAULT": false, - "LWIP_HOOK_ND6_GET_GW_NONE": true, - "LWIP_HOOK_NETCONN_EXT_RESOLVE_CUSTOM": false, - "LWIP_HOOK_NETCONN_EXT_RESOLVE_DEFAULT": false, - "LWIP_HOOK_NETCONN_EXT_RESOLVE_NONE": true, - "LWIP_HOOK_TCP_ISN_CUSTOM": false, - "LWIP_HOOK_TCP_ISN_DEFAULT": true, - "LWIP_HOOK_TCP_ISN_NONE": false, - "LWIP_ICMP": true, - "LWIP_IP4_FRAG": true, - "LWIP_IP4_REASSEMBLY": false, - "LWIP_IP6_FRAG": true, - "LWIP_IP6_REASSEMBLY": false, - "LWIP_IPV6": true, - "LWIP_IPV6_AUTOCONFIG": false, - "LWIP_IPV6_FORWARD": false, - "LWIP_IPV6_MEMP_NUM_ND6_QUEUE": 3, - "LWIP_IPV6_ND6_NUM_NEIGHBORS": 5, - "LWIP_IPV6_NUM_ADDRESSES": 3, - "LWIP_IP_FORWARD": false, - "LWIP_IRAM_OPTIMIZATION": false, - "LWIP_L2_TO_L3_COPY": false, - "LWIP_LOCAL_HOSTNAME": "espressif", - "LWIP_LOOPBACK_MAX_PBUFS": 8, - "LWIP_MAX_ACTIVE_TCP": 16, - "LWIP_MAX_LISTENING_TCP": 16, - "LWIP_MAX_RAW_PCBS": 16, - "LWIP_MAX_SOCKETS": 10, - "LWIP_MAX_UDP_PCBS": 16, - "LWIP_MULTICAST_PING": false, - "LWIP_NETBUF_RECVINFO": false, - "LWIP_NETIF_API": false, - "LWIP_NETIF_LOOPBACK": true, - "LWIP_NETIF_STATUS_CALLBACK": false, - "LWIP_NUM_NETIF_CLIENT_DATA": 0, - "LWIP_PPP_SUPPORT": false, - "LWIP_SLIP_SUPPORT": false, - "LWIP_SNTP_MAX_SERVERS": 1, - "LWIP_SNTP_UPDATE_DELAY": 3600000, - "LWIP_SO_LINGER": false, - "LWIP_SO_RCVBUF": false, - "LWIP_SO_REUSE": true, - "LWIP_SO_REUSE_RXTOALL": true, - "LWIP_STATS": false, - "LWIP_TCPIP_CORE_LOCKING": false, - "LWIP_TCPIP_RECVMBOX_SIZE": 32, - "LWIP_TCPIP_TASK_AFFINITY": 2147483647, - "LWIP_TCPIP_TASK_AFFINITY_CPU0": false, - "LWIP_TCPIP_TASK_AFFINITY_NO_AFFINITY": true, - "LWIP_TCPIP_TASK_STACK_SIZE": 3072, - "LWIP_TCP_HIGH_SPEED_RETRANSMISSION": true, - "LWIP_TCP_MAXRTX": 12, - "LWIP_TCP_MSL": 60000, - "LWIP_TCP_MSS": 1440, - "LWIP_TCP_OVERSIZE_DISABLE": false, - "LWIP_TCP_OVERSIZE_MSS": true, - "LWIP_TCP_OVERSIZE_QUARTER_MSS": false, - "LWIP_TCP_QUEUE_OOSEQ": true, - "LWIP_TCP_RECVMBOX_SIZE": 6, - "LWIP_TCP_RTO_TIME": 1500, - "LWIP_TCP_SACK_OUT": false, - "LWIP_TCP_SND_BUF_DEFAULT": 5744, - "LWIP_TCP_SYNMAXRTX": 12, - "LWIP_TCP_TMR_INTERVAL": 250, - "LWIP_TCP_WND_DEFAULT": 5744, - "LWIP_TIMERS_ONDEMAND": true, - "LWIP_UDP_RECVMBOX_SIZE": 6, - "LWIP_USE_ONLY_LWIP_SELECT": false, + "LOG_VERSION": 1, + "LOG_VERSION_1": true, + "LOG_VERSION_2": false, "MBEDTLS_AES_C": true, + "MBEDTLS_AES_FEWER_TABLES": false, + "MBEDTLS_AES_HW_SMALL_DATA_LEN_OPTIM": true, + "MBEDTLS_AES_INTERRUPT_LEVEL": 0, + "MBEDTLS_AES_ONLY_128_BIT_KEY_LENGTH": false, + "MBEDTLS_AES_ROM_TABLES": true, "MBEDTLS_AES_USE_INTERRUPT": true, + "MBEDTLS_ALLOW_WEAK_CERTIFICATE_VERIFICATION": false, + "MBEDTLS_ARIA_C": true, + "MBEDTLS_ASN1_PARSE_C": true, + "MBEDTLS_ASN1_WRITE_C": true, "MBEDTLS_ASYMMETRIC_CONTENT_LEN": true, "MBEDTLS_ATCA_HW_ECDSA_SIGN": false, "MBEDTLS_ATCA_HW_ECDSA_VERIFY": false, + "MBEDTLS_BASE64_C": true, + "MBEDTLS_BIGNUM_C": true, "MBEDTLS_BLOWFISH_C": false, "MBEDTLS_CAMELLIA_C": false, "MBEDTLS_CCM_C": true, "MBEDTLS_CERTIFICATE_BUNDLE": true, + "MBEDTLS_CERTIFICATE_BUNDLE_CROSS_SIGNED_VERIFY": false, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_CMN": false, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_FULL": true, "MBEDTLS_CERTIFICATE_BUNDLE_DEFAULT_NONE": false, + "MBEDTLS_CERTIFICATE_BUNDLE_DEPRECATED_LIST": false, "MBEDTLS_CERTIFICATE_BUNDLE_MAX_CERTS": 200, "MBEDTLS_CHACHA20_C": false, + "MBEDTLS_CIPHER_C": true, + "MBEDTLS_CIPHER_MODE_CBC": true, + "MBEDTLS_CIPHER_MODE_CFB": true, + "MBEDTLS_CIPHER_MODE_CTR": true, + "MBEDTLS_CIPHER_MODE_OFB": true, + "MBEDTLS_CIPHER_MODE_XTS": true, + "MBEDTLS_CIPHER_PADDING": true, + "MBEDTLS_CIPHER_PADDING_ONE_AND_ZEROS": true, + "MBEDTLS_CIPHER_PADDING_PKCS7": true, + "MBEDTLS_CIPHER_PADDING_ZEROS": true, + "MBEDTLS_CIPHER_PADDING_ZEROS_AND_LEN": true, "MBEDTLS_CLIENT_SSL_SESSION_TICKETS": true, - "MBEDTLS_CMAC_C": false, + "MBEDTLS_CMAC_C": true, + "MBEDTLS_COMPILER_OPTIMIZATION_NONE": true, + "MBEDTLS_COMPILER_OPTIMIZATION_PERF": false, + "MBEDTLS_COMPILER_OPTIMIZATION_SIZE": false, + "MBEDTLS_CTR_DRBG_C": true, "MBEDTLS_CUSTOM_CERTIFICATE_BUNDLE": false, "MBEDTLS_CUSTOM_MEM_ALLOC": false, "MBEDTLS_DEBUG": false, "MBEDTLS_DEFAULT_MEM_ALLOC": false, "MBEDTLS_DES_C": false, - "MBEDTLS_DHM_C": false, + "MBEDTLS_DHM_C": true, "MBEDTLS_DYNAMIC_BUFFER": false, "MBEDTLS_ECDH_C": true, "MBEDTLS_ECDSA_C": true, @@ -524,16 +433,24 @@ "MBEDTLS_ECP_DP_SECP256R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP384R1_ENABLED": true, "MBEDTLS_ECP_DP_SECP521R1_ENABLED": true, + "MBEDTLS_ECP_FIXED_POINT_OPTIM": false, "MBEDTLS_ECP_NIST_OPTIM": true, "MBEDTLS_ECP_RESTARTABLE": false, + "MBEDTLS_ENTROPY_C": true, + "MBEDTLS_ENTROPY_FORCE_SHA256": false, + "MBEDTLS_ERROR_STRINGS": true, "MBEDTLS_GCM_C": true, + "MBEDTLS_GCM_SUPPORT_NON_AES_CIPHER": true, + "MBEDTLS_GENPRIME": true, "MBEDTLS_HARDWARE_AES": true, "MBEDTLS_HARDWARE_MPI": true, "MBEDTLS_HARDWARE_SHA": true, "MBEDTLS_HAVE_TIME": true, "MBEDTLS_HAVE_TIME_DATE": false, "MBEDTLS_HKDF_C": false, + "MBEDTLS_HMAC_DRBG_C": true, "MBEDTLS_INTERNAL_MEM_ALLOC": true, + "MBEDTLS_KEY_EXCHANGE_DHE_RSA": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA": true, "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA": true, "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA": true, @@ -541,28 +458,54 @@ "MBEDTLS_KEY_EXCHANGE_ELLIPTIC_CURVE": true, "MBEDTLS_KEY_EXCHANGE_RSA": true, "MBEDTLS_LARGE_KEY_SOFTWARE_MPI": true, + "MBEDTLS_MD5_C": true, + "MBEDTLS_MD_C": true, + "MBEDTLS_MPI_INTERRUPT_LEVEL": 0, "MBEDTLS_MPI_USE_INTERRUPT": true, "MBEDTLS_NIST_KW_C": false, + "MBEDTLS_OID_C": true, "MBEDTLS_PEM_PARSE_C": true, "MBEDTLS_PEM_WRITE_C": true, + "MBEDTLS_PKCS12_C": true, + "MBEDTLS_PKCS1_V15": true, + "MBEDTLS_PKCS1_V21": true, + "MBEDTLS_PKCS5_C": true, + "MBEDTLS_PKCS7_C": true, + "MBEDTLS_PK_C": true, + "MBEDTLS_PK_PARSE_C": true, + "MBEDTLS_PK_PARSE_EC_COMPRESSED": true, + "MBEDTLS_PK_PARSE_EC_EXTENDED": true, + "MBEDTLS_PK_RSA_ALT_SUPPORT": true, + "MBEDTLS_PK_WRITE_C": true, "MBEDTLS_PLATFORM_TIME_ALT": false, "MBEDTLS_POLY1305_C": false, "MBEDTLS_PSK_MODES": false, "MBEDTLS_RIPEMD160_C": false, "MBEDTLS_ROM_MD5": true, - "MBEDTLS_SECURITY_RISKS": false, + "MBEDTLS_RSA_C": true, + "MBEDTLS_SELF_TEST": true, "MBEDTLS_SERVER_SSL_SESSION_TICKETS": true, + "MBEDTLS_SHA1_C": true, + "MBEDTLS_SHA224_C": false, + "MBEDTLS_SHA256_C": true, + "MBEDTLS_SHA384_C": true, + "MBEDTLS_SHA3_C": true, "MBEDTLS_SHA512_C": true, + "MBEDTLS_SSL_ALL_ALERT_MESSAGES": true, "MBEDTLS_SSL_ALPN": true, + "MBEDTLS_SSL_CACHE_C": true, "MBEDTLS_SSL_CONTEXT_SERIALIZATION": false, "MBEDTLS_SSL_IN_CONTENT_LEN": 16384, - "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": true, + "MBEDTLS_SSL_KEEP_PEER_CERTIFICATE": false, + "MBEDTLS_SSL_KEYING_MATERIAL_EXPORT": false, + "MBEDTLS_SSL_MAX_FRAGMENT_LENGTH": true, "MBEDTLS_SSL_OUT_CONTENT_LEN": 4096, "MBEDTLS_SSL_PROTO_DTLS": false, "MBEDTLS_SSL_PROTO_GMTSSL1_1": false, "MBEDTLS_SSL_PROTO_TLS1_2": true, "MBEDTLS_SSL_PROTO_TLS1_3": false, "MBEDTLS_SSL_RENEGOTIATION": true, + "MBEDTLS_SSL_SERVER_NAME_INDICATION": true, "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH": false, "MBEDTLS_THREADING_C": false, "MBEDTLS_TLS_CLIENT": true, @@ -572,37 +515,21 @@ "MBEDTLS_TLS_SERVER": true, "MBEDTLS_TLS_SERVER_AND_CLIENT": true, "MBEDTLS_TLS_SERVER_ONLY": false, + "MBEDTLS_VERSION_C": true, + "MBEDTLS_VERSION_FEATURES": false, + "MBEDTLS_VER_4_X_SUPPORT": false, + "MBEDTLS_X509_CREATE_C": false, "MBEDTLS_X509_CRL_PARSE_C": true, + "MBEDTLS_X509_CRT_PARSE_C": true, "MBEDTLS_X509_CSR_PARSE_C": true, + "MBEDTLS_X509_REMOVE_INFO": false, + "MBEDTLS_X509_RSASSA_PSS_SUPPORT": true, "MBEDTLS_X509_TRUSTED_CERT_CALLBACK": false, + "MBEDTLS_X509_USE_C": true, "MBEDTLS_XTEA_C": false, "MMU_PAGE_MODE": "64KB", "MMU_PAGE_SIZE": 65536, "MMU_PAGE_SIZE_64KB": true, - "MQTT_CUSTOM_OUTBOX": false, - "MQTT_MSG_ID_INCREMENTAL": false, - "MQTT_PROTOCOL_311": true, - "MQTT_PROTOCOL_5": false, - "MQTT_REPORT_DELETED_MESSAGES": false, - "MQTT_SKIP_PUBLISH_IF_DISCONNECTED": false, - "MQTT_TASK_CORE_SELECTION_ENABLED": false, - "MQTT_TRANSPORT_SSL": true, - "MQTT_TRANSPORT_WEBSOCKET": true, - "MQTT_TRANSPORT_WEBSOCKET_SECURE": true, - "MQTT_USE_CUSTOM_CONFIG": false, - "NEWLIB_NANO_FORMAT": false, - "NEWLIB_STDIN_LINE_ENDING_CR": true, - "NEWLIB_STDIN_LINE_ENDING_CRLF": false, - "NEWLIB_STDIN_LINE_ENDING_LF": false, - "NEWLIB_STDOUT_LINE_ENDING_CR": false, - "NEWLIB_STDOUT_LINE_ENDING_CRLF": true, - "NEWLIB_STDOUT_LINE_ENDING_LF": false, - "NEWLIB_TIME_SYSCALL_USE_HRT": false, - "NEWLIB_TIME_SYSCALL_USE_NONE": false, - "NEWLIB_TIME_SYSCALL_USE_RTC": false, - "NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true, - "NVS_ASSERT_ERROR_CHECK": false, - "OPENTHREAD_ENABLED": false, "PARTITION_TABLE_CUSTOM": false, "PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv", "PARTITION_TABLE_FILENAME": "partitions_singleapp.csv", @@ -611,28 +538,22 @@ "PARTITION_TABLE_SINGLE_APP": true, "PARTITION_TABLE_SINGLE_APP_LARGE": false, "PARTITION_TABLE_TWO_OTA": false, - "PERIPH_CTRL_FUNC_IN_IRAM": false, + "PARTITION_TABLE_TWO_OTA_LARGE": false, "PM_ENABLE": false, + "PM_ESP_SLEEP_POWER_DOWN_CPU": true, "PM_POWER_DOWN_CPU_IN_LIGHT_SLEEP": true, + "PM_SLEEP_FUNC_IN_IRAM": true, + "PM_SLP_IRAM_OPT": true, "PTHREAD_STACK_MIN": 768, "PTHREAD_TASK_CORE_DEFAULT": -1, "PTHREAD_TASK_NAME_DEFAULT": "pthread", "PTHREAD_TASK_PRIO_DEFAULT": 5, "PTHREAD_TASK_STACK_SIZE_DEFAULT": 3072, - "RINGBUF_PLACE_FUNCTIONS_INTO_FLASH": false, - "RINGBUF_PLACE_ISR_FUNCTIONS_INTO_FLASH": false, - "RMT_ENABLE_DEBUG_LOG": false, - "RMT_ISR_IRAM_SAFE": false, - "RMT_SUPPRESS_DEPRECATE_WARN": false, "RTC_CLK_CAL_CYCLES": 1024, "RTC_CLK_SRC_EXT_CRYS": false, "RTC_CLK_SRC_EXT_OSC": false, "RTC_CLK_SRC_INT_8MD256": false, "RTC_CLK_SRC_INT_RC": true, - "RTC_CLOCK_BBPLL_POWER_ON_WITH_USB": true, - "SDM_CTRL_FUNC_IN_IRAM": false, - "SDM_ENABLE_DEBUG_LOG": false, - "SDM_SUPPRESS_DEPRECATE_WARN": false, "SECURE_BOOT": false, "SECURE_BOOT_V2_PREFERRED": true, "SECURE_BOOT_V2_RSA_SUPPORTED": true, @@ -644,14 +565,14 @@ "SOC_ADC_CALIBRATION_V1_SUPPORTED": true, "SOC_ADC_DIGI_CONTROLLER_NUM": 1, "SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4, - "SOC_ADC_DIGI_FILTER_NUM": 2, + "SOC_ADC_DIGI_IIR_FILTER_NUM": 2, "SOC_ADC_DIGI_MAX_BITWIDTH": 12, "SOC_ADC_DIGI_MIN_BITWIDTH": 12, "SOC_ADC_DIGI_MONITOR_NUM": 2, "SOC_ADC_DIGI_RESULT_BYTES": 4, "SOC_ADC_DIG_CTRL_SUPPORTED": true, + "SOC_ADC_DIG_IIR_FILTER_SUPPORTED": true, "SOC_ADC_DMA_SUPPORTED": true, - "SOC_ADC_FILTER_SUPPORTED": true, "SOC_ADC_MAX_CHANNEL_NUM": 5, "SOC_ADC_MONITOR_SUPPORTED": true, "SOC_ADC_PATT_LEN_MAX": 8, @@ -660,72 +581,115 @@ "SOC_ADC_RTC_MIN_BITWIDTH": 12, "SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 83333, "SOC_ADC_SAMPLE_FREQ_THRES_LOW": 611, + "SOC_ADC_SELF_HW_CALI_SUPPORTED": true, + "SOC_ADC_SHARED_POWER": true, "SOC_ADC_SUPPORTED": true, "SOC_AES_GDMA": true, "SOC_AES_SUPPORTED": true, "SOC_AES_SUPPORT_AES_128": true, "SOC_AES_SUPPORT_AES_256": true, "SOC_AES_SUPPORT_DMA": true, + "SOC_AHB_GDMA_SUPPORTED": true, + "SOC_AHB_GDMA_VERSION": 1, "SOC_APB_BACKUP_DMA": true, + "SOC_ASSIST_DEBUG_SUPPORTED": true, "SOC_ASYNC_MEMCPY_SUPPORTED": true, + "SOC_BLE_50_SUPPORTED": true, + "SOC_BLE_DEVICE_PRIVACY_SUPPORTED": true, + "SOC_BLE_MESH_SUPPORTED": true, "SOC_BLE_SUPPORTED": true, + "SOC_BLUFI_SUPPORTED": true, + "SOC_BOD_SUPPORTED": true, "SOC_BROWNOUT_RESET_SUPPORTED": true, "SOC_BT_SUPPORTED": true, + "SOC_CACHE_FREEZE_SUPPORTED": true, "SOC_CACHE_MEMORY_IBANK_SIZE": 16384, + "SOC_CLK_LP_FAST_SUPPORT_XTAL_D2": true, + "SOC_CLK_RC_FAST_D256_SUPPORTED": true, + "SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true, + "SOC_CLK_TREE_SUPPORTED": true, + "SOC_CLK_XTAL32K_SUPPORTED": true, "SOC_COEX_HW_PTI": true, "SOC_CPU_BREAKPOINTS_NUM": 8, "SOC_CPU_CORES_NUM": 1, + "SOC_CPU_HAS_CSR_PC": true, "SOC_CPU_HAS_FLEXIBLE_INTC": true, "SOC_CPU_INTR_NUM": 32, "SOC_CPU_WATCHPOINTS_NUM": 8, - "SOC_CPU_WATCHPOINT_SIZE": 2147483648, + "SOC_CPU_WATCHPOINT_MAX_REGION_SIZE": 2147483648, "SOC_DEDICATED_GPIO_SUPPORTED": true, - "SOC_DEDIC_GPIO_IN_CHANNELS_NUM": 8, - "SOC_DEDIC_GPIO_OUT_CHANNELS_NUM": 8, - "SOC_DEDIC_PERIPH_ALWAYS_ENABLE": true, + "SOC_DEEP_SLEEP_SUPPORTED": true, "SOC_DIG_SIGN_SUPPORTED": true, "SOC_DS_KEY_CHECK_MAX_WAIT_US": 1100, "SOC_DS_KEY_PARAM_MD_IV_LENGTH": 16, "SOC_DS_SIGNATURE_MAX_BIT_LEN": 3072, + "SOC_EFUSE_BLOCK9_KEY_PURPOSE_QUIRK": true, + "SOC_EFUSE_DIS_DIRECT_BOOT": true, + "SOC_EFUSE_DIS_DOWNLOAD_ICACHE": true, + "SOC_EFUSE_DIS_ICACHE": true, + "SOC_EFUSE_DIS_PAD_JTAG": true, + "SOC_EFUSE_DIS_USB_JTAG": true, "SOC_EFUSE_HAS_EFUSE_RST_BUG": true, "SOC_EFUSE_KEY_PURPOSE_FIELD": true, "SOC_EFUSE_REVOKE_BOOT_KEY_DIGESTS": true, "SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": 3, + "SOC_EFUSE_SOFT_DIS_JTAG": true, + "SOC_EFUSE_SUPPORTED": true, + "SOC_EFUSE_XTS_AES_KEY_128": true, "SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32, "SOC_FLASH_ENCRYPTION_XTS_AES": true, "SOC_FLASH_ENCRYPTION_XTS_AES_128": true, "SOC_FLASH_ENC_SUPPORTED": true, - "SOC_GDMA_GROUPS": 1, - "SOC_GDMA_PAIRS_PER_GROUP": 3, "SOC_GDMA_SUPPORTED": true, - "SOC_GDMA_TX_RX_SHARE_INTERRUPT": true, + "SOC_GPIO_CLOCKOUT_BY_GPIO_MATRIX": true, + "SOC_GPIO_CLOCKOUT_CHANNEL_NUM": 3, + "SOC_GPIO_DEEP_SLEEP_WAKE_SUPPORTED_PIN_CNT": 6, "SOC_GPIO_DEEP_SLEEP_WAKE_VALID_GPIO_MASK": 0, + "SOC_GPIO_IN_RANGE_MAX": 21, + "SOC_GPIO_OUT_RANGE_MAX": 21, "SOC_GPIO_PIN_COUNT": 22, "SOC_GPIO_PORT": 1, - "SOC_GPIO_SUPPORTS_RTC_INDEPENDENT": true, "SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP": true, "SOC_GPIO_SUPPORT_FORCE_HOLD": true, - "SOC_GPIO_SUPPORT_SLP_SWITCH": true, + "SOC_GPIO_SUPPORT_PIN_GLITCH_FILTER": true, + "SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 4194240, + "SOC_GPSPI_SUPPORTED": true, + "SOC_GPTIMER_SUPPORTED": true, "SOC_HMAC_SUPPORTED": true, + "SOC_HP_I2C_NUM": 1, + "SOC_I2C_CMD_REG_NUM": 8, "SOC_I2C_FIFO_LEN": 32, "SOC_I2C_NUM": 1, + "SOC_I2C_SLAVE_CAN_GET_STRETCH_CAUSE": true, + "SOC_I2C_SLAVE_SUPPORT_BROADCAST": true, + "SOC_I2C_SLAVE_SUPPORT_I2CRAM_ACCESS": true, + "SOC_I2C_SUPPORTED": true, + "SOC_I2C_SUPPORT_10BIT_ADDR": true, "SOC_I2C_SUPPORT_HW_CLR_BUS": true, "SOC_I2C_SUPPORT_RTC": true, "SOC_I2C_SUPPORT_SLAVE": true, "SOC_I2C_SUPPORT_XTAL": true, "SOC_I2S_HW_VERSION_2": true, - "SOC_I2S_NUM": true, + "SOC_I2S_PDM_MAX_RX_LINES": 1, + "SOC_I2S_PDM_MAX_TX_LINES": 2, "SOC_I2S_SUPPORTED": true, "SOC_I2S_SUPPORTS_PCM": true, + "SOC_I2S_SUPPORTS_PCM2PDM": true, "SOC_I2S_SUPPORTS_PDM": true, - "SOC_I2S_SUPPORTS_PDM_CODEC": true, + "SOC_I2S_SUPPORTS_PDM_RX": true, "SOC_I2S_SUPPORTS_PDM_TX": true, "SOC_I2S_SUPPORTS_TDM": true, "SOC_LEDC_CHANNEL_NUM": 6, + "SOC_LEDC_SUPPORTED": true, "SOC_LEDC_SUPPORT_APB_CLOCK": true, "SOC_LEDC_SUPPORT_FADE_STOP": true, "SOC_LEDC_SUPPORT_XTAL_CLOCK": true, - "SOC_LEDC_TIMER_BIT_WIDE_NUM": 14, + "SOC_LEDC_TIMER_BIT_WIDTH": 14, + "SOC_LEDC_TIMER_NUM": 4, + "SOC_LIGHT_SLEEP_SUPPORTED": true, + "SOC_LP_PERIPH_SHARE_INTERRUPT": true, + "SOC_LP_TIMER_BIT_WIDTH_HI": 16, + "SOC_LP_TIMER_BIT_WIDTH_LO": 32, "SOC_MAC_BB_PD_MEM_SIZE": 192, "SOC_MEMPROT_CPU_PREFETCH_PAD_SIZE": 16, "SOC_MEMPROT_MEM_ALIGN_SIZE": 512, @@ -735,39 +699,42 @@ "SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true, "SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true, "SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true, + "SOC_MEMSPI_SUPPORT_CONTROL_DUMMY_OUT": true, + "SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 1, + "SOC_MMU_PERIPH_NUM": 1, + "SOC_MPI_MEM_BLOCKS_NUM": 4, + "SOC_MPI_OPERATIONS_NUM": 3, "SOC_MPI_SUPPORTED": true, "SOC_MPU_MIN_REGION_SIZE": 536870912, "SOC_MPU_REGIONS_MAX_NUM": 8, + "SOC_MWDT_SUPPORT_XTAL": true, + "SOC_PHY_COMBO_MODULE": true, "SOC_PHY_DIG_REGS_MEM_SIZE": 21, + "SOC_PHY_SUPPORTED": true, + "SOC_PM_CPU_RETENTION_BY_RTCCNTL": true, + "SOC_PM_MODEM_PD_BY_SW": true, + "SOC_PM_MODEM_RETENTION_BY_BACKUPDMA": true, + "SOC_PM_SUPPORTED": true, "SOC_PM_SUPPORT_BT_PD": true, "SOC_PM_SUPPORT_BT_WAKEUP": true, "SOC_PM_SUPPORT_CPU_PD": true, + "SOC_PM_SUPPORT_MAC_BB_PD": true, + "SOC_PM_SUPPORT_RC_FAST_PD": true, + "SOC_PM_SUPPORT_VDDSDIO_PD": true, "SOC_PM_SUPPORT_WIFI_PD": true, "SOC_PM_SUPPORT_WIFI_WAKEUP": true, - "SOC_RMT_CHANNELS_PER_GROUP": 4, - "SOC_RMT_GROUPS": 1, "SOC_RMT_MEM_WORDS_PER_CHANNEL": 48, - "SOC_RMT_RX_CANDIDATES_PER_GROUP": 2, "SOC_RMT_SUPPORTED": true, - "SOC_RMT_SUPPORT_APB": true, - "SOC_RMT_SUPPORT_RC_FAST": true, - "SOC_RMT_SUPPORT_RX_DEMODULATION": true, "SOC_RMT_SUPPORT_RX_PINGPONG": true, - "SOC_RMT_SUPPORT_TX_ASYNC_STOP": true, - "SOC_RMT_SUPPORT_TX_CARRIER_DATA_ONLY": true, "SOC_RMT_SUPPORT_TX_LOOP_COUNT": true, - "SOC_RMT_SUPPORT_TX_SYNCHRO": true, - "SOC_RMT_SUPPORT_XTAL": true, - "SOC_RMT_TX_CANDIDATES_PER_GROUP": 2, + "SOC_RNG_SUPPORTED": true, "SOC_RSA_MAX_BIT_LEN": 3072, "SOC_RTCIO_PIN_COUNT": 0, "SOC_RTC_CNTL_CPU_PD_DMA_BUS_WIDTH": 128, "SOC_RTC_CNTL_CPU_PD_REG_FILE_NUM": 108, "SOC_RTC_FAST_MEM_SUPPORTED": true, "SOC_RTC_MEM_SUPPORTED": true, - "SOC_RTC_SLOW_CLOCK_SUPPORT_8MD256": true, - "SOC_SDM_CHANNELS_PER_GROUP": 4, - "SOC_SDM_GROUPS": 1, + "SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true, "SOC_SDM_SUPPORTED": true, "SOC_SECURE_BOOT_SUPPORTED": true, "SOC_SECURE_BOOT_V2_RSA": true, @@ -780,8 +747,11 @@ "SOC_SHA_SUPPORT_SHA1": true, "SOC_SHA_SUPPORT_SHA224": true, "SOC_SHA_SUPPORT_SHA256": true, + "SOC_SLEEP_SYSTIMER_STALL_WORKAROUND": true, + "SOC_SLEEP_TGWDT_STOP_WORKAROUND": true, + "SOC_SPI_EXTERNAL_NOR_FLASH_SUPPORTED": true, + "SOC_SPI_FLASH_SUPPORTED": true, "SOC_SPI_MAXIMUM_BUFFER_SIZE": 64, - "SOC_SPI_MAX_PRE_DIVIDER": 16, "SOC_SPI_MEM_SUPPORT_AUTO_RESUME": true, "SOC_SPI_MEM_SUPPORT_AUTO_SUSPEND": true, "SOC_SPI_MEM_SUPPORT_AUTO_WAIT_IDLE": true, @@ -789,12 +759,8 @@ "SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true, "SOC_SPI_MEM_SUPPORT_IDLE_INTR": true, "SOC_SPI_MEM_SUPPORT_SW_SUSPEND": true, + "SOC_SPI_MEM_SUPPORT_WRAP": true, "SOC_SPI_PERIPH_NUM": 2, - "SOC_SPI_PERIPH_SUPPORT_CONTROL_DUMMY_OUT": true, - "SOC_SPI_SLAVE_SUPPORT_SEG_TRANS": true, - "SOC_SPI_SUPPORT_CD_SIG": true, - "SOC_SPI_SUPPORT_CONTINUOUS_TRANS": true, - "SOC_SPI_SUPPORT_DDRCLK": true, "SOC_SPI_SUPPORT_SLAVE_HD_VER2": true, "SOC_SUPPORTS_SECURE_DL_MODE": true, "SOC_SUPPORT_COEXISTENCE": true, @@ -810,56 +776,37 @@ "SOC_TEMPERATURE_SENSOR_SUPPORT_FAST_RC": true, "SOC_TEMPERATURE_SENSOR_SUPPORT_XTAL": true, "SOC_TEMP_SENSOR_SUPPORTED": true, - "SOC_TIMER_GROUPS": 2, - "SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 54, - "SOC_TIMER_GROUP_SUPPORT_APB": true, - "SOC_TIMER_GROUP_SUPPORT_XTAL": true, - "SOC_TIMER_GROUP_TIMERS_PER_GROUP": 1, - "SOC_TIMER_GROUP_TOTAL_TIMERS": 2, - "SOC_TWAI_BRP_MAX": 16384, - "SOC_TWAI_BRP_MIN": 2, + "SOC_TWAI_CONTROLLER_NUM": 1, + "SOC_TWAI_MASK_FILTER_NUM": 1, "SOC_TWAI_SUPPORTED": true, - "SOC_TWAI_SUPPORTS_RX_STATUS": true, "SOC_UART_BITRATE_MAX": 5000000, "SOC_UART_FIFO_LEN": 128, + "SOC_UART_HP_NUM": 2, "SOC_UART_NUM": 2, - "SOC_UART_REQUIRE_CORE_RESET": true, + "SOC_UART_SUPPORTED": true, "SOC_UART_SUPPORT_APB_CLK": true, "SOC_UART_SUPPORT_FSM_TX_WAIT_SEND": true, "SOC_UART_SUPPORT_RTC_CLK": true, "SOC_UART_SUPPORT_WAKEUP_INT": true, "SOC_UART_SUPPORT_XTAL_CLK": true, + "SOC_UART_WAKEUP_SUPPORT_ACTIVE_THRESH_MODE": true, + "SOC_UHCI_NUM": 1, + "SOC_UHCI_SUPPORTED": true, "SOC_USB_SERIAL_JTAG_SUPPORTED": true, + "SOC_WDT_SUPPORTED": true, "SOC_WIFI_CSI_SUPPORT": true, "SOC_WIFI_FTM_SUPPORT": true, "SOC_WIFI_GCMP_SUPPORT": true, "SOC_WIFI_HW_TSF": true, "SOC_WIFI_LIGHT_SLEEP_CLK_WIDTH": 12, "SOC_WIFI_MESH_SUPPORT": true, + "SOC_WIFI_PHY_NEEDS_USB_WORKAROUND": true, "SOC_WIFI_SUPPORTED": true, + "SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true, + "SOC_WIFI_TXOP_SUPPORT": true, "SOC_WIFI_WAPI_SUPPORT": true, "SOC_XTAL_SUPPORT_40M": true, "SOC_XT_WDT_SUPPORTED": true, - "SPIFFS_API_DBG": false, - "SPIFFS_CACHE": true, - "SPIFFS_CACHE_DBG": false, - "SPIFFS_CACHE_STATS": false, - "SPIFFS_CACHE_WR": true, - "SPIFFS_CHECK_DBG": false, - "SPIFFS_DBG": false, - "SPIFFS_FOLLOW_SYMLINKS": false, - "SPIFFS_GC_DBG": false, - "SPIFFS_GC_MAX_RUNS": 10, - "SPIFFS_GC_STATS": false, - "SPIFFS_MAX_PARTITIONS": 3, - "SPIFFS_META_LENGTH": 4, - "SPIFFS_OBJ_NAME_LEN": 32, - "SPIFFS_PAGE_CHECK": true, - "SPIFFS_PAGE_SIZE": 256, - "SPIFFS_TEST_VISUALISATION": false, - "SPIFFS_USE_MAGIC": true, - "SPIFFS_USE_MAGIC_LENGTH": true, - "SPIFFS_USE_MTIME": true, "SPI_FLASH_AUTO_SUSPEND": false, "SPI_FLASH_BROWNOUT_RESET": true, "SPI_FLASH_BROWNOUT_RESET_XMC": true, @@ -872,11 +819,11 @@ "SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true, "SPI_FLASH_ERASE_YIELD_DURATION_MS": 20, "SPI_FLASH_ERASE_YIELD_TICKS": 1, - "SPI_FLASH_HAS_ROM_IMPL": true, + "SPI_FLASH_FORCE_ENABLE_C6_H2_SUSPEND": false, + "SPI_FLASH_FORCE_ENABLE_XMC_C_SUSPEND": false, "SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false, - "SPI_FLASH_ROM_DRIVER_PATCH": true, + "SPI_FLASH_PLACE_FUNCTIONS_IN_IRAM": true, "SPI_FLASH_ROM_IMPL": false, - "SPI_FLASH_SHARE_SPI1_BUS": false, "SPI_FLASH_SIZE_OVERRIDE": false, "SPI_FLASH_SUPPORT_BOYA_CHIP": true, "SPI_FLASH_SUPPORT_GD_CHIP": true, @@ -884,51 +831,17 @@ "SPI_FLASH_SUPPORT_MXIC_CHIP": true, "SPI_FLASH_SUPPORT_TH_CHIP": true, "SPI_FLASH_SUPPORT_WINBOND_CHIP": true, + "SPI_FLASH_SUSPEND_TSUS_VAL_US": 50, + "SPI_FLASH_VENDOR_BOYA_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_GD_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_ISSI_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_MXIC_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_TH_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_WINBOND_SUPPORT_ENABLED": true, + "SPI_FLASH_VENDOR_XMC_SUPPORT_ENABLED": true, "SPI_FLASH_VERIFY_WRITE": false, "SPI_FLASH_WRITE_CHUNK_SIZE": 8192, "SPI_FLASH_YIELD_DURING_ERASE": true, - "SPI_MASTER_IN_IRAM": false, - "SPI_MASTER_ISR_IN_IRAM": true, - "SPI_SLAVE_IN_IRAM": false, - "SPI_SLAVE_ISR_IN_IRAM": true, - "TEMP_SENSOR_ENABLE_DEBUG_LOG": false, - "TEMP_SENSOR_SUPPRESS_DEPRECATE_WARN": false, - "TWAI_ISR_IN_IRAM": false, - "UART_ISR_IN_IRAM": false, - "UNITY_ENABLE_64BIT": false, - "UNITY_ENABLE_BACKTRACE_ON_FAIL": false, - "UNITY_ENABLE_COLOR": false, - "UNITY_ENABLE_DOUBLE": true, - "UNITY_ENABLE_FIXTURE": false, - "UNITY_ENABLE_FLOAT": true, - "UNITY_ENABLE_IDF_TEST_RUNNER": true, - "VFS_SEMIHOSTFS_MAX_MOUNT_POINTS": 1, - "VFS_SUPPORT_DIR": true, - "VFS_SUPPORT_IO": true, - "VFS_SUPPORT_SELECT": true, - "VFS_SUPPORT_TERMIOS": true, - "VFS_SUPPRESS_SELECT_DEBUG_OUTPUT": true, - "WIFI_PROV_AUTOSTOP_TIMEOUT": 30, - "WIFI_PROV_BLE_FORCE_ENCRYPTION": true, - "WIFI_PROV_SCAN_MAX_ENTRIES": 16, - "WL_SECTOR_SIZE": 4096, - "WL_SECTOR_SIZE_4096": true, - "WL_SECTOR_SIZE_512": false, - "WPA_11KV_SUPPORT": false, - "WPA_11R_SUPPORT": false, - "WPA_DEBUG_PRINT": false, - "WPA_DPP_SUPPORT": false, - "WPA_MBEDTLS_CRYPTO": true, - "WPA_MBEDTLS_TLS_CLIENT": true, - "WPA_MBO_SUPPORT": false, - "WPA_SUITE_B_192": false, - "WPA_TESTING_OPTIONS": false, - "WPA_WAPI_PSK": false, - "WPA_WPS_SOFTAP_REGISTRAR": false, - "WPA_WPS_STRICT": false, - "WS_BUFFER_SIZE": 1024, - "WS_DYNAMIC_BUFFER": false, - "WS_TRANSPORT": true, "XTAL_FREQ": 40, "XTAL_FREQ_40": true } \ No newline at end of file diff --git a/tests/fixtures/hello_world_esp32c3_panic/build/flasher_args.json b/tests/fixtures/hello_world_esp32c3_panic/build/flasher_args.json index 07da4247..4ff8b513 100644 --- a/tests/fixtures/hello_world_esp32c3_panic/build/flasher_args.json +++ b/tests/fixtures/hello_world_esp32c3_panic/build/flasher_args.json @@ -1,7 +1,7 @@ { - "write_flash_args" : [ "--flash_mode", "dio", - "--flash_size", "2MB", - "--flash_freq", "80m" ], + "write_flash_args" : [ "--flash-mode", "dio", + "--flash-size", "2MB", + "--flash-freq", "80m" ], "flash_settings" : { "flash_mode": "dio", "flash_size": "2MB", @@ -9,15 +9,15 @@ }, "flash_files" : { "0x0" : "bootloader/bootloader.bin", - "0x10000" : "hello_world.bin", - "0x8000" : "partition_table/partition-table.bin" + "0x8000" : "partition_table/partition-table.bin", + "0x10000" : "hello_world.bin" }, "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, - "app" : { "offset" : "0x10000", "file" : "hello_world.bin", "encrypted" : "false" }, "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "hello_world.bin", "encrypted" : "false" }, "extra_esptool_args" : { - "after" : "hard_reset", - "before" : "default_reset", + "after" : "hard-reset", + "before" : "default-reset", "stub" : true, "chip" : "esp32c3" } diff --git a/tests/fixtures/hello_world_esp32c3_panic/build/gdbinit/prefix_map b/tests/fixtures/hello_world_esp32c3_panic/build/gdbinit/prefix_map new file mode 100644 index 00000000..74cdc1a9 --- /dev/null +++ b/tests/fixtures/hello_world_esp32c3_panic/build/gdbinit/prefix_map @@ -0,0 +1,45 @@ +set substitute-path /COMPONENT_RISCV_DIR /Users/fuhanxi/esp/esp-idf/components/riscv +set substitute-path /COMPONENT_ESP_STDIO_DIR /Users/fuhanxi/esp/esp-idf/components/esp_stdio +set substitute-path /COMPONENT_ESP_HAL_TIMG_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_timg +set substitute-path /COMPONENT_ESP_TIMER_DIR /Users/fuhanxi/esp/esp-idf/components/esp_timer +set substitute-path /COMPONENT_ESP_MM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_mm +set substitute-path /COMPONENT_ESP_HAL_GPIO_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_gpio +set substitute-path /COMPONENT_ESP_HAL_GPSPI_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_gpspi +set substitute-path /COMPONENT_ESP_HAL_MSPI_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_mspi +set substitute-path /COMPONENT_ESP_HAL_WDT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_wdt +set substitute-path /COMPONENT_ESP_BLOCKDEV_DIR /Users/fuhanxi/esp/esp-idf/components/esp_blockdev +set substitute-path /COMPONENT_BOOTLOADER_DIR /Users/fuhanxi/esp/esp-idf/components/bootloader +set substitute-path /COMPONENT_ESPTOOL_PY_DIR /Users/fuhanxi/esp/esp-idf/components/esptool_py +set substitute-path /COMPONENT_PARTITION_TABLE_DIR /Users/fuhanxi/esp/esp-idf/components/partition_table +set substitute-path /COMPONENT_ESP_APP_FORMAT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_app_format +set substitute-path /COMPONENT_ESP_BOOTLOADER_FORMAT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_bootloader_format +set substitute-path /COMPONENT_APP_UPDATE_DIR /Users/fuhanxi/esp/esp-idf/components/app_update +set substitute-path /COMPONENT_ESP_PARTITION_DIR /Users/fuhanxi/esp/esp-idf/components/esp_partition +set substitute-path /COMPONENT_EFUSE_DIR /Users/fuhanxi/esp/esp-idf/components/efuse +set substitute-path /COMPONENT_ESP_SECURITY_DIR /Users/fuhanxi/esp/esp-idf/components/esp_security +set substitute-path /COMPONENT_ESP_DRIVER_GPIO_DIR /Users/fuhanxi/esp/esp-idf/components/esp_driver_gpio +set substitute-path /COMPONENT_ESP_PM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_pm +set substitute-path /COMPONENT_MBEDTLS_DIR /Users/fuhanxi/esp/esp-idf/components/mbedtls +set substitute-path /COMPONENT_ESP_HAL_ANA_CONV_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_ana_conv +set substitute-path /COMPONENT_BOOTLOADER_SUPPORT_DIR /Users/fuhanxi/esp/esp-idf/components/bootloader_support +set substitute-path /COMPONENT_ESP_USB_CDC_ROM_CONSOLE_DIR /Users/fuhanxi/esp/esp-idf/components/esp_usb_cdc_rom_console +set substitute-path /COMPONENT_ESP_SYSTEM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_system +set substitute-path /COMPONENT_ESP_COMMON_DIR /Users/fuhanxi/esp/esp-idf/components/esp_common +set substitute-path /COMPONENT_ESP_ROM_DIR /Users/fuhanxi/esp/esp-idf/components/esp_rom +set substitute-path /COMPONENT_LOG_DIR /Users/fuhanxi/esp/esp-idf/components/log +set substitute-path /COMPONENT_HEAP_DIR /Users/fuhanxi/esp/esp-idf/components/heap +set substitute-path /COMPONENT_SOC_DIR /Users/fuhanxi/esp/esp-idf/components/soc +set substitute-path /COMPONENT_ESP_HAL_DMA_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_dma +set substitute-path /COMPONENT_ESP_HAL_USB_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_usb +set substitute-path /COMPONENT_ESP_HAL_TOUCH_SENS_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_touch_sens +set substitute-path /COMPONENT_ESP_HAL_I2S_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hal_i2s +set substitute-path /COMPONENT_ESP_HW_SUPPORT_DIR /Users/fuhanxi/esp/esp-idf/components/esp_hw_support +set substitute-path /COMPONENT_FREERTOS_DIR /Users/fuhanxi/esp/esp-idf/components/freertos +set substitute-path /COMPONENT_ESP_LIBC_DIR /Users/fuhanxi/esp/esp-idf/components/esp_libc +set substitute-path /COMPONENT_PTHREAD_DIR /Users/fuhanxi/esp/esp-idf/components/pthread +set substitute-path /COMPONENT_CXX_DIR /Users/fuhanxi/esp/esp-idf/components/cxx +set substitute-path /COMPONENT_HAL_DIR /Users/fuhanxi/esp/esp-idf/components/hal +set substitute-path /COMPONENT_SPI_FLASH_DIR /Users/fuhanxi/esp/esp-idf/components/spi_flash +set substitute-path /COMPONENT_ESPCOREDUMP_DIR /Users/fuhanxi/esp/esp-idf/components/espcoredump +set substitute-path /COMPONENT_MAIN_DIR /Users/fuhanxi/esp/pytest-embedded/tests/fixtures/hello_world_esp32c3_panic/main +set substitute-path /TOOLCHAIN /Users/fuhanxi/.espressif/tools/riscv32-esp-elf/esp-15.2.0_20251204/riscv32-esp-elf diff --git a/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.bin b/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.bin index 7ef4b01a..a4067327 100644 Binary files a/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.bin and b/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.bin differ diff --git a/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.elf b/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.elf index 532bdfe0..10b51ef8 100755 Binary files a/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.elf and b/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.elf differ diff --git a/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.map b/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.map deleted file mode 100644 index 80d9f373..00000000 --- a/tests/fixtures/hello_world_esp32c3_panic/build/hello_world.map +++ /dev/null @@ -1,18997 +0,0 @@ -Archive member included to satisfy reference by file (symbol) - -esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - (esp_app_desc) -esp-idf/pthread/libpthread.a(pthread.c.obj) - (pthread_include_pthread_impl) -esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) -esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - (pthread_include_pthread_rwlock_impl) -esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) (pthread_cond_init) -esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - (__ubsan_include) -esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - (call_start_cpu0) -esp-idf/esp_system/libesp_system.a(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(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) (esp_reset_reason_set_hint) -esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) (esp_restart_noos) -esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_apb_backup_dma_lock_init) -esp-idf/esp_system/libesp_system.a(panic.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(uart_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) (uart_hal_write_txfifo) -esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) (brownout_hal_config) -esp-idf/log/liblog.a(log.c.obj) - esp-idf/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/esp_system/libesp_system.a(startup.c.obj) (heap_caps_init) -esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) (multi_heap_get_allocated_size) -esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) (tlsf_check) -esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_get_available_memory_region_max_count) -esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) -esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(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(periph_ctrl.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (periph_module_enable) -esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) (rtc_isr_register) -esp-idf/esp_hw_support/libesp_hw_support.a(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(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) (esp_mprot_get_active_intr) -esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) (esp_mprot_ll_err_to_esp_err) -esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) (xPortInIsrContext) -esp-idf/freertos/libfreertos.a(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/pthread/libpthread.a(pthread.c.obj) (xQueueGetMutexHolder) -esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) (xTaskCreatePinnedToCore) -esp-idf/freertos/libfreertos.a(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(assert.c.obj) - (__assert_func) -esp-idf/newlib/libnewlib.a(heap.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) (malloc) -esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) (_lock_init_recursive) -esp-idf/newlib/libnewlib.a(pthread.c.obj) - (newlib_include_pthread_impl) -esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_reent_init) -esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_newlib_init) -esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_kill_r) -esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (_gettimeofday_r) -esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) (esp_time_impl_get_time_since_boot) -esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - (__cxa_guard_dummy) -esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (esp_err_to_name) -esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_timer_early_init) -esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (esp_timer_impl_init_system_time) -esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (esp_timer_impl_get_time) -esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - (include_esp_phy_override) -esp-idf/vfs/libvfs.a(vfs.c.obj) - (vfs_include_syscalls_impl) -esp-idf/vfs/libvfs.a(vfs_console.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (esp_vfs_console_register) -esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/vfs/libvfs.a(vfs_console.c.obj) (esp_vfs_usb_serial_jtag_get_vfs) -esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_console.c.obj) (esp_vfs_uart_get_vfs) -esp-idf/main/libmain.a(hello_world_main.c.obj) - (app_main) -esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) (riscv_decode_offset_from_jal_instruction) -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/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (ESP_EFUSE_DIG_DBIAS_HVT) -esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (esp_efuse_read_field_blob) -esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_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.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_get_coding_scheme) -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(usb_serial_jtag.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) (usb_serial_jtag_read_bytes) -esp-idf/driver/libdriver.a(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_is_valid_gpio) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) (bootloader_flash_reset_chip) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_init_mem) -esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) (esp_flash_encryption_enabled) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) (bootloader_flash_update_id) -esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (spi_flash_needs_reset_check) -esp-idf/spi_flash/libspi_flash.a(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/main/libmain.a(hello_world_main.c.obj) (esp_flash_get_size) -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_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.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(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_th) -esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_init_pointers) -esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/freertos/libfreertos.a(port_common.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(port_systick.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(efuse_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) (efuse_hal_get_minor_chip_version) -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(systimer_hal.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) (systimer_hal_init) -esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) (spi_flash_hal_gpspi_poll_cmd_done) -esp-idf/soc/libsoc.a(gpio_periph.c.obj) - esp-idf/driver/libdriver.a(gpio.c.obj) (GPIO_HOLD_MASK) -esp-idf/soc/libsoc.a(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(esp_memory_utils.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) (esp_ptr_byte_accessible) -esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) (periph_rtc_dig_clk8m_enable) -esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) (adc_power_acquire) -esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) (systimer_ticks_to_us) -esp-idf/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/freertos/libfreertos.a(portasm.S.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) (rtos_int_enter) -esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) (xRingbufferCreate) -esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_disable_rom_download_mode) -esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) (esp_efuse_rtc_calib_get_ver) -esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spicommon_bus_using_iomux) -esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) (spi_bus_init_lock) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) (bootloader_common_get_sha256_of_partition) -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/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_image_get_metadata) -esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc) -esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable) -esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) (esp_ota_get_running_partition) -esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_partition_iterator_release) -esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) (efuse_hal_chip_revision) -esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (mmu_hal_init) -esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (cache_hal_disable) -esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) (adc_hal_set_calibration_param) -esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) (gdma_new_channel) -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/hal/libhal.a(gdma_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_hal_init) -esp-idf/soc/libsoc.a(gdma_periph.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) (gdma_periph_signals) -esp-idf/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) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - esp-idf/heap/libheap.a(tlsf.c.obj) (__ffssi2) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) (__clz_tab) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - esp-idf/heap/libheap.a(multi_heap.c.obj) (__clzsi2) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) (__bswapdi2) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - esp-idf/esp_system/libesp_system.a(clk.c.obj) (__udivdi3) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - esp-idf/newlib/libnewlib.a(time.c.obj) (__umoddi3) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (__divdf3) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (__fixdfsi) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (__floatsidf) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) (__floatsisf) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (ceil) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) (floor) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) (environ) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) (__errno) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - esp-idf/main/libmain.a(hello_world_main.c.obj) (fflush) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) (_cleanup_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (fopen) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fprintf) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fputs) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) (_fseek_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) (_fseeko_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) (__sfvwrite_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) (_fwalk) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fwrite) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (_global_impure_ptr) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - esp-idf/newlib/libnewlib.a(abort.c.obj) (itoa) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - esp-idf/log/liblog.a(log_freertos.c.obj) (localtime_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) (__smakebuf_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) (memchr) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (memcmp) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - esp-idf/log/liblog.a(log.c.obj) (memcpy) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) (memmove) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - esp-idf/pthread/libpthread.a(pthread.c.obj) (memset) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) (__month_lengths) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - esp-idf/heap/libheap.a(heap_caps.c.obj) (printf) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - esp-idf/heap/libheap.a(heap_caps.c.obj) (puts) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) (qsort) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) (__srefill_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - esp-idf/log/liblog.a(log_freertos.c.obj) (snprintf) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) (sprintf) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) (__sread) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - esp-idf/freertos/libfreertos.a(port.c.obj) (strcat) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - esp-idf/log/liblog.a(log.c.obj) (strcmp) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - esp-idf/vfs/libvfs.a(vfs.c.obj) (strcpy) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) (strlcat) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strlcpy) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - esp-idf/log/liblog.a(log.c.obj) (strlen) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strncpy) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) (_svfprintf_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) (gettimeofday) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) (__tzcalc_limits) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) (__tz_lock) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) (_tzset_unlocked) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) (_tzset_unlocked_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) (_timezone) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) (__utoa) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) (_vfprintf_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - esp-idf/log/liblog.a(log.c.obj) (vprintf) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - esp-idf/esp_system/libesp_system.a(startup.c.obj) (__swsetup_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (_dtoa_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) (_fclose_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) (__sflags) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) (_getenv_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) (__gettzinfo) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) (gmtime_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (_localeconv_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) (_Balloc) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (frexp) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) (siscanf) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) (_strerror_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) (strtoul) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (__ssprint_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) (__ssvfiscanf_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) (_user_strerror) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) (__submore) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) (__sprint_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) (_ctype_) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) (__env_lock) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) (iswspace) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) (iswspace_l) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) (__locale_mb_cur_max) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) (_mbrtowc_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) (__ascii_mbtowc) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) (__sccl) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) (_strtol_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) (_strtoll_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) (_strtoull_r) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) (__ascii_wctomb) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) (__adddf3) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (__eqdf2) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) (__gedf2) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (__ledf2) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (__muldf3) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (__subdf3) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (__unorddf2) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) (__floatunsidf) -/Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) (__trunctfdf2) - -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 0x27 CMakeFiles/hello_world.elf.dir/project_elf_src_esp32c3.c.obj - .riscv.attributes - 0x0000000000000000 0x26 CMakeFiles/hello_world.elf.dir/project_elf_src_esp32c3.c.obj - .text 0x0000000000000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .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 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) - .iram1.2 0x0000000000000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.esp_pthread_set_cfg - 0x0000000000000000 0x6e 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) - .rodata.pthread_create.str1.4 - 0x0000000000000000 0xf7 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_create - 0x0000000000000000 0x272 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_join - 0x0000000000000000 0x19a esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_detach - 0x0000000000000000 0xb8 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 0xfc esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_task_func - 0x0000000000000000 0x40 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_cancel.str1.4 - 0x0000000000000000 0x2b esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_cancel - 0x0000000000000000 0x3e esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.sched_yield - 0x0000000000000000 0x16 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 0x9a esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_equal - 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.pthread_once.str1.4 - 0x0000000000000000 0x2a esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_once - 0x0000000000000000 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) - .rodata.pthread_mutex_destroy.str1.4 - 0x0000000000000000 0x24 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutex_destroy - 0x0000000000000000 0x9c esp-idf/pthread/libpthread.a(pthread.c.obj) - .iram1.3 0x0000000000000000 0x2e esp-idf/pthread/libpthread.a(pthread.c.obj) - .iram1.4 0x0000000000000000 0x106 esp-idf/pthread/libpthread.a(pthread.c.obj) - .iram1.5 0x0000000000000000 0x2e esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.str1.4 - 0x0000000000000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) - .iram1.6 0x0000000000000000 0x96 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_mutexattr_init - 0x0000000000000000 0x3e 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 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) - .text.pthread_attr_init - 0x0000000000000000 0x32 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__.2 - 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__FUNCTION__.4 - 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.5 - 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.6 - 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.7 - 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) - .rodata.__func__.8 - 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) - .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) - .rodata.pthread_local_storage_thread_deleted_callback.str1.4 - 0x0000000000000000 0x3d 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__.0 - 0x0000000000000000 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_init - 0x0000000000000000 0x8e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_init_if_static - 0x0000000000000000 0x48 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.checkrw_lock - 0x0000000000000000 0x28 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_destroy - 0x0000000000000000 0x7c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_rdlock - 0x0000000000000000 0x7c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_wrlock - 0x0000000000000000 0x7c esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .rodata.pthread_rwlock_unlock.str1.4 - 0x0000000000000000 0x6e esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text.pthread_rwlock_unlock - 0x0000000000000000 0xa4 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x16 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_condattr_init - 0x0000000000000000 0x6 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_init - 0x0000000000000000 0x44 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.s_check_and_init_if_static - 0x0000000000000000 0x54 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_signal - 0x0000000000000000 0x4e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_broadcast - 0x0000000000000000 0x5a esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_timedwait - 0x0000000000000000 0x186 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_wait - 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_cond_destroy - 0x0000000000000000 0x6e esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .text.pthread_include_pthread_cond_var_impl - 0x0000000000000000 0x2 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_info 0x0000000000000000 0x9c9 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_abbrev 0x0000000000000000 0x240 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_loc 0x0000000000000000 0x4c8 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_aranges - 0x0000000000000000 0x60 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_ranges 0x0000000000000000 0x68 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_line 0x0000000000000000 0xb02 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_str 0x0000000000000000 0x5da esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .debug_frame 0x0000000000000000 0x14c esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/pthread/libpthread.a(pthread_cond_var.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) - .rodata.__ubsan_default_handler.str1.4 - 0x0000000000000000 0x1c 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__.0 - 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.10 - 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.11 - 0x0000000000000000 0x1f esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.12 - 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.13 - 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.14 - 0x0000000000000000 0x1c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.15 - 0x0000000000000000 0x20 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.16 - 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.4 - 0x0000000000000000 0x1b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.5 - 0x0000000000000000 0x22 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.6 - 0x0000000000000000 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.7 - 0x0000000000000000 0x1e esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.8 - 0x0000000000000000 0x1d esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .rodata.__func__.9 - 0x0000000000000000 0x23 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .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) - .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 0x38 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) - .rodata.esp_get_idf_version.str1.4 - 0x0000000000000000 0x1f 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) - .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 0x36 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .text.esp_reset_reason - 0x0000000000000000 0xa esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .iram1.1 0x0000000000000000 0x2 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .iram1.2 0x0000000000000000 0x4 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) - .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 0x8c esp-idf/hal/libhal.a(wdt_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 0x1a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .text.uart_hal_tx_break - 0x0000000000000000 0x32 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 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) - .rodata.esp_log_level_set.str1.4 - 0x0000000000000000 0x2 esp-idf/log/liblog.a(log.c.obj) - .text.esp_log_level_set - 0x0000000000000000 0x18c 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__.1 - 0x0000000000000000 0x12 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) - .rodata.esp_log_system_timestamp.str1.4 - 0x0000000000000000 0x15 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.2 0x0000000000000000 0x12 esp-idf/log/liblog.a(log_freertos.c.obj) - .sbss.bufferLock.1 - 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) - .iram1.13 0x0000000000000000 0x48 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.6 0x0000000000000000 0x76 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.8 0x0000000000000000 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.7 0x0000000000000000 0x7c esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.14 0x0000000000000000 0x40 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) - .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 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) - .rodata.heap_caps_get_allocated_size.str1.4 - 0x0000000000000000 0x5 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_get_allocated_size - 0x0000000000000000 0x4a esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.15 0x0000000000000000 0xd2 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.16 0x0000000000000000 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_aligned_calloc - 0x0000000000000000 0x48 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x1d esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.5 - 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.6 - 0x0000000000000000 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.7 - 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_check_add_region_allowed - 0x0000000000000000 0x2c esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_add_region_with_caps - 0x0000000000000000 0x150 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_add_region - 0x0000000000000000 0x82 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) - .rodata.multi_heap_dump_tlsf.str1.4 - 0x0000000000000000 0x32 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) - .rodata.multi_heap_get_next_block.str1.4 - 0x0000000000000000 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_get_next_block - 0x0000000000000000 0x7c 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 0x94 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) - .rodata.multi_heap_dump.str1.4 - 0x0000000000000000 0x1c 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__.1 - 0x0000000000000000 0x1b esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x1a esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0xb esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.5 - 0x0000000000000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) - .rodata.__func__.6 - 0x0000000000000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) - .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.integrity_walker - 0x0000000000000000 0x86 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_check - 0x0000000000000000 0x2ba esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_check_pool - 0x0000000000000000 0x22 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_align_size - 0x0000000000000000 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_block_size_max - 0x0000000000000000 0x6 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_remove_pool - 0x0000000000000000 0x1a2 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_destroy - 0x0000000000000000 0x2 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_memalign_offs.str1.4 - 0x0000000000000000 0x6b esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_memalign_offs - 0x0000000000000000 0x7ec esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_memalign - 0x0000000000000000 0x14 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.13 - 0x0000000000000000 0x9 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.15 - 0x0000000000000000 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.16 - 0x0000000000000000 0xa esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.19 - 0x0000000000000000 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.21 - 0x0000000000000000 0xb esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.7 - 0x0000000000000000 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) - .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(memory_layout.c.obj) - .srodata.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.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_stall - 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_unstall - 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_clear_breakpoint - 0x0000000000000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_set_watchpoint - 0x0000000000000000 0xc2 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_clear_watchpoint - 0x0000000000000000 0x5c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_compare_and_set - 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_rtc_time - 0x0000000000000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_private_lock - 0x0000000000000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .text.esp_clk_private_unlock - 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 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_reserve - 0x0000000000000000 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.3 0x0000000000000000 0x96 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) - .iram1.8 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.9 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(periph_ctrl.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_module_disable - 0x0000000000000000 0x346 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_module_reset - 0x0000000000000000 0x1be esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .iram1.3 0x0000000000000000 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .iram1.4 0x0000000000000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.wifi_module_enable - 0x0000000000000000 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.wifi_module_disable - 0x0000000000000000 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.rtc_isr_deregister - 0x0000000000000000 0x8c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .sdata.rtc_spinlock - 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.3 0x0000000000000000 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.7 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.8 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.10 0x0000000000000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .iram1.11 0x0000000000000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .text.regi2c_saradc_enable - 0x0000000000000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .rodata.regi2c_saradc_disable.str1.4 - 0x0000000000000000 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .text.regi2c_saradc_disable - 0x0000000000000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .rodata.str1.4 - 0x0000000000000000 0x7 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .dram1.2 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .dram1.9 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .sbss.s_i2c_saradc_enable_cnt - 0x0000000000000000 0x4 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 0x20 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_fast_src_get - 0x0000000000000000 0x12 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_apb_freq_get - 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_divider_set - 0x0000000000000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_8m_divider_set - 0x0000000000000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_clk8m_enable - 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_clk8m_disable - 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_dig_8m_enabled - 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x1b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .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 0x42 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_get_default_config - 0x0000000000000000 0x1a0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .text.rtc_sleep_init - 0x0000000000000000 0x2f6 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 0x32 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(esp_memprot.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_get_split_addr - 0x0000000000000000 0x2a0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_get_pms_area - 0x0000000000000000 0x186 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .rodata.esp_mprot_dump_configuration.str1.4 - 0x0000000000000000 0x34a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_dump_configuration - 0x0000000000000000 0x584 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .text 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) - .iram1.2 0x0000000000000000 0xa esp-idf/freertos/libfreertos.a(port.c.obj) - .text.xPortGetTickRateHz - 0x0000000000000000 0x6 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.vPortSetStackWatchpoint - 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(port.c.obj) - .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .text.vApplicationGetTimerTaskMemory - 0x0000000000000000 0x98 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x1f 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) - .rodata.xQueueGetMutexHolderFromISR.str1.4 - 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueGetMutexHolderFromISR - 0x0000000000000000 0x36 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 0x72 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueCreateCountingSemaphore - 0x0000000000000000 0x6e esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueGenericSendFromISR - 0x0000000000000000 0x162 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueReceive - 0x0000000000000000 0x1d0 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueuePeek - 0x0000000000000000 0x1ca 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 0xda 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 0x4c esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.uxQueueSpacesAvailable - 0x0000000000000000 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.uxQueueMessagesWaitingFromISR - 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueIsQueueEmptyFromISR - 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueIsQueueFullFromISR - 0x0000000000000000 0x3c 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__.0 - 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.10 - 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.12 - 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.15 - 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.16 - 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.19 - 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.4 - 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.5 - 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.6 - 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.8 - 0x0000000000000000 0xb esp-idf/freertos/libfreertos.a(queue.c.obj) - .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvSearchForNameWithinSingleList - 0x0000000000000000 0x72 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvTaskCheckFreeStackSpace - 0x0000000000000000 0x18 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 0x6c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.pxGetNextTaskList - 0x0000000000000000 0xba esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.eTaskGetState - 0x0000000000000000 0xca 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) - .rodata.vTaskPrioritySet.str1.4 - 0x0000000000000000 0x1b esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskPrioritySet - 0x0000000000000000 0x12e 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 0xc2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskResumeFromISR - 0x0000000000000000 0xe4 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) - .rodata.xTaskGetHandle.str1.4 - 0x0000000000000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGetHandle - 0x0000000000000000 0xe4 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 0x36 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskAbortDelay - 0x0000000000000000 0xe8 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 0x166 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskPlaceOnUnorderedEventList - 0x0000000000000000 0x82 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskPlaceOnEventListRestricted - 0x0000000000000000 0x7a esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskTakeKernelLock - 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskReleaseKernelLock - 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskRemoveFromUnorderedEventList - 0x0000000000000000 0xdc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskSetTimeOutState - 0x0000000000000000 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskSetThreadLocalStoragePointerAndDelCallback - 0x0000000000000000 0x54 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) - .rodata.xTaskDelayUntil.str1.4 - 0x0000000000000000 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskDelayUntil - 0x0000000000000000 0xf2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.vTaskDelayUntil - 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskCatchUpTicks - 0x0000000000000000 0x6e esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskResetEventItemValue - 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.ulTaskNotifyTake - 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotifyWait - 0x0000000000000000 0x12c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskNotifyWait - 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotify - 0x0000000000000000 0x1e4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotifyFromISR - 0x0000000000000000 0x214 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskGenericNotifyStateClear.str1.4 - 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.xTaskGenericNotifyStateClear - 0x0000000000000000 0x7c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.ulTaskGenericNotifyValueClear - 0x0000000000000000 0x52 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.pxTaskGetNext - 0x0000000000000000 0x64 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.uxTaskGetSnapshotAll - 0x0000000000000000 0x86 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.10 - 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.12 - 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.13 - 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.18 - 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.19 - 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.21 - 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.22 - 0x0000000000000000 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.26 - 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.27 - 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.28 - 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.29 - 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.30 - 0x0000000000000000 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.31 - 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.33 - 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.4 - 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.9 - 0x0000000000000000 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.non_ready_task_lists - 0x0000000000000000 0x14 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(assert.c.obj) - .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(assert.c.obj) - .text.__assert - 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(assert.c.obj) - .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.memalign - 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) - .text.posix_memalign - 0x0000000000000000 0x32 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 0x42 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.3 0x0000000000000000 0x18 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.4 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) - .rodata.pthread_condattr_setclock.str1.4 - 0x0000000000000000 0x43 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__.0 - 0x0000000000000000 0x1a 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 0x46 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text._read_r_console - 0x0000000000000000 0x50 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text._fstat_r_console - 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text.system 0x0000000000000000 0x1a esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .text.fcntl 0x0000000000000000 0x46 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 0x14e 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 0x54 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.clock_gettime - 0x0000000000000000 0xb0 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.clock_getres - 0x0000000000000000 0x38 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) - .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 - 0x0000000000000000 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text._ZL18wait_for_guard_objP7guard_t - 0x0000000000000000 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) - .rodata.__cxa_guard_acquire.str1.4 - 0x0000000000000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text.__cxa_guard_acquire - 0x0000000000000000 0xe6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .rodata.__cxa_guard_release.str1.4 - 0x0000000000000000 0x6f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text.__cxa_guard_release - 0x0000000000000000 0xd8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .rodata.__cxa_guard_abort.str1.4 - 0x0000000000000000 0xa7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .text.__cxa_guard_abort - 0x0000000000000000 0xfe 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/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 0x8a esp-idf/esp_common/libesp_common.a(esp_err_to_name.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.7 0x0000000000000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.6 0x0000000000000000 0x92 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 0x4c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_create - 0x0000000000000000 0x8a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.2 0x0000000000000000 0x9e esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.3 0x0000000000000000 0xd2 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.4 0x0000000000000000 0x42 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_delete - 0x0000000000000000 0x86 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) - .rodata.esp_timer_dump.str1.4 - 0x0000000000000000 0x3d 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.12 0x0000000000000000 0x66 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.13 0x0000000000000000 0x72 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.14 0x0000000000000000 0x58 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.15 0x0000000000000000 0x66 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) - .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .iram1.1 0x0000000000000000 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.0 0x0000000000000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .iram1.3 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .iram1.5 0x0000000000000000 0x2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .text.esp_timer_impl_set - 0x0000000000000000 0x7e 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.6 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) - .text 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .text.set_xpd_sar - 0x0000000000000000 0x34 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .iram1.0 0x0000000000000000 0x12 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .iram1.1 0x0000000000000000 0x12 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .sbss.s_wifi_adc_xpd_flag - 0x0000000000000000 0x1 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.set_global_fd_sets - 0x0000000000000000 0x196 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 0x164 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 0xbc 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 0xe0 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 0xbe esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.call_end_selects - 0x0000000000000000 0x58 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 0x5a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_readdir_r - 0x0000000000000000 0x72 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_telldir - 0x0000000000000000 0x5e esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_seekdir - 0x0000000000000000 0x64 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 0x5e 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_ftruncate - 0x0000000000000000 0x86 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_select - 0x0000000000000000 0x5a6 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 0x88 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) - .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usbjtag_rx_char_via_driver - 0x0000000000000000 0x38 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usbjtag_tx_char_via_driver - 0x0000000000000000 0x1e esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.esp_vfs_dev_usb_serial_jtag_set_tx_line_endings - 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.esp_vfs_dev_usb_serial_jtag_set_rx_line_endings - 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .rodata.esp_vfs_dev_usb_serial_jtag_register.str1.4 - 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.esp_vfs_dev_usb_serial_jtag_register - 0x0000000000000000 0x24 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.esp_vfs_usb_serial_jtag_use_nonblocking - 0x0000000000000000 0x62 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.esp_vfs_usb_serial_jtag_use_driver - 0x0000000000000000 0x62 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.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) - .rodata.esp_vfs_dev_uart_register.str1.4 - 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.esp_vfs_dev_uart_register - 0x0000000000000000 0x4a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.esp_vfs_dev_uart_port_set_rx_line_endings - 0x0000000000000000 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.esp_vfs_dev_uart_port_set_tx_line_endings - 0x0000000000000000 0x32 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) - .rodata.__func__.0 - 0x0000000000000000 0x1a esp-idf/vfs/libvfs.a(vfs_uart.c.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/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/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) - .rodata.intr_matrix_route.str1.4 - 0x0000000000000000 0xe 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) - .text.esprv_intc_int_get_type - 0x0000000000000000 0x16 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .text.esprv_intc_int_get_priority - 0x0000000000000000 0x10 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .rodata.str1.4 - 0x0000000000000000 0xfd esp-idf/riscv/libriscv.a(interrupt.c.obj) - .data.riscv_excp_names - 0x0000000000000000 0x40 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x12 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 0x20d esp-idf/riscv/libriscv.a(vectors.S.obj) - .debug_info 0x0000000000000000 0x24 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 0x38 esp-idf/riscv/libriscv.a(vectors.S.obj) - .riscv.attributes - 0x0000000000000000 0x37 esp-idf/riscv/libriscv.a(vectors.S.obj) - .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data.ESP_EFUSE_MAC_FACTORY - 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .data.ESP_EFUSE_WAFER_VERSION_MINOR - 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .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_BLK_VERSION_MINOR - 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_DISABLE_BLK_VERSION_MAJOR - 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR - 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_DIRECT_BOOT - 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_PAD_JTAG - 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_JTAG - 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT - 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_ERR_RST_ENABLE - 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_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_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_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_WAFER_VERSION_MAJOR - 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) - .srodata.ADC1_CAL_VOL_ATTEN0 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_CAL_VOL_ATTEN3 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN0 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ADC1_INIT_CODE_ATTEN3 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BLK_VERSION_MINOR - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.BTLC_GPIO_ENABLE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_BLK_VERSION_MAJOR - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DISABLE_WAFER_VERSION_MAJOR - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_CAN - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DIRECT_BOOT - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_ICACHE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MANUAL_ENCRYPT - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_DOWNLOAD_MODE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_FORCE_DOWNLOAD - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_ICACHE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_PAD_JTAG - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_DEVICE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_JTAG - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIS_USB_SERIAL_JTAG_ROM_PRINT - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ENABLE_SECURITY_DOWNLOAD - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.ERR_RST_ENABLE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FLASH_TPUW - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.FORCE_SEND_RESUME - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.JTAG_SEL_ENABLE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY0 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY1 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY2 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY3 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY4 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY5 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_0 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_3 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_4 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.KEY_PURPOSE_5 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.OPTIONAL_UNIQUE_ID - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.PKG_VERSION - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.POWERGLITCH_EN - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.POWER_GLITCH_DSENSE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_KEY0 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_KEY1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_KEY2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_KEY3 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_KEY4 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_KEY5 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.RD_DIS_SYS_DATA_PART2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_AGGRESSIVE_REVOKE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_EN - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE0 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_BOOT_KEY_REVOKE2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SECURE_VERSION - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SOFT_DIS_JTAG - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_BOOT_CRYPT_CNT - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_CLK - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_CS - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D4 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D5 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D6 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D7 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_DQS - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_D_D0 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_HD_D3 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_Q_D1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SPI_PAD_CONFIG_WP_D2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.SYS_DATA_PART2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.TEMP_CALIB - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.THRES_HVT - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.UART_PRINT_CONTROL - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USB_DREFH - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USB_DREFL - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USB_EXCHG_PINS - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USER_DATA - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.USER_DATA_MAC_CUSTOM - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.VDD_SPI_AS_GPIO - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MAJOR - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WAFER_VERSION_MINOR - 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WDT_DELAY_SEL - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_BLK1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_GROUP_1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_GROUP_2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_GROUP_3 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY0 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY0_PURPOSE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY1_PURPOSE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY2_PURPOSE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY3 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY3_PURPOSE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY4 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY4_PURPOSE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY5 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_KEY5_PURPOSE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_RD_DIS - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_EN - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SPI_BOOT_CRYPT_CNT - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SYS_DATA_PART1 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.WR_DIS_SYS_DATA_PART2 - 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.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_api.c.obj) - .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_read_field_bit.str1.4 - 0x0000000000000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_read_field_bit - 0x0000000000000000 0x50 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 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_write_field_cnt.str1.4 - 0x0000000000000000 0x59 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_write_field_cnt - 0x0000000000000000 0xe2 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 0x8e 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) - .rodata.esp_efuse_batch_write_begin.str1.4 - 0x0000000000000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_begin - 0x0000000000000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_cancel.str1.4 - 0x0000000000000000 0x76 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_cancel - 0x0000000000000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.esp_efuse_batch_write_commit.str1.4 - 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .text.esp_efuse_batch_write_commit - 0x0000000000000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .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 0xda 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) - .rodata.esp_efuse_utility_update_virt_blocks.str1.4 - 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_update_virt_blocks - 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 - 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_debug_dump_blocks - 0x0000000000000000 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) - .rodata.esp_efuse_utility_write_reg.str1.4 - 0x0000000000000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_write_reg - 0x0000000000000000 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) - .rodata.esp_efuse_utility_get_read_register_address.str1.4 - 0x0000000000000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_get_read_register_address - 0x0000000000000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_is_correct_written_data.str1.4 - 0x0000000000000000 0xdd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_is_correct_written_data - 0x0000000000000000 0x102 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .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 0x16 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) - .rodata.esp_efuse_utility_burn_chip.str1.4 - 0x0000000000000000 0x237 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_burn_chip - 0x0000000000000000 0x388 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 - 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_apply_new_coding_scheme - 0x0000000000000000 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.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.c.obj) - .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_block_is_empty - 0x0000000000000000 0x4e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect - 0x0000000000000000 0x9e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_read_protect - 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_coding_scheme - 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_purpose_field - 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key - 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_get_key_dis_read.str1.4 - 0x0000000000000000 0x8f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_read - 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_read - 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_dis_write - 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_dis_write - 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_key_purpose - 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_key_purpose - 0x0000000000000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_keypurpose_dis_write - 0x0000000000000000 0x52 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_keypurpose_dis_write - 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_find_purpose - 0x0000000000000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_key_block_unused - 0x0000000000000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_find_unused_key_block - 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_count_unused_key_blocks - 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_key - 0x0000000000000000 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_write_keys.str1.4 - 0x0000000000000000 0xf5 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_write_keys - 0x0000000000000000 0x158 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_efuse_get_digest_revoke.str1.4 - 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_digest_revoke - 0x0000000000000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_digest_revoke - 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_get_write_protect_of_digest_revoke - 0x0000000000000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_efuse_set_write_protect_of_digest_revoke - 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.esp_secure_boot_read_key_digests.str1.4 - 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .text.esp_secure_boot_read_key_digests - 0x0000000000000000 0xc6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.4 - 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.__func__.5 - 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.s_revoke_table - 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .rodata.s_table - 0x0000000000000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_info 0x0000000000000000 0x1589 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_abbrev 0x0000000000000000 0x325 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_loc 0x0000000000000000 0xb1f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_aranges - 0x0000000000000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_ranges 0x0000000000000000 0x150 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_line 0x0000000000000000 0x12c0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_str 0x0000000000000000 0xf64 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .debug_frame 0x0000000000000000 0x344 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.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 0x26 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_pattern_link_free - 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_try_set_iomux_pin - 0x0000000000000000 0xb6 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_module_enable - 0x0000000000000000 0xa8 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_enable_tx_write_fifo - 0x0000000000000000 0xac esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_check_buf_full - 0x0000000000000000 0x8a esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_pattern_enqueue.str1.4 - 0x0000000000000000 0x51 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_pattern_enqueue - 0x0000000000000000 0x7a esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_rx_intr_handler_default - 0x0000000000000000 0x7c0 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_free_driver_obj - 0x0000000000000000 0x8a esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_alloc_driver_obj - 0x0000000000000000 0xf4 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_module_disable - 0x0000000000000000 0x64 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_line_inverse - 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_sw_flow_ctrl.str1.4 - 0x0000000000000000 0x76 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_sw_flow_ctrl - 0x0000000000000000 0x116 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_hw_flow_ctrl.str1.4 - 0x0000000000000000 0x6f esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_hw_flow_ctrl - 0x0000000000000000 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 0x5a esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_enable_intr_mask - 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_disable_intr_mask - 0x0000000000000000 0x98 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) - .rodata.uart_enable_pattern_det_baud_intr.str1.4 - 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_enable_pattern_det_baud_intr - 0x0000000000000000 0x15a 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_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) - .rodata.uart_enable_tx_intr.str1.4 - 0x0000000000000000 0x3b 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 0x208 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_pin.str1.4 - 0x0000000000000000 0xc5 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_pin - 0x0000000000000000 0x44a esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_rts.str1.4 - 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_rts - 0x0000000000000000 0xd0 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_dtr - 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_tx_idle_num.str1.4 - 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_tx_idle_num - 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_param_config.str1.4 - 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_param_config - 0x0000000000000000 0x23c esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_intr_config - 0x0000000000000000 0x14e esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_tx_chars.str1.4 - 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_tx_chars - 0x0000000000000000 0x124 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_write_bytes - 0x0000000000000000 0xd8 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_write_bytes_with_break.str1.4 - 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_write_bytes_with_break - 0x0000000000000000 0x156 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_read_bytes - 0x0000000000000000 0x23a esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_get_tx_buffer_free_size.str1.4 - 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_get_tx_buffer_free_size - 0x0000000000000000 0xe0 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_driver_delete.str1.4 - 0x0000000000000000 0x25 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_driver_delete - 0x0000000000000000 0x10c esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_driver_install.str1.4 - 0x0000000000000000 0x21f esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_driver_install - 0x0000000000000000 0x3a0 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_mode.str1.4 - 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_mode - 0x0000000000000000 0x178 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_rx_full_threshold.str1.4 - 0x0000000000000000 0x7f esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_rx_full_threshold - 0x0000000000000000 0x11a esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_tx_empty_threshold.str1.4 - 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_tx_empty_threshold - 0x0000000000000000 0x11a esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_rx_timeout.str1.4 - 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_rx_timeout - 0x0000000000000000 0xca esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_get_collision_flag.str1.4 - 0x0000000000000000 0x63 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_get_collision_flag - 0x0000000000000000 0x120 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_set_wakeup_threshold.str1.4 - 0x0000000000000000 0x3f esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_set_wakeup_threshold - 0x0000000000000000 0xc4 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.uart_get_wakeup_threshold.str1.4 - 0x0000000000000000 0x31 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_get_wakeup_threshold - 0x0000000000000000 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__.10 - 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.11 - 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.12 - 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.13 - 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.14 - 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.15 - 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.16 - 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.17 - 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.18 - 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.19 - 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.20 - 0x0000000000000000 0x22 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.21 - 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.22 - 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.24 - 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.25 - 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.26 - 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.27 - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.29 - 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.31 - 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.32 - 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.33 - 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.34 - 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.37 - 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.39 - 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.41 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.42 - 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.43 - 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.44 - 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.45 - 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.46 - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.47 - 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.48 - 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.49 - 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.50 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__func__.28 - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - .sbss.pat_flg.40 - 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(uart.c.obj) - .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_write_and_flush - 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_isr_handler_default - 0x0000000000000000 0x112 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_read_bytes - 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .rodata.usb_serial_jtag_write_bytes.str1.4 - 0x0000000000000000 0xcb esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_write_bytes - 0x0000000000000000 0xee esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .rodata.usb_serial_jtag_driver_uninstall.str1.4 - 0x0000000000000000 0x25 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_driver_uninstall - 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .rodata.usb_serial_jtag_driver_install.str1.4 - 0x0000000000000000 0x16c esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .text.usb_serial_jtag_driver_install - 0x0000000000000000 0x25a esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .rodata.__FUNCTION__.0 - 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .rodata.__FUNCTION__.1 - 0x0000000000000000 0x1f esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .sbss.p_usb_serial_jtag_obj - 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .debug_info 0x0000000000000000 0x1b41 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .debug_abbrev 0x0000000000000000 0x3c0 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .debug_loc 0x0000000000000000 0x580 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .debug_aranges - 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .debug_ranges 0x0000000000000000 0x68 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .debug_line 0x0000000000000000 0x1083 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .debug_str 0x0000000000000000 0x176f esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .debug_frame 0x0000000000000000 0xe4 esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(usb_serial_jtag.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 0x3f esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_input_enable - 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_input_disable - 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_output_disable - 0x0000000000000000 0xa2 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_od_enable - 0x0000000000000000 0x84 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 0x82 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_sleep_input_disable - 0x0000000000000000 0x80 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 0x82 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_sleep_output_disable - 0x0000000000000000 0x80 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_sleep_pulldown_en - 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_sleep_pullup_en - 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_sleep_pulldown_dis - 0x0000000000000000 0x96 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_sleep_pullup_dis - 0x0000000000000000 0x96 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_intr_enable_on_core - 0x0000000000000000 0x80 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_output_enable - 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(gpio.c.obj) - .iram1.1 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 0xac esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_pullup_dis - 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_pulldown_en - 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_pulldown_dis - 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_set_intr_type.str1.4 - 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_set_intr_type - 0x0000000000000000 0xee esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_intr_enable - 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_intr_disable - 0x0000000000000000 0x7e esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_set_level - 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_get_level - 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_set_pull_mode.str1.4 - 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_set_pull_mode - 0x0000000000000000 0x166 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_set_direction - 0x0000000000000000 0xcc esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_config.str1.4 - 0x0000000000000000 0xe0 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_config - 0x0000000000000000 0x21a esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_reset_pin.str1.4 - 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_reset_pin - 0x0000000000000000 0x80 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 0x128 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_isr_handler_remove - 0x0000000000000000 0xfe esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_uninstall_isr_service - 0x0000000000000000 0x62 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_isr_register.str1.4 - 0x0000000000000000 0x45 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_isr_register - 0x0000000000000000 0xc6 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 0xe2 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_wakeup_enable.str1.4 - 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_wakeup_enable - 0x0000000000000000 0x102 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_wakeup_disable - 0x0000000000000000 0xb2 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 0x10a 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 0xf6 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 0xe2 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_hold_dis - 0x0000000000000000 0xea esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_deep_sleep_hold_en - 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_deep_sleep_hold_dis - 0x0000000000000000 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_sleep_set_direction - 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_sleep_set_pull_mode - 0x0000000000000000 0x166 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_sleep_sel_en - 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_sleep_sel_dis - 0x0000000000000000 0x96 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.gpio_deep_sleep_wakeup_enable.str1.4 - 0x0000000000000000 0xd2 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_deep_sleep_wakeup_enable - 0x0000000000000000 0x122 esp-idf/driver/libdriver.a(gpio.c.obj) - .text.gpio_deep_sleep_wakeup_disable - 0x0000000000000000 0xc4 esp-idf/driver/libdriver.a(gpio.c.obj) - .data.gpio_context - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.10 - 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.11 - 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.12 - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.13 - 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.14 - 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.15 - 0x0000000000000000 0xd esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.16 - 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.17 - 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.18 - 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.19 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.2 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.20 - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.21 - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.22 - 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.23 - 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.26 - 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.27 - 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.28 - 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.29 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.3 - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.30 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.31 - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.32 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.33 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.34 - 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.35 - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.36 - 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.37 - 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.38 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.39 - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.4 - 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.40 - 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.41 - 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.42 - 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.5 - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.6 - 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.7 - 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.8 - 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__FUNCTION__.9 - 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x21 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__func__.24 - 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) - .rodata.__func__.25 - 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) - .sdata._gpio_hal - 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_info 0x0000000000000000 0x5557 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_abbrev 0x0000000000000000 0x5b0 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_loc 0x0000000000000000 0x22e0 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_aranges - 0x0000000000000000 0x1c0 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_ranges 0x0000000000000000 0x290 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_line 0x0000000000000000 0x45db esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_str 0x0000000000000000 0x26e4 esp-idf/driver/libdriver.a(gpio.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/driver/libdriver.a(gpio.c.obj) - .debug_frame 0x0000000000000000 0x730 esp-idf/driver/libdriver.a(gpio.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(gpio.c.obj) - .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .text.rtc_gpio_is_valid_gpio - 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_info 0x0000000000000000 0x16e esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_abbrev 0x0000000000000000 0xac esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_loc 0x0000000000000000 0x21 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_aranges - 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_ranges 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_line 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_str 0x0000000000000000 0x2cc esp-idf/driver/libdriver.a(rtc_io.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .debug_frame 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(rtc_io.c.obj) - .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.6 0x0000000000000000 0x6c 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) - .rodata.bootloader_mmap.str1.4 - 0x0000000000000000 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_mmap - 0x0000000000000000 0xa2 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 0x4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_write - 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_erase_sector - 0x0000000000000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .text.bootloader_flash_erase_range - 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.0 0x0000000000000000 0x1aa esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.3 0x0000000000000000 0x50 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) - .text.bootloader_spi_flash_reset - 0x0000000000000000 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .iram1.7 0x0000000000000000 0x118 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .dram1.10 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .dram1.11 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .dram1.5 0x0000000000000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x1b 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/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(flash_encrypt.c.obj) - .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_write_protect_crypt_cnt - 0x0000000000000000 0x1a esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_get_flash_encryption_mode - 0x0000000000000000 0xa4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .rodata.esp_flash_encryption_init_checks.str1.4 - 0x0000000000000000 0x95 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_init_checks - 0x0000000000000000 0x72 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .rodata.esp_flash_encryption_set_release_mode.str1.4 - 0x0000000000000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .text.esp_flash_encryption_set_release_mode - 0x0000000000000000 0x130 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.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 0x48 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/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .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.4 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .iram1.5 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .rodata.esp_enable_cache_wrap.str1.4 - 0x0000000000000000 0x4f 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) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.7 0x0000000000000000 0x22 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 0x84 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.9 0x0000000000000000 0xa0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.10 0x0000000000000000 0xec 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.5 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .iram1.8 0x0000000000000000 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .rodata.esp_mspi_get_io.str1.4 - 0x0000000000000000 0x3f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .text.esp_mspi_get_io - 0x0000000000000000 0x9a esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .dram1.3 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .srodata.s_mspi_io_num_default - 0x0000000000000000 0x6 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.8 0x0000000000000000 0x3e 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.5 0x0000000000000000 0x1d4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.11 0x0000000000000000 0x94 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.12 0x0000000000000000 0x248 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.13 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.14 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_get_protectable_regions - 0x0000000000000000 0x5a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.15 0x0000000000000000 0xb2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.16 0x0000000000000000 0xe8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.17 0x0000000000000000 0x146 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.18 0x0000000000000000 0x194 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.19 0x0000000000000000 0x196 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.21 0x0000000000000000 0x92 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.22 0x0000000000000000 0x66 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.23 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .rodata.esp_flash_suspend_cmd_init.str1.4 - 0x0000000000000000 0x93 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_suspend_cmd_init - 0x0000000000000000 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) - .rodata.__func__.0 - 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x17 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) - .text.use_bus_lock - 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.acquire_spi_device.str1.4 - 0x0000000000000000 0xa6 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.acquire_spi_device - 0x0000000000000000 0x120 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .iram1.0 0x0000000000000000 0x16a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.spi_bus_remove_flash_device - 0x0000000000000000 0x46 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.spi_bus_add_flash_device.str1.4 - 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text.spi_bus_add_flash_device - 0x0000000000000000 0x1bc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.use_bus_lock - 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.5 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.4 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_init_os_functions - 0x0000000000000000 0xae esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .text.esp_flash_deinit_os_functions - 0x0000000000000000 0x2c 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 0x28 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_target.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .rodata.esp_partition_write.str1.4 - 0x0000000000000000 0x42 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .text.esp_partition_write - 0x0000000000000000 0x86 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .text.esp_partition_read_raw - 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .text.esp_partition_write_raw - 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .text.esp_partition_erase_range - 0x0000000000000000 0x74 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .text.esp_partition_mmap - 0x0000000000000000 0x94 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .text.esp_partition_read - 0x0000000000000000 0xb4 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .text.esp_partition_get_sha256 - 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .text.esp_partition_check_identity - 0x0000000000000000 0x62 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0x17 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .rodata.__func__.4 - 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .rodata.__func__.5 - 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .text.memspi_host_read - 0x0000000000000000 0x36 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) - .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 0x26 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.4 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.5 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 - 0x0000000000000000 0x3a esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .text.esp_deregister_freertos_tick_hook_for_cpu - 0x0000000000000000 0x66 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_add_user - 0x0000000000000000 0xa6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.esp_task_wdt_reset_user.str1.4 - 0x0000000000000000 0x36 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_reset_user - 0x0000000000000000 0x10c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.esp_task_wdt_deinit.str1.4 - 0x0000000000000000 0x60 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_deinit - 0x0000000000000000 0x154 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_delete_user - 0x0000000000000000 0x96 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_status - 0x0000000000000000 0x8c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.0 - 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.1 - 0x0000000000000000 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.10 - 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.4 - 0x0000000000000000 0x18 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.6 - 0x0000000000000000 0x16 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__func__.9 - 0x0000000000000000 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_clear_program_registers - 0x0000000000000000 0x12 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .rodata.efuse_hal_program.str1.4 - 0x0000000000000000 0x53 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_program - 0x0000000000000000 0x98 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_rs_calculate - 0x0000000000000000 0x12 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_is_coding_error_in_block - 0x0000000000000000 0x76 esp-idf/hal/libhal.a(efuse_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) - .rodata.gpio_hal_intr_enable_on_core.str1.4 - 0x0000000000000000 0x66 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .text.gpio_hal_intr_enable_on_core - 0x0000000000000000 0x6c 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) - .rodata.__func__.0 - 0x0000000000000000 0x1c esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_info 0x0000000000000000 0x191f esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_abbrev 0x0000000000000000 0x2a9 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_loc 0x0000000000000000 0x1c0 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 0x30 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_line 0x0000000000000000 0x353 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_str 0x0000000000000000 0x10f7 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .debug_frame 0x0000000000000000 0x38 esp-idf/hal/libhal.a(gpio_hal.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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_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 0x76 esp-idf/hal/libhal.a(uart_hal.c.obj) - .text.uart_hal_set_at_cmd_char - 0x0000000000000000 0x80 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 0x10e 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 0x78 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) - .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(systimer_hal.c.obj) - .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text.systimer_hal_deinit - 0x0000000000000000 0x16 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text.systimer_hal_get_time - 0x0000000000000000 0x1a esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text.systimer_hal_get_alarm_value - 0x0000000000000000 0x16 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text.systimer_hal_counter_value_advance - 0x0000000000000000 0x78 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .rodata.GPIO_HOLD_MASK - 0x0000000000000000 0x58 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .rodata.GPIO_PIN_MUX_REG - 0x0000000000000000 0x58 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_info 0x0000000000000000 0xd8 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_abbrev 0x0000000000000000 0x70 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 0x191 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .debug_str 0x0000000000000000 0x1b3 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/soc/libsoc.a(gpio_periph.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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 0x362f esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_abbrev 0x0000000000000000 0x1ca 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 0x1eb esp-idf/soc/libsoc.a(spi_periph.c.obj) - .debug_str 0x0000000000000000 0x22c2 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/soc/libsoc.a(spi_periph.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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 0x3f7 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_abbrev 0x0000000000000000 0xd4 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 0x1c9 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .debug_str 0x0000000000000000 0xabd esp-idf/soc/libsoc.a(uart_periph.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(uart_periph.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .text.esp_ptr_dma_ext_capable - 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .text.esp_ptr_external_ram - 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .text.periph_rtc_dig_clk8m_enable - 0x0000000000000000 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .text.periph_rtc_dig_clk8m_get_freq - 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .rodata.periph_rtc_dig_clk8m_disable.str1.4 - 0x0000000000000000 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .text.periph_rtc_dig_clk8m_disable - 0x0000000000000000 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x1d esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .sbss.s_periph_ref_counts - 0x0000000000000000 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .sbss.s_rtc_clk_freq - 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_info 0x0000000000000000 0x2ca esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_abbrev 0x0000000000000000 0x19c esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_aranges - 0x0000000000000000 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_ranges 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_line 0x0000000000000000 0x40c esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_str 0x0000000000000000 0x328 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .debug_frame 0x0000000000000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_power_on_internal - 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_power_off_internal - 0x0000000000000000 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_power_acquire - 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .rodata.adc_power_release.str1.4 - 0x0000000000000000 0x53 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_power_release - 0x0000000000000000 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_calc_hw_calibration_code - 0x0000000000000000 0xb2 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .iram1.0 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_lock_acquire - 0x0000000000000000 0x3e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .rodata.adc_lock_release.str1.4 - 0x0000000000000000 0x88 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_lock_release - 0x0000000000000000 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc_lock_try_acquire - 0x0000000000000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc2_wifi_acquire - 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text.adc2_wifi_release - 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .bss.s_adc_cali_param - 0x0000000000000000 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .rodata.__FUNCTION__.0 - 0x0000000000000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x12 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .sbss.adc1_lock - 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .sbss.adc2_lock - 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .sbss.s_adc_power_on_cnt - 0x0000000000000000 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_info 0x0000000000000000 0x4f6e esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_abbrev 0x0000000000000000 0x38a esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_loc 0x0000000000000000 0x205 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_aranges - 0x0000000000000000 0x70 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_ranges 0x0000000000000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_line 0x0000000000000000 0x9bf esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_str 0x0000000000000000 0x3101 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .debug_frame 0x0000000000000000 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .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) - .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/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 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) - .rodata.prvGetItemByteBuf.str1.4 - 0x0000000000000000 0x127 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetItemByteBuf - 0x0000000000000000 0x10e 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 0x66 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 0x1ae 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 0x1c2 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 0xe6 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 0x194 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCheckItemFitsDefault - 0x0000000000000000 0xc0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvInitializeNewRingbuffer - 0x0000000000000000 0x102 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCopyItemByteBuf - 0x0000000000000000 0xb2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvCopyItemAllowSplit - 0x0000000000000000 0x154 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 0x126 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 0xec esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferCreateNoSplit - 0x0000000000000000 0x20 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 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 0xfa esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferReceiveFromISR - 0x0000000000000000 0x5a 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 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) - .rodata.xRingbufferReceiveUpTo.str1.4 - 0x0000000000000000 0x38 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) - .rodata.xRingbufferAddToQueueSetRead.str1.4 - 0x0000000000000000 0x1f 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) - .rodata.xRingbufferPrintInfo.str1.4 - 0x0000000000000000 0x3d 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__.0 - 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.10 - 0x0000000000000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.11 - 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.12 - 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.13 - 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.14 - 0x0000000000000000 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.15 - 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.18 - 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.20 - 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.22 - 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.23 - 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.24 - 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.25 - 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.26 - 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.27 - 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.28 - 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.29 - 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.30 - 0x0000000000000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.31 - 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.32 - 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.33 - 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.34 - 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.4 - 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.5 - 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.6 - 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.7 - 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.8 - 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .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) - .debug_info 0x0000000000000000 0x3ba esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_abbrev 0x0000000000000000 0x181 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_loc 0x0000000000000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_aranges - 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_ranges 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_line 0x0000000000000000 0x3c7 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_str 0x0000000000000000 0x562 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .debug_frame 0x0000000000000000 0x88 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_ver - 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.esp_efuse_rtc_calib_get_init_code.str1.4 - 0x0000000000000000 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_init_code - 0x0000000000000000 0x100 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.esp_efuse_rtc_calib_get_cal_voltage.str1.4 - 0x0000000000000000 0x74 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_cal_voltage - 0x0000000000000000 0xfc esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.esp_efuse_rtc_calib_get_tsens_val.str1.4 - 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text.esp_efuse_rtc_calib_get_tsens_val - 0x0000000000000000 0xca esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .rodata.__func__.2 - 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_info 0x0000000000000000 0x722 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_abbrev 0x0000000000000000 0x1c6 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_loc 0x0000000000000000 0x448 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_aranges - 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_ranges 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_line 0x0000000000000000 0x6b7 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_str 0x0000000000000000 0x631 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .debug_frame 0x0000000000000000 0xb4 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) - .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.check_iomux_pins_quad - 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.bus_uses_iomux_pins - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.alloc_dma_chan.str1.4 - 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.alloc_dma_chan - 0x0000000000000000 0x12a esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.dma_chan_free - 0x0000000000000000 0x74 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.bus_iomux_pins_set_quad - 0x0000000000000000 0x13e esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.bus_iomux_pins_set - 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.spicommon_periph_claim.str1.4 - 0x0000000000000000 0x39 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_periph_claim - 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_periph_in_use - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_periph_free - 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_irqsource_for_host - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_irqdma_source_for_host - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_dma_chan_alloc - 0x0000000000000000 0xae esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_dma_chan_free - 0x0000000000000000 0x64 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.spicommon_bus_initialize_io.str1.4 - 0x0000000000000000 0x1c5 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_bus_initialize_io - 0x0000000000000000 0x8b0 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_bus_free_io_cfg - 0x0000000000000000 0x66 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_cs_initialize - 0x0000000000000000 0x146 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.spicommon_cs_free_io.str1.4 - 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_cs_free_io - 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spicommon_bus_using_iomux - 0x0000000000000000 0xc8 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) - .rodata.spi_bus_initialize.str1.4 - 0x0000000000000000 0xaf esp-idf/driver/libdriver.a(spi_common.c.obj) - .text.spi_bus_initialize - 0x0000000000000000 0x370 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 0xa8 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.0 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) - .iram1.1 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) - .iram1.2 0x0000000000000000 0x2 esp-idf/driver/libdriver.a(spi_common.c.obj) - .iram1.3 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 0x68 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__FUNCTION__.0 - 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__FUNCTION__.2 - 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0xe esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__func__.4 - 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__func__.5 - 0x0000000000000000 0xf esp-idf/driver/libdriver.a(spi_common.c.obj) - .rodata.__func__.6 - 0x0000000000000000 0x19 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 0x5054 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_abbrev 0x0000000000000000 0x55c esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_loc 0x0000000000000000 0x149d esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_aranges - 0x0000000000000000 0xf8 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_ranges 0x0000000000000000 0x118 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_line 0x0000000000000000 0x2866 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_str 0x0000000000000000 0x2903 esp-idf/driver/libdriver.a(spi_common.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/driver/libdriver.a(spi_common.c.obj) - .debug_frame 0x0000000000000000 0x364 esp-idf/driver/libdriver.a(spi_common.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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) - .rodata.spi_bus_deinit_lock.str1.4 - 0x0000000000000000 0x57 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .text.spi_bus_deinit_lock - 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .text.spi_bus_lock_register_dev - 0x0000000000000000 0xc0 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.23 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.24 0x0000000000000000 0xe esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .rodata.str1.4 - 0x0000000000000000 0xf2 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.26 0x0000000000000000 0xd0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.28 0x0000000000000000 0x12e esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.29 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.30 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.31 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.32 0x0000000000000000 0xf6 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.33 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.34 0x0000000000000000 0xa4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.35 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .iram1.36 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .dram1.2 0x0000000000000000 0x9 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .rodata.__FUNCTION__.0 - 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .rodata.__FUNCTION__.1 - 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .rodata.__FUNCTION__.2 - 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .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 0xb0 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 0xbe esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .rodata.bootloader_common_erase_part_type_data.str1.4 - 0x0000000000000000 0x113 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_erase_part_type_data - 0x0000000000000000 0x1a6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .text.bootloader_common_get_sha256_of_partition - 0x0000000000000000 0xa4 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) - .debug_info 0x0000000000000000 0x2364 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_abbrev 0x0000000000000000 0x389 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_loc 0x0000000000000000 0x55a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_aranges - 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_ranges 0x0000000000000000 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_line 0x0000000000000000 0xd42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_str 0x0000000000000000 0x178d esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .debug_frame 0x0000000000000000 0x130 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.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 0x50 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) - .rodata.log_invalid_app_partition.str1.4 - 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.log_invalid_app_partition - 0x0000000000000000 0xb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.read_otadata.str1.4 - 0x0000000000000000 0x8f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.read_otadata - 0x0000000000000000 0xca esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.write_otadata.str1.4 - 0x0000000000000000 0x45 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.write_otadata - 0x0000000000000000 0x76 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.set_actual_ota_seq.str1.4 - 0x0000000000000000 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.set_actual_ota_seq - 0x0000000000000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_common_get_partition_description - 0x0000000000000000 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_load_partition_table.str1.4 - 0x0000000000000000 0x19f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_utility_load_partition_table - 0x0000000000000000 0x272 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_get_selected_boot_partition.str1.4 - 0x0000000000000000 0x113 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_utility_get_selected_boot_partition - 0x0000000000000000 0x17a 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) - .rodata.set_cache_and_start_app.str1.4 - 0x0000000000000000 0x8d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.set_cache_and_start_app - 0x0000000000000000 0x1b4 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 0x11c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.load_image.str1.4 - 0x0000000000000000 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.load_image - 0x0000000000000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.bootloader_utility_load_boot_image.str1.4 - 0x0000000000000000 0xe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_utility_load_boot_image - 0x0000000000000000 0x1d2 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 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .text.bootloader_sha256_flash_contents - 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .sbss.ota_has_initial_contents - 0x0000000000000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_info 0x0000000000000000 0x1eb7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_abbrev 0x0000000000000000 0x444 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_loc 0x0000000000000000 0xf91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_aranges - 0x0000000000000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_ranges 0x0000000000000000 0x1c0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_line 0x0000000000000000 0x21eb esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_str 0x0000000000000000 0xe46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .debug_frame 0x0000000000000000 0x2a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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) - .rodata.verify_segment_header.str1.4 - 0x0000000000000000 0x92 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.verify_segment_header - 0x0000000000000000 0xbc esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_appended_hash_and_sig.str1.4 - 0x0000000000000000 0x4b esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_appended_hash_and_sig - 0x0000000000000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_checksum.str1.4 - 0x0000000000000000 0x43 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_checksum - 0x0000000000000000 0xf2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.verify_image_header.str1.4 - 0x0000000000000000 0x9e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.verify_image_header - 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_image_header - 0x0000000000000000 0x9e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.should_load - 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_segment_data.str1.4 - 0x0000000000000000 0x3b 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) - .rodata.process_segment.str1.4 - 0x0000000000000000 0xd6 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_segment - 0x0000000000000000 0x1c6 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.process_segments.str1.4 - 0x0000000000000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.process_segments - 0x0000000000000000 0xe2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.verify_simple_hash.str1.4 - 0x0000000000000000 0x5e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.verify_simple_hash - 0x0000000000000000 0x9a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .rodata.image_load.str1.4 - 0x0000000000000000 0x46 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .text.image_load - 0x0000000000000000 0x168 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 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_info 0x0000000000000000 0x189e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_abbrev 0x0000000000000000 0x361 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_loc 0x0000000000000000 0x16c1 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 0x108 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_line 0x0000000000000000 0x1be2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_str 0x0000000000000000 0xc80 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .debug_frame 0x0000000000000000 0x324 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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) - .rodata.esp_partition_table_verify.str1.4 - 0x0000000000000000 0x168 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .text.esp_partition_table_verify - 0x0000000000000000 0x1dc esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_info 0x0000000000000000 0x654 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_abbrev 0x0000000000000000 0x1fd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_loc 0x0000000000000000 0x1df 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 0x68 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_line 0x0000000000000000 0x794 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_str 0x0000000000000000 0x436 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .debug_frame 0x0000000000000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.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) - .rodata.bootloader_sha256_data.str1.4 - 0x0000000000000000 0x59 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__.0 - 0x0000000000000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_info 0x0000000000000000 0x550 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_abbrev 0x0000000000000000 0x182 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 0x4ee esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_str 0x0000000000000000 0x392 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .debug_frame 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.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) - .rodata.bootloader_common_check_chip_validity.str1.4 - 0x0000000000000000 0xc3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .text.bootloader_common_check_chip_validity - 0x0000000000000000 0xb4 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) - .debug_info 0x0000000000000000 0x667 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_abbrev 0x0000000000000000 0x22e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_loc 0x0000000000000000 0x2ef esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_aranges - 0x0000000000000000 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_ranges 0x0000000000000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_line 0x0000000000000000 0x6e0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_str 0x0000000000000000 0x677 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .debug_frame 0x0000000000000000 0xc0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_abbrev 0x0000000000000000 0xaf 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 0x57b esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .debug_str 0x0000000000000000 0x20c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj) - .comment 0x0000000000000000 0x27 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 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.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) - .rodata.find_default_boot_partition.str1.4 - 0x0000000000000000 0x4f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.find_default_boot_partition - 0x0000000000000000 0x84 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.read_otadata.str1.4 - 0x0000000000000000 0x62 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.read_otadata - 0x0000000000000000 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) - .rodata.esp_ota_write.str1.4 - 0x0000000000000000 0xb5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_write - 0x0000000000000000 0x1e2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_write_with_offset.str1.4 - 0x0000000000000000 0xc5 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_write_with_offset - 0x0000000000000000 0x116 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) - .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 0x58 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_rewrite_ota_data - 0x0000000000000000 0xc8 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) - .rodata.esp_ota_get_boot_partition.str1.4 - 0x0000000000000000 0x4b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_boot_partition - 0x0000000000000000 0xb4 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 0x90 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_partition_description - 0x0000000000000000 0x50 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_check_rollback_is_possible - 0x0000000000000000 0xe4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.esp_ota_current_ota_is_workable.str1.4 - 0x0000000000000000 0xdc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_current_ota_is_workable - 0x0000000000000000 0x146 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 0x76 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_get_state_partition - 0x0000000000000000 0xc6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .text.esp_ota_erase_last_boot_app_partition - 0x0000000000000000 0xf2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.__func__.3 - 0x0000000000000000 0x20 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .rodata.__func__.4 - 0x0000000000000000 0x1a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .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/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) - .rodata.esp_partition_verify.str1.4 - 0x0000000000000000 0x12 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) - .rodata.esp_partition_register_external.str1.4 - 0x0000000000000000 0x5e 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) - .rodata.__func__.0 - 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x15 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text.efuse_hal_get_mac - 0x0000000000000000 0x14 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.mmu_hal_init.str1.4 - 0x0000000000000000 0x4d esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_init - 0x0000000000000000 0x50 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_pages_to_bytes - 0x0000000000000000 0x6 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_bytes_to_pages - 0x0000000000000000 0x6 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.mmu_hal_map_region.str1.4 - 0x0000000000000000 0x100 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text.mmu_hal_map_region - 0x0000000000000000 0x1a6 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.__func__.0 - 0x0000000000000000 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.__func__.1 - 0x0000000000000000 0x13 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .rodata.__func__.4 - 0x0000000000000000 0x19 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_info 0x0000000000000000 0x6d9 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_abbrev 0x0000000000000000 0x264 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_loc 0x0000000000000000 0x4a5 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_aranges - 0x0000000000000000 0x38 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_ranges 0x0000000000000000 0x90 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_line 0x0000000000000000 0x564 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_str 0x0000000000000000 0x384 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .debug_frame 0x0000000000000000 0x8c esp-idf/hal/libhal.a(mmu_hal.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/hal/libhal.a(mmu_hal.c.obj) - .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_init - 0x0000000000000000 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_disable - 0x0000000000000000 0x12 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text.cache_hal_enable - 0x0000000000000000 0x1c esp-idf/hal/libhal.a(cache_hal.c.obj) - .sbss.ctx 0x0000000000000000 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_info 0x0000000000000000 0x2db esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_abbrev 0x0000000000000000 0x18c esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_loc 0x0000000000000000 0x92 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_aranges - 0x0000000000000000 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_ranges 0x0000000000000000 0x20 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_line 0x0000000000000000 0x39c esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_str 0x0000000000000000 0x327 esp-idf/hal/libhal.a(cache_hal.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/hal/libhal.a(cache_hal.c.obj) - .debug_frame 0x0000000000000000 0x64 esp-idf/hal/libhal.a(cache_hal.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/hal/libhal.a(cache_hal.c.obj) - .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.get_controller - 0x0000000000000000 0x1a esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.read_cal_channel - 0x0000000000000000 0xbe esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_set_controller - 0x0000000000000000 0x12 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.cal_setup - 0x0000000000000000 0xc8 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_arbiter_config - 0x0000000000000000 0x12e esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_calibration_init - 0x0000000000000000 0x3a esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_set_calibration_param - 0x0000000000000000 0xa2 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text.adc_hal_self_calibration - 0x0000000000000000 0x2ec esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .sdata.s_previous_init_code - 0x0000000000000000 0x8 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_info 0x0000000000000000 0x28b7 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_abbrev 0x0000000000000000 0x35c esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_loc 0x0000000000000000 0xa92 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_aranges - 0x0000000000000000 0x58 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_ranges 0x0000000000000000 0x1b8 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_line 0x0000000000000000 0xe29 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_str 0x0000000000000000 0x1833 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .debug_frame 0x0000000000000000 0x13c esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/hal/libhal.a(adc_hal_common.c.obj) - .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_acquire_pair_handle - 0x0000000000000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_acquire_group_handle - 0x0000000000000000 0xd4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_release_group_handle.str1.4 - 0x0000000000000000 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_release_group_handle - 0x0000000000000000 0xbc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_release_pair_handle.str1.4 - 0x0000000000000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_release_pair_handle - 0x0000000000000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_del_rx_channel - 0x0000000000000000 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_del_tx_channel - 0x0000000000000000 0x96 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_install_tx_interrupt.str1.4 - 0x0000000000000000 0x3f esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_install_tx_interrupt - 0x0000000000000000 0xf2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_install_rx_interrupt - 0x0000000000000000 0xea esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .iram1.3 0x0000000000000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .iram1.2 0x0000000000000000 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_new_channel.str1.4 - 0x0000000000000000 0x1fe esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_new_channel - 0x0000000000000000 0x40e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_del_channel - 0x0000000000000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_get_channel_id - 0x0000000000000000 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_connect.str1.4 - 0x0000000000000000 0x43 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_connect - 0x0000000000000000 0x19a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_disconnect.str1.4 - 0x0000000000000000 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_disconnect - 0x0000000000000000 0xd2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_set_transfer_ability.str1.4 - 0x0000000000000000 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_set_transfer_ability - 0x0000000000000000 0x11c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_apply_strategy - 0x0000000000000000 0xc2 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.gdma_register_tx_event_callbacks.str1.4 - 0x0000000000000000 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_register_tx_event_callbacks - 0x0000000000000000 0x136 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_register_rx_event_callbacks - 0x0000000000000000 0x13a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_start - 0x0000000000000000 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_stop - 0x0000000000000000 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_append - 0x0000000000000000 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .text.gdma_reset - 0x0000000000000000 0xf4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .data.s_platform - 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.0 - 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.1 - 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.10 - 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.11 - 0x0000000000000000 0xd esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.12 - 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.13 - 0x0000000000000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.17 - 0x0000000000000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.2 - 0x0000000000000000 0xa esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.3 - 0x0000000000000000 0xb esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.4 - 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.5 - 0x0000000000000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.6 - 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.7 - 0x0000000000000000 0x21 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.8 - 0x0000000000000000 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__FUNCTION__.9 - 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__func__.14 - 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__func__.15 - 0x0000000000000000 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .rodata.__func__.16 - 0x0000000000000000 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_info 0x0000000000000000 0x4321 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_abbrev 0x0000000000000000 0x552 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_loc 0x0000000000000000 0x27e0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_aranges - 0x0000000000000000 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_ranges 0x0000000000000000 0x210 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_line 0x0000000000000000 0x3859 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_str 0x0000000000000000 0x1763 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .debug_frame 0x0000000000000000 0x3f4 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(gdma.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 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_exchange_2 - 0x0000000000000000 0x38 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 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_compare_exchange_2 - 0x0000000000000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_compare_exchange_4 - 0x0000000000000000 0x44 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_add_1 - 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_add_2 - 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_add_4 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_add_fetch_1 - 0x0000000000000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_add_fetch_2 - 0x0000000000000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_add_fetch_4 - 0x0000000000000000 0x32 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_sub_1 - 0x0000000000000000 0x44 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_sub_2 - 0x0000000000000000 0x44 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_sub_fetch_1 - 0x0000000000000000 0x3c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_sub_fetch_2 - 0x0000000000000000 0x3c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_sub_fetch_4 - 0x0000000000000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_and_1 - 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_and_2 - 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_and_4 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_and_fetch_1 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_and_fetch_2 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_and_fetch_4 - 0x0000000000000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_or_1 - 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_or_2 - 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_or_4 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_or_fetch_1 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_or_fetch_2 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_or_fetch_4 - 0x0000000000000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_xor_1 - 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_xor_2 - 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_xor_4 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_xor_fetch_1 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_xor_fetch_2 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_xor_fetch_4 - 0x0000000000000000 0x34 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_nand_1 - 0x0000000000000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_nand_2 - 0x0000000000000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_nand_4 - 0x0000000000000000 0x3a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_nand_fetch_1 - 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_nand_fetch_2 - 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_nand_fetch_4 - 0x0000000000000000 0x38 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_add_and_fetch_1 - 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_add_and_fetch_2 - 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_add_and_fetch_4 - 0x0000000000000000 0x1c 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_sub_and_fetch_1 - 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_sub_and_fetch_2 - 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_sub_and_fetch_4 - 0x0000000000000000 0x1c 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_and_and_fetch_1 - 0x0000000000000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_and_and_fetch_2 - 0x0000000000000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_and_and_fetch_4 - 0x0000000000000000 0x1c 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_or_and_fetch_1 - 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_or_and_fetch_2 - 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_or_and_fetch_4 - 0x0000000000000000 0x1c 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_xor_and_fetch_1 - 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_xor_and_fetch_2 - 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_xor_and_fetch_4 - 0x0000000000000000 0x1c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_nand_1 - 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_nand_2 - 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_fetch_and_nand_4 - 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_nand_and_fetch_1 - 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_nand_and_fetch_2 - 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_nand_and_fetch_4 - 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_bool_compare_and_swap_1 - 0x0000000000000000 0x44 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_bool_compare_and_swap_2 - 0x0000000000000000 0x44 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 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_val_compare_and_swap_2 - 0x0000000000000000 0x4c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_val_compare_and_swap_4 - 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_test_and_set_1 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_test_and_set_2 - 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_test_and_set_4 - 0x0000000000000000 0x32 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_release_1 - 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_release_2 - 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_release_4 - 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_load_1 - 0x0000000000000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_load_2 - 0x0000000000000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_load_4 - 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store_1 - 0x0000000000000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store_2 - 0x0000000000000000 0x2a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store_4 - 0x0000000000000000 0x28 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 0x5a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_add_8 - 0x0000000000000000 0x56 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_sub_8 - 0x0000000000000000 0x58 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_and_8 - 0x0000000000000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_or_8 - 0x0000000000000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_xor_8 - 0x0000000000000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_fetch_nand_8 - 0x0000000000000000 0x56 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_add_fetch_8 - 0x0000000000000000 0x58 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_sub_fetch_8 - 0x0000000000000000 0x5a esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_and_fetch_8 - 0x0000000000000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_or_fetch_8 - 0x0000000000000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_xor_fetch_8 - 0x0000000000000000 0x50 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_nand_fetch_8 - 0x0000000000000000 0x54 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_fetch_and_nand_8 - 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_add_and_fetch_8 - 0x0000000000000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_sub_and_fetch_8 - 0x0000000000000000 0x2c esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_and_and_fetch_8 - 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_or_and_fetch_8 - 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_xor_and_fetch_8 - 0x0000000000000000 0x24 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_nand_and_fetch_8 - 0x0000000000000000 0x2c 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 0x62 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_test_and_set_8 - 0x0000000000000000 0x48 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__sync_lock_release_8 - 0x0000000000000000 0x2a 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_load - 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .text.__atomic_store - 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_info 0x0000000000000000 0x452d esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_abbrev 0x0000000000000000 0x16b esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_loc 0x0000000000000000 0x4286 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_aranges - 0x0000000000000000 0x428 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_ranges 0x0000000000000000 0x418 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_line 0x0000000000000000 0x1f1d esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_str 0x0000000000000000 0xd7b esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .debug_frame 0x0000000000000000 0x1320 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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 - 0x0000000000000000 0x32 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_update - 0x0000000000000000 0x116 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .text.mbedtls_sha256_finish - 0x0000000000000000 0xbc 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 0x6d8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_abbrev 0x0000000000000000 0x1d9 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_loc 0x0000000000000000 0x530 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_aranges - 0x0000000000000000 0x58 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_ranges 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_line 0x0000000000000000 0x89a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_str 0x0000000000000000 0x412 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .debug_frame 0x0000000000000000 0x118 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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.s_check_dma_capable - 0x0000000000000000 0x10 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) - .rodata.esp_sha_dma_process.str1.4 - 0x0000000000000000 0x53 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_dma_process - 0x0000000000000000 0x19e 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) - .rodata.esp_sha_dma.str1.4 - 0x0000000000000000 0x8a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .text.esp_sha_dma - 0x0000000000000000 0x15e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .dram1.2 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .dram1.3 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_info 0x0000000000000000 0xaee esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_abbrev 0x0000000000000000 0x384 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_loc 0x0000000000000000 0x815 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 0xc8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_line 0x0000000000000000 0xbdd esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_str 0x0000000000000000 0x7d1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .debug_frame 0x0000000000000000 0x140 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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 0x267 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_abbrev 0x0000000000000000 0x174 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 0x279 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .debug_str 0x0000000000000000 0x33b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha_gdma_impl.c.obj) - .comment 0x0000000000000000 0x27 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 0x26 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) - .rodata.crypto_shared_gdma_init.str1.4 - 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.crypto_shared_gdma_init - 0x0000000000000000 0x14e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .text.esp_crypto_shared_gdma_start - 0x0000000000000000 0xe4 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) - .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 0x1840 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_abbrev 0x0000000000000000 0x3c7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_loc 0x0000000000000000 0x1a9 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 0x872 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_str 0x0000000000000000 0xd80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .debug_frame 0x0000000000000000 0x8c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 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 0x6c esp-idf/hal/libhal.a(sha_hal.c.obj) - .text.sha_hal_write_digest - 0x0000000000000000 0x34 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_info 0x0000000000000000 0x60c esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_abbrev 0x0000000000000000 0x209 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_loc 0x0000000000000000 0x48c 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 0x90 esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_line 0x0000000000000000 0x67a esp-idf/hal/libhal.a(sha_hal.c.obj) - .debug_str 0x0000000000000000 0x39e esp-idf/hal/libhal.a(sha_hal.c.obj) - .comment 0x0000000000000000 0x27 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 0x26 esp-idf/hal/libhal.a(sha_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_info 0x0000000000000000 0x1116 esp-idf/hal/libhal.a(gdma_hal.c.obj) - .debug_abbrev 0x0000000000000000 0x1cd 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 0x1fe esp-idf/hal/libhal.a(gdma_hal.c.obj) - .debug_str 0x0000000000000000 0x885 esp-idf/hal/libhal.a(gdma_hal.c.obj) - .comment 0x0000000000000000 0x27 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 0x26 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 0x332 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 0xb2 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .debug_str 0x0000000000000000 0x9e3 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .comment 0x0000000000000000 0x27 esp-idf/soc/libsoc.a(gdma_periph.c.obj) - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(gdma_periph.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 0x279 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) - .debug_abbrev 0x0000000000000000 0x108 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 0x254 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) - .debug_str 0x0000000000000000 0x27b esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) - .comment 0x0000000000000000 0x27 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 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) - .text 0x0000000000000000 0x40 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_info 0x0000000000000000 0x14f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_abbrev 0x0000000000000000 0xd0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_loclists - 0x0000000000000000 0xab /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_rnglists - 0x0000000000000000 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_line 0x0000000000000000 0x113 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_str 0x0000000000000000 0x18f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_line_str - 0x0000000000000000 0x2a8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) - .text 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .rodata 0x0000000000000000 0x100 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_info 0x0000000000000000 0xd8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_abbrev 0x0000000000000000 0x70 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_aranges - 0x0000000000000000 0x18 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_line 0x0000000000000000 0x3f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_str 0x0000000000000000 0x163 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .debug_line_str - 0x0000000000000000 0x2a8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - .text 0x0000000000000000 0x3c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_info 0x0000000000000000 0x142 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_abbrev 0x0000000000000000 0xca /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_loclists - 0x0000000000000000 0x62 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_rnglists - 0x0000000000000000 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_line 0x0000000000000000 0xcb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_str 0x0000000000000000 0x180 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_line_str - 0x0000000000000000 0x2a8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - .text 0x0000000000000000 0x42 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_info 0x0000000000000000 0xd1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_abbrev 0x0000000000000000 0x65 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_loclists - 0x0000000000000000 0xbd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_line 0x0000000000000000 0xe9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_str 0x0000000000000000 0x167 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_line_str - 0x0000000000000000 0x2a8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - .text 0x0000000000000000 0x52 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_info 0x0000000000000000 0xd1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_abbrev 0x0000000000000000 0x65 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_loclists - 0x0000000000000000 0x2d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_line 0x0000000000000000 0xcf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_str 0x0000000000000000 0x163 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_line_str - 0x0000000000000000 0x2a8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - .text 0x0000000000000000 0x39e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .text 0x0000000000000000 0x37a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .text 0x0000000000000000 0x35e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .text 0x0000000000000000 0x31e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .text 0x0000000000000000 0x542 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .rodata 0x0000000000000000 0x3c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_info 0x0000000000000000 0x684 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_abbrev 0x0000000000000000 0x173 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_loclists - 0x0000000000000000 0x10de /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_rnglists - 0x0000000000000000 0x16f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_line 0x0000000000000000 0xf42 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_str 0x0000000000000000 0x332 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_line_str - 0x0000000000000000 0x2c6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .debug_frame 0x0000000000000000 0x58 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - .text 0x0000000000000000 0x66 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_info 0x0000000000000000 0x1ca /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_abbrev 0x0000000000000000 0x15d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_loclists - 0x0000000000000000 0x167 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_rnglists - 0x0000000000000000 0x1f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_line 0x0000000000000000 0x1eb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_str 0x0000000000000000 0x17d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_line_str - 0x0000000000000000 0x2c9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - .text 0x0000000000000000 0x6c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_info 0x0000000000000000 0x268 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_abbrev 0x0000000000000000 0x164 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_loclists - 0x0000000000000000 0x134 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_rnglists - 0x0000000000000000 0x61 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_line 0x0000000000000000 0x223 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_str 0x0000000000000000 0x21a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_line_str - 0x0000000000000000 0x2cf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .debug_frame 0x0000000000000000 0x38 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - .text 0x0000000000000000 0xbe /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_info 0x0000000000000000 0x213 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_abbrev 0x0000000000000000 0x16d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_loclists - 0x0000000000000000 0x206 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_rnglists - 0x0000000000000000 0xaa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_line 0x0000000000000000 0x39b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_str 0x0000000000000000 0x1fb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_line_str - 0x0000000000000000 0x2cf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .debug_frame 0x0000000000000000 0x40 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .text 0x0000000000000000 0xc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .debug_info 0x0000000000000000 0xf7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .debug_abbrev 0x0000000000000000 0xae /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .debug_loclists - 0x0000000000000000 0x4b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .debug_line 0x0000000000000000 0x7c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .debug_str 0x0000000000000000 0xfc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .debug_line_str - 0x0000000000000000 0x3ed /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - .text 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .text 0x0000000000000000 0x5c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .debug_info 0x0000000000000000 0x96c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .debug_abbrev 0x0000000000000000 0x213 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .debug_loclists - 0x0000000000000000 0xa4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .debug_line 0x0000000000000000 0x143 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .debug_str 0x0000000000000000 0x4f7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .debug_line_str - 0x0000000000000000 0x47f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .debug_frame 0x0000000000000000 0x50 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - .text 0x0000000000000000 0xee /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .debug_info 0x0000000000000000 0xb43 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .debug_abbrev 0x0000000000000000 0x299 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .debug_loclists - 0x0000000000000000 0x108 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .debug_rnglists - 0x0000000000000000 0x1f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .debug_line 0x0000000000000000 0x262 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .debug_str 0x0000000000000000 0x5dc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .debug_line_str - 0x0000000000000000 0x48d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .debug_frame 0x0000000000000000 0x58 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .text 0x0000000000000000 0x134 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .debug_info 0x0000000000000000 0xb7b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .debug_abbrev 0x0000000000000000 0x2b8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .debug_loclists - 0x0000000000000000 0x225 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .debug_rnglists - 0x0000000000000000 0x3b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .debug_line 0x0000000000000000 0x2d1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .debug_str 0x0000000000000000 0x5db /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .debug_line_str - 0x0000000000000000 0x487 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .debug_frame 0x0000000000000000 0x6c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - .text 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .sbss 0x0000000000000000 0x4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .debug_info 0x0000000000000000 0x81a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .debug_abbrev 0x0000000000000000 0x173 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .debug_aranges - 0x0000000000000000 0x18 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .debug_line 0x0000000000000000 0x4d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .debug_str 0x0000000000000000 0x4b2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .debug_line_str - 0x0000000000000000 0x373 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - .text 0x0000000000000000 0x54 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .debug_info 0x0000000000000000 0x171 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .debug_abbrev 0x0000000000000000 0xee /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .debug_loclists - 0x0000000000000000 0x15c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .debug_line 0x0000000000000000 0x14c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .debug_str 0x0000000000000000 0x106 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .debug_line_str - 0x0000000000000000 0x34a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .debug_frame 0x0000000000000000 0x44 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - .text 0x0000000000000000 0x240 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .debug_info 0x0000000000000000 0x362 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .debug_abbrev 0x0000000000000000 0x185 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .debug_loclists - 0x0000000000000000 0x14e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .debug_line 0x0000000000000000 0x656 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .debug_str 0x0000000000000000 0x230 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .debug_line_str - 0x0000000000000000 0x479 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .debug_frame 0x0000000000000000 0x44 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .text 0x0000000000000000 0x1a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .debug_info 0x0000000000000000 0xfc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .debug_abbrev 0x0000000000000000 0xb8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .debug_loclists - 0x0000000000000000 0x73 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .debug_line 0x0000000000000000 0xba /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .debug_str 0x0000000000000000 0xff /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .debug_line_str - 0x0000000000000000 0x3e6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - .text 0x0000000000000000 0x48 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .debug_info 0x0000000000000000 0x10f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .debug_abbrev 0x0000000000000000 0x8a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .debug_loclists - 0x0000000000000000 0x130 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .debug_line 0x0000000000000000 0x161 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .debug_str 0x0000000000000000 0xef /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .debug_line_str - 0x0000000000000000 0x3e6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - .text 0x0000000000000000 0xdc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .debug_info 0x0000000000000000 0x256 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .debug_abbrev 0x0000000000000000 0x107 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .debug_loclists - 0x0000000000000000 0x291 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .debug_line 0x0000000000000000 0x2da /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .debug_str 0x0000000000000000 0x110 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .debug_line_str - 0x0000000000000000 0x51e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - .text 0x0000000000000000 0x4a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .debug_info 0x0000000000000000 0xff /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .debug_abbrev 0x0000000000000000 0xa6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .debug_loclists - 0x0000000000000000 0x1b1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .debug_line 0x0000000000000000 0xff /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .debug_str 0x0000000000000000 0x109 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .debug_line_str - 0x0000000000000000 0x423 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - .text 0x0000000000000000 0xa8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .debug_line 0x0000000000000000 0x18e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .debug_line_str - 0x0000000000000000 0x112 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .debug_info 0x0000000000000000 0x25 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .debug_abbrev 0x0000000000000000 0x14 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .debug_str 0x0000000000000000 0xc3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .riscv.attributes - 0x0000000000000000 0x24 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - .text 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .rodata 0x0000000000000000 0x60 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .debug_info 0x0000000000000000 0xad /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .debug_abbrev 0x0000000000000000 0x61 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .debug_aranges - 0x0000000000000000 0x18 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .debug_line 0x0000000000000000 0x3f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .debug_str 0x0000000000000000 0xf1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .debug_line_str - 0x0000000000000000 0x2e3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .text 0x0000000000000000 0x394 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .debug_info 0x0000000000000000 0x794 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .debug_abbrev 0x0000000000000000 0x26e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .debug_loclists - 0x0000000000000000 0x7fd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .debug_rnglists - 0x0000000000000000 0x32 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .debug_line 0x0000000000000000 0x7d5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .debug_str 0x0000000000000000 0x14a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .debug_line_str - 0x0000000000000000 0x3e3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .debug_frame 0x0000000000000000 0xa0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-qsort.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .text 0x0000000000000000 0xf2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .debug_info 0x0000000000000000 0x9c1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .debug_abbrev 0x0000000000000000 0x237 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .debug_loclists - 0x0000000000000000 0x1ba /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .debug_line 0x0000000000000000 0x3a4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .debug_str 0x0000000000000000 0x506 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .debug_line_str - 0x0000000000000000 0x48a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .debug_frame 0x0000000000000000 0x68 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - .text 0x0000000000000000 0x94 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .debug_info 0x0000000000000000 0x995 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .debug_abbrev 0x0000000000000000 0x213 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .debug_loclists - 0x0000000000000000 0xa5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .debug_line 0x0000000000000000 0x237 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .debug_str 0x0000000000000000 0x4f8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .debug_line_str - 0x0000000000000000 0x487 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .debug_frame 0x0000000000000000 0x4c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .text 0x0000000000000000 0x1c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .debug_info 0x0000000000000000 0xd3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .debug_abbrev 0x0000000000000000 0x80 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .debug_loclists - 0x0000000000000000 0x45 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .debug_line 0x0000000000000000 0xe0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .debug_str 0x0000000000000000 0xe8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .debug_line_str - 0x0000000000000000 0x350 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcat.o) - .text 0x0000000000000000 0x11e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .debug_line 0x0000000000000000 0x13a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .debug_line_str - 0x0000000000000000 0x112 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .debug_info 0x0000000000000000 0x25 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .debug_abbrev 0x0000000000000000 0x14 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .debug_str 0x0000000000000000 0xc3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .riscv.attributes - 0x0000000000000000 0x24 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - .text 0x0000000000000000 0x62 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .debug_info 0x0000000000000000 0x1e3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .debug_abbrev 0x0000000000000000 0x131 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .debug_loclists - 0x0000000000000000 0x1de /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .debug_rnglists - 0x0000000000000000 0x1f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .debug_line 0x0000000000000000 0x28d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .debug_str 0x0000000000000000 0x130 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .debug_line_str - 0x0000000000000000 0x515 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - .text 0x0000000000000000 0x22 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .debug_info 0x0000000000000000 0xdd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .debug_abbrev 0x0000000000000000 0x99 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .debug_loclists - 0x0000000000000000 0x54 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .debug_line 0x0000000000000000 0xe7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .debug_str 0x0000000000000000 0xf0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .debug_line_str - 0x0000000000000000 0x3e9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - .text 0x0000000000000000 0x58 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .debug_info 0x0000000000000000 0x924 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .debug_abbrev 0x0000000000000000 0x207 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .debug_loclists - 0x0000000000000000 0xe5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .debug_line 0x0000000000000000 0xe5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .debug_str 0x0000000000000000 0x4ea /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .debug_line_str - 0x0000000000000000 0x485 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .debug_frame 0x0000000000000000 0x48 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - .text 0x0000000000000000 0x62 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .debug_info 0x0000000000000000 0x130 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .debug_abbrev 0x0000000000000000 0xc1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .debug_loclists - 0x0000000000000000 0x1f6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .debug_line 0x0000000000000000 0x1c9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .debug_str 0x0000000000000000 0xfc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .debug_line_str - 0x0000000000000000 0x3e9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .debug_frame 0x0000000000000000 0x34 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - .text 0x0000000000000000 0x32 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .debug_info 0x0000000000000000 0x100 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .debug_abbrev 0x0000000000000000 0x9a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .debug_loclists - 0x0000000000000000 0xdb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .debug_line 0x0000000000000000 0x151 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .debug_str 0x0000000000000000 0xf0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .debug_line_str - 0x0000000000000000 0x3e9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - .text 0x0000000000000000 0x66 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .debug_info 0x0000000000000000 0x1ae /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .debug_abbrev 0x0000000000000000 0x121 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .debug_loclists - 0x0000000000000000 0xeb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .debug_rnglists - 0x0000000000000000 0x1f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .debug_line 0x0000000000000000 0x288 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .debug_str 0x0000000000000000 0x123 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .debug_line_str - 0x0000000000000000 0x5ab /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - .text 0x0000000000000000 0x2c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .debug_info 0x0000000000000000 0xd2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .debug_abbrev 0x0000000000000000 0x76 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .debug_loclists - 0x0000000000000000 0x108 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .debug_line 0x0000000000000000 0xe1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .debug_str 0x0000000000000000 0xf0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .debug_line_str - 0x0000000000000000 0x3e9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - .text 0x0000000000000000 0x24 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .debug_info 0x0000000000000000 0x101 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .debug_abbrev 0x0000000000000000 0xa1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .debug_loclists - 0x0000000000000000 0xaa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .debug_line 0x0000000000000000 0x106 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .debug_str 0x0000000000000000 0x10c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .debug_line_str - 0x0000000000000000 0x3e9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - .text 0x0000000000000000 0x36 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .debug_info 0x0000000000000000 0xe8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .debug_abbrev 0x0000000000000000 0xa9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .debug_loclists - 0x0000000000000000 0x2f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .debug_line 0x0000000000000000 0x12c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .debug_str 0x0000000000000000 0xef /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .debug_line_str - 0x0000000000000000 0x3e6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - .text 0x0000000000000000 0x2844 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .rodata 0x0000000000000000 0x23c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .rodata.str1.4 - 0x0000000000000000 0x3a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .srodata.cst8 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_info 0x0000000000000000 0x2733 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_abbrev 0x0000000000000000 0x42d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_loclists - 0x0000000000000000 0x357f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_rnglists - 0x0000000000000000 0x12b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_line 0x0000000000000000 0x4734 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_str 0x0000000000000000 0xc4b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_line_str - 0x0000000000000000 0x603 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .debug_frame 0x0000000000000000 0xb8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .text 0x0000000000000000 0x170 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .debug_info 0x0000000000000000 0x268 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .debug_abbrev 0x0000000000000000 0x12e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .debug_loclists - 0x0000000000000000 0x1c4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .debug_rnglists - 0x0000000000000000 0x3a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .debug_line 0x0000000000000000 0x42f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .debug_str 0x0000000000000000 0x1c1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .debug_line_str - 0x0000000000000000 0x407 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .debug_frame 0x0000000000000000 0x48 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - .text 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .debug_info 0x0000000000000000 0x106 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .debug_abbrev 0x0000000000000000 0xcb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .debug_line 0x0000000000000000 0x6d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .debug_str 0x0000000000000000 0x153 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .debug_line_str - 0x0000000000000000 0x348 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .debug_frame 0x0000000000000000 0x30 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - .text 0x0000000000000000 0x40 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .debug_info 0x0000000000000000 0x895 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .debug_abbrev 0x0000000000000000 0x1e3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .debug_line 0x0000000000000000 0xe0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .debug_str 0x0000000000000000 0x4e8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .debug_line_str - 0x0000000000000000 0x472 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .debug_frame 0x0000000000000000 0x48 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - .text 0x0000000000000000 0x4be /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .bss 0x0000000000000000 0x17 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .rodata.str1.4 - 0x0000000000000000 0x67 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .sbss 0x0000000000000000 0x4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .debug_info 0x0000000000000000 0xe07 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .debug_abbrev 0x0000000000000000 0x2ae /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .debug_loclists - 0x0000000000000000 0x20e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .debug_rnglists - 0x0000000000000000 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .debug_line 0x0000000000000000 0xa1d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .debug_str 0x0000000000000000 0x604 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .debug_line_str - 0x0000000000000000 0x53b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .debug_frame 0x0000000000000000 0x74 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - .text 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .rodata.str1.4 - 0x0000000000000000 0x4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .sbss 0x0000000000000000 0x8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .sdata 0x0000000000000000 0x8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .debug_info 0x0000000000000000 0xcb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .debug_abbrev 0x0000000000000000 0x5e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .debug_aranges - 0x0000000000000000 0x18 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .debug_line 0x0000000000000000 0x3a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .debug_str 0x0000000000000000 0xfd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .debug_line_str - 0x0000000000000000 0x2c4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - .text 0x0000000000000000 0xa0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .rodata.str1.4 - 0x0000000000000000 0x25 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .debug_info 0x0000000000000000 0x1b4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .debug_abbrev 0x0000000000000000 0xf3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .debug_loclists - 0x0000000000000000 0x1b6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .debug_line 0x0000000000000000 0x221 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .debug_str 0x0000000000000000 0x121 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .debug_line_str - 0x0000000000000000 0x355 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .debug_frame 0x0000000000000000 0x4c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .text 0x0000000000000000 0xbe /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .debug_info 0x0000000000000000 0x9a2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .debug_abbrev 0x0000000000000000 0x21c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .debug_loclists - 0x0000000000000000 0x12b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .debug_line 0x0000000000000000 0x241 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .debug_str 0x0000000000000000 0x503 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .debug_line_str - 0x0000000000000000 0x492 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .debug_frame 0x0000000000000000 0x6c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - .text 0x0000000000000000 0xa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .data 0x0000000000000000 0x58 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .debug_info 0x0000000000000000 0x170 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .debug_abbrev 0x0000000000000000 0xb7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .debug_line 0x0000000000000000 0x7c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .debug_str 0x0000000000000000 0x171 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .debug_line_str - 0x0000000000000000 0x3f3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - .text 0x0000000000000000 0x19c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .debug_info 0x0000000000000000 0x220 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .debug_abbrev 0x0000000000000000 0xee /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .debug_loclists - 0x0000000000000000 0x1c3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .debug_line 0x0000000000000000 0x4f8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .debug_str 0x0000000000000000 0x196 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .debug_line_str - 0x0000000000000000 0x460 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .debug_frame 0x0000000000000000 0x44 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .text 0x0000000000000000 0xbe /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .debug_info 0x0000000000000000 0x9f2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .debug_abbrev 0x0000000000000000 0x217 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .debug_loclists - 0x0000000000000000 0xb0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .debug_line 0x0000000000000000 0x296 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .debug_str 0x0000000000000000 0x513 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .debug_line_str - 0x0000000000000000 0x490 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .debug_frame 0x0000000000000000 0x58 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - .text 0x0000000000000000 0x3a2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .rodata.str1.4 - 0x0000000000000000 0x701 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .rodata 0x0000000000000000 0x23c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .debug_info 0x0000000000000000 0x980 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .debug_abbrev 0x0000000000000000 0x216 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .debug_loclists - 0x0000000000000000 0xddc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .debug_line 0x0000000000000000 0xafa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .debug_str 0x0000000000000000 0x506 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .debug_line_str - 0x0000000000000000 0x489 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .debug_frame 0x0000000000000000 0x68 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - .text 0x0000000000000000 0x170 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .debug_info 0x0000000000000000 0xdad /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .debug_abbrev 0x0000000000000000 0x2b5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .debug_loclists - 0x0000000000000000 0x3af /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .debug_line 0x0000000000000000 0x4e2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .debug_str 0x0000000000000000 0x737 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .debug_line_str - 0x0000000000000000 0x52e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .debug_frame 0x0000000000000000 0x78 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .text 0x0000000000000000 0x1d40 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .rodata 0x0000000000000000 0x13e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .debug_info 0x0000000000000000 0x20ce /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .debug_abbrev 0x0000000000000000 0x420 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .debug_loclists - 0x0000000000000000 0x2137 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .debug_rnglists - 0x0000000000000000 0x3b1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .debug_line 0x0000000000000000 0x3841 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .debug_str 0x0000000000000000 0x939 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .debug_line_str - 0x0000000000000000 0x5f5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .debug_frame 0x0000000000000000 0x110 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - .text 0x0000000000000000 0x4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .debug_info 0x0000000000000000 0x84 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .debug_abbrev 0x0000000000000000 0x74 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .debug_loclists - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .debug_line 0x0000000000000000 0x6d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .debug_str 0x0000000000000000 0x77 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .debug_line_str - 0x0000000000000000 0x2d6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - .text 0x0000000000000000 0x264 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .debug_info 0x0000000000000000 0xba6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .debug_abbrev 0x0000000000000000 0x2c4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .debug_loclists - 0x0000000000000000 0x1d3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .debug_rnglists - 0x0000000000000000 0x3b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .debug_line 0x0000000000000000 0x6a9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .debug_str 0x0000000000000000 0x5bc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .debug_line_str - 0x0000000000000000 0x48f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .debug_frame 0x0000000000000000 0x94 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .text 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - .text 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .debug_info 0x0000000000000000 0x89a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .debug_abbrev 0x0000000000000000 0x1e7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .debug_loclists - 0x0000000000000000 0x40 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .debug_line 0x0000000000000000 0x89 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .debug_str 0x0000000000000000 0x52e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .debug_line_str - 0x0000000000000000 0x47d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .debug_frame 0x0000000000000000 0x30 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - .text 0x0000000000000000 0xa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .debug_info 0x0000000000000000 0xe7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .debug_abbrev 0x0000000000000000 0xb9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .debug_loclists - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .debug_line 0x0000000000000000 0x79 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .debug_str 0x0000000000000000 0xff /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .debug_line_str - 0x0000000000000000 0x46c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - .text 0x0000000000000000 0x1e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .debug_info 0x0000000000000000 0xad7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .debug_abbrev 0x0000000000000000 0x1ae /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .debug_loclists - 0x0000000000000000 0x3f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .debug_line 0x0000000000000000 0xc0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .debug_str 0x0000000000000000 0x697 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .debug_line_str - 0x0000000000000000 0x527 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - .text 0x0000000000000000 0x8c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .sbss 0x0000000000000000 0x4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .text 0x0000000000000000 0x76 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .rodata.str1.4 - 0x0000000000000000 0x1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_info 0x0000000000000000 0xbe4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_abbrev 0x0000000000000000 0x241 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_loclists - 0x0000000000000000 0x170 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_line 0x0000000000000000 0x192 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_str 0x0000000000000000 0x6df /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_line_str - 0x0000000000000000 0x513 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .debug_frame 0x0000000000000000 0x5c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .text 0x0000000000000000 0xa8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .debug_info 0x0000000000000000 0xfa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .debug_abbrev 0x0000000000000000 0x94 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .debug_loclists - 0x0000000000000000 0x197 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .debug_rnglists - 0x0000000000000000 0x16 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .debug_line 0x0000000000000000 0x232 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .debug_str 0x0000000000000000 0xf8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .debug_line_str - 0x0000000000000000 0x348 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - .text 0x0000000000000000 0x1a0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .debug_info 0x0000000000000000 0xe29 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .debug_abbrev 0x0000000000000000 0x2f4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .debug_loclists - 0x0000000000000000 0x4d6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .debug_rnglists - 0x0000000000000000 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .debug_line 0x0000000000000000 0x558 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .debug_str 0x0000000000000000 0x73b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .debug_line_str - 0x0000000000000000 0x533 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .debug_frame 0x0000000000000000 0x8c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - .text 0x0000000000000000 0x218 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .debug_info 0x0000000000000000 0xddf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .debug_abbrev 0x0000000000000000 0x2e3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .debug_loclists - 0x0000000000000000 0x504 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .debug_line 0x0000000000000000 0x524 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .debug_str 0x0000000000000000 0x74b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .debug_line_str - 0x0000000000000000 0x52e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .debug_frame 0x0000000000000000 0xb4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - .text 0x0000000000000000 0x206 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .debug_info 0x0000000000000000 0xddb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .debug_abbrev 0x0000000000000000 0x2ea /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .debug_loclists - 0x0000000000000000 0x4df /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .debug_line 0x0000000000000000 0x512 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .debug_str 0x0000000000000000 0x74f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .debug_line_str - 0x0000000000000000 0x531 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .debug_frame 0x0000000000000000 0xb0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .text 0x0000000000000000 0x62a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_info 0x0000000000000000 0x4fc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_abbrev 0x0000000000000000 0x176 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_loclists - 0x0000000000000000 0x10c2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_rnglists - 0x0000000000000000 0x22e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_line 0x0000000000000000 0xff9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_str 0x0000000000000000 0x270 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_line_str - 0x0000000000000000 0x2bc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .debug_frame 0x0000000000000000 0x44 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - .text 0x0000000000000000 0x6a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_info 0x0000000000000000 0x221 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_abbrev 0x0000000000000000 0x153 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_loclists - 0x0000000000000000 0xb2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_rnglists - 0x0000000000000000 0x4d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_line 0x0000000000000000 0x227 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_str 0x0000000000000000 0x182 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_line_str - 0x0000000000000000 0x2c9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - .text 0x0000000000000000 0xa6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_info 0x0000000000000000 0x21e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_abbrev 0x0000000000000000 0x166 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_loclists - 0x0000000000000000 0x117 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_rnglists - 0x0000000000000000 0x4e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_line 0x0000000000000000 0x2bc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_str 0x0000000000000000 0x1a6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_line_str - 0x0000000000000000 0x2c9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - .text 0x0000000000000000 0xa6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_info 0x0000000000000000 0x21e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_abbrev 0x0000000000000000 0x166 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_loclists - 0x0000000000000000 0x117 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_rnglists - 0x0000000000000000 0x4e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_line 0x0000000000000000 0x2bc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_str 0x0000000000000000 0x1a6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_line_str - 0x0000000000000000 0x2c9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - .text 0x0000000000000000 0x486 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_info 0x0000000000000000 0x6b6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_abbrev 0x0000000000000000 0x185 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_loclists - 0x0000000000000000 0xc5a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_rnglists - 0x0000000000000000 0x1dd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_line 0x0000000000000000 0xda9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_str 0x0000000000000000 0x38a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_line_str - 0x0000000000000000 0x2c6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .debug_frame 0x0000000000000000 0x54 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - .text 0x0000000000000000 0x63c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_info 0x0000000000000000 0x4fc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_abbrev 0x0000000000000000 0x176 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_loclists - 0x0000000000000000 0x10df /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_rnglists - 0x0000000000000000 0x22e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_line 0x0000000000000000 0x1054 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_str 0x0000000000000000 0x270 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_line_str - 0x0000000000000000 0x2bc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .debug_frame 0x0000000000000000 0x44 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - .text 0x0000000000000000 0x38 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_info 0x0000000000000000 0x224 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_abbrev 0x0000000000000000 0x14f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_loclists - 0x0000000000000000 0x51 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_rnglists - 0x0000000000000000 0x3b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_line 0x0000000000000000 0x16f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_str 0x0000000000000000 0x185 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_line_str - 0x0000000000000000 0x2d2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .debug_frame 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - .text 0x0000000000000000 0x52 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_info 0x0000000000000000 0x25d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_abbrev 0x0000000000000000 0x163 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_loclists - 0x0000000000000000 0x137 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_aranges - 0x0000000000000000 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_rnglists - 0x0000000000000000 0x6a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_line 0x0000000000000000 0x241 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_str 0x0000000000000000 0x215 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_line_str - 0x0000000000000000 0x2d5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .comment 0x0000000000000000 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .debug_frame 0x0000000000000000 0x34 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .riscv.attributes - 0x0000000000000000 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - .data 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - .bss 0x0000000000000000 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -Memory Configuration - -Name Origin Length Attributes -iram0_0_seg 0x0000000040380000 0x000000000004f600 xr -iram0_2_seg 0x0000000042000020 0x00000000007fffe0 xr -dram0_0_seg 0x000000003fc80000 0x000000000004f600 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/riscv/libriscv.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/app_trace/libapp_trace.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/unity/libunity.a -LOAD esp-idf/cmock/libcmock.a -LOAD esp-idf/console/libconsole.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_eth/libesp_eth.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/esp_hid/libesp_hid.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/esp_lcd/libesp_lcd.a -LOAD esp-idf/protobuf-c/libprotobuf-c.a -LOAD esp-idf/protocomm/libprotocomm.a -LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a -LOAD esp-idf/sdmmc/libsdmmc.a -LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a -LOAD esp-idf/espcoredump/libespcoredump.a -LOAD esp-idf/wear_levelling/libwear_levelling.a -LOAD esp-idf/fatfs/libfatfs.a -LOAD esp-idf/json/libjson.a -LOAD esp-idf/mqtt/libmqtt.a -LOAD esp-idf/spiffs/libspiffs.a -LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a -LOAD esp-idf/main/libmain.a - 0x0000000000000000 IDF_TARGET_ESP32C3 = 0x0 -LOAD esp-idf/app_trace/libapp_trace.a -LOAD esp-idf/app_trace/libapp_trace.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcov.a -LOAD esp-idf/app_trace/libapp_trace.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcov.a -LOAD esp-idf/cmock/libcmock.a -LOAD esp-idf/unity/libunity.a -LOAD esp-idf/esp_hid/libesp_hid.a -LOAD esp-idf/esp_lcd/libesp_lcd.a -LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a -LOAD esp-idf/espcoredump/libespcoredump.a -LOAD esp-idf/fatfs/libfatfs.a -LOAD esp-idf/wear_levelling/libwear_levelling.a -LOAD esp-idf/mqtt/libmqtt.a -LOAD esp-idf/spiffs/libspiffs.a -LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a -LOAD esp-idf/protocomm/libprotocomm.a -LOAD esp-idf/console/libconsole.a -LOAD esp-idf/protobuf-c/libprotobuf-c.a -LOAD esp-idf/json/libjson.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_eth/libesp_eth.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/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 /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_eth/libesp_eth.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/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 /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_eth/libesp_eth.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/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 /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_eth/libesp_eth.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/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 /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_eth/libesp_eth.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/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 /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/riscv/libriscv.a -LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a -LOAD esp-idf/efuse/libefuse.a -LOAD esp-idf/driver/libdriver.a -LOAD esp-idf/esp_pm/libesp_pm.a -LOAD esp-idf/mbedtls/libmbedtls.a -LOAD esp-idf/esp_app_format/libesp_app_format.a -LOAD esp-idf/bootloader_support/libbootloader_support.a -LOAD esp-idf/app_update/libapp_update.a -LOAD esp-idf/spi_flash/libspi_flash.a -LOAD esp-idf/pthread/libpthread.a -LOAD esp-idf/esp_system/libesp_system.a -LOAD esp-idf/esp_rom/libesp_rom.a -LOAD esp-idf/hal/libhal.a -LOAD esp-idf/log/liblog.a -LOAD esp-idf/heap/libheap.a -LOAD esp-idf/soc/libsoc.a -LOAD esp-idf/esp_hw_support/libesp_hw_support.a -LOAD esp-idf/freertos/libfreertos.a -LOAD esp-idf/newlib/libnewlib.a -LOAD esp-idf/cxx/libcxx.a -LOAD esp-idf/esp_common/libesp_common.a -LOAD esp-idf/esp_timer/libesp_timer.a -LOAD esp-idf/esp_event/libesp_event.a -LOAD esp-idf/nvs_flash/libnvs_flash.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD esp-idf/vfs/libvfs.a -LOAD esp-idf/lwip/liblwip.a -LOAD esp-idf/esp_netif/libesp_netif.a -LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a -LOAD esp-idf/esp_wifi/libesp_wifi.a -LOAD esp-idf/http_parser/libhttp_parser.a -LOAD esp-idf/esp-tls/libesp-tls.a -LOAD esp-idf/esp_adc/libesp_adc.a -LOAD esp-idf/esp_eth/libesp_eth.a -LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a -LOAD esp-idf/tcp_transport/libtcp_transport.a -LOAD esp-idf/esp_http_client/libesp_http_client.a -LOAD esp-idf/esp_http_server/libesp_http_server.a -LOAD esp-idf/esp_https_ota/libesp_https_ota.a -LOAD esp-idf/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 /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcoexist.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libcore.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libespnow.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libmesh.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libnet80211.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libpp.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libsmartconfig.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_wifi/lib/esp32c3/libwapi.a -LOAD esp-idf/newlib/libnewlib.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libstdc++.a -LOAD esp-idf/pthread/libpthread.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a -LOAD esp-idf/cxx/libcxx.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_phy/lib/esp32c3/libphy.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_phy/lib/esp32c3/libphy.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a -LOAD esp-idf/esp_phy/libesp_phy.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_phy/lib/esp32c3/libphy.a -LOAD /Users/alekseiapaseev/esp/esp-idf/components/esp_phy/lib/esp32c3/libbtbb.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libstdc++.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libnosys.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a -START GROUP -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a -LOAD /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libnosys.a -END GROUP - 0x0000000000000010 _esp_flash_mmap_prefetch_pad_size = 0x10 - 0x0000000000000010 _esp_memprot_prefetch_pad_size = 0x10 - 0x0000000000000200 _esp_memprot_align_size = 0x200 - 0x0000000000010000 _esp_mmu_block_size = 0x10000 - 0x000000003fc8cfd0 _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 0x10 - 0x0000000050000000 . = ALIGN (0x4) - 0x0000000050000000 _rtc_fast_start = ABSOLUTE (.) - *(.rtc.literal .rtc.text .rtc.text.*) - *rtc_wake_stub*.*(.literal .text .literal.* .text.*) - *(.rtc_text_end_test) - 0x0000000050000010 . = (. + _esp_memprot_prefetch_pad_size) - *fill* 0x0000000050000000 0x10 - 0x0000000050000010 . = ALIGN (0x4) - 0x0000000050000010 _rtc_text_end = ABSOLUTE (.) - -.rtc.force_fast - 0x0000000050000010 0x0 - 0x0000000050000010 . = ALIGN (0x4) - 0x0000000050000010 _rtc_force_fast_start = ABSOLUTE (.) - 0x0000000050000010 _coredump_rtc_fast_start = ABSOLUTE (.) - *(.rtc.fast.coredump .rtc.fast.coredump.*) - 0x0000000050000010 _coredump_rtc_fast_end = ABSOLUTE (.) - *(.rtc.force_fast .rtc.force_fast.*) - 0x0000000050000010 . = ALIGN (0x4) - 0x0000000050000010 _rtc_force_fast_end = ABSOLUTE (.) - -.rtc.data 0x0000000050000010 0x10 - 0x0000000050000010 _rtc_data_start = ABSOLUTE (.) - 0x0000000050000010 _coredump_rtc_start = ABSOLUTE (.) - *(.rtc.coredump .rtc.coredump.*) - 0x0000000050000010 _coredump_rtc_end = ABSOLUTE (.) - *(.rtc.data .rtc.data.*) - .rtc.data.0 0x0000000050000010 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.*) - 0x0000000050000020 _rtc_data_end = ABSOLUTE (.) - -.rtc.bss 0x0000000050000020 0x0 - 0x0000000050000020 _rtc_bss_start = ABSOLUTE (.) - *rtc_wake_stub*.*(.bss .bss.*) - *rtc_wake_stub*.*(COMMON) - *(.rtc.bss) - 0x0000000050000020 _rtc_bss_end = ABSOLUTE (.) - -.rtc_noinit 0x0000000050000020 0x0 - 0x0000000050000020 . = ALIGN (0x4) - 0x0000000050000020 _rtc_noinit_start = ABSOLUTE (.) - *(.rtc_noinit .rtc_noinit.*) - 0x0000000050000020 . = ALIGN (0x4) - 0x0000000050000020 _rtc_noinit_end = ABSOLUTE (.) - -.rtc.force_slow - 0x0000000050000020 0x0 - 0x0000000050000020 . = ALIGN (0x4) - 0x0000000050000020 _rtc_force_slow_start = ABSOLUTE (.) - *(.rtc.force_slow .rtc.force_slow.*) - 0x0000000050000020 . = ALIGN (0x4) - 0x0000000050000020 _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) - 0x0000000000000010 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) - 0x0000000000000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) - 0x0000000000000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) - -.iram0.text 0x0000000040380000 0xa898 - 0x0000000040380000 _iram_start = ABSOLUTE (.) - 0x0000000000000001 ASSERT (((ABSOLUTE (.) % 0x100) == 0x0), vector address must be 256 byte aligned) - *(.exception_vectors.text) - .exception_vectors.text - 0x0000000040380000 0x25a esp-idf/riscv/libriscv.a(vectors.S.obj) - 0x0000000040380000 _vector_table - 0x000000004038014e _interrupt_handler - 0x000000004038025c . = ALIGN (0x4) - *fill* 0x000000004038025a 0x2 - 0x000000004038025c _invalid_pc_placeholder = ABSOLUTE (.) - 0x000000004038025c _iram_text_start = ABSOLUTE (.) - *(.iram1 .iram1.*) - .iram1.1 0x000000004038025c 0xc6 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x000000004038025c esp_app_get_elf_sha256 - .iram1.0 0x0000000040380322 0x276 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - 0x0000000040380322 call_start_cpu0 - .iram1.2 0x0000000040380598 0x4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x0000000040380598 esp_cache_err_get_cpuid - .iram1.2 0x000000004038059c 0x22 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x000000004038059c esp_restart_noos_dig - .iram1.3 0x00000000403805be 0x52 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x00000000403805be esp_restart - .iram1.0 0x0000000040380610 0x28 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .iram1.0 0x0000000040380638 0x40 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x0000000040380638 esp_reset_reason_set_hint - .iram1.1 0x0000000040380678 0x26 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x0000000040380678 esp_reset_reason_get_hint - .iram1.0 0x000000004038069e 0x12c esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - 0x000000004038069e esp_restart_noos - .iram1.1 0x00000000403807ca 0x1a esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .iram1.0 0x00000000403807e4 0x1a esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .iram1.0 0x00000000403807fe 0x18 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x00000000403807fe panic_abort - .iram1.0 0x0000000040380816 0x16 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .iram1.1 0x000000004038082c 0x1e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x000000004038082c panicHandler - .iram1.2 0x000000004038084a 0x1e esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x000000004038084a xt_unhandled_exception - .iram1.0 0x0000000040380868 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - 0x0000000040380868 esp_rom_uart_set_clock_baudrate - .iram1.0 0x0000000040380880 0x12 esp-idf/hal/libhal.a(brownout_hal.c.obj) - 0x0000000040380880 brownout_hal_intr_clear - .iram1.9 0x0000000040380892 0x22 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.1 0x00000000403808b4 0xc4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.2 0x0000000040380978 0xd0 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.3 0x0000000040380a48 0x3a esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x0000000040380a48 heap_caps_malloc - .iram1.4 0x0000000040380a82 0x6e esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x0000000040380a82 heap_caps_malloc_default - .iram1.10 0x0000000040380af0 0x54 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x0000000040380af0 heap_caps_free - .iram1.11 0x0000000040380b44 0x152 esp-idf/heap/libheap.a(heap_caps.c.obj) - .iram1.12 0x0000000040380c96 0x3a esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x0000000040380c96 heap_caps_realloc - .iram1.5 0x0000000040380cd0 0x76 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x0000000040380cd0 heap_caps_realloc_default - .iram1.2 0x0000000040380d46 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x0000000040380d46 esp_clk_cpu_freq - .iram1.3 0x0000000040380d64 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x0000000040380d64 esp_clk_apb_freq - .iram1.4 0x0000000040380dac 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x0000000040380dac esp_clk_xtal_freq - .iram1.2 0x0000000040380dc6 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .iram1.6 0x0000000040380e00 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x0000000040380e00 esp_intr_noniram_disable - .iram1.7 0x0000000040380e82 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x0000000040380e82 esp_intr_noniram_enable - .iram1.4 0x0000000040380ee4 0x9c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x0000000040380ee4 esp_intr_enable - .iram1.5 0x0000000040380f80 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x0000000040380f80 esp_intr_disable - .iram1.7 0x000000004038107a 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .iram1.8 0x00000000403810c0 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - 0x00000000403810c0 rtc_isr_noniram_disable - .iram1.9 0x00000000403810ea 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - 0x00000000403810ea rtc_isr_noniram_enable - .iram1.4 0x000000004038110a 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x000000004038110a regi2c_ctrl_read_reg_mask - .iram1.5 0x0000000040381168 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x0000000040381168 regi2c_ctrl_write_reg - .iram1.6 0x00000000403811ba 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x00000000403811ba regi2c_ctrl_write_reg_mask - .iram1.0 0x000000004038121c 0x72 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x000000004038121c esp_mprot_monitor_clear_intr - .iram1.1 0x000000004038128e 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x000000004038128e esp_mprot_get_active_intr - .iram1.2 0x00000000403812de 0xfe esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x00000000403812de esp_mprot_is_conf_locked_any - .iram1.3 0x00000000403813dc 0x7e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x00000000403813dc esp_mprot_is_intr_ena_any - .iram1.4 0x000000004038145a 0x76 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x000000004038145a esp_mprot_get_violate_addr - .iram1.5 0x00000000403814d0 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x00000000403814d0 esp_mprot_get_violate_world - .iram1.6 0x0000000040381552 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x0000000040381552 esp_mprot_get_violate_operation - .iram1.7 0x00000000403815dc 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x00000000403815dc esp_mprot_has_byte_enables - .iram1.8 0x00000000403815e4 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x00000000403815e4 esp_mprot_get_violate_byte_enables - .iram1.2 0x000000004038160a 0x74 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x000000004038160a SysTickIsrHandler - .iram1.2 0x000000004038167e 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.18 0x00000000403816b0 0x28 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.6 0x00000000403816d8 0xce esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.11 0x00000000403817a6 0x86 esp-idf/newlib/libnewlib.a(locks.c.obj) - .iram1.5 0x000000004038182c 0x52 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x000000004038182c _lock_close - 0x000000004038182c _lock_close_recursive - .iram1.7 0x000000004038187e 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x000000004038187e _lock_acquire - .iram1.8 0x000000004038188e 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x000000004038188e _lock_acquire_recursive - .iram1.9 0x000000004038189e 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x000000004038189e _lock_try_acquire - .iram1.10 0x00000000403818ae 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000403818ae _lock_try_acquire_recursive - .iram1.12 0x00000000403818be 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000403818be _lock_release - .iram1.13 0x00000000403818cc 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000403818cc _lock_release_recursive - .iram1.14 0x00000000403818da 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000403818da __retarget_lock_init - .iram1.15 0x00000000403818ec 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000403818ec __retarget_lock_init_recursive - .iram1.16 0x00000000403818fe 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000403818fe __retarget_lock_close - .iram1.17 0x000000004038190e 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x000000004038190e __retarget_lock_close_recursive - .iram1.19 0x000000004038191e 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x000000004038191e __retarget_lock_acquire - .iram1.20 0x0000000040381950 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x0000000040381950 __retarget_lock_acquire_recursive - .iram1.21 0x0000000040381982 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x0000000040381982 __retarget_lock_try_acquire - .iram1.22 0x00000000403819b4 0x32 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000403819b4 __retarget_lock_try_acquire_recursive - .iram1.23 0x00000000403819e6 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000403819e6 __retarget_lock_release - .iram1.24 0x00000000403819f8 0x12 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x00000000403819f8 __retarget_lock_release_recursive - .iram1.0 0x0000000040381a0a 0x40 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - 0x0000000040381a0a esp_reent_init - .iram1.3 0x0000000040381a4a 0x76 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x0000000040381a4a _gettimeofday_r - .iram1.2 0x0000000040381ac0 0x46 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x0000000040381ac0 _times_r - .iram1.8 0x0000000040381b06 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.5 0x0000000040381b20 0xc6 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.9 0x0000000040381be6 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.10 0x0000000040381c00 0x2a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .iram1.0 0x0000000040381c2a 0x24 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - 0x0000000040381c2a esp_system_get_time - .iram1.4 0x0000000040381c4e 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .iram1.1 0x0000000040381c72 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x0000000040381c72 esp_timer_impl_get_time - 0x0000000040381c72 esp_timer_get_time - .iram1.2 0x0000000040381c96 0x7c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x0000000040381c96 esp_timer_impl_set_alarm_id - .iram1.1 0x0000000040381d12 0x1d6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x0000000040381d12 bootloader_flash_execute_command_common - .iram1.2 0x0000000040381ee8 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x0000000040381ee8 bootloader_execute_flash_command - .iram1.4 0x0000000040381f00 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x0000000040381f00 bootloader_read_flash_id - .iram1.12 0x0000000040381f34 0x82 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x0000000040381f34 bootloader_flash_reset_chip - .iram1.0 0x0000000040381fb6 0x24 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - 0x0000000040381fb6 esp_flash_encryption_enabled - .iram1.6 0x0000000040381fda 0x1c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .iram1.7 0x0000000040381ff6 0x16 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .iram1.2 0x000000004038200c 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x000000004038200c spi_flash_disable_interrupts_caches_and_other_cpu - .iram1.3 0x000000004038202e 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x000000004038202e spi_flash_enable_interrupts_caches_and_other_cpu - .iram1.8 0x0000000040382050 0xa esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x0000000040382050 spi_flash_cache_enabled - .iram1.10 0x000000004038205a 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x000000004038205a spi_flash_enable_cache - .iram1.8 0x000000004038206a 0x4a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.2 0x00000000403820b4 0xac esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.3 0x0000000040382160 0x7a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.11 0x00000000403821da 0xe6 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .iram1.5 0x00000000403822c0 0x286 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x00000000403822c0 spi_flash_mmap_pages - .iram1.4 0x0000000040382546 0xaa esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x0000000040382546 spi_flash_mmap - .iram1.6 0x00000000403825f0 0xf6 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x00000000403825f0 spi_flash_munmap - .iram1.12 0x00000000403826e6 0x76 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x00000000403826e6 spi_flash_check_and_flush_cache - .iram1.4 0x000000004038275c 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x000000004038275c spi_flash_guard_set - .iram1.6 0x0000000040382766 0x2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x0000000040382766 esp_mspi_pin_init - .iram1.7 0x0000000040382768 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x0000000040382768 spi_flash_init_chip_state - .iram1.2 0x000000004038276c 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.3 0x0000000040382794 0x22 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.4 0x00000000403827b6 0x54 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.9 0x000000004038280a 0xa6 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.7 0x00000000403828b0 0x86 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .iram1.10 0x0000000040382936 0x68 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x0000000040382936 esp_flash_get_size - .iram1.6 0x000000004038299e 0x1b2 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x000000004038299e esp_flash_init_main - .iram1.12 0x0000000040382b50 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.11 0x0000000040382b60 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.10 0x0000000040382bc8 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.14 0x0000000040382bde 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.9 0x0000000040382bee 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.8 0x0000000040382c18 0x76 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.13 0x0000000040382c8e 0x2c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.2 0x0000000040382cba 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.7 0x0000000040382cc8 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.3 0x0000000040382ce4 0xe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.6 0x0000000040382cf2 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .iram1.3 0x0000000040382d02 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.2 0x0000000040382d18 0x24 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.1 0x0000000040382d3c 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .iram1.1 0x0000000040382d58 0x34 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.2 0x0000000040382d8c 0x5c esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .iram1.3 0x0000000040382de8 0xe esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - 0x0000000040382de8 esp_crosscore_int_send_yield - .iram1.0 0x0000000040382df6 0x30 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x0000000040382df6 esp_vApplicationTickHook - .iram1.0 0x0000000040382e26 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.*) - *libapp_trace.a:port_uart.*(.literal .literal.* .text .text.*) - *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) - *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_compare_and_set .text.esp_cpu_compare_and_set) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_reset .text.esp_cpu_reset) - .text.esp_cpu_reset - 0x0000000040382e70 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x0000000040382e70 esp_cpu_reset - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_stall .text.esp_cpu_stall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_unstall .text.esp_cpu_unstall) - *libesp_hw_support.a:cpu.*(.literal.esp_cpu_wait_for_intr .text.esp_cpu_wait_for_intr) - .text.esp_cpu_wait_for_intr - 0x0000000040382ea4 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x0000000040382ea4 esp_cpu_wait_for_intr - *libesp_hw_support.a:esp_memory_utils.*(.literal .literal.* .text .text.*) - .text.esp_ptr_byte_accessible - 0x0000000040382ec0 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - 0x0000000040382ec0 esp_ptr_byte_accessible - *libesp_hw_support.a:rtc_clk.*(.literal .literal.* .text .text.*) - .text.rtc_clk_bbpll_disable - 0x0000000040382ede 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_enable - 0x0000000040382ef4 0xe esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_set_bbpll_always_on - 0x0000000040382f02 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_bbpll_configure - 0x0000000040382f12 0x156 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_32k_enable - 0x0000000040383068 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x0000000040383068 rtc_clk_32k_enable - .text.rtc_clk_32k_enable_external - 0x00000000403830e0 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x00000000403830e0 rtc_clk_32k_enable_external - .text.rtc_clk_8m_enable - 0x000000004038313e 0x74 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x000000004038313e rtc_clk_8m_enable - .text.rtc_clk_8md256_enabled - 0x00000000403831b2 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x00000000403831b2 rtc_clk_8md256_enabled - .text.rtc_clk_slow_src_set - 0x00000000403831c2 0x86 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x00000000403831c2 rtc_clk_slow_src_set - .text.rtc_clk_slow_src_get - 0x0000000040383248 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x0000000040383248 rtc_clk_slow_src_get - .text.rtc_clk_slow_freq_get_hz - 0x0000000040383262 0x32 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x0000000040383262 rtc_clk_slow_freq_get_hz - .text.rtc_clk_fast_src_set - 0x0000000040383294 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x0000000040383294 rtc_clk_fast_src_set - .text.rtc_clk_xtal_freq_get - 0x00000000403832d4 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x00000000403832d4 rtc_get_xtal - 0x00000000403832d4 rtc_clk_xtal_freq_get - .text.rtc_clk_cpu_freq_mhz_to_config - 0x000000004038332a 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x000000004038332a rtc_clk_cpu_freq_mhz_to_config - .text.rtc_clk_cpu_freq_get_config - 0x0000000040383394 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x0000000040383394 rtc_clk_cpu_freq_get_config - .text.rtc_clk_apb_freq_update - 0x0000000040383494 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x0000000040383494 rtc_clk_apb_freq_update - .text.rtc_clk_cpu_freq_to_xtal - 0x00000000403834aa 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_xtal - 0x0000000040383518 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x0000000040383518 rtc_clk_cpu_freq_set_xtal - .text.rtc_clk_cpu_freq_to_pll_mhz - 0x0000000040383536 0x6e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_to_8m - 0x00000000403835a4 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .text.rtc_clk_cpu_freq_set_config - 0x00000000403835e4 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x00000000403835e4 rtc_clk_cpu_freq_set_config - *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 - 0x000000004038366e 0x134 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - 0x000000004038366e rtc_sleep_pu - *libesp_hw_support.a:rtc_time.*(.literal .literal.* .text .text.*) - .text.rtc_clk_cal_internal - 0x00000000403837a2 0x220 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x00000000403837a2 rtc_clk_cal_internal - .text.rtc_clk_cal - 0x00000000403839c2 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x00000000403839c2 rtc_clk_cal - .text.rtc_time_us_to_slowclk - 0x0000000040383a24 0x1e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x0000000040383a24 rtc_time_us_to_slowclk - .text.rtc_time_get - 0x0000000040383a42 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x0000000040383a42 rtc_time_get - *libesp_hw_support.a:systimer.*(.literal .literal.* .text .text.*) - .text.systimer_ticks_to_us - 0x0000000040383a56 0xc esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - 0x0000000040383a56 systimer_ticks_to_us - .text.systimer_us_to_ticks - 0x0000000040383a62 0xc esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - 0x0000000040383a62 systimer_us_to_ticks - *libesp_ringbuf.a:(.literal .literal.* .text .text.*) - .text.prvCheckItemAvail - 0x0000000040383a6e 0x36 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvGetFreeSize - 0x0000000040383aa4 0x46 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.prvReceiveGeneric - 0x0000000040383aea 0x166 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .text.xRingbufferSend - 0x0000000040383c50 0x12a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x0000000040383c50 xRingbufferSend - .text.xRingbufferReceive - 0x0000000040383d7a 0x54 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x0000000040383d7a xRingbufferReceive - .text.vRingbufferReturnItem - 0x0000000040383dce 0x78 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0x0000000040383dce vRingbufferReturnItem - *libesp_rom.a:esp_rom_regi2c.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_spiflash.*(.literal .literal.* .text .text.*) - *libesp_rom.a:esp_rom_systimer.*(.literal .literal.* .text .text.*) - *libesp_system.a:esp_err.*(.literal .literal.* .text .text.*) - .text.esp_error_check_failed_print - 0x0000000040383e46 0x82 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .text._esp_error_check_failed - 0x0000000040383ec8 0x1c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - 0x0000000040383ec8 _esp_error_check_failed - *libesp_system.a:esp_system.*(.literal.esp_system_abort .text.esp_system_abort) - .text.esp_system_abort - 0x0000000040383ee4 0x8 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x0000000040383ee4 esp_system_abort - *libesp_system.a:ubsan.*(.literal .literal.* .text .text.*) - .text.__ubsan_include - 0x0000000040383eec 0x2 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - 0x0000000040383eec __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.vPortSetupTimer - 0x0000000040383eee 0x112 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x0000000040383eee vPortSetupTimer - .text.xPortSysTickHandler - 0x0000000040384000 0x22 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x0000000040384000 xPortSysTickHandler - .text.prvGetDisinheritPriorityAfterTimeout - 0x0000000040384022 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvIsQueueFull - 0x0000000040384032 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvIsQueueEmpty - 0x0000000040384042 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvCopyDataToQueue - 0x0000000040384066 0x9a esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvNotifyQueueSetContainer - 0x0000000040384100 0xb8 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvCopyDataFromQueue - 0x00000000403841b8 0x2e esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.prvUnlockQueue - 0x00000000403841e6 0x94 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueGenericReset - 0x000000004038427a 0xa6 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x000000004038427a xQueueGenericReset - .text.prvInitialiseNewQueue - 0x0000000040384320 0x28 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueGenericCreateStatic - 0x0000000040384348 0xde esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040384348 xQueueGenericCreateStatic - .text.xQueueGenericCreate - 0x0000000040384426 0xbe esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040384426 xQueueGenericCreate - .text.xQueueGetMutexHolder - 0x00000000403844e4 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x00000000403844e4 xQueueGetMutexHolder - .text.xQueueGenericSend - 0x0000000040384508 0x1ee esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040384508 xQueueGenericSend - .text.prvInitialiseMutex - 0x00000000403846f6 0x30 esp-idf/freertos/libfreertos.a(queue.c.obj) - .text.xQueueCreateMutex - 0x0000000040384726 0x20 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040384726 xQueueCreateMutex - .text.xQueueCreateMutexStatic - 0x0000000040384746 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040384746 xQueueCreateMutexStatic - .text.xQueueGiveMutexRecursive - 0x000000004038476a 0x5e esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x000000004038476a xQueueGiveMutexRecursive - .text.xQueueGiveFromISR - 0x00000000403847c8 0x114 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x00000000403847c8 xQueueGiveFromISR - .text.xQueueSemaphoreTake - 0x00000000403848dc 0x1be esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x00000000403848dc xQueueSemaphoreTake - .text.xQueueTakeMutexRecursive - 0x0000000040384a9a 0x62 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040384a9a xQueueTakeMutexRecursive - .text.xQueueReceiveFromISR - 0x0000000040384afc 0xe6 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040384afc xQueueReceiveFromISR - .text.vQueueDelete - 0x0000000040384be2 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) - 0x0000000040384be2 vQueueDelete - .text.prvResetNextTaskUnblockTime - 0x0000000040384c1c 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvDeleteTLS - 0x0000000040384c4c 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvInitialiseNewTask - 0x0000000040384ca8 0xfe esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvInitialiseTaskLists - 0x0000000040384da6 0x8a esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvAddNewTaskToReadyList - 0x0000000040384e30 0xec esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.taskSelectHighestPriorityTaskSMP - 0x0000000040384f1c 0x15c esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvDeleteTCB - 0x0000000040385078 0x64 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvCheckTasksWaitingTermination - 0x00000000403850dc 0xaa esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvAddCurrentTaskToDelayedList - 0x0000000040385186 0xc8 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.prvIdleTask - 0x000000004038524e 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .text.taskYIELD_OTHER_CORE - 0x0000000040385260 0x5a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385260 taskYIELD_OTHER_CORE - .text.xTaskCreateStaticPinnedToCore - 0x00000000403852ba 0x11a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x00000000403852ba xTaskCreateStaticPinnedToCore - .text.xTaskCreatePinnedToCore - 0x00000000403853d4 0x8c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x00000000403853d4 xTaskCreatePinnedToCore - .text.vTaskSuspendAll - 0x0000000040385460 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385460 vTaskSuspendAll - .text.xTaskGetTickCount - 0x0000000040385480 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385480 xTaskGetTickCount - .text.xTaskGetTickCountFromISR - 0x000000004038548a 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x000000004038548a xTaskGetTickCountFromISR - .text.pcTaskGetName - 0x00000000403854aa 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x00000000403854aa pcTaskGetName - .text.xTaskGetIdleTaskHandleForCPU - 0x00000000403854e4 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x00000000403854e4 xTaskGetIdleTaskHandleForCPU - .text.xTaskIncrementTick - 0x0000000040385544 0x188 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385544 xTaskIncrementTick - .text.xTaskResumeAll - 0x00000000403856cc 0x124 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x00000000403856cc xTaskResumeAll - .text.vTaskSwitchContext - 0x00000000403857f0 0xa4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x00000000403857f0 vTaskSwitchContext - .text.vTaskPlaceOnEventList - 0x0000000040385894 0x5a esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385894 vTaskPlaceOnEventList - .text.xTaskRemoveFromEventList - 0x00000000403858ee 0x132 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x00000000403858ee xTaskRemoveFromEventList - .text.vTaskInternalSetTimeOutState - 0x0000000040385a20 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385a20 vTaskInternalSetTimeOutState - .text.xTaskCheckForTimeOut - 0x0000000040385a36 0xd0 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385a36 xTaskCheckForTimeOut - .text.vTaskMissedYield - 0x0000000040385b06 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385b06 vTaskMissedYield - .text.xTaskGetAffinity - 0x0000000040385b12 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385b12 xTaskGetAffinity - .text.xTaskGetCurrentTaskHandle - 0x0000000040385b22 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385b22 xTaskGetCurrentTaskHandle - .text.xTaskGetCurrentTaskHandleForCPU - 0x0000000040385b42 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385b42 xTaskGetCurrentTaskHandleForCPU - .text.xTaskGetSchedulerState - 0x0000000040385b5a 0x36 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385b5a xTaskGetSchedulerState - .text.vTaskDelete - 0x0000000040385b90 0xd2 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385b90 vTaskDelete - .text.vTaskDelay - 0x0000000040385c62 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385c62 vTaskDelay - .text.xTaskPriorityInherit - 0x0000000040385cae 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385cae xTaskPriorityInherit - .text.xTaskPriorityDisinherit - 0x0000000040385d78 0xcc esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385d78 xTaskPriorityDisinherit - .text.vTaskPriorityDisinheritAfterTimeout - 0x0000000040385e44 0xe4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385e44 vTaskPriorityDisinheritAfterTimeout - .text.pvTaskIncrementMutexHeldCount - 0x0000000040385f28 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385f28 pvTaskIncrementMutexHeldCount - .text.ulTaskGenericNotifyTake - 0x0000000040385f5c 0xce esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040385f5c ulTaskGenericNotifyTake - .text.vTaskGenericNotifyGiveFromISR - 0x000000004038602a 0x126 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x000000004038602a vTaskGenericNotifyGiveFromISR - .text.__getreent - 0x0000000040386150 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x0000000040386150 __getreent - .text.vTaskGetSnapshot - 0x000000004038616e 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x000000004038616e vTaskGetSnapshot - .text.xTimerCreateTimerTask - 0x000000004038619e 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x000000004038619e xTimerCreateTimerTask - .text.vTaskStartScheduler - 0x00000000403861a2 0xb6 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x00000000403861a2 vTaskStartScheduler - .text.vListInitialise - 0x0000000040386258 0x14 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x0000000040386258 vListInitialise - .text.vListInitialiseItem - 0x000000004038626c 0x6 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x000000004038626c vListInitialiseItem - .text.vListInsertEnd - 0x0000000040386272 0x16 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x0000000040386272 vListInsertEnd - .text.vListInsert - 0x0000000040386288 0x2e esp-idf/freertos/libfreertos.a(list.c.obj) - 0x0000000040386288 vListInsert - .text.uxListRemove - 0x00000000403862b6 0x26 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x00000000403862b6 uxListRemove - .text 0x00000000403862dc 0x9a esp-idf/freertos/libfreertos.a(portasm.S.obj) - 0x00000000403862dc rtos_int_enter - 0x0000000040386318 rtos_int_exit - *libfreertos.a:port.*(.text .text._prvTaskExitError .text.prvTaskExitError .text.pxPortInitialiseStack .text.vApplicationStackOverflowHook .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.pxPortInitialiseStack - 0x0000000040386376 0x94 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040386376 pxPortInitialiseStack - .text.xPortInIsrContext - 0x000000004038640a 0xa esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000004038640a xPortInIsrContext - .text.vPortSetInterruptMask - 0x0000000040386414 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040386414 vPortSetInterruptMask - .text._prvTaskExitError - 0x000000004038642e 0x38 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.prvTaskExitError - 0x0000000040386466 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) - .text.vPortEnterCritical - 0x000000004038646e 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000004038646e vPortEnterCritical - .text.vPortClearInterruptMask - 0x000000004038649a 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000004038649a vPortClearInterruptMask - .text.vPortExitCritical - 0x00000000403864aa 0x2e esp-idf/freertos/libfreertos.a(port.c.obj) - 0x00000000403864aa vPortExitCritical - .text.vPortYieldFromISR - 0x00000000403864d8 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x00000000403864d8 vPortYieldFromISR - .text.vPortYield - 0x00000000403864ec 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) - 0x00000000403864ec vPortYield - .text.xPortStartScheduler - 0x0000000040386528 0x3a esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040386528 xPortStartScheduler - .text.vPortYieldOtherCore - 0x0000000040386562 0xe esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040386562 vPortYieldOtherCore - .text.vApplicationStackOverflowHook - 0x0000000040386570 0x58 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x0000000040386570 vApplicationStackOverflowHook - *libfreertos.a:port_common.*(.text .text.esp_startup_start_app_common .text.vApplicationGetIdleTaskMemory .text.vApplicationGetTimerTaskMemory .text.xPortCheckValidTCBMem .text.xPortcheckValidStackMem) - .text.esp_startup_start_app_common - 0x00000000403865c8 0x64 esp-idf/freertos/libfreertos.a(port_common.c.obj) - 0x00000000403865c8 esp_startup_start_app_common - .text.xPortCheckValidTCBMem - 0x000000004038662c 0x36 esp-idf/freertos/libfreertos.a(port_common.c.obj) - 0x000000004038662c xPortCheckValidTCBMem - .text.xPortcheckValidStackMem - 0x0000000040386662 0x36 esp-idf/freertos/libfreertos.a(port_common.c.obj) - 0x0000000040386662 xPortcheckValidStackMem - .text.vApplicationGetIdleTaskMemory - 0x0000000040386698 0x84 esp-idf/freertos/libfreertos.a(port_common.c.obj) - 0x0000000040386698 vApplicationGetIdleTaskMemory - *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) - *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) - *libgcc.a:save-restore.*(.literal .literal.* .text .text.*) - *libgcov.a:(.literal .literal.* .text .text.*) - *libhal.a:cache_hal.*(.literal .literal.* .text .text.*) - *libhal.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:mmu_hal.*(.literal .literal.* .text .text.*) - *libhal.a:spi_flash_encrypt_hal_iram.*(.literal .literal.* .text .text.*) - .text.spi_flash_encryption_hal_enable - 0x000000004038671c 0x16 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x000000004038671c spi_flash_encryption_hal_enable - .text.spi_flash_encryption_hal_disable - 0x0000000040386732 0xc esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x0000000040386732 spi_flash_encryption_hal_disable - .text.spi_flash_encryption_hal_prepare - 0x000000004038673e 0x2c esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x000000004038673e spi_flash_encryption_hal_prepare - .text.spi_flash_encryption_hal_done - 0x000000004038676a 0x22 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x000000004038676a spi_flash_encryption_hal_done - .text.spi_flash_encryption_hal_destroy - 0x000000004038678c 0xa esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x000000004038678c spi_flash_encryption_hal_destroy - .text.spi_flash_encryption_hal_check - 0x0000000040386796 0xa esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x0000000040386796 spi_flash_encryption_hal_check - *libhal.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) - .text.spi_flash_hal_gpspi_poll_cmd_done - 0x00000000403867a0 0xc esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x00000000403867a0 spi_flash_hal_gpspi_poll_cmd_done - .text.spi_flash_hal_gpspi_device_config - 0x00000000403867ac 0xd2 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x00000000403867ac spi_flash_hal_gpspi_device_config - .text.spi_flash_hal_gpspi_configure_host_io_mode - 0x000000004038687e 0x1c0 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x000000004038687e spi_flash_hal_gpspi_configure_host_io_mode - .text.spi_flash_hal_gpspi_common_command - 0x0000000040386a3e 0x216 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x0000000040386a3e spi_flash_hal_gpspi_common_command - .text.spi_flash_hal_gpspi_read - 0x0000000040386c54 0x112 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x0000000040386c54 spi_flash_hal_gpspi_read - .text.spi_flash_hal_gpspi_supports_direct_write - 0x0000000040386d66 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x0000000040386d66 spi_flash_hal_gpspi_supports_direct_write - .text.spi_flash_hal_gpspi_supports_direct_read - 0x0000000040386d6a 0x4 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x0000000040386d6a spi_flash_hal_gpspi_supports_direct_read - .text.spi_flash_hal_gpspi_check_status - 0x0000000040386d6e 0xe esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x0000000040386d6e spi_flash_hal_gpspi_check_status - *libhal.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) - .text.spi_flash_hal_poll_cmd_done - 0x0000000040386d7c 0x8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x0000000040386d7c spi_flash_hal_poll_cmd_done - .text.spi_flash_hal_configure_host_io_mode - 0x0000000040386d84 0x1a4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x0000000040386d84 spi_flash_hal_configure_host_io_mode - .text.spi_flash_hal_common_command - 0x0000000040386f28 0x1d0 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x0000000040386f28 spi_flash_hal_common_command - .text.spi_flash_hal_read - 0x00000000403870f8 0xd4 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x00000000403870f8 spi_flash_hal_read - .text.spi_flash_hal_erase_chip - 0x00000000403871cc 0x24 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x00000000403871cc spi_flash_hal_erase_chip - .text.spi_flash_hal_erase_sector - 0x00000000403871f0 0x4c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x00000000403871f0 spi_flash_hal_erase_sector - .text.spi_flash_hal_erase_block - 0x000000004038723c 0x4a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x000000004038723c spi_flash_hal_erase_block - .text.spi_flash_hal_program_page - 0x0000000040387286 0xcc esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x0000000040387286 spi_flash_hal_program_page - .text.spi_flash_hal_set_write_protect - 0x0000000040387352 0x2c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x0000000040387352 spi_flash_hal_set_write_protect - .text.spi_flash_hal_check_status - 0x000000004038737e 0x18 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x000000004038737e spi_flash_hal_check_status - .text.spi_flash_hal_setup_read_suspend - 0x0000000040387396 0xdc esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x0000000040387396 spi_flash_hal_setup_read_suspend - .text.spi_flash_hal_setup_auto_suspend_mode - 0x0000000040387472 0x6e esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x0000000040387472 spi_flash_hal_setup_auto_suspend_mode - .text.spi_flash_hal_setup_auto_resume_mode - 0x00000000403874e0 0x3a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x00000000403874e0 spi_flash_hal_setup_auto_resume_mode - .text.spi_flash_hal_disable_auto_suspend_mode - 0x000000004038751a 0x70 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x000000004038751a spi_flash_hal_disable_auto_suspend_mode - .text.spi_flash_hal_disable_auto_resume_mode - 0x000000004038758a 0x3c esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x000000004038758a spi_flash_hal_disable_auto_resume_mode - .text.spi_flash_hal_device_config - 0x00000000403875c6 0xa8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x00000000403875c6 spi_flash_hal_device_config - .text.spi_flash_hal_resume - 0x000000004038766e 0x10 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x000000004038766e spi_flash_hal_resume - .text.spi_flash_hal_suspend - 0x000000004038767e 0x10 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x000000004038767e spi_flash_hal_suspend - *libhal.a:spi_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) - *libhal.a:systimer_hal.*(.literal .literal.* .text .text.*) - .text.systimer_hal_init - 0x000000004038768e 0x16 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x000000004038768e systimer_hal_init - .text.systimer_hal_set_tick_rate_ops - 0x00000000403876a4 0xa esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x00000000403876a4 systimer_hal_set_tick_rate_ops - .text.systimer_hal_get_counter_value - 0x00000000403876ae 0x4e esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x00000000403876ae systimer_hal_get_counter_value - .text.systimer_hal_set_alarm_target - 0x00000000403876fc 0x68 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x00000000403876fc systimer_hal_set_alarm_target - .text.systimer_hal_set_alarm_period - 0x0000000040387764 0x9e esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x0000000040387764 systimer_hal_set_alarm_period - .text.systimer_hal_enable_alarm_int - 0x0000000040387802 0x10 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x0000000040387802 systimer_hal_enable_alarm_int - .text.systimer_hal_enable_counter - 0x0000000040387812 0x14 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x0000000040387812 systimer_hal_enable_counter - .text.systimer_hal_select_alarm_mode - 0x0000000040387826 0x34 esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x0000000040387826 systimer_hal_select_alarm_mode - .text.systimer_hal_connect_alarm_counter - 0x000000004038785a 0x1c esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x000000004038785a systimer_hal_connect_alarm_counter - .text.systimer_hal_counter_can_stall_by_cpu - 0x0000000040387876 0x3a esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0x0000000040387876 systimer_hal_counter_can_stall_by_cpu - *libhal.a:wdt_hal_iram.*(.literal .literal.* .text .text.*) - .text.wdt_hal_init - 0x00000000403878b0 0x21a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x00000000403878b0 wdt_hal_init - .text.wdt_hal_config_stage - 0x0000000040387aca 0x13e esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x0000000040387aca wdt_hal_config_stage - .text.wdt_hal_write_protect_disable - 0x0000000040387c08 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x0000000040387c08 wdt_hal_write_protect_disable - .text.wdt_hal_write_protect_enable - 0x0000000040387c2a 0x14 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x0000000040387c2a wdt_hal_write_protect_enable - .text.wdt_hal_enable - 0x0000000040387c3e 0x36 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x0000000040387c3e wdt_hal_enable - .text.wdt_hal_disable - 0x0000000040387c74 0x2c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x0000000040387c74 wdt_hal_disable - .text.wdt_hal_handle_intr - 0x0000000040387ca0 0x32 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x0000000040387ca0 wdt_hal_handle_intr - .text.wdt_hal_feed - 0x0000000040387cd2 0x1e esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x0000000040387cd2 wdt_hal_feed - .text.wdt_hal_set_flashboot_en - 0x0000000040387cf0 0x3a esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x0000000040387cf0 wdt_hal_set_flashboot_en - .text.wdt_hal_is_enabled - 0x0000000040387d2a 0x16 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x0000000040387d2a wdt_hal_is_enabled - *libheap.a:multi_heap.*(.literal .literal.* .text .text.*) - .text.multi_heap_get_info_tlsf - 0x0000000040387d40 0x20 esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.assert_valid_block - 0x0000000040387d60 0x4a esp-idf/heap/libheap.a(multi_heap.c.obj) - .text.multi_heap_get_allocated_size_impl - 0x0000000040387daa 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040387daa multi_heap_get_allocated_size_impl - 0x0000000040387daa multi_heap_get_allocated_size - .text.multi_heap_register_impl - 0x0000000040387db8 0x64 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040387db8 multi_heap_register_impl - 0x0000000040387db8 multi_heap_register - .text.multi_heap_set_lock - 0x0000000040387e1c 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040387e1c multi_heap_set_lock - .text.multi_heap_malloc_impl - 0x0000000040387e20 0x58 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040387e20 multi_heap_malloc - 0x0000000040387e20 multi_heap_malloc_impl - .text.multi_heap_free_impl - 0x0000000040387e78 0x4c esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040387e78 multi_heap_aligned_free - 0x0000000040387e78 multi_heap_free - 0x0000000040387e78 multi_heap_free_impl - .text.multi_heap_realloc_impl - 0x0000000040387ec4 0x8c esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040387ec4 multi_heap_realloc - 0x0000000040387ec4 multi_heap_realloc_impl - .text.multi_heap_minimum_free_size_impl - 0x0000000040387f50 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040387f50 multi_heap_minimum_free_size_impl - 0x0000000040387f50 multi_heap_minimum_free_size - .text.multi_heap_get_info_impl - 0x0000000040387f5a 0xa4 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x0000000040387f5a multi_heap_get_info - 0x0000000040387f5a multi_heap_get_info_impl - *libheap.a:tlsf.*(.literal .literal.* .text .text.*) - .text.control_construct - 0x0000000040387ffe 0x3c esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_fls - 0x000000004038803a 0x24 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.default_walker - 0x000000004038805e 0x2a esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_ffs - 0x0000000040388088 0x14 esp-idf/heap/libheap.a(tlsf.c.obj) - .text.tlsf_walk_pool - 0x000000004038809c 0x6c esp-idf/heap/libheap.a(tlsf.c.obj) - 0x000000004038809c tlsf_walk_pool - .text.tlsf_block_size - 0x0000000040388108 0xe esp-idf/heap/libheap.a(tlsf.c.obj) - 0x0000000040388108 tlsf_block_size - .text.tlsf_size - 0x0000000040388116 0x6 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x0000000040388116 tlsf_size - .text.tlsf_block_size_min - 0x000000004038811c 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x000000004038811c tlsf_block_size_min - .text.tlsf_pool_overhead - 0x0000000040388120 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x0000000040388120 tlsf_pool_overhead - .text.tlsf_alloc_overhead - 0x0000000040388124 0x4 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x0000000040388124 tlsf_alloc_overhead - .text.tlsf_add_pool - 0x0000000040388128 0x186 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x0000000040388128 tlsf_add_pool - .text.tlsf_create - 0x00000000403882ae 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) - 0x00000000403882ae tlsf_create - .text.tlsf_create_with_pool - 0x00000000403882dc 0x34 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x00000000403882dc tlsf_create_with_pool - .text.tlsf_get_pool - 0x0000000040388310 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x0000000040388310 tlsf_get_pool - .text.tlsf_malloc - 0x0000000040388326 0x3e6 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x0000000040388326 tlsf_malloc - .text.tlsf_free - 0x000000004038870c 0x456 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x000000004038870c tlsf_free - .text.tlsf_realloc - 0x0000000040388b62 0x586 esp-idf/heap/libheap.a(tlsf.c.obj) - 0x0000000040388b62 tlsf_realloc - *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) - .text.esp_log_write - 0x00000000403890e8 0x20 esp-idf/log/liblog.a(log.c.obj) - 0x00000000403890e8 esp_log_write - *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) - .text.esp_log_early_timestamp - 0x0000000040389108 0x26 esp-idf/log/liblog.a(log_freertos.c.obj) - 0x0000000040389108 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 - 0x000000004038912e 0x46 esp-idf/log/liblog.a(log_freertos.c.obj) - 0x000000004038912e esp_log_impl_lock_timeout - *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) - .text.esp_log_impl_unlock - 0x0000000040389174 0x26 esp-idf/log/liblog.a(log_freertos.c.obj) - 0x0000000040389174 esp_log_impl_unlock - *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) - .text.esp_log_timestamp - 0x000000004038919a 0x54 esp-idf/log/liblog.a(log_freertos.c.obj) - 0x000000004038919a esp_log_timestamp - *libnet80211.a:(.wifi0iram .wifi0iram.*) - *libnet80211.a:(.wifirxiram .wifirxiram.*) - *libnet80211.a:(.wifislprxiram .wifislprxiram.*) - *libnewlib.a:abort.*(.literal .literal.* .text .text.*) - .text.abort 0x00000000403891ee 0x8c esp-idf/newlib/libnewlib.a(abort.c.obj) - 0x00000000403891ee abort - *libnewlib.a:assert.*(.literal .literal.* .text .text.*) - .text.__assert_func - 0x000000004038927a 0x144 esp-idf/newlib/libnewlib.a(assert.c.obj) - 0x000000004038927a __assert_func - .text.newlib_include_assert_impl - 0x00000000403893be 0x2 esp-idf/newlib/libnewlib.a(assert.c.obj) - 0x00000000403893be newlib_include_assert_impl - *libnewlib.a:heap.*(.literal .literal.* .text .text.*) - .text.malloc 0x00000000403893c0 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x00000000403893c0 malloc - 0x00000000403893c0 pvalloc - 0x00000000403893c0 valloc - .text.realloc 0x00000000403893ce 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x00000000403893ce realloc - .text.free 0x00000000403893dc 0xe esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x00000000403893dc cfree - 0x00000000403893dc free - .text._malloc_r - 0x00000000403893ea 0x10 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x00000000403893ea _malloc_r - .text._free_r 0x00000000403893fa 0x10 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x00000000403893fa _free_r - .text._realloc_r - 0x000000004038940a 0x12 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x000000004038940a _realloc_r - .text._calloc_r - 0x000000004038941c 0x3e esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x000000004038941c _calloc_r - .text.calloc 0x000000004038945a 0x22 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x000000004038945a calloc - .text.newlib_include_heap_impl - 0x000000004038947c 0x2 esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x000000004038947c 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 - 0x000000004038947e 0x3c esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x000000004038947e intr_handler_set - .text.intr_handler_get - 0x00000000403894ba 0x10 esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x00000000403894ba intr_handler_get - .text._global_interrupt_handler - 0x00000000403894ca 0x24 esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x00000000403894ca _global_interrupt_handler - .text.riscv_global_interrupts_enable - 0x00000000403894ee 0x6 esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x00000000403894ee riscv_global_interrupts_enable - .text.riscv_global_interrupts_disable - 0x00000000403894f4 0x6 esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x00000000403894f4 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:flash_brownout_hook.*(.literal .literal.* .text .text.*) - .text.spi_flash_needs_reset_check - 0x00000000403894fa 0x22 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x00000000403894fa spi_flash_needs_reset_check - .text.spi_flash_set_erasing_flag - 0x000000004038951c 0xa esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x000000004038951c spi_flash_set_erasing_flag - .text.spi_flash_brownout_need_reset - 0x0000000040389526 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x0000000040389526 spi_flash_brownout_need_reset - *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) - .text.memspi_host_read_status_hs - 0x0000000040389546 0x40 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x0000000040389546 memspi_host_read_status_hs - .text.memspi_host_erase_chip - 0x0000000040389586 0x28 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x0000000040389586 memspi_host_erase_chip - .text.memspi_host_set_write_protect - 0x00000000403895ae 0x2e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x00000000403895ae memspi_host_set_write_protect - .text.memspi_host_write_data_slicer - 0x00000000403895dc 0x54 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x00000000403895dc memspi_host_write_data_slicer - .text.memspi_host_read_data_slicer - 0x0000000040389630 0x42 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x0000000040389630 memspi_host_read_data_slicer - .text.memspi_host_read_id_hs - 0x0000000040389672 0x8e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x0000000040389672 memspi_host_read_id_hs - .text.memspi_host_flush_cache - 0x0000000040389700 0x28 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x0000000040389700 memspi_host_flush_cache - .text.memspi_host_erase_sector - 0x0000000040389728 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x0000000040389728 memspi_host_erase_sector - .text.memspi_host_erase_block - 0x0000000040389780 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x0000000040389780 memspi_host_erase_block - .text.memspi_host_program_page - 0x00000000403897d8 0x62 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x00000000403897d8 memspi_host_program_page - .text.memspi_host_init_pointers - 0x000000004038983a 0x4e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x000000004038983a memspi_host_init_pointers - *libspi_flash.a:spi_flash_chip_boya.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_boya_probe - 0x0000000040389888 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - 0x0000000040389888 spi_flash_chip_boya_probe - .text.spi_flash_chip_boya_get_caps - 0x00000000403898b2 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - 0x00000000403898b2 spi_flash_chip_boya_get_caps - *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_gd_get_caps - 0x00000000403898b6 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x00000000403898b6 spi_flash_chip_gd_get_caps - .text.spi_flash_chip_gd_probe - 0x00000000403898cc 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x00000000403898cc spi_flash_chip_gd_probe - .text.spi_flash_chip_gd_set_io_mode - 0x0000000040389900 0x54 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x0000000040389900 spi_flash_chip_gd_set_io_mode - .text.spi_flash_chip_gd_get_io_mode - 0x0000000040389954 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x0000000040389954 spi_flash_chip_gd_get_io_mode - *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_generic_probe - 0x0000000040389974 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389974 spi_flash_chip_generic_probe - .text.spi_flash_chip_generic_reset - 0x0000000040389978 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389978 spi_flash_chip_generic_reset - .text.spi_flash_chip_generic_detect_size - 0x00000000403899d8 0x2e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x00000000403899d8 spi_flash_chip_generic_detect_size - .text.spi_flash_chip_generic_erase_chip - 0x0000000040389a06 0x82 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389a06 spi_flash_chip_generic_erase_chip - .text.spi_flash_chip_generic_erase_sector - 0x0000000040389a88 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389a88 spi_flash_chip_generic_erase_sector - .text.spi_flash_chip_generic_erase_block - 0x0000000040389b12 0x8a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389b12 spi_flash_chip_generic_erase_block - .text.spi_flash_chip_generic_page_program - 0x0000000040389b9c 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389b9c spi_flash_chip_generic_page_program - .text.spi_flash_chip_generic_write_encrypted - 0x0000000040389c08 0xea esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389c08 spi_flash_chip_generic_write_encrypted - .text.spi_flash_chip_generic_set_write_protect - 0x0000000040389cf2 0x4e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389cf2 spi_flash_chip_generic_set_write_protect - .text.spi_flash_chip_generic_read_reg - 0x0000000040389d40 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389d40 spi_flash_chip_generic_read_reg - .text.spi_flash_chip_generic_wait_idle - 0x0000000040389d54 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389d54 spi_flash_chip_generic_wait_idle - .text.spi_flash_chip_generic_config_host_io_mode - 0x0000000040389e04 0x156 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389e04 spi_flash_chip_generic_config_host_io_mode - .text.spi_flash_chip_generic_get_caps - 0x0000000040389f5a 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389f5a spi_flash_chip_generic_get_caps - .text.spi_flash_common_read_qe_sr - 0x0000000040389f72 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text.spi_flash_common_write_qe_sr - 0x0000000040389fae 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .text.spi_flash_common_read_status_16b_rdsr_rdsr2 - 0x0000000040389fe0 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x0000000040389fe0 spi_flash_common_read_status_16b_rdsr_rdsr2 - .text.spi_flash_common_write_status_16b_wrsr - 0x000000004038a026 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a026 spi_flash_common_write_status_16b_wrsr - .text.spi_flash_chip_generic_read - 0x000000004038a03a 0xde esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a03a spi_flash_chip_generic_read - .text.spi_flash_chip_generic_write - 0x000000004038a118 0xb6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a118 spi_flash_chip_generic_write - .text.spi_flash_chip_generic_get_write_protect - 0x000000004038a1ce 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a1ce spi_flash_chip_generic_get_write_protect - .text.spi_flash_chip_generic_yield - 0x000000004038a218 0x46 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a218 spi_flash_chip_generic_yield - .text.spi_flash_chip_generic_suspend_cmd_conf - 0x000000004038a25e 0x6e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a25e spi_flash_chip_generic_suspend_cmd_conf - .text.spi_flash_chip_generic_read_unique_id - 0x000000004038a2cc 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a2cc spi_flash_chip_generic_read_unique_id - .text.spi_flash_chip_generic_read_unique_id_none - 0x000000004038a37c 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a37c spi_flash_chip_generic_read_unique_id_none - .text.spi_flash_common_read_status_8b_rdsr2 - 0x000000004038a382 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a382 spi_flash_common_read_status_8b_rdsr2 - .text.spi_flash_chip_generic_get_io_mode - 0x000000004038a398 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a398 spi_flash_chip_generic_get_io_mode - .text.spi_flash_common_read_status_8b_rdsr - 0x000000004038a3b8 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a3b8 spi_flash_common_read_status_8b_rdsr - .text.spi_flash_common_write_status_8b_wrsr - 0x000000004038a3cc 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a3cc spi_flash_common_write_status_8b_wrsr - .text.spi_flash_common_write_status_8b_wrsr2 - 0x000000004038a3e0 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a3e0 spi_flash_common_write_status_8b_wrsr2 - .text.spi_flash_common_set_io_mode - 0x000000004038a3f6 0xbe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a3f6 spi_flash_common_set_io_mode - .text.spi_flash_chip_generic_set_io_mode - 0x000000004038a4b4 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000004038a4b4 spi_flash_chip_generic_set_io_mode - *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_issi_probe - 0x000000004038a4d6 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x000000004038a4d6 spi_flash_chip_issi_probe - .text.spi_flash_chip_issi_get_caps - 0x000000004038a500 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x000000004038a500 spi_flash_chip_issi_get_caps - .text.spi_flash_chip_issi_set_io_mode - 0x000000004038a504 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x000000004038a504 spi_flash_chip_issi_set_io_mode - .text.spi_flash_chip_issi_get_io_mode - 0x000000004038a526 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x000000004038a526 spi_flash_chip_issi_get_io_mode - *libspi_flash.a:spi_flash_chip_mxic.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_mxic_probe - 0x000000004038a546 0x22 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - 0x000000004038a546 spi_flash_chip_mxic_probe - .text.spi_flash_chip_mxic_get_caps - 0x000000004038a568 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - 0x000000004038a568 spi_flash_chip_mxic_get_caps - *libspi_flash.a:spi_flash_chip_th.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_th_probe - 0x000000004038a56c 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - 0x000000004038a56c spi_flash_chip_th_probe - .text.spi_flash_chip_th_get_caps - 0x000000004038a596 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - 0x000000004038a596 spi_flash_chip_th_get_caps - *libspi_flash.a:spi_flash_chip_winbond.*(.literal .literal.* .text .text.*) - .text.spi_flash_chip_winbond_probe - 0x000000004038a59a 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x000000004038a59a spi_flash_chip_winbond_probe - .text.spi_flash_chip_winbond_get_caps - 0x000000004038a5ae 0x16 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x000000004038a5ae spi_flash_chip_winbond_get_caps - .text.spi_flash_command_winbond_program_4B - 0x000000004038a5c4 0x50 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text.spi_flash_chip_winbond_page_program - 0x000000004038a614 0x4a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x000000004038a614 spi_flash_chip_winbond_page_program - .text.spi_flash_command_winbond_erase_sector_4B - 0x000000004038a65e 0x4e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text.spi_flash_chip_winbond_erase_sector - 0x000000004038a6ac 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x000000004038a6ac spi_flash_chip_winbond_erase_sector - .text.spi_flash_command_erase_block_4B - 0x000000004038a704 0x4e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .text.spi_flash_chip_winbond_erase_block - 0x000000004038a752 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x000000004038a752 spi_flash_chip_winbond_erase_block - .text.spi_flash_chip_winbond_read - 0x000000004038a7aa 0xee esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x000000004038a7aa spi_flash_chip_winbond_read - -.dram0.dummy 0x000000003fc80000 0xaa00 - 0x000000003fc8aa00 . = ((ORIGIN (dram0_0_seg) + _iram_end) - _iram_start) - *fill* 0x000000003fc80000 0xaa00 - -.dram0.data 0x000000003fc8aa00 0x174c - 0x000000003fc8aa00 _data_start = ABSOLUTE (.) - *(.gnu.linkonce.d.*) - *(.data1) - 0x000000003fc8b200 __global_pointer$ = (. + 0x800) - *(.sdata) - .sdata 0x000000003fc8aa00 0x4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - 0x000000003fc8aa00 __global_locale_ptr - *(.sdata.*) - .sdata.first_call.1 - 0x000000003fc8aa04 0x1 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - *fill* 0x000000003fc8aa05 0x3 - .sdata.rtc_wdt_ctx - 0x000000003fc8aa08 0x8 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .sdata.s_panic_uart - 0x000000003fc8aa10 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .sdata.wdt0_context - 0x000000003fc8aa14 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .sdata.s_memp_intr - 0x000000003fc8aa1c 0x8 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .sdata.esp_log_default_level - 0x000000003fc8aa24 0x4 esp-idf/log/liblog.a(log.c.obj) - 0x000000003fc8aa24 esp_log_default_level - .sdata.s_log_print_func - 0x000000003fc8aa28 0x4 esp-idf/log/liblog.a(log.c.obj) - .sdata.malloc_alwaysinternal_limit - 0x000000003fc8aa2c 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .sdata.xIsrStackTop - 0x000000003fc8aa30 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000003fc8aa30 xIsrStackTop - .sdata.ESP_EFUSE_BLK_VERSION_MAJOR - 0x000000003fc8aa34 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x000000003fc8aa34 ESP_EFUSE_BLK_VERSION_MAJOR - .sdata.ESP_EFUSE_DIG_DBIAS_HVT - 0x000000003fc8aa3c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x000000003fc8aa3c ESP_EFUSE_DIG_DBIAS_HVT - .sdata.ESP_EFUSE_K_DIG_LDO - 0x000000003fc8aa44 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x000000003fc8aa44 ESP_EFUSE_K_DIG_LDO - .sdata.ESP_EFUSE_K_RTC_LDO - 0x000000003fc8aa4c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x000000003fc8aa4c ESP_EFUSE_K_RTC_LDO - .sdata.ESP_EFUSE_OCODE - 0x000000003fc8aa54 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x000000003fc8aa54 ESP_EFUSE_OCODE - .sdata.ESP_EFUSE_V_DIG_DBIAS20 - 0x000000003fc8aa5c 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x000000003fc8aa5c ESP_EFUSE_V_DIG_DBIAS20 - .sdata.ESP_EFUSE_V_RTC_DBIAS20 - 0x000000003fc8aa64 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x000000003fc8aa64 ESP_EFUSE_V_RTC_DBIAS20 - .sdata.uart_selectlock - 0x000000003fc8aa6c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) - .sdata.esp_flash_registered_chips - 0x000000003fc8aa74 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - 0x000000003fc8aa74 esp_flash_registered_chips - *(.gnu.linkonce.s.*) - *(.gnu.linkonce.s2.*) - *(.jcr) - *(EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .data EXCLUDE_FILE(*libnimble.a *libbtdm_app.a *libbt.a) .data.*) - .data.s_stub_table - 0x000000003fc8aa78 0x9c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - *fill* 0x000000003fc8ab14 0x4 - .data.timestamp_id.0 - 0x000000003fc8ab18 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .data.s_fd_table - 0x000000003fc8ab28 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .data.s_ctx 0x000000003fc8abe8 0x28 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .data.s_context - 0x000000003fc8ac10 0x48 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .data.uart_context - 0x000000003fc8ac58 0x20 esp-idf/driver/libdriver.a(uart.c.obj) - .data.default_registered_chips - 0x000000003fc8ac78 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - *(.dram1 .dram1.*) - .dram1.2 0x000000003fc8ac98 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .dram1.3 0x000000003fc8ac9c 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .dram1.4 0x000000003fc8aca0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .dram1.5 0x000000003fc8aca4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .dram1.2 0x000000003fc8aca8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x000000003fc8aca8 FreeRTOS_openocd_params - .dram1.0 0x000000003fc8acb0 0x4 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) - 0x000000003fc8acb0 uxTopUsedPriority - .dram1.2 0x000000003fc8acb4 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x000000003fc8acb4 g_flash_guard_default_ops - .dram1.0 0x000000003fc8acbc 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .dram1.1 0x000000003fc8accc 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x000000003fc8accc rom_spiflash_api_funcs - .dram1.1 0x000000003fc8acd0 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .dram1.2 0x000000003fc8acf8 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .dram1.15 0x000000003fc8ad18 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .dram1.16 0x000000003fc8ad28 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .dram1.5 0x000000003fc8ad50 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - 0x000000003fc8ad50 esp_flash_noos_functions - .dram1.0 0x000000003fc8ad78 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x000000003fc8ad7e 0x2 - .dram1.1 0x000000003fc8ad80 0x6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x000000003fc8ad86 0x2 - .dram1.2 0x000000003fc8ad88 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000003fc8ad88 rom_flash_chip_dummy - .dram1.3 0x000000003fc8ad8c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000003fc8ad8c rom_flash_chip_dummy_hpm - .dram1.4 0x000000003fc8ad90 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .dram1.5 0x000000003fc8ada8 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000003fc8ada8 spi_flash_chip_generic_timeout - .dram1.0 0x000000003fc8adbc 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .dram1.2 0x000000003fc8ae14 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003fc8ae1a 0x2 - .dram1.3 0x000000003fc8ae1c 0x6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003fc8ae22 0x2 - .dram1.4 0x000000003fc8ae24 0x8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .dram1.5 0x000000003fc8ae2c 0x19 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x000000003fc8ae45 _coredump_dram_start = ABSOLUTE (.) - *(.dram2.coredump .dram2.coredump.*) - 0x000000003fc8ae45 _coredump_dram_end = ABSOLUTE (.) - *libapp_trace.a:app_trace.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libapp_trace.a:app_trace_util.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libapp_trace.a:port_uart.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - 0x000000003fc8ae45 _bt_data_start = ABSOLUTE (.) - *libbt.a:(.data .data.*) - 0x000000003fc8ae48 . = ALIGN (0x4) - *fill* 0x000000003fc8ae45 0x3 - 0x000000003fc8ae48 _bt_data_end = ABSOLUTE (.) - 0x000000003fc8ae48 _btdm_data_start = ABSOLUTE (.) - *libbtdm_app.a:(.data .data.*) - 0x000000003fc8ae48 . = ALIGN (0x4) - 0x000000003fc8ae48 _btdm_data_end = ABSOLUTE (.) - *libesp_hw_support.a:esp_memory_utils.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_hw_support.a:rtc_clk.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.rtc_clk_xtal_freq_get.str1.4 - 0x000000003fc8ae48 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - *fill* 0x000000003fc8ae96 0x2 - .rodata.rtc_clk_cpu_freq_get_config.str1.4 - 0x000000003fc8ae98 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .rodata.rtc_clk_cpu_freq_to_xtal.str1.4 - 0x000000003fc8aed4 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - *fill* 0x000000003fc8af16 0x2 - .rodata.__func__.0 - 0x000000003fc8af18 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - *libesp_hw_support.a:systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_regi2c.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_spiflash.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_rom.a:esp_rom_systimer.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libesp_system.a:esp_err.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x000000003fc8af2f 0x1 - .rodata.esp_error_check_failed_print.str1.4 - 0x000000003fc8af30 0x5c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .rodata._esp_error_check_failed.str1.4 - 0x000000003fc8af8c 0x10 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - *libesp_system.a:ubsan.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:_divsf3.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcc.a:save-restore.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libgcov.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:cache_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:i2c_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:ledc_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:mmu_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_encrypt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_hal_gpspi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_flash_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:spi_slave_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libhal.a:systimer_hal.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.systimer_hal_set_alarm_period.str1.4 - 0x000000003fc8af9c 0x4e esp-idf/hal/libhal.a(systimer_hal.c.obj) - *libhal.a:wdt_hal_iram.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x000000003fc8afea 0x2 - .rodata.wdt_hal_config_stage.str1.4 - 0x000000003fc8afec 0x56 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - *fill* 0x000000003fc8b042 0x2 - .rodata.__func__.0 - 0x000000003fc8b044 0x15 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - *libheap.a:multi_heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x000000003fc8b059 0x3 - .rodata.assert_valid_block.str1.4 - 0x000000003fc8b05c 0x32 esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003fc8b08e 0x2 - .rodata.multi_heap_register_impl.str1.4 - 0x000000003fc8b090 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003fc8b0bf 0x1 - .rodata.multi_heap_get_first_block.str1.4 - 0x000000003fc8b0c0 0xd esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003fc8b0cd 0x3 - .rodata.__func__.0 - 0x000000003fc8b0d0 0x19 esp-idf/heap/libheap.a(multi_heap.c.obj) - *fill* 0x000000003fc8b0e9 0x3 - .rodata.__func__.4 - 0x000000003fc8b0ec 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) - *libheap.a:tlsf.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.integrity_walker.str1.4 - 0x000000003fc8b104 0x9a esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b19e 0x2 - .rodata.default_walker.str1.4 - 0x000000003fc8b1a0 0x26 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b1c6 0x2 - .rodata.tlsf_check.str1.4 - 0x000000003fc8b1c8 0x28f esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b457 0x1 - .rodata.tlsf_add_pool.str1.4 - 0x000000003fc8b458 0x142 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b59a 0x2 - .rodata.tlsf_remove_pool.str1.4 - 0x000000003fc8b59c 0xe6 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b682 0x2 - .rodata.tlsf_create.str1.4 - 0x000000003fc8b684 0x32 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b6b6 0x2 - .rodata.tlsf_malloc.str1.4 - 0x000000003fc8b6b8 0x1a7 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b85f 0x1 - .rodata.tlsf_free.str1.4 - 0x000000003fc8b860 0x110 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.tlsf_realloc.str1.4 - 0x000000003fc8b970 0x2e esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b99e 0x2 - .rodata.__func__.0 - 0x000000003fc8b9a0 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.1 - 0x000000003fc8b9b0 0xd esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b9bd 0x3 - .rodata.__func__.10 - 0x000000003fc8b9c0 0x13 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b9d3 0x1 - .rodata.__func__.11 - 0x000000003fc8b9d4 0x16 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b9ea 0x2 - .rodata.__func__.12 - 0x000000003fc8b9ec 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8b9fe 0x2 - .rodata.__func__.14 - 0x000000003fc8ba00 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8ba12 0x2 - .rodata.__func__.17 - 0x000000003fc8ba14 0x12 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8ba26 0x2 - .rodata.__func__.2 - 0x000000003fc8ba28 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8ba39 0x3 - .rodata.__func__.20 - 0x000000003fc8ba3c 0xb esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8ba47 0x1 - .rodata.__func__.3 - 0x000000003fc8ba48 0xd esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8ba55 0x3 - .rodata.__func__.5 - 0x000000003fc8ba58 0x11 esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8ba69 0x3 - .rodata.__func__.6 - 0x000000003fc8ba6c 0xa esp-idf/heap/libheap.a(tlsf.c.obj) - *fill* 0x000000003fc8ba76 0x2 - .rodata.__func__.8 - 0x000000003fc8ba78 0xc esp-idf/heap/libheap.a(tlsf.c.obj) - .rodata.__func__.9 - 0x000000003fc8ba84 0x10 esp-idf/heap/libheap.a(tlsf.c.obj) - *libnewlib.a:abort.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.abort.str1.4 - 0x000000003fc8ba94 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) - *libnewlib.a:assert.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x000000003fc8baba 0x2 - .rodata.__assert_func.str1.4 - 0x000000003fc8babc 0x2f esp-idf/newlib/libnewlib.a(assert.c.obj) - 0x36 (size before relaxing) - *libnewlib.a:heap.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libnewlib.a:stdatomic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - 0x000000003fc8baeb _nimble_data_start = ABSOLUTE (.) - *libnimble.a:(.data .data.*) - 0x000000003fc8baec . = ALIGN (0x4) - *fill* 0x000000003fc8baeb 0x1 - 0x000000003fc8baec _nimble_data_end = ABSOLUTE (.) - *libphy.a:(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libsoc.a:lldesc.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:flash_brownout_hook.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.memspi_host_read_id_hs.str1.4 - 0x000000003fc8baec 0x25 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *fill* 0x000000003fc8bb11 0x3 - .rodata.memspi_host_erase_sector.str1.4 - 0x000000003fc8bb14 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .rodata.memspi_host_program_page.str1.4 - 0x000000003fc8bb60 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *fill* 0x000000003fc8bb7e 0x2 - .rodata.__func__.0 - 0x000000003fc8bb80 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *fill* 0x000000003fc8bb99 0x3 - .rodata.__func__.1 - 0x000000003fc8bb9c 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .rodata.__func__.2 - 0x000000003fc8bbb4 0x19 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *fill* 0x000000003fc8bbcd 0x3 - .rodata.esp_flash_gpspi_host - 0x000000003fc8bbd0 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .srodata.TAG 0x000000003fc8bc28 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - *libspi_flash.a:spi_flash_chip_boya.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x000000003fc8bc2f 0x1 - .rodata.esp_flash_chip_boya - 0x000000003fc8bc30 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - 0x000000003fc8bc30 esp_flash_chip_boya - .srodata.chip_name - 0x000000003fc8bcac 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x000000003fc8bcb1 0x3 - .rodata.esp_flash_chip_gd - 0x000000003fc8bcb4 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0x000000003fc8bcb4 esp_flash_chip_gd - .srodata.chip_name - 0x000000003fc8bd30 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x000000003fc8bd33 0x1 - .rodata.spi_flash_chip_generic_read.str1.4 - 0x000000003fc8bd34 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .rodata.spi_flash_chip_generic_get_write_protect.str1.4 - 0x000000003fc8bd78 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .rodata.spi_flash_chip_generic_suspend_cmd_conf.str1.4 - 0x000000003fc8bdc4 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .rodata.spi_flash_chip_generic_read_unique_id.str1.4 - 0x000000003fc8be24 0x53 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x000000003fc8be77 0x1 - .rodata.TAG 0x000000003fc8be78 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x000000003fc8be85 0x3 - .rodata.__func__.0 - 0x000000003fc8be88 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *fill* 0x000000003fc8beb1 0x3 - .rodata.esp_flash_chip_generic - 0x000000003fc8beb4 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x000000003fc8beb4 esp_flash_chip_generic - .srodata.chip_name - 0x000000003fc8bf30 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.esp_flash_chip_issi - 0x000000003fc8bf38 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0x000000003fc8bf38 esp_flash_chip_issi - .srodata.chip_name - 0x000000003fc8bfb4 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - *libspi_flash.a:spi_flash_chip_mxic.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x000000003fc8bfb9 0x3 - .rodata.esp_flash_chip_mxic - 0x000000003fc8bfbc 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - 0x000000003fc8bfbc esp_flash_chip_mxic - .srodata.chip_name - 0x000000003fc8c038 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - *libspi_flash.a:spi_flash_chip_th.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - *fill* 0x000000003fc8c03d 0x3 - .rodata.esp_flash_chip_th - 0x000000003fc8c040 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - 0x000000003fc8c040 esp_flash_chip_th - .srodata.chip_name - 0x000000003fc8c0bc 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - *libspi_flash.a:spi_flash_chip_winbond.*(.rodata .rodata.* .sdata2 .sdata2.* .srodata .srodata.*) - .rodata.spi_flash_chip_winbond_read.str1.4 - 0x000000003fc8c0bf 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - *fill* 0x000000003fc8c0bf 0x1 - .rodata.esp_flash_chip_winbond - 0x000000003fc8c0c0 0x7c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x000000003fc8c0c0 esp_flash_chip_winbond - .srodata.TAG 0x000000003fc8c13c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .srodata.chip_name - 0x000000003fc8c144 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0x000000003fc8c14c _data_end = ABSOLUTE (.) - 0x000000003fc8c14c . = ALIGN (0x4) - -.noinit 0x000000003fc8c14c 0x0 - 0x000000003fc8c14c . = ALIGN (0x4) - 0x000000003fc8c14c _noinit_start = ABSOLUTE (.) - *(.noinit .noinit.*) - 0x000000003fc8c14c . = ALIGN (0x4) - 0x000000003fc8c14c _noinit_end = ABSOLUTE (.) - -.dram0.bss 0x000000003fc8c150 0xe80 - 0x000000003fc8c150 . = ALIGN (0x8) - 0x000000003fc8c150 _bss_start = ABSOLUTE (.) - *(.bss .bss.*) - .bss.shutdown_handlers - 0x000000003fc8c150 0x14 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .bss.s_log_cache - 0x000000003fc8c164 0xf8 esp-idf/log/liblog.a(log.c.obj) - .bss.ref_counts - 0x000000003fc8c25c 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - *fill* 0x000000003fc8c278 0x8 - .bss.xIsrStack - 0x000000003fc8c280 0x600 esp-idf/freertos/libfreertos.a(port.c.obj) - .bss.systimer_hal.1 - 0x000000003fc8c880 0xc esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .bss.pxReadyTasksLists - 0x000000003fc8c88c 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xDelayedTaskList1 - 0x000000003fc8ca80 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xDelayedTaskList2 - 0x000000003fc8ca94 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xPendingReadyList - 0x000000003fc8caa8 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xSuspendedTaskList - 0x000000003fc8cabc 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.xTasksWaitingTermination - 0x000000003fc8cad0 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .bss.s_common_mutex - 0x000000003fc8cae4 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x000000003fc8cae4 __lock___dd_hash_mutex - 0x000000003fc8cae4 __lock___at_quick_exit_mutex - 0x000000003fc8cae4 __lock___tz_mutex - 0x000000003fc8cae4 __lock___arc4random_mutex - .bss.s_common_recursive_mutex - 0x000000003fc8cb38 0x54 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x000000003fc8cb38 __lock___malloc_recursive_mutex - 0x000000003fc8cb38 __lock___atexit_recursive_mutex - 0x000000003fc8cb38 __lock___sinit_recursive_mutex - 0x000000003fc8cb38 __lock___sfp_recursive_mutex - 0x000000003fc8cb38 __lock___env_recursive_mutex - .bss.s_reent 0x000000003fc8cb8c 0xf0 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .bss.systimer_hal - 0x000000003fc8cc7c 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .bss.s_vfs 0x000000003fc8cc88 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) - .bss.s_intr_handlers - 0x000000003fc8cca8 0x100 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .bss.s_mmap_page_refcnt - 0x000000003fc8cda8 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .bss.idle_cb 0x000000003fc8ce28 0x20 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .bss.tick_cb 0x000000003fc8ce48 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.0 - 0x000000003fc8ce68 0x8 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .sbss.s_pthread_cfg_key - 0x000000003fc8ce70 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sbss.s_threads_mux - 0x000000003fc8ce74 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) - .sbss.s_keys 0x000000003fc8ce78 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x000000003fc8ce78 s_keys - *fill* 0x000000003fc8ce7c 0x4 - .sbss.g_startup_time - 0x000000003fc8ce80 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x000000003fc8ce80 g_startup_time - .sbss.s_reset_reason - 0x000000003fc8ce88 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .sbss.g_panic_abort - 0x000000003fc8ce8c 0x1 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x000000003fc8ce8c g_panic_abort - *fill* 0x000000003fc8ce8d 0x3 - .sbss.s_panic_abort_details - 0x000000003fc8ce90 0x4 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .sbss.g_exc_frames - 0x000000003fc8ce94 0x4 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x000000003fc8ce94 g_exc_frames - .sbss.s_log_cache_entry_count - 0x000000003fc8ce98 0x4 esp-idf/log/liblog.a(log.c.obj) - .sbss.s_log_cache_max_generation - 0x000000003fc8ce9c 0x4 esp-idf/log/liblog.a(log.c.obj) - .sbss.s_log_cache_misses - 0x000000003fc8cea0 0x4 esp-idf/log/liblog.a(log.c.obj) - .sbss.s_log_tags - 0x000000003fc8cea4 0x4 esp-idf/log/liblog.a(log.c.obj) - .sbss.base.0 0x000000003fc8cea8 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) - .sbss.s_log_mutex - 0x000000003fc8ceac 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) - .sbss.alloc_failed_callback - 0x000000003fc8ceb0 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) - .sbss.registered_heaps - 0x000000003fc8ceb4 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x000000003fc8ceb4 registered_heaps - .sbss.non_iram_int_disabled - 0x000000003fc8ceb8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .sbss.non_iram_int_disabled_flag - 0x000000003fc8cebc 0x1 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003fc8cebd 0x3 - .sbss.non_iram_int_mask - 0x000000003fc8cec0 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .sbss.vector_desc_head - 0x000000003fc8cec4 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .sbss.s_rtc_isr_handle - 0x000000003fc8cec8 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .sbss.s_cur_pll_freq - 0x000000003fc8cecc 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .sbss.uxCriticalNesting - 0x000000003fc8ced0 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - .sbss.uxInterruptNesting - 0x000000003fc8ced4 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000003fc8ced4 uxInterruptNesting - .sbss.uxSavedInterruptState - 0x000000003fc8ced8 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - .sbss.uxSchedulerRunning - 0x000000003fc8cedc 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000003fc8cedc uxSchedulerRunning - .sbss.xPortSwitchFlag - 0x000000003fc8cee0 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x000000003fc8cee0 xPortSwitchFlag - .sbss.s_handled_systicks - 0x000000003fc8cee4 0x4 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .sbss.pxCurrentTCB - 0x000000003fc8cee8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x000000003fc8cee8 pxCurrentTCB - .sbss.pxDelayedTaskList - 0x000000003fc8ceec 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.pxOverflowDelayedTaskList - 0x000000003fc8cef0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxCurrentNumberOfTasks - 0x000000003fc8cef4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxDeletedTasksWaitingCleanUp - 0x000000003fc8cef8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxSchedulerSuspended - 0x000000003fc8cefc 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxTaskNumber - 0x000000003fc8cf00 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.uxTopReadyPriority - 0x000000003fc8cf04 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xIdleTaskHandle - 0x000000003fc8cf08 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xNextTaskUnblockTime - 0x000000003fc8cf0c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xNumOfOverflows - 0x000000003fc8cf10 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xPendedTicks - 0x000000003fc8cf14 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xSchedulerRunning - 0x000000003fc8cf18 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xSwitchingContext - 0x000000003fc8cf1c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xTickCount - 0x000000003fc8cf20 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.xYieldPending - 0x000000003fc8cf24 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .sbss.s_adjtime_start_us - 0x000000003fc8cf28 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) - .sbss.s_adjtime_total_correction_us - 0x000000003fc8cf30 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) - .sbss.s_time_lock - 0x000000003fc8cf38 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) - .sbss.s_boot_time_lock - 0x000000003fc8cf3c 0x4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .sbss.s_microseconds_offset - 0x000000003fc8cf40 0x8 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x000000003fc8cf40 s_microseconds_offset - .sbss.s_timer_task - 0x000000003fc8cf48 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .sbss.s_timers - 0x000000003fc8cf4c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .sbss.s_correction_us - 0x000000003fc8cf50 0x8 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .sbss.s_alarm_handler - 0x000000003fc8cf58 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .sbss.s_timer_interrupt_handle - 0x000000003fc8cf5c 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .sbss.s_fd_table_lock - 0x000000003fc8cf60 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) - .sbss.s_vfs_count - 0x000000003fc8cf64 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) - .sbss.primary_vfs_index - 0x000000003fc8cf68 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .sbss.secondary_vfs_index - 0x000000003fc8cf6c 0x4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .sbss.vfs_console - 0x000000003fc8cf70 0x8 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .sbss.s_registered_select_num - 0x000000003fc8cf78 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .sbss.s_registered_selects - 0x000000003fc8cf7c 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .sbss.s_burn_counter - 0x000000003fc8cf80 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .sbss.p_uart_obj - 0x000000003fc8cf84 0x8 esp-idf/driver/libdriver.a(uart.c.obj) - .sbss.flash_brownout_needs_reset - 0x000000003fc8cf8c 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .sbss.flash_erasing - 0x000000003fc8cf8d 0x1 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - *fill* 0x000000003fc8cf8e 0x2 - .sbss.s_flash_op_cache_state - 0x000000003fc8cf90 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .sbss.s_mmap_entries_head - 0x000000003fc8cf98 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .sbss.s_mmap_last_handle - 0x000000003fc8cf9c 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .sbss.s_flash_guard_ops - 0x000000003fc8cfa0 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .sbss.esp_flash_default_chip - 0x000000003fc8cfa4 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x000000003fc8cfa4 esp_flash_default_chip - .sbss.reason 0x000000003fc8cfa8 0x4 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .sbss.iwdt_context - 0x000000003fc8cfac 0x8 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .sbss.g_twdt_isr - 0x000000003fc8cfb4 0x1 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x000000003fc8cfb4 g_twdt_isr - *fill* 0x000000003fc8cfb5 0x3 - .sbss.p_twdt_obj - 0x000000003fc8cfb8 0x4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .sbss.curr_partition.2 - 0x000000003fc8cfbc 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .sbss.s_partition_list - 0x000000003fc8cfc0 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .sbss.s_partition_list_lock - 0x000000003fc8cfc4 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .sbss 0x000000003fc8cfc8 0x4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - 0x000000003fc8cfc8 environ - *(.ext_ram.bss .ext_ram.bss.*) - *(COMMON) - 0x000000003fc8cfcc _bt_bss_start = ABSOLUTE (.) - *libbt.a:(.bss .bss.* COMMON) - 0x000000003fc8cfcc . = ALIGN (0x4) - 0x000000003fc8cfcc _bt_bss_end = ABSOLUTE (.) - 0x000000003fc8cfcc _btdm_bss_start = ABSOLUTE (.) - *libbtdm_app.a:(.bss .bss.* COMMON) - 0x000000003fc8cfcc . = ALIGN (0x4) - 0x000000003fc8cfcc _btdm_bss_end = ABSOLUTE (.) - 0x000000003fc8cfcc _nimble_bss_start = ABSOLUTE (.) - *libnimble.a:(.bss .bss.* COMMON) - 0x000000003fc8cfcc . = ALIGN (0x4) - 0x000000003fc8cfcc _nimble_bss_end = ABSOLUTE (.) - *(.dynsbss) - *(.sbss) - *(.sbss.*) - *(.gnu.linkonce.sb.*) - *(.scommon) - *(.sbss2) - *(.sbss2.*) - *(.gnu.linkonce.sb2.*) - *(.dynbss) - *(.share.mem) - *(.gnu.linkonce.b.*) - 0x000000003fc8cfd0 . = ALIGN (0x8) - *fill* 0x000000003fc8cfcc 0x4 - 0x000000003fc8cfd0 _bss_end = ABSOLUTE (.) - 0x0000000000000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) - -.flash.text 0x0000000042000020 0x13496 - 0x0000000042000020 _stext = . - 0x0000000042000020 _instruction_reserved_start = ABSOLUTE (.) - 0x0000000042000020 _text_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .literal.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libriscv.a:vectors.* *libriscv.a:interrupt.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *liblog.a:log_freertos.* *liblog.a:log.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *libhal.a:wdt_hal_iram.* *libhal.a:systimer_hal.* *libhal.a:spi_slave_hal_iram.* *libhal.a:spi_hal_iram.* *libhal.a:spi_flash_hal_iram.* *libhal.a:spi_flash_hal_gpspi.* *libhal.a:spi_flash_encrypt_hal_iram.* *libhal.a:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:lib2funcs.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_system.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_time.* *libesp_hw_support.a:rtc_sleep.* *libesp_hw_support.a:rtc_pm.* *libesp_hw_support.a:rtc_init.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libesp_hw_support.a:cpu.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *librtc.a *libgcov.a *libfreertos.a *libesp_ringbuf.a) .text.*) - .text.esp_app_get_description - 0x0000000042000020 0xa esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x0000000042000020 esp_app_get_description - .text.esp_init_app_elf_sha256 - 0x000000004200002a 0x16 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x000000004200002a esp_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 0x54 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x0000000042000144 pthread_key_delete - .text.pthread_include_pthread_local_storage_impl - 0x0000000042000198 0x2 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x0000000042000198 pthread_include_pthread_local_storage_impl - .text.pthread_include_pthread_rwlock_impl - 0x000000004200019a 0x2 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - 0x000000004200019a pthread_include_pthread_rwlock_impl - .text.core_intr_matrix_clear - 0x000000004200019c 0x2a esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .text.select_rtc_slow_clk - 0x00000000420001c6 0xd8 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .text.esp_clk_init - 0x000000004200029e 0x1cc esp-idf/esp_system/libesp_system.a(clk.c.obj) - 0x000000004200029e esp_clk_init - .text.esp_perip_clk_init - 0x000000004200046a 0xc6 esp-idf/esp_system/libesp_system.a(clk.c.obj) - 0x000000004200046a esp_perip_clk_init - .text.esp_cache_err_int_init - 0x0000000042000530 0x7c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x0000000042000530 esp_cache_err_int_init - .text.do_global_ctors - 0x00000000420005ac 0x46 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.do_core_init - 0x00000000420005f2 0x12a esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.do_system_init_fn - 0x000000004200071c 0x6c esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.do_secondary_init - 0x0000000042000788 0xc esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.start_cpu0_default - 0x0000000042000794 0x1e0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x0000000042000794 start_cpu0 - .text.__esp_system_init_fn_init_components0 - 0x0000000042000974 0xe esp-idf/esp_system/libesp_system.a(startup.c.obj) - .text.esp_brownout_init - 0x0000000042000982 0x46 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - 0x0000000042000982 esp_brownout_init - .text.get_reset_reason - 0x00000000420009c8 0xc6 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .text.esp_reset_reason_init - 0x0000000042000a8e 0x38 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .text.esp_apb_backup_dma_lock_init - 0x0000000042000ac6 0x22 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - 0x0000000042000ac6 esp_apb_backup_dma_lock_init - .text.panic_print_char - 0x0000000042000ae8 0x34 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x0000000042000ae8 panic_print_char - .text.panic_print_str - 0x0000000042000b1c 0x26 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x0000000042000b1c panic_print_str - .text.print_abort_details - 0x0000000042000b42 0x14 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .text.panic_print_hex - 0x0000000042000b56 0x3a esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x0000000042000b56 panic_print_hex - .text.panic_print_dec - 0x0000000042000b90 0x36 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x0000000042000b90 panic_print_dec - .text.esp_panic_handler_reconfigure_wdts - 0x0000000042000bc6 0x88 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x0000000042000bc6 esp_panic_handler_reconfigure_wdts - .text.esp_panic_handler - 0x0000000042000c4e 0x23e esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x0000000042000c4e esp_panic_handler - .text.frame_to_panic_info - 0x0000000042000e8c 0x44 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.panic_handler - 0x0000000042000ed0 0x7a esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.print_state_for_core - 0x0000000042000f4a 0x28 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.print_state - 0x0000000042000f72 0x18 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .text.panic_restart - 0x0000000042000f8a 0x40 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x0000000042000f8a panic_restart - .text.panic_print_basic_backtrace - 0x0000000042000fca 0x86 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.print_memprot_err_details - 0x0000000042001050 0x210 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.print_cache_err_details - 0x0000000042001260 0x11e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .text.panic_print_registers - 0x000000004200137e 0xdc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x000000004200137e panic_print_registers - .text.panic_soc_fill_info - 0x000000004200145a 0xa6 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x000000004200145a panic_soc_fill_info - .text.panic_arch_fill_info - 0x0000000042001500 0x3e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x0000000042001500 panic_arch_fill_info - .text.panic_print_backtrace - 0x000000004200153e 0xe esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x000000004200153e panic_print_backtrace - .text.panic_get_cause - 0x000000004200154c 0x6 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x000000004200154c panic_get_cause - .text.uart_hal_rxfifo_rst - 0x0000000042001552 0x18 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x0000000042001552 uart_hal_rxfifo_rst - .text.uart_hal_write_txfifo - 0x000000004200156a 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x000000004200156a uart_hal_write_txfifo - .text.brownout_hal_config - 0x00000000420015aa 0xa0 esp-idf/hal/libhal.a(brownout_hal.c.obj) - 0x00000000420015aa brownout_hal_config - .text.brownout_hal_intr_enable - 0x000000004200164a 0x18 esp-idf/hal/libhal.a(brownout_hal.c.obj) - 0x000000004200164a brownout_hal_intr_enable - .text.heap_caps_alloc_failed - 0x0000000042001662 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .text.heap_caps_match - 0x000000004200167a 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x000000004200167a heap_caps_match - .text.heap_caps_get_minimum_free_size - 0x00000000420016a8 0x40 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x00000000420016a8 heap_caps_get_minimum_free_size - .text.heap_caps_get_info - 0x00000000420016e8 0x86 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x00000000420016e8 heap_caps_get_info - .text.heap_caps_get_largest_free_block - 0x000000004200176e 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x000000004200176e heap_caps_get_largest_free_block - .text.register_heap - 0x0000000042001780 0x4c esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .text.heap_caps_enable_nonos_stack_heaps - 0x00000000420017cc 0x36 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x00000000420017cc heap_caps_enable_nonos_stack_heaps - .text.heap_caps_init - 0x0000000042001802 0x380 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x0000000042001802 heap_caps_init - .text.s_get_num_reserved_regions - 0x0000000042001b82 0x18 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text.s_compare_reserved_regions - 0x0000000042001b9a 0x8 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text.s_prepare_reserved_regions - 0x0000000042001ba2 0x11e esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .text.soc_get_available_memory_region_max_count - 0x0000000042001cc0 0x16 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - 0x0000000042001cc0 soc_get_available_memory_region_max_count - .text.soc_get_available_memory_regions - 0x0000000042001cd6 0x142 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - 0x0000000042001cd6 soc_get_available_memory_regions - .text.esp_clk_slowclk_cal_get - 0x0000000042001e18 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x0000000042001e18 esp_clk_slowclk_cal_get - .text.esp_rtc_get_time_us - 0x0000000042001e20 0xcc esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x0000000042001e20 esp_rtc_get_time_us - .text.esp_clk_slowclk_cal_set - 0x0000000042001eec 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x0000000042001eec esp_clk_slowclk_cal_set - .text.insert_vector_desc - 0x0000000042001f04 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.find_desc_for_int - 0x0000000042001f5a 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.get_desc_for_int - 0x0000000042001f80 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.find_desc_for_source - 0x0000000042002010 0x82 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.is_vect_desc_usable - 0x0000000042002092 0xc8 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.get_available_int - 0x000000004200215a 0x15c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .text.esp_intr_get_cpu - 0x00000000420022b6 0xa esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x00000000420022b6 esp_intr_get_cpu - .text.esp_intr_enable_source - 0x00000000420022c0 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x00000000420022c0 esp_intr_enable_source - .text.esp_intr_disable_source - 0x00000000420022e6 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x00000000420022e6 esp_intr_disable_source - .text.esp_intr_alloc_intrstatus - 0x000000004200230c 0x3e2 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x000000004200230c esp_intr_alloc_intrstatus - .text.esp_intr_alloc - 0x00000000420026ee 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x00000000420026ee esp_intr_alloc - .text.esp_intr_free - 0x0000000042002704 0xf6 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0x0000000042002704 esp_intr_free - .text.periph_ll_get_clk_en_reg - 0x00000000420027fa 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_ll_get_rst_en_reg - 0x000000004200283c 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .text.periph_module_enable - 0x000000004200287e 0x346 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x000000004200287e periph_module_enable - .text.s_rtc_isr_noniram_hook - 0x0000000042002bc4 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.s_rtc_isr_noniram_hook_relieve - 0x0000000042002bd0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.rtc_isr_ensure_installed - 0x0000000042002be0 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .text.rtc_isr_register - 0x0000000042002c4a 0x8a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - 0x0000000042002c4a rtc_isr_register - .text.esp_memprot_iram0_get_def_split_addr - 0x0000000042002cd4 0xa esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_memprot_dram0_get_def_split_addr - 0x0000000042002cde 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_memprot_rtcfast_get_min_split_addr - 0x0000000042002cee 0xa esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_set_intr_matrix - 0x0000000042002cf8 0x84 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .text.esp_mprot_set_split_addr - 0x0000000042002d7c 0x314 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x0000000042002d7c esp_mprot_set_split_addr - .text.esp_mprot_get_default_main_split_addr - 0x0000000042003090 0x46 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x0000000042003090 esp_mprot_get_default_main_split_addr - .text.esp_mprot_set_split_addr_lock - 0x00000000420030d6 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x00000000420030d6 esp_mprot_set_split_addr_lock - .text.esp_mprot_get_split_addr_lock - 0x000000004200310c 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x000000004200310c esp_mprot_get_split_addr_lock - .text.esp_mprot_set_pms_lock - 0x000000004200315a 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x000000004200315a esp_mprot_set_pms_lock - .text.esp_mprot_get_pms_lock - 0x000000004200319c 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x000000004200319c esp_mprot_get_pms_lock - .text.esp_mprot_set_pms_area - 0x00000000420031fe 0x268 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x00000000420031fe esp_mprot_set_pms_area - .text.esp_mprot_set_monitor_lock - 0x0000000042003466 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x0000000042003466 esp_mprot_set_monitor_lock - .text.esp_mprot_get_monitor_lock - 0x00000000420034a8 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x00000000420034a8 esp_mprot_get_monitor_lock - .text.esp_mprot_set_monitor_en - 0x000000004200350a 0x90 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x000000004200350a esp_mprot_set_monitor_en - .text.esp_mprot_get_monitor_en - 0x000000004200359a 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x000000004200359a esp_mprot_get_monitor_en - .text.esp_mprot_set_prot - 0x00000000420035f8 0x318 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x00000000420035f8 esp_mprot_set_prot - .text.esp_mprot_ll_err_to_esp_err - 0x0000000042003910 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x0000000042003910 esp_mprot_ll_err_to_esp_err - .text.esp_mprot_ll_world_to_hl_world - 0x000000004200395c 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x000000004200395c esp_mprot_ll_world_to_hl_world - .text.esp_mprot_oper_type_to_str - 0x0000000042003976 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x0000000042003976 esp_mprot_oper_type_to_str - .text.esp_mprot_pms_world_to_str - 0x00000000420039ca 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x00000000420039ca esp_mprot_pms_world_to_str - .text.esp_newlib_locks_init - 0x0000000042003a34 0xa0 esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x0000000042003a34 esp_newlib_locks_init - .text.pthread_setcancelstate - 0x0000000042003ad4 0x4 esp-idf/newlib/libnewlib.a(pthread.c.obj) - 0x0000000042003ad4 pthread_setcancelstate - .text.newlib_include_pthread_impl - 0x0000000042003ad8 0x2 esp-idf/newlib/libnewlib.a(pthread.c.obj) - 0x0000000042003ad8 newlib_include_pthread_impl - .text.raise_r_stub - 0x0000000042003ada 0xe esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .text.esp_newlib_init - 0x0000000042003ae8 0x48 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - 0x0000000042003ae8 esp_setup_newlib_syscalls - 0x0000000042003ae8 esp_newlib_init - .text.syscall_not_implemented - 0x0000000042003b30 0x1c esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x0000000042003b30 _kill_r - 0x0000000042003b30 _system_r - 0x0000000042003b30 _getpid_r - 0x0000000042003b30 _isatty_r - .text.syscall_not_implemented_aborts - 0x0000000042003b4c 0xc esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x0000000042003b4c _sbrk_r - 0x0000000042003b4c _exit - 0x0000000042003b4c raise - 0x0000000042003b4c _raise_r - .text.newlib_include_syscalls_impl - 0x0000000042003b58 0x2 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x0000000042003b58 newlib_include_syscalls_impl - .text.adjust_boot_time - 0x0000000042003b5a 0x176 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.get_adjusted_boot_time - 0x0000000042003cd0 0x3c esp-idf/newlib/libnewlib.a(time.c.obj) - .text.adjtime_corr_stop - 0x0000000042003d0c 0x50 esp-idf/newlib/libnewlib.a(time.c.obj) - .text.settimeofday - 0x0000000042003d5c 0x5c esp-idf/newlib/libnewlib.a(time.c.obj) - 0x0000000042003d5c settimeofday - .text.esp_newlib_time_init - 0x0000000042003db8 0xc esp-idf/newlib/libnewlib.a(time.c.obj) - 0x0000000042003db8 esp_newlib_time_init - .text.esp_time_impl_get_time_since_boot - 0x0000000042003dc4 0x2a esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x0000000042003dc4 esp_time_impl_get_time_since_boot - .text.esp_time_impl_set_boot_time - 0x0000000042003dee 0x3e esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x0000000042003dee esp_time_impl_set_boot_time - .text.esp_time_impl_get_boot_time - 0x0000000042003e2c 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x0000000042003e2c esp_time_impl_get_boot_time - .text.esp_set_time_from_rtc - 0x0000000042003e6c 0x3a esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x0000000042003e6c esp_set_time_from_rtc - .text.esp_sync_timekeeping_timers - 0x0000000042003ea6 0x6a esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x0000000042003ea6 esp_sync_timekeeping_timers - .text.esp_time_impl_init - 0x0000000042003f10 0xc esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x0000000042003f10 esp_time_impl_init - .text.__cxa_guard_dummy - 0x0000000042003f1c 0x2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - 0x0000000042003f1c __cxa_guard_dummy - .text.esp_err_to_name - 0x0000000042003f1e 0x3a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - 0x0000000042003f1e esp_err_to_name - .text.timer_process_alarm - 0x0000000042003f58 0x16c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.timer_task - 0x00000000420040c4 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_early_init - 0x00000000420040dc 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x00000000420040dc esp_timer_early_init - .text.esp_timer_init - 0x00000000420040ec 0x7a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0x00000000420040ec esp_timer_init - .text.__esp_system_init_fn_esp_timer_startup_init - 0x0000000042004166 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .text.esp_timer_impl_init_system_time - 0x0000000042004172 0x8c esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - 0x0000000042004172 esp_timer_impl_init_system_time - .text.esp_timer_impl_early_init - 0x00000000420041fe 0x76 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x00000000420041fe esp_timer_impl_early_init - .text.esp_timer_impl_init - 0x0000000042004274 0xee esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x0000000042004274 esp_timer_impl_init - .text.include_esp_phy_override - 0x0000000042004362 0x2 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x0000000042004362 include_esp_phy_override - .text.translate_path - 0x0000000042004364 0x6a esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.esp_vfs_register_common - 0x00000000420043ce 0x16c esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x00000000420043ce esp_vfs_register_common - .text.esp_vfs_register - 0x000000004200453a 0x30 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x000000004200453a esp_vfs_register - .text.get_vfs_for_index - 0x000000004200456a 0x28 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x000000004200456a get_vfs_for_index - .text.get_vfs_for_fd - 0x0000000042004592 0x28 esp-idf/vfs/libvfs.a(vfs.c.obj) - .text.get_vfs_for_path - 0x00000000420045ba 0xaa esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x00000000420045ba get_vfs_for_path - .text.esp_vfs_open - 0x0000000042004664 0x124 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004664 _open_r - 0x0000000042004664 esp_vfs_open - .text.esp_vfs_write - 0x0000000042004788 0x88 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004788 _write_r - 0x0000000042004788 esp_vfs_write - .text.esp_vfs_lseek - 0x0000000042004810 0x8a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004810 esp_vfs_lseek - 0x0000000042004810 _lseek_r - .text.esp_vfs_read - 0x000000004200489a 0x8a esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x000000004200489a _read_r - 0x000000004200489a esp_vfs_read - .text.esp_vfs_close - 0x0000000042004924 0xfa esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004924 _close_r - 0x0000000042004924 esp_vfs_close - .text.esp_vfs_fstat - 0x0000000042004a1e 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004a1e _fstat_r - 0x0000000042004a1e esp_vfs_fstat - .text.esp_vfs_stat - 0x0000000042004a9a 0x60 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004a9a esp_vfs_stat - 0x0000000042004a9a _stat_r - .text.esp_vfs_link - 0x0000000042004afa 0x82 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004afa _link_r - 0x0000000042004afa esp_vfs_link - .text.esp_vfs_unlink - 0x0000000042004b7c 0x56 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004b7c _unlink_r - 0x0000000042004b7c esp_vfs_unlink - .text.esp_vfs_rename - 0x0000000042004bd2 0x82 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004bd2 esp_vfs_rename - 0x0000000042004bd2 _rename_r - .text.esp_vfs_select_triggered - 0x0000000042004c54 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004c54 esp_vfs_select_triggered - .text.esp_vfs_select_triggered_isr - 0x0000000042004ca8 0x50 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004ca8 esp_vfs_select_triggered_isr - .text.vfs_include_syscalls_impl - 0x0000000042004cf8 0x2 esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x0000000042004cf8 vfs_include_syscalls_impl - .text.console_open - 0x0000000042004cfa 0x60 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004cfa console_open - .text.console_write - 0x0000000042004d5a 0x50 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004d5a console_write - .text.console_fstat - 0x0000000042004daa 0x2a esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004daa console_fstat - .text.console_close - 0x0000000042004dd4 0x3c esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004dd4 console_close - .text.console_read - 0x0000000042004e10 0x32 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004e10 console_read - .text.console_fcntl - 0x0000000042004e42 0x32 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004e42 console_fcntl - .text.console_fsync - 0x0000000042004e74 0x22 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004e74 console_fsync - .text.console_access - 0x0000000042004e96 0x2a esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004e96 console_access - .text.console_end_select - 0x0000000042004ec0 0x24 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004ec0 console_end_select - .text.console_tcsetattr - 0x0000000042004ee4 0x32 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004ee4 console_tcsetattr - .text.console_tcgetattr - 0x0000000042004f16 0x2a esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004f16 console_tcgetattr - .text.console_tcdrain - 0x0000000042004f40 0x22 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004f40 console_tcdrain - .text.console_tcflush - 0x0000000042004f62 0x2a esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004f62 console_tcflush - .text.console_start_select - 0x0000000042004f8c 0x4c esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .text.esp_vfs_dev_console_register - 0x0000000042004fd8 0x20 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004fd8 esp_vfs_dev_console_register - .text.esp_vfs_console_register - 0x0000000042004ff8 0x4c esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x0000000042004ff8 esp_vfs_console_register - .text.usb_serial_jtag_open - 0x0000000042005044 0x14 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_rx_char - 0x0000000042005058 0x3c esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_read_char - 0x0000000042005094 0x26 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_close - 0x00000000420050ba 0x4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_tx_char - 0x00000000420050be 0x88 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_tcflush - 0x0000000042005146 0x14 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_fcntl - 0x000000004200515a 0x4a esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_tcgetattr - 0x00000000420051a4 0x5c esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_fstat - 0x0000000042005200 0x26 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_fsync - 0x0000000042005226 0x88 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_tcdrain - 0x00000000420052ae 0xe esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_tcsetattr - 0x00000000420052bc 0x6a esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_write - 0x0000000042005326 0xa6 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_return_char - 0x00000000420053cc 0x36 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.usb_serial_jtag_read - 0x0000000042005402 0xb4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .text.esp_vfs_usb_serial_jtag_get_vfs - 0x00000000420054b6 0xa esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - 0x00000000420054b6 esp_vfs_usb_serial_jtag_get_vfs - .text.uart_tx_char - 0x00000000420054c0 0x46 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_rx_char - 0x0000000042005506 0x3c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_read_char - 0x0000000042005542 0x30 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.unregister_select - 0x0000000042005572 0x7e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_end_select - 0x00000000420055f0 0x58 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.register_select - 0x0000000042005648 0x74 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_start_select - 0x00000000420056bc 0x216 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.select_notif_callback_isr - 0x00000000420058d2 0x11c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_tcflush - 0x00000000420059ee 0x3c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_tcdrain - 0x0000000042005a2a 0x30 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_tcgetattr - 0x0000000042005a5a 0x376 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_tcsetattr - 0x0000000042005dd0 0x36e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_access - 0x000000004200613e 0x78 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_open - 0x00000000420061b6 0x80 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_fcntl - 0x0000000042006236 0x88 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_fstat - 0x00000000420062be 0x50 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_close - 0x000000004200630e 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_return_char - 0x0000000042006340 0x40 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_fsync - 0x0000000042006380 0x72 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_read - 0x00000000420063f2 0x104 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.uart_write - 0x00000000420064f6 0xec esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .text.esp_vfs_uart_get_vfs - 0x00000000420065e2 0xa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - 0x00000000420065e2 esp_vfs_uart_get_vfs - .text.app_main - 0x00000000420065ec 0x116 esp-idf/main/libmain.a(hello_world_main.c.obj) - 0x00000000420065ec app_main - .text.riscv_decode_offset_from_jal_instruction - 0x0000000042006702 0x4a esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - 0x0000000042006702 riscv_decode_offset_from_jal_instruction - .text.esp_efuse_read_field_blob - 0x000000004200674c 0x7e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x000000004200674c esp_efuse_read_field_blob - .text.esp_efuse_get_field_size - 0x00000000420067ca 0x22 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x00000000420067ca esp_efuse_get_field_size - .text.esp_efuse_check_errors - 0x00000000420067ec 0xc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x00000000420067ec esp_efuse_check_errors - .text.get_mask - 0x00000000420067f8 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.get_reg_num - 0x0000000042006814 0x28 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.get_starting_bit_num_in_reg - 0x000000004200683c 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.get_count_bits_in_reg - 0x0000000042006850 0x34 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.check_range_of_bits - 0x0000000042006884 0x12 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .text.esp_efuse_utility_process - 0x0000000042006896 0x190 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x0000000042006896 esp_efuse_utility_process - .text.esp_efuse_utility_get_number_of_items - 0x0000000042006a26 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x0000000042006a26 esp_efuse_utility_get_number_of_items - .text.esp_efuse_utility_read_reg - 0x0000000042006a36 0x78 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x0000000042006a36 esp_efuse_utility_read_reg - .text.esp_efuse_utility_fill_buff - 0x0000000042006aae 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x0000000042006aae esp_efuse_utility_fill_buff - .text.esp_efuse_utility_count_once - 0x0000000042006b9e 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x0000000042006b9e esp_efuse_utility_count_once - .text.esp_efuse_utility_check_errors - 0x0000000042006bf6 0x94 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x0000000042006bf6 esp_efuse_utility_check_errors - .text.uart_pattern_queue_update - 0x0000000042006c8a 0x50 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_reenable_intr_mask - 0x0000000042006cda 0x92 esp-idf/driver/libdriver.a(uart.c.obj) - .text.uart_get_sclk_freq - 0x0000000042006d6c 0x48 esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042006d6c uart_get_sclk_freq - .text.uart_set_word_length - 0x0000000042006db4 0xb2 esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042006db4 uart_set_word_length - .text.uart_get_word_length - 0x0000000042006e66 0x56 esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042006e66 uart_get_word_length - .text.uart_set_stop_bits - 0x0000000042006ebc 0xb2 esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042006ebc uart_set_stop_bits - .text.uart_get_stop_bits - 0x0000000042006f6e 0x74 esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042006f6e uart_get_stop_bits - .text.uart_set_parity - 0x0000000042006fe2 0x74 esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042006fe2 uart_set_parity - .text.uart_get_parity - 0x0000000042007056 0x74 esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042007056 uart_get_parity - .text.uart_set_baudrate - 0x00000000420070ca 0xac esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000420070ca uart_set_baudrate - .text.uart_get_baudrate - 0x0000000042007176 0xac esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042007176 uart_get_baudrate - .text.uart_wait_tx_done - 0x0000000042007222 0x1e6 esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042007222 uart_wait_tx_done - .text.uart_get_buffered_data_len - 0x0000000042007408 0xc2 esp-idf/driver/libdriver.a(uart.c.obj) - 0x0000000042007408 uart_get_buffered_data_len - .text.uart_flush_input - 0x00000000420074ca 0x252 esp-idf/driver/libdriver.a(uart.c.obj) - 0x00000000420074ca uart_flush_input - 0x00000000420074ca uart_flush - .text.uart_is_driver_installed - 0x000000004200771c 0x22 esp-idf/driver/libdriver.a(uart.c.obj) - 0x000000004200771c uart_is_driver_installed - .text.uart_set_select_notif_callback - 0x000000004200773e 0x1e esp-idf/driver/libdriver.a(uart.c.obj) - 0x000000004200773e uart_set_select_notif_callback - .text.uart_get_selectlock - 0x000000004200775c 0x6 esp-idf/driver/libdriver.a(uart.c.obj) - 0x000000004200775c uart_get_selectlock - .text.bootloader_init_mem - 0x0000000042007762 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - 0x0000000042007762 bootloader_init_mem - .text.bootloader_flash_update_id - 0x0000000042007770 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - 0x0000000042007770 bootloader_flash_update_id - .text.spi_flash_init_lock - 0x0000000042007790 0x2 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x0000000042007790 spi_flash_init_lock - .text.spi_flash_op_lock - 0x0000000042007792 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x0000000042007792 spi_flash_op_lock - .text.spi_flash_op_unlock - 0x00000000420077a4 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x00000000420077a4 spi_flash_op_unlock - .text.spi_flash_cache2phys - 0x00000000420077b6 0xee esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x00000000420077b6 spi_flash_cache2phys - .text.esp_flash_chip_driver_initialized - 0x00000000420078a4 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x00000000420078a4 esp_flash_chip_driver_initialized - .text.check_chip_pointer_default - 0x00000000420078b0 0x32 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .text.esp_flash_read_chip_id - 0x00000000420078e2 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x00000000420078e2 esp_flash_read_chip_id - .text.esp_flash_init_default_chip - 0x00000000420078f6 0x150 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x00000000420078f6 esp_flash_init_default_chip - .text.esp_flash_app_init - 0x0000000042007a46 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x0000000042007a46 esp_flash_app_init - .text.esp_flash_app_enable_os_functions - 0x0000000042007a66 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - 0x0000000042007a66 esp_flash_app_enable_os_functions - .text.esp_partition_main_flash_region_safe - 0x0000000042007a90 0x50 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - 0x0000000042007a90 esp_partition_main_flash_region_safe - .text.esp_crosscore_int_init - 0x0000000042007ae0 0x6a esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - 0x0000000042007ae0 esp_crosscore_int_init - .text.esp_vApplicationIdleHook - 0x0000000042007b4a 0x46 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x0000000042007b4a esp_vApplicationIdleHook - .text.esp_register_freertos_idle_hook_for_cpu - 0x0000000042007b90 0x6e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x0000000042007b90 esp_register_freertos_idle_hook_for_cpu - .text.esp_register_freertos_tick_hook_for_cpu - 0x0000000042007bfe 0x6e esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x0000000042007bfe esp_register_freertos_tick_hook_for_cpu - .text.esp_deregister_freertos_idle_hook_for_cpu - 0x0000000042007c6c 0x66 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x0000000042007c6c esp_deregister_freertos_idle_hook_for_cpu - .text.esp_int_wdt_init - 0x0000000042007cd2 0x80 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - 0x0000000042007cd2 esp_int_wdt_init - .text.esp_int_wdt_cpu_init - 0x0000000042007d52 0x4c esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - 0x0000000042007d52 esp_int_wdt_cpu_init - .text.find_entry_and_check_all_reset - 0x0000000042007d9e 0x30 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.find_entry_from_task_handle_and_check_all_reset - 0x0000000042007dce 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.task_wdt_timeout_handling - 0x0000000042007e00 0x122 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.reset_hw_timer - 0x0000000042007f22 0x42 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.add_entry - 0x0000000042007f64 0x160 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.delete_entry - 0x00000000420080c4 0x144 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_isr_user_handler - 0x0000000042008208 0x2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x0000000042008208 esp_task_wdt_isr_user_handler - .text.task_wdt_isr - 0x000000004200820a 0x1f2 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_add - 0x00000000420083fc 0x66 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x00000000420083fc esp_task_wdt_add - .text.subscribe_idle - 0x0000000042008462 0xb6 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_reset - 0x0000000042008518 0xcc esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x0000000042008518 esp_task_wdt_reset - .text.idle_hook_cb - 0x00000000420085e4 0x10 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_delete - 0x00000000420085f4 0x64 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x00000000420085f4 esp_task_wdt_delete - .text.unsubscribe_idle - 0x0000000042008658 0x94 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .text.esp_task_wdt_init - 0x00000000420086ec 0x1e4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x00000000420086ec esp_task_wdt_init - .text.efuse_hal_get_major_chip_version - 0x00000000420088d0 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x00000000420088d0 efuse_hal_get_major_chip_version - .text.efuse_hal_get_minor_chip_version - 0x00000000420088e0 0x1a esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x00000000420088e0 efuse_hal_get_minor_chip_version - .text.efuse_hal_set_timing - 0x00000000420088fa 0x1a esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x00000000420088fa efuse_hal_set_timing - .text.efuse_hal_read - 0x0000000042008914 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x0000000042008914 efuse_hal_read - .text.uart_hal_get_sclk - 0x000000004200896c 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x000000004200896c uart_hal_get_sclk - .text.uart_hal_set_baudrate - 0x0000000042008992 0x6c esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x0000000042008992 uart_hal_set_baudrate - .text.uart_hal_get_baudrate - 0x00000000420089fe 0x3c esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x00000000420089fe uart_hal_get_baudrate - .text.uart_hal_set_stop_bits - 0x0000000042008a3a 0x12 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x0000000042008a3a uart_hal_set_stop_bits - .text.uart_hal_get_stop_bits - 0x0000000042008a4c 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x0000000042008a4c uart_hal_get_stop_bits - .text.uart_hal_set_data_bit_num - 0x0000000042008a58 0x10 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x0000000042008a58 uart_hal_set_data_bit_num - .text.uart_hal_get_data_bit_num - 0x0000000042008a68 0xc esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x0000000042008a68 uart_hal_get_data_bit_num - .text.uart_hal_set_parity - 0x0000000042008a74 0x20 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x0000000042008a74 uart_hal_set_parity - .text.uart_hal_get_parity - 0x0000000042008a94 0x1c esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x0000000042008a94 uart_hal_get_parity - .text.get_flash_clock_divider - 0x0000000042008ab0 0xf8 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .text.spi_flash_cal_clock - 0x0000000042008ba8 0x74 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .text.spi_flash_hal_init - 0x0000000042008c1c 0xf0 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x0000000042008c1c spi_flash_hal_init - .text.spi_flash_hal_supports_direct_write - 0x0000000042008d0c 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x0000000042008d0c spi_flash_hal_supports_direct_write - .text.spi_flash_hal_supports_direct_read - 0x0000000042008d1e 0x12 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x0000000042008d1e spi_flash_hal_supports_direct_read - .text.esp_chip_info - 0x0000000042008d30 0x54 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - 0x0000000042008d30 esp_chip_info - .text.esp_ota_get_running_partition - 0x0000000042008d84 0xbe esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x0000000042008d84 esp_ota_get_running_partition - .text.load_partitions - 0x0000000042008e42 0x1de esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .text.ensure_partitions_loaded - 0x0000000042009020 0x7e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .text.iterator_create - 0x000000004200909e 0x3e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .text.esp_partition_iterator_release - 0x00000000420090dc 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - 0x00000000420090dc esp_partition_iterator_release - .text.esp_partition_next - 0x00000000420090ee 0xb6 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - 0x00000000420090ee esp_partition_next - .text.esp_partition_find - 0x00000000420091a4 0x46 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - 0x00000000420091a4 esp_partition_find - .text.esp_partition_get - 0x00000000420091ea 0x2e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - 0x00000000420091ea esp_partition_get - .text.efuse_hal_chip_revision - 0x0000000042009218 0x20 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x0000000042009218 efuse_hal_chip_revision - .text 0x0000000042009238 0x156 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - 0x0000000042009238 ceil - .text 0x000000004200938e 0x15e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - 0x000000004200938e floor - .text 0x00000000420094ec 0x12 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - 0x00000000420094ec __errno - .text 0x00000000420094fe 0x23a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - 0x00000000420094fe __sflush_r - 0x0000000042009664 _fflush_r - 0x000000004200970c fflush - .text 0x0000000042009738 0x2d4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - 0x00000000420097a6 _cleanup_r - 0x0000000042009806 __sfmoreglue - 0x0000000042009856 _cleanup - 0x0000000042009860 __sfp_lock_acquire - 0x0000000042009870 __sfp_lock_release - 0x0000000042009880 __sinit_lock_acquire - 0x0000000042009890 __sinit_lock_release - 0x00000000420098a0 __sinit - 0x0000000042009902 __sfp - 0x00000000420099d0 __fp_lock_all - 0x00000000420099ee __fp_unlock_all - .text 0x0000000042009a0c 0x116 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - 0x0000000042009a0c _fopen_r - 0x0000000042009b04 fopen - .text 0x0000000042009b22 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - 0x0000000042009b22 _fseek_r - 0x0000000042009b24 fseek - .text 0x0000000042009b4a 0x3a8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - 0x0000000042009b4a _fseeko_r - 0x0000000042009ecc fseeko - .text 0x0000000042009ef2 0x2fc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - 0x0000000042009ef2 __sfvwrite_r - .text 0x000000004200a1ee 0xcc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - 0x000000004200a1ee _fwalk - 0x000000004200a250 _fwalk_reent - .text 0x000000004200a2ba 0x124 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - 0x000000004200a2ba __swhatbuf_r - 0x000000004200a33a __smakebuf_r - .text 0x000000004200a3de 0x7e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - 0x000000004200a3de _printf_r - 0x000000004200a418 printf - .text 0x000000004200a45c 0xf0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - 0x000000004200a45c _puts_r - 0x000000004200a536 puts - .text 0x000000004200a54c 0x142 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - 0x000000004200a54c cleanup_glue - 0x000000004200a572 _reclaim_reent - .text 0x000000004200a68e 0x16e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - 0x000000004200a6a2 __srefill_r - .text 0x000000004200a7fc 0xc8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - 0x000000004200a7fc __sread - 0x000000004200a82e __seofread - 0x000000004200a832 __swrite - 0x000000004200a884 __sseek - 0x000000004200a8bc __sclose - .text 0x000000004200a8c4 0x24 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - 0x000000004200a8c4 gettimeofday - .text 0x000000004200a8e8 0x28d8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - 0x000000004200ad36 _vfprintf_r - 0x000000004200d0f2 vfprintf - .text 0x000000004200d1c0 0x66 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - 0x000000004200d1c0 vprintf - 0x000000004200d1f8 _vprintf_r - .text 0x000000004200d226 0x114 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - 0x000000004200d226 __swsetup_r - .text 0x000000004200d33a 0xe54 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - 0x000000004200d46a _dtoa_r - .text 0x000000004200e18e 0x13a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - 0x000000004200e18e _fclose_r - 0x000000004200e2b2 fclose - .text 0x000000004200e2c8 0x7a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - 0x000000004200e2c8 __sflags - .text 0x000000004200e342 0x22 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - 0x000000004200e342 __localeconv_l - 0x000000004200e348 _localeconv_r - 0x000000004200e356 localeconv - .text 0x000000004200e364 0xbba /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - 0x000000004200e364 _Balloc - 0x000000004200e422 _Bfree - 0x000000004200e48a __multadd - 0x000000004200e54c __s2b - 0x000000004200e60c __hi0bits - 0x000000004200e652 __lo0bits - 0x000000004200e6bc __i2b - 0x000000004200e6f6 __multiply - 0x000000004200e874 __pow5mult - 0x000000004200e94c __lshift - 0x000000004200ea4a __mcmp - 0x000000004200ea80 __mdiff - 0x000000004200ebe2 __ulp - 0x000000004200ec26 __b2d - 0x000000004200ecda __d2b - 0x000000004200edba __ratio - 0x000000004200ee2c _mprec_log10 - 0x000000004200ee8c __copybits - 0x000000004200eed8 __any_on - .text 0x000000004200ef1e 0x82 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - 0x000000004200ef1e frexp - .text 0x000000004200efa0 0x19f8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - 0x000000004200f3d4 __ssprint_r - 0x000000004200f51a _svfiprintf_r - .text 0x0000000042010998 0x1ace /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - 0x0000000042010de6 __sprint_r - 0x0000000042010e0a _vfiprintf_r - 0x0000000042012398 vfiprintf - .text 0x0000000042012466 0x48 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - 0x0000000042012466 _mbtowc_r - 0x0000000042012474 __ascii_mbtowc - .text 0x00000000420124ae 0x2e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - 0x00000000420124ae _wctomb_r - 0x00000000420124bc __ascii_wctomb - .text 0x00000000420124dc 0x242 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - 0x00000000420124dc __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) - *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:cpu.*(.text .text.esp_cpu_clear_breakpoint .text.esp_cpu_clear_watchpoint .text.esp_cpu_configure_region_protection .text.esp_cpu_intr_get_desc .text.esp_cpu_set_breakpoint .text.esp_cpu_set_watchpoint .text.is_intr_num_resv) - .text.is_intr_num_resv - 0x000000004201271e 0x42 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .text.esp_cpu_intr_get_desc - 0x0000000042012760 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x0000000042012760 esp_cpu_intr_get_desc - .text.esp_cpu_configure_region_protection - 0x0000000042012788 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x0000000042012788 esp_cpu_configure_region_protection - .text.esp_cpu_set_breakpoint - 0x0000000042012882 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x0000000042012882 esp_cpu_set_breakpoint - *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 - 0x00000000420128e8 0x92 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .text.get_dig_dbias_by_efuse - 0x000000004201297a 0x7c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .text.calibrate_ocode - 0x00000000420129f6 0x12c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .text.get_rtc_dbias_by_efuse - 0x0000000042012b22 0x176 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - 0x0000000042012b22 get_rtc_dbias_by_efuse - .text.set_rtc_dig_dbias - 0x0000000042012c98 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .text.rtc_init - 0x0000000042012d10 0x456 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - 0x0000000042012d10 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 - 0x0000000042013166 0x3e esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x0000000042013166 esp_register_shutdown_handler - .text.esp_get_minimum_free_heap_size - 0x00000000420131a4 0x10 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x00000000420131a4 esp_get_minimum_free_heap_size - *libfreertos.a:port.*(.literal.esp_startup_start_app .text.esp_startup_start_app) - .text.esp_startup_start_app - 0x00000000420131b4 0x42 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x00000000420131b4 esp_startup_start_app - *libfreertos.a:port_common.*(.literal.main_task .text.main_task) - .text.main_task - 0x00000000420131f6 0x5a 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 - 0x0000000042013250 0x6e esp-idf/log/liblog.a(log.c.obj) - .text.s_log_level_get_and_unlock - 0x00000000420132be 0x1a6 esp-idf/log/liblog.a(log.c.obj) - .text.esp_log_writev - 0x0000000042013464 0x42 esp-idf/log/liblog.a(log.c.obj) - 0x0000000042013464 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) - 0x00000000420134b6 . = (. + _esp_flash_mmap_prefetch_pad_size) - *fill* 0x00000000420134a6 0x10 - 0x00000000420134b6 _text_end = ABSOLUTE (.) - 0x00000000420134b6 _instruction_reserved_end = ABSOLUTE (.) - 0x00000000420134b6 _etext = . - 0x0000000000000000 _flash_cache_start = ABSOLUTE (0x0) - -.flash_rodata_dummy - 0x000000003c000020 0x20000 - 0x000000003c000020 _flash_rodata_dummy_start = . - 0x000000003c000020 . = ALIGN (ALIGNOF (.flash.text)) - 0x000000003c0134b6 . = (. + SIZEOF (.flash.text)) - *fill* 0x000000003c000020 0x13496 - 0x000000003c020020 . = (ALIGN (0x10000) + 0x20) - *fill* 0x000000003c0134b6 0xcb6a - 0x000000003c020020 _rodata_reserved_start = . - -.flash.appdesc 0x000000003c020020 0x100 - 0x000000003c020020 _rodata_start = ABSOLUTE (.) - *(.rodata_desc .rodata_desc.*) - .rodata_desc 0x000000003c020020 0x100 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x000000003c020020 esp_app_desc - *(.rodata_custom_desc .rodata_custom_desc.*) - 0x000000003c020120 . = ALIGN (ALIGNOF (.flash.rodata)) - -.flash.rodata 0x000000003c020120 0x6fb8 - 0x000000003c020120 _flash_rodata_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .rodata.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .sdata2 EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .sdata2.* EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata EXCLUDE_FILE(*libspi_flash.a:spi_flash_chip_winbond.* *libspi_flash.a:spi_flash_chip_th.* *libspi_flash.a:spi_flash_chip_mxic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_boya.* *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:flash_brownout_hook.* *libsoc.a:lldesc.* *libnewlib.a:stdatomic.* *libnewlib.a:heap.* *libnewlib.a:assert.* *libnewlib.a:abort.* *libheap.a:tlsf.* *libheap.a:multi_heap.* *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:mmu_hal.* *libhal.a:ledc_hal_iram.* *libhal.a:i2c_hal_iram.* *libhal.a:cache_hal.* *libgcc.a:save-restore.* *libgcc.a:_divsf3.* *libesp_system.a:ubsan.* *libesp_system.a:esp_err.* *libesp_rom.a:esp_rom_systimer.* *libesp_rom.a:esp_rom_spiflash.* *libesp_rom.a:esp_rom_regi2c.* *libesp_hw_support.a:systimer.* *libesp_hw_support.a:rtc_clk.* *libesp_hw_support.a:esp_memory_utils.* *libapp_trace.a:port_uart.* *libapp_trace.a:app_trace_util.* *libapp_trace.a:app_trace.* *libphy.a *libgcov.a) .srodata.*) - .rodata.str1.4 - 0x000000003c020120 0xef esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - *fill* 0x000000003c02020f 0x1 - .rodata.select_rtc_slow_clk.str1.4 - 0x000000003c020210 0x5c esp-idf/esp_system/libesp_system.a(clk.c.obj) - .rodata.esp_clk_init.str1.4 - 0x000000003c02026c 0x68 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .rodata.__func__.0 - 0x000000003c0202d4 0xd esp-idf/esp_system/libesp_system.a(clk.c.obj) - *fill* 0x000000003c0202e1 0x3 - .srodata 0x000000003c0202e4 0x4 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .rodata.do_core_init.str1.4 - 0x000000003c0202e8 0xbc esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0xc0 (size before relaxing) - .rodata.do_system_init_fn.str1.4 - 0x000000003c0203a4 0x45 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x51 (size before relaxing) - *fill* 0x000000003c0203e9 0x3 - .rodata.start_cpu0_default.str1.4 - 0x000000003c0203ec 0x179 esp-idf/esp_system/libesp_system.a(startup.c.obj) - *fill* 0x000000003c020565 0x3 - .rodata.__func__.0 - 0x000000003c020568 0xd esp-idf/esp_system/libesp_system.a(startup.c.obj) - *fill* 0x000000003c020575 0x3 - .srodata.g_startup_fn - 0x000000003c020578 0x4 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x000000003c020578 g_startup_fn - .rodata.str1.4 - 0x000000003c02057c 0x26 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - *fill* 0x000000003c0205a2 0x2 - .srodata 0x000000003c0205a4 0x5 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - *fill* 0x000000003c0205a9 0x3 - .rodata.str1.4 - 0x000000003c0205ac 0x60 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .rodata.__func__.0 - 0x000000003c02060c 0x1a esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - *fill* 0x000000003c020626 0x2 - .rodata.esp_panic_handler.str1.4 - 0x000000003c020628 0x83 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x87 (size before relaxing) - *fill* 0x000000003c0206ab 0x1 - .rodata.frame_to_panic_info.str1.4 - 0x000000003c0206ac 0x8 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .rodata.print_state_for_core.str1.4 - 0x000000003c0206b4 0x3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .rodata.panic_print_basic_backtrace.str1.4 - 0x000000003c0206b4 0x12 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x23 (size before relaxing) - *fill* 0x000000003c0206c6 0x2 - .rodata.print_memprot_err_details.str1.4 - 0x000000003c0206c8 0xc3 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0xd7 (size before relaxing) - *fill* 0x000000003c02078b 0x1 - .rodata.print_cache_err_details.str1.4 - 0x000000003c02078c 0x4b esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - *fill* 0x000000003c0207d7 0x1 - .rodata.panic_print_registers.str1.4 - 0x000000003c0207d8 0x23 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - *fill* 0x000000003c0207fb 0x1 - .rodata.panic_soc_fill_info.str1.4 - 0x000000003c0207fc 0x34 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.panic_arch_fill_info.str1.4 - 0x000000003c020830 0x19 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - *fill* 0x000000003c020849 0x3 - .rodata.str1.4 - 0x000000003c02084c 0x449 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - *fill* 0x000000003c020c95 0x3 - .rodata 0x000000003c020c98 0xdc esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.pseudo_reason.1 - 0x000000003c020d74 0x10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.reason.0 - 0x000000003c020d84 0x40 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .rodata.s_log_level_get_and_unlock.str1.4 - 0x000000003c020dc4 0x67 esp-idf/log/liblog.a(log.c.obj) - *fill* 0x000000003c020e2b 0x1 - .rodata.__func__.0 - 0x000000003c020e2c 0x15 esp-idf/log/liblog.a(log.c.obj) - *fill* 0x000000003c020e41 0x3 - .rodata.str1.4 - 0x000000003c020e44 0x11d esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003c020f61 0x3 - .rodata.__func__.10 - 0x000000003c020f64 0x19 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003c020f7d 0x3 - .rodata.__func__.11 - 0x000000003c020f80 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) - .rodata.__func__.12 - 0x000000003c020f98 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003c020fa9 0x3 - .rodata.__func__.3 - 0x000000003c020fac 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003c020fbe 0x2 - .rodata.__func__.4 - 0x000000003c020fc0 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003c020fcf 0x1 - .rodata.__func__.8 - 0x000000003c020fd0 0x17 esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003c020fe7 0x1 - .rodata.__func__.9 - 0x000000003c020fe8 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) - *fill* 0x000000003c021002 0x2 - .rodata.register_heap.str1.4 - 0x000000003c021004 0x43 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - *fill* 0x000000003c021047 0x1 - .rodata.heap_caps_init.str1.4 - 0x000000003c021048 0xf4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .rodata.__func__.0 - 0x000000003c02113c 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) - *fill* 0x000000003c02114b 0x1 - .rodata.__func__.1 - 0x000000003c02114c 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) - *fill* 0x000000003c02115a 0x2 - .rodata.s_prepare_reserved_regions.str1.4 - 0x000000003c02115c 0x105 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - *fill* 0x000000003c021261 0x3 - .rodata.__func__.0 - 0x000000003c021264 0x1b esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - *fill* 0x000000003c02127f 0x1 - .rodata.str1.4 - 0x000000003c021280 0x23 esp-idf/heap/libheap.a(memory_layout.c.obj) - *fill* 0x000000003c0212a3 0x1 - .rodata.soc_memory_regions - 0x000000003c0212a4 0x50 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x000000003c0212a4 soc_memory_regions - .rodata.soc_memory_types - 0x000000003c0212f4 0x50 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x000000003c0212f4 soc_memory_types - .srodata.soc_memory_region_count - 0x000000003c021344 0x4 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x000000003c021344 soc_memory_region_count - .rodata.esp_cpu_stall.str1.4 - 0x000000003c021348 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - *fill* 0x000000003c02139a 0x2 - .rodata.__func__.0 - 0x000000003c02139c 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - *fill* 0x000000003c0213aa 0x2 - .rodata.find_desc_for_source.str1.4 - 0x000000003c0213ac 0x39 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003c0213e5 0x3 - .rodata.is_vect_desc_usable.str1.4 - 0x000000003c0213e8 0x49 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003c021431 0x3 - .rodata.esp_intr_alloc_intrstatus.str1.4 - 0x000000003c021434 0x62 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003c021496 0x2 - .rodata.esp_intr_free.str1.4 - 0x000000003c021498 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.__func__.0 - 0x000000003c02149c 0x11 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003c0214ad 0x3 - .rodata.__func__.1 - 0x000000003c0214b0 0xe esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003c0214be 0x2 - .rodata.__func__.3 - 0x000000003c0214c0 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003c0214da 0x2 - .rodata.__func__.4 - 0x000000003c0214dc 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003c0214f2 0x2 - .rodata.__func__.5 - 0x000000003c0214f4 0x19 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003c02150d 0x3 - .rodata.__func__.7 - 0x000000003c021510 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .rodata.__func__.8 - 0x000000003c021524 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - *fill* 0x000000003c021539 0x3 - .rodata.periph_module_enable.str1.4 - 0x000000003c02153c 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - *fill* 0x000000003c021586 0x2 - .rodata.__func__.2 - 0x000000003c021588 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - *fill* 0x000000003c02159d 0x3 - .rodata.set_ocode_by_efuse.str1.4 - 0x000000003c0215a0 0x5a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x000000003c0215fa 0x2 - .rodata.get_dig_dbias_by_efuse.str1.4 - 0x000000003c0215fc 0x6a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x000000003c021666 0x2 - .rodata.calibrate_ocode.str1.4 - 0x000000003c021668 0x31 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x000000003c021699 0x3 - .rodata.get_rtc_dbias_by_efuse.str1.4 - 0x000000003c02169c 0x6c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .rodata.rtc_init.str1.4 - 0x000000003c021708 0x4c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .rodata 0x000000003c021754 0xa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x000000003c02175e 0x2 - .rodata.__func__.0 - 0x000000003c021760 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x000000003c021777 0x1 - .rodata.__func__.1 - 0x000000003c021778 0x17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x000000003c02178f 0x1 - .rodata.__func__.2 - 0x000000003c021790 0x13 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - *fill* 0x000000003c0217a3 0x1 - .rodata.esp_mprot_oper_type_to_str.str1.4 - 0x000000003c0217a4 0x15 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x28 (size before relaxing) - *fill* 0x000000003c0217b9 0x3 - .rodata.esp_mprot_pms_world_to_str.str1.4 - 0x000000003c0217bc 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - *fill* 0x000000003c021812 0x2 - .rodata._prvTaskExitError.str1.4 - 0x000000003c021814 0x5c esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.vApplicationStackOverflowHook.str1.4 - 0x000000003c021870 0x3c esp-idf/freertos/libfreertos.a(port.c.obj) - .rodata.esp_startup_start_app.str1.4 - 0x000000003c0218ac 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) - 0x38 (size before relaxing) - .rodata.__func__.0 - 0x000000003c0218d8 0x12 esp-idf/freertos/libfreertos.a(port.c.obj) - *fill* 0x000000003c0218ea 0x2 - .rodata.main_task.str1.4 - 0x000000003c0218ec 0x60 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .rodata.esp_startup_start_app_common.str1.4 - 0x000000003c02194c 0x59 esp-idf/freertos/libfreertos.a(port_common.c.obj) - *fill* 0x000000003c0219a5 0x3 - .rodata.vApplicationGetIdleTaskMemory.str1.4 - 0x000000003c0219a8 0x32 esp-idf/freertos/libfreertos.a(port_common.c.obj) - *fill* 0x000000003c0219da 0x2 - .rodata.__func__.1 - 0x000000003c0219dc 0x1e esp-idf/freertos/libfreertos.a(port_common.c.obj) - *fill* 0x000000003c0219fa 0x2 - .rodata.__func__.2 - 0x000000003c0219fc 0xa esp-idf/freertos/libfreertos.a(port_common.c.obj) - *fill* 0x000000003c021a06 0x2 - .rodata.__func__.3 - 0x000000003c021a08 0x1d esp-idf/freertos/libfreertos.a(port_common.c.obj) - *fill* 0x000000003c021a25 0x3 - .rodata.vPortSetupTimer.str1.4 - 0x000000003c021a28 0xc5 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - *fill* 0x000000003c021aed 0x3 - .rodata.__func__.0 - 0x000000003c021af0 0x10 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .rodata.prvNotifyQueueSetContainer.str1.4 - 0x000000003c021b00 0x8f esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c021b8f 0x1 - .rodata.xQueueGenericReset.str1.4 - 0x000000003c021b90 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueGenericCreateStatic.str1.4 - 0x000000003c021b98 0xdf esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c021c77 0x1 - .rodata.xQueueGenericCreate.str1.4 - 0x000000003c021c78 0x8e esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c021d06 0x2 - .rodata.xQueueGenericSend.str1.4 - 0x000000003c021d08 0x195 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c021e9d 0x3 - .rodata.xQueueGiveMutexRecursive.str1.4 - 0x000000003c021ea0 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.xQueueGiveFromISR.str1.4 - 0x000000003c021ea8 0x7d esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c021f25 0x3 - .rodata.xQueueReceive.str1.4 - 0x000000003c021f28 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c021f8e 0x2 - .rodata.xQueueSemaphoreTake.str1.4 - 0x000000003c021f90 0x2d esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c021fbd 0x3 - .rodata.xQueueReceiveFromISR.str1.4 - 0x000000003c021fc0 0x52 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c022012 0x2 - .rodata.__func__.11 - 0x000000003c022014 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c022026 0x2 - .rodata.__func__.13 - 0x000000003c022028 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c022043 0x1 - .rodata.__func__.14 - 0x000000003c022044 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c022056 0x2 - .rodata.__func__.17 - 0x000000003c022058 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c022071 0x3 - .rodata.__func__.18 - 0x000000003c022074 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c02208d 0x3 - .rodata.__func__.2 - 0x000000003c022090 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c02209d 0x3 - .rodata.__func__.20 - 0x000000003c0220a0 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.__func__.21 - 0x000000003c0220b4 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c0220ce 0x2 - .rodata.__func__.22 - 0x000000003c0220d0 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c0220e3 0x1 - .rodata.__func__.7 - 0x000000003c0220e4 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) - *fill* 0x000000003c0220f9 0x3 - .rodata.__func__.9 - 0x000000003c0220fc 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) - .rodata.prvDeleteTLS.str1.4 - 0x000000003c022110 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c02214a 0x2 - .rodata.taskSelectHighestPriorityTaskSMP.str1.4 - 0x000000003c02214c 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022165 0x3 - .rodata.prvDeleteTCB.str1.4 - 0x000000003c022168 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c02219a 0x2 - .rodata.xTaskCreateStaticPinnedToCore.str1.4 - 0x000000003c02219c 0x9d esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022239 0x3 - .rodata.xTaskGetIdleTaskHandleForCPU.str1.4 - 0x000000003c02223c 0x36 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022272 0x2 - .rodata.xTaskIncrementTick.str1.4 - 0x000000003c022274 0x76 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c0222ea 0x2 - .rodata.xTaskResumeAll.str1.4 - 0x000000003c0222ec 0x29 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022315 0x3 - .rodata.vTaskPlaceOnEventList.str1.4 - 0x000000003c022318 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.xTaskRemoveFromEventList.str1.4 - 0x000000003c022324 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022333 0x1 - .rodata.vTaskSetTimeOutState.str1.4 - 0x000000003c022334 0xa esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c02233e 0x2 - .rodata.xTaskCheckForTimeOut.str1.4 - 0x000000003c022340 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c02234e 0x2 - .rodata.vTaskDelete.str1.4 - 0x000000003c022350 0x31 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022381 0x3 - .rodata.xTaskPriorityDisinherit.str1.4 - 0x000000003c022384 0x3d esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c0223c1 0x3 - .rodata.vTaskPriorityDisinheritAfterTimeout.str1.4 - 0x000000003c0223c4 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.ulTaskGenericNotifyTake.str1.4 - 0x000000003c0223ec 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c0223fe 0x2 - .rodata.xTaskGenericNotify.str1.4 - 0x000000003c022400 0x97 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022497 0x1 - .rodata.vTaskStartScheduler.str1.4 - 0x000000003c022498 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c0224b2 0x2 - .rodata.__func__.1 - 0x000000003c0224b4 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c0224d2 0x2 - .rodata.__func__.11 - 0x000000003c0224d4 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c0224ed 0x3 - .rodata.__func__.14 - 0x000000003c0224f0 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022506 0x2 - .rodata.__func__.15 - 0x000000003c022508 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022529 0x3 - .rodata.__func__.17 - 0x000000003c02252c 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c02253f 0x1 - .rodata.__func__.20 - 0x000000003c022540 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c02255d 0x3 - .rodata.__func__.23 - 0x000000003c022560 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c02256e 0x2 - .rodata.__func__.24 - 0x000000003c022570 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c02257f 0x1 - .rodata.__func__.25 - 0x000000003c022580 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.32 - 0x000000003c022594 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c02259f 0x1 - .rodata.__func__.34 - 0x000000003c0225a0 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c0225ad 0x3 - .rodata.__func__.35 - 0x000000003c0225b0 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c0225bd 0x3 - .rodata.__func__.36 - 0x000000003c0225c0 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.38 - 0x000000003c0225cc 0x1e esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c0225ea 0x2 - .rodata.__func__.5 - 0x000000003c0225ec 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.6 - 0x000000003c022604 0x24 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.7 - 0x000000003c022628 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.__func__.8 - 0x000000003c022640 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) - *fill* 0x000000003c022655 0x3 - .rodata.ucExpectedStackBytes.16 - 0x000000003c022658 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .rodata.str1.4 - 0x000000003c02266c 0x8d esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x91 (size before relaxing) - *fill* 0x000000003c0226f9 0x3 - .rodata.esp_newlib_locks_init.str1.4 - 0x000000003c0226fc 0x68 esp-idf/newlib/libnewlib.a(locks.c.obj) - .rodata.__func__.0 - 0x000000003c022764 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) - .rodata.__func__.1 - 0x000000003c022770 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) - *fill* 0x000000003c022785 0x3 - .rodata.__func__.2 - 0x000000003c022788 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) - *fill* 0x000000003c02279d 0x3 - .rodata.__func__.3 - 0x000000003c0227a0 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) - *fill* 0x000000003c0227b3 0x1 - .rodata.__func__.4 - 0x000000003c0227b4 0x16 esp-idf/newlib/libnewlib.a(locks.c.obj) - *fill* 0x000000003c0227ca 0x2 - .rodata.str1.4 - 0x000000003c0227cc 0x16fa esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - *fill* 0x000000003c023ec6 0x2 - .rodata.esp_err_msg_table - 0x000000003c023ec8 0x680 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .srodata.esp_unknown_msg - 0x000000003c024548 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - *fill* 0x000000003c02454e 0x2 - .rodata.str1.4 - 0x000000003c024550 0x33 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - *fill* 0x000000003c024583 0x1 - .rodata.esp_timer_init.str1.4 - 0x000000003c024584 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - *fill* 0x000000003c02458e 0x2 - .rodata.__func__.0 - 0x000000003c024590 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - *fill* 0x000000003c02459d 0x3 - .rodata.esp_timer_impl_init_system_time.str1.4 - 0x000000003c0245a0 0x51 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - *fill* 0x000000003c0245f1 0x3 - .rodata.esp_timer_impl_init.str1.4 - 0x000000003c0245f4 0x82 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - *fill* 0x000000003c024676 0x2 - .rodata.translate_path.str1.4 - 0x000000003c024678 0x5b esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x5f (size before relaxing) - *fill* 0x000000003c0246d3 0x1 - .rodata.__func__.0 - 0x000000003c0246d4 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) - *fill* 0x000000003c0246e3 0x1 - .rodata.console_open.str1.4 - 0x000000003c0246e4 0x1f esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x22 (size before relaxing) - *fill* 0x000000003c024703 0x1 - .rodata.esp_vfs_dev_console_register.str1.4 - 0x000000003c024704 0xd esp-idf/vfs/libvfs.a(vfs_console.c.obj) - *fill* 0x000000003c024711 0x3 - .rodata.vfs 0x000000003c024714 0xa4 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .rodata.usb_serial_jtag_return_char.str1.4 - 0x000000003c0247b8 0x43 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - *fill* 0x000000003c0247fb 0x1 - .rodata.__func__.0 - 0x000000003c0247fc 0x1c esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .rodata.vfs 0x000000003c024818 0xa4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .rodata.uart_access.str1.4 - 0x000000003c0248bc 0x7 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - 0xb (size before relaxing) - *fill* 0x000000003c0248c3 0x1 - .rodata.uart_fcntl.str1.4 - 0x000000003c0248c4 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .rodata.uart_return_char.str1.4 - 0x000000003c0248f8 0x1d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x000000003c024915 0x3 - .rodata.uart_fsync.str1.4 - 0x000000003c024918 0x12 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x000000003c02492a 0x2 - .rodata.__func__.1 - 0x000000003c02492c 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x000000003c024937 0x1 - .rodata.__func__.2 - 0x000000003c024938 0x11 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x000000003c024949 0x3 - .rodata.__func__.3 - 0x000000003c02494c 0xa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x000000003c024956 0x2 - .rodata.__func__.4 - 0x000000003c024958 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x000000003c024963 0x1 - .rodata.__func__.5 - 0x000000003c024964 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x000000003c02496f 0x1 - .rodata.__func__.6 - 0x000000003c024970 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x000000003c02497b 0x1 - .rodata.__func__.7 - 0x000000003c02497c 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - *fill* 0x000000003c024987 0x1 - .rodata.vfs 0x000000003c024988 0xa4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .srodata.s_ctx - 0x000000003c024a2c 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .rodata.app_main.str1.4 - 0x000000003c024a34 0x100 esp-idf/main/libmain.a(hello_world_main.c.obj) - 0x104 (size before relaxing) - .rodata.intr_handler_set.str1.4 - 0x000000003c024b34 0x73 esp-idf/riscv/libriscv.a(interrupt.c.obj) - *fill* 0x000000003c024ba7 0x1 - .rodata.__func__.1 - 0x000000003c024ba8 0x18 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .srodata.BLK_VERSION_MAJOR - 0x000000003c024bc0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.DIG_DBIAS_HVT - 0x000000003c024bc4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.K_DIG_LDO - 0x000000003c024bc8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.K_RTC_LDO - 0x000000003c024bcc 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.OCODE - 0x000000003c024bd0 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.V_DIG_DBIAS20 - 0x000000003c024bd4 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .srodata.V_RTC_DBIAS20 - 0x000000003c024bd8 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .rodata.set_cnt_in_reg.str1.4 - 0x000000003c024bdc 0x63 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000003c024c3f 0x1 - .rodata.write_reg.str1.4 - 0x000000003c024c40 0x84 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .rodata.esp_efuse_utility_process.str1.4 - 0x000000003c024cc4 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000003c024d2d 0x3 - .rodata.__func__.1 - 0x000000003c024d30 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000003c024d4b 0x1 - .rodata.__func__.4 - 0x000000003c024d4c 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - *fill* 0x000000003c024d66 0x2 - .rodata.esp_efuse_utility_check_errors.str1.4 - 0x000000003c024d68 0x7a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x82 (size before relaxing) - *fill* 0x000000003c024de2 0x2 - .rodata.range_read_addr_blocks - 0x000000003c024de4 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x000000003c024de4 range_read_addr_blocks - .rodata.uart_reenable_intr_mask.str1.4 - 0x000000003c024e3c 0x37 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024e73 0x1 - .rodata.uart_set_word_length.str1.4 - 0x000000003c024e74 0x2f esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024ea3 0x1 - .rodata.uart_set_stop_bits.str1.4 - 0x000000003c024ea4 0x2f esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024ed3 0x1 - .rodata.uart_set_baudrate.str1.4 - 0x000000003c024ed4 0x1f esp-idf/driver/libdriver.a(uart.c.obj) - 0x2f (size before relaxing) - *fill* 0x000000003c024ef3 0x1 - .rodata.uart_pattern_pop_pos.str1.4 - 0x000000003c024ef4 0x32 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024f26 0x2 - .rodata.uart_flush_input.str1.4 - 0x000000003c024f28 0x2e esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024f56 0x2 - .rodata.__FUNCTION__.0 - 0x000000003c024f58 0x15 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024f6d 0x3 - .rodata.__FUNCTION__.1 - 0x000000003c024f70 0x15 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024f85 0x3 - .rodata.__FUNCTION__.2 - 0x000000003c024f88 0x13 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024f9b 0x1 - .rodata.__FUNCTION__.3 - 0x000000003c024f9c 0x13 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024faf 0x1 - .rodata.__FUNCTION__.30 - 0x000000003c024fb0 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024fc2 0x2 - .rodata.__FUNCTION__.35 - 0x000000003c024fc4 0x18 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.36 - 0x000000003c024fdc 0x1b esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c024ff7 0x1 - .rodata.__FUNCTION__.38 - 0x000000003c024ff8 0x11 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c025009 0x3 - .rodata.__FUNCTION__.4 - 0x000000003c02500c 0x10 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.5 - 0x000000003c02501c 0x10 esp-idf/driver/libdriver.a(uart.c.obj) - .rodata.__FUNCTION__.6 - 0x000000003c02502c 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c02503e 0x2 - .rodata.__FUNCTION__.8 - 0x000000003c025040 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c025052 0x2 - .rodata.__func__.7 - 0x000000003c025054 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c025066 0x2 - .rodata.__func__.9 - 0x000000003c025068 0x12 esp-idf/driver/libdriver.a(uart.c.obj) - *fill* 0x000000003c02507a 0x2 - .rodata.str1.4 - 0x000000003c02507c 0x7f esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - *fill* 0x000000003c0250fb 0x1 - .rodata.__func__.1 - 0x000000003c0250fc 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .rodata.str1.4 - 0x000000003c025124 0x11a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - *fill* 0x000000003c02523e 0x2 - .rodata.__func__.0 - 0x000000003c025240 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - *fill* 0x000000003c025251 0x3 - .rodata.__func__.2 - 0x000000003c025254 0x12 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - *fill* 0x000000003c025266 0x2 - .rodata.__func__.3 - 0x000000003c025268 0x19 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - *fill* 0x000000003c025281 0x3 - .rodata.__func__.4 - 0x000000003c025284 0x1c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .rodata.__func__.5 - 0x000000003c0252a0 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - *fill* 0x000000003c0252b5 0x3 - .rodata.str1.4 - 0x000000003c0252b8 0x1f9 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x000000003c0254b1 0x3 - .rodata.esp_flash_read_unique_chip_id.str1.4 - 0x000000003c0254b4 0x92 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x000000003c025546 0x2 - .rodata.TAG 0x000000003c025548 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - *fill* 0x000000003c025552 0x2 - .rodata.io_mode_str - 0x000000003c025554 0xb4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .rodata.esp_flash_init_default_chip.str1.4 - 0x000000003c025608 0xfc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .rodata.TAG 0x000000003c025704 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - *fill* 0x000000003c02570e 0x2 - .rodata.str1.4 - 0x000000003c025710 0x47 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *fill* 0x000000003c025757 0x1 - .rodata.__func__.0 - 0x000000003c025758 0x1a esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - *fill* 0x000000003c025772 0x2 - .rodata.str1.4 - 0x000000003c025774 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .rodata.esp_crosscore_int_init.str1.4 - 0x000000003c0257bc 0x2f esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - *fill* 0x000000003c0257eb 0x1 - .rodata.__func__.0 - 0x000000003c0257ec 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - *fill* 0x000000003c025803 0x1 - .rodata.__func__.1 - 0x000000003c025804 0x17 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - *fill* 0x000000003c02581b 0x1 - .rodata.task_wdt_timeout_handling.str1.4 - 0x000000003c02581c 0xbe esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0xc3 (size before relaxing) - *fill* 0x000000003c0258da 0x2 - .rodata.add_entry.str1.4 - 0x000000003c0258dc 0xbb esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025997 0x1 - .rodata.delete_entry.str1.4 - 0x000000003c025998 0x5f esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c0259f7 0x1 - .rodata.task_wdt_isr.str1.4 - 0x000000003c0259f8 0x107 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025aff 0x1 - .rodata.esp_task_wdt_add.str1.4 - 0x000000003c025b00 0x3b esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025b3b 0x1 - .rodata.subscribe_idle.str1.4 - 0x000000003c025b3c 0xa0 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.esp_task_wdt_add_user.str1.4 - 0x000000003c025bdc 0x32 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025c0e 0x2 - .rodata.unsubscribe_idle.str1.4 - 0x000000003c025c10 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025c36 0x2 - .rodata.esp_task_wdt_init.str1.4 - 0x000000003c025c38 0xc8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.16 - 0x000000003c025d00 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025d12 0x2 - .rodata.__FUNCTION__.2 - 0x000000003c025d14 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025d21 0x3 - .rodata.__FUNCTION__.3 - 0x000000003c025d24 0x14 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .rodata.__FUNCTION__.5 - 0x000000003c025d38 0x13 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025d4b 0x1 - .rodata.__FUNCTION__.7 - 0x000000003c025d4c 0xa esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025d56 0x2 - .rodata.__FUNCTION__.8 - 0x000000003c025d58 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025d69 0x3 - .rodata.__func__.11 - 0x000000003c025d6c 0xf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025d7b 0x1 - .rodata.__func__.12 - 0x000000003c025d7c 0x11 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025d8d 0x3 - .rodata.__func__.13 - 0x000000003c025d90 0x1a esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025daa 0x2 - .rodata.__func__.14 - 0x000000003c025dac 0xd esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025db9 0x3 - .rodata.__func__.15 - 0x000000003c025dbc 0x12 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - *fill* 0x000000003c025dce 0x2 - .rodata.get_flash_clock_divider.str1.4 - 0x000000003c025dd0 0x93 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - *fill* 0x000000003c025e63 0x1 - .rodata.prvReturnItemByteBuf.str1.4 - 0x000000003c025e64 0x7f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003c025ee3 0x1 - .rodata.prvGetFreeSize.str1.4 - 0x000000003c025ee4 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003c025f03 0x1 - .rodata.prvReceiveGeneric.str1.4 - 0x000000003c025f04 0x35 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003c025f39 0x3 - .rodata.xRingbufferSendAcquire.str1.4 - 0x000000003c025f3c 0x95 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003c025fd1 0x3 - .rodata.xRingbufferSendComplete.str1.4 - 0x000000003c025fd4 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003c025fea 0x2 - .rodata.xRingbufferSend.str1.4 - 0x000000003c025fec 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.16 - 0x000000003c026014 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003c026026 0x2 - .rodata.__func__.17 - 0x000000003c026028 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003c02603b 0x1 - .rodata.__func__.19 - 0x000000003c02603c 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .rodata.__func__.21 - 0x000000003c02604c 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003c02605b 0x1 - .rodata.__func__.9 - 0x000000003c02605c 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - *fill* 0x000000003c026072 0x2 - .srodata.g_spi_lock_main_flash_dev - 0x000000003c026074 0x4 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - 0x000000003c026074 g_spi_lock_main_flash_dev - .rodata.esp_ota_get_running_partition.str1.4 - 0x000000003c026078 0x5f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - *fill* 0x000000003c0260d7 0x1 - .rodata.__func__.1 - 0x000000003c0260d8 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - *fill* 0x000000003c0260f6 0x2 - .rodata.load_partitions.str1.4 - 0x000000003c0260f8 0x79 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003c026171 0x3 - .rodata.ensure_partitions_loaded.str1.4 - 0x000000003c026174 0x36 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003c0261aa 0x2 - .rodata.esp_partition_next.str1.4 - 0x000000003c0261ac 0x2b esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003c0261d7 0x1 - .rodata.esp_partition_get.str1.4 - 0x000000003c0261d8 0x11 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003c0261e9 0x3 - .rodata.__func__.2 - 0x000000003c0261ec 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003c0261fe 0x2 - .rodata.__func__.3 - 0x000000003c026200 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - *fill* 0x000000003c026213 0x5 - .srodata.cst8 0x000000003c026218 0x8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .srodata.cst8 0x000000003c026220 0x8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .rodata 0x000000003c026220 0x60 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - 0x000000003c026220 __sf_fake_stderr - 0x000000003c026240 __sf_fake_stdout - 0x000000003c026260 __sf_fake_stdin - .rodata.str1.4 - 0x000000003c026280 0x11 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - 0x2 (size before relaxing) - .rodata 0x000000003c026280 0x23c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .rodata.str1.4 - 0x000000003c0264bc 0x35 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - 0x3a (size before relaxing) - *fill* 0x000000003c0264f1 0x7 - .srodata.cst8 0x000000003c0264f8 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .rodata.str1.4 - 0x000000003c026518 0xb9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - 0xbd (size before relaxing) - *fill* 0x000000003c0265d1 0x7 - .srodata.cst8 0x000000003c0265d8 0x40 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - 0x48 (size before relaxing) - .rodata.str1.4 - 0x000000003c026618 0x81 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - 0xad (size before relaxing) - .srodata.cst8 0x000000003c026699 0x10 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - *fill* 0x000000003c026699 0x7 - .rodata 0x000000003c0266a0 0x128 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - 0x000000003c0266b0 __mprec_tens - 0x000000003c026778 __mprec_tinytens - 0x000000003c0267a0 __mprec_bigtens - .srodata.cst8 0x000000003c0267c8 0x8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .rodata 0x000000003c0267d0 0x414 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - 0x000000003c0269ec __chclass - 0x000000003c026aec __state_table - 0x000000003c026b58 __action_table - .rodata.str1.4 - 0x000000003c026be4 0x25 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .rodata 0x000000003c026be4 0x23c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .rodata.str1.4 - 0x000000003c026e20 0x25 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .rodata 0x000000003c026e20 0x101 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - 0x000000003c026e20 _ctype_ - *fill* 0x000000003c026f21 0x3 - .rodata.str1.4 - 0x000000003c026f24 0xe /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - 0x12 (size before relaxing) - *fill* 0x000000003c026f32 0x2 - .rodata 0x000000003c026f34 0x16c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - 0x000000003c026f34 __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) - 0x000000003c0270a0 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) - *(.xt_except_table) - *(.gcc_except_table .gcc_except_table.*) - *(.gnu.linkonce.e.*) - *(.gnu.version_r) - 0x000000003c0270a4 . = ((. + 0x7) & 0xfffffffffffffffc) - *fill* 0x000000003c0270a0 0x4 - 0x000000003c0270a4 __init_priority_array_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array.*) - 0x000000003c0270a4 __init_priority_array_end = ABSOLUTE (.) - 0x000000003c0270a4 __init_array_start = ABSOLUTE (.) - *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .init_array) - .init_array 0x000000003c0270a4 0x4 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .init_array 0x000000003c0270a8 0x4 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x000000003c0270ac __init_array_end = ABSOLUTE (.) - *crtbegin.*(.dtors) - *(EXCLUDE_FILE(*crtend.*) .dtors) - *(SORT_BY_NAME(.dtors.*)) - *(.dtors) - 0x000000003c0270ac __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) - *(.xt_except_desc) - *(.gnu.linkonce.h.*) - 0x000000003c0270ac __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) - *(.xt_except_desc_end) - *(.dynamic) - *(.gnu.version_d) - 0x000000003c0270ac soc_reserved_memory_region_start = ABSOLUTE (.) - *(.reserved_memory_address) - .reserved_memory_address - 0x000000003c0270ac 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x000000003c0270c4 soc_reserved_memory_region_end = ABSOLUTE (.) - 0x000000003c0270c4 _esp_system_init_fn_array_start = ABSOLUTE (.) - *(SORT_BY_INIT_PRIORITY(.esp_system_init_fn.*)) - .esp_system_init_fn.100 - 0x000000003c0270c4 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .esp_system_init_fn.200 - 0x000000003c0270cc 0x8 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x000000003c0270d4 _esp_system_init_fn_array_end = ABSOLUTE (.) - 0x000000003c0270d4 _rodata_end = ABSOLUTE (.) - 0x000000003c0270d4 _lit4_start = ABSOLUTE (.) - *(*.lit4) - *(.lit4.*) - *(.gnu.linkonce.lit4.*) - 0x000000003c0270d4 _lit4_end = ABSOLUTE (.) - 0x000000003c0270d4 . = ALIGN (0x4) - 0x000000003c0270d4 _thread_local_start = ABSOLUTE (.) - *(.tdata) - *(.tdata.*) - *(.tbss) - *(.tbss.*) - 0x000000003c0270d4 _thread_local_end = ABSOLUTE (.) - 0x000000003c0270d4 _rodata_reserved_end = ABSOLUTE (.) - 0x000000003c0270d8 . = ALIGN (ALIGNOF (.eh_frame)) - *fill* 0x000000003c0270d4 0x4 - -.eh_frame 0x000000003c0270d8 0x0 - 0x000000003c0270d8 __eh_frame = ABSOLUTE (.) - *(.eh_frame) - .eh_frame 0x000000003c0270d8 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - 0x28 (size before relaxing) - .eh_frame 0x000000003c0270d8 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - 0x28 (size before relaxing) - .eh_frame 0x000000003c0270d8 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - 0x28 (size before relaxing) - .eh_frame 0x000000003c0270d8 0x0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - 0x28 (size before relaxing) - 0x000000003c0270d8 __eh_frame_end = ABSOLUTE (.) - 0x000000003c0270d8 . = ALIGN (ALIGNOF (.eh_frame_hdr)) - -.rela.dyn 0x000000003c0270d8 0x0 - .rela.text.core_intr_matrix_clear - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.0 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.select_rtc_slow_clk - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_clk_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_perip_clk_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_cache_err_int_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.2 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.do_global_ctors - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.do_system_init_fn - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.start_cpu0_default - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.srodata.g_startup_fn - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_reset_reason_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_apb_backup_dma_lock_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_panic_handler_reconfigure_wdts - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_panic_handler - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.sdata.rtc_wdt_ctx - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.sdata.s_panic_uart - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.sdata.wdt0_context - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.wdt_hal_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.wdt_hal_config_stage - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.brownout_hal_config - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.brownout_hal_intr_enable - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_log_early_timestamp - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.heap_caps_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.assert_valid_block - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.tlsf_free - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.tlsf_realloc - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.s_get_num_reserved_regions - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.s_prepare_reserved_regions - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.reserved_memory_address - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.3 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.6 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.7 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_intr_enable_source - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.4 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_intr_disable_source - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.5 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_intr_alloc_intrstatus - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.8 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.9 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_set_bbpll_always_on - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_8m_enable - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_slow_src_set - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_fast_src_set - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_xtal_freq_get - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_cpu_freq_get_config - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_cpu_freq_to_xtal - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_cpu_freq_to_pll_mhz - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_cpu_freq_to_8m - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.get_dig_dbias_by_efuse - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.calibrate_ocode - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.get_rtc_dbias_by_efuse - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.rtc_clk_cal_internal - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_memprot_iram0_get_def_split_addr - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_memprot_dram0_get_def_split_addr - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_memprot_rtcfast_get_min_split_addr - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_mprot_set_intr_matrix - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.pxPortInitialiseStack - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.xPortStartScheduler - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.vTaskSwitchContext - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.vTaskStartScheduler - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_newlib_locks_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_newlib_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_timer_impl_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.usb_serial_jtag_rx_char - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.usb_serial_jtag_tx_char - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.usb_serial_jtag_fsync - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.usb_serial_jtag_write - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.uart_fsync - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.data.s_context - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_efuse_utility_process - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_efuse_utility_check_errors - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.data.uart_context - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.1 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.12 - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.bootloader_flash_update_id - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_needs_reset_check - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.11 - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_cache2phys - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_flash_init_default_chip - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.iram1.10 - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_chip_generic_suspend_cmd_conf - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_chip_generic_read_unique_id - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.memspi_host_read_id_hs - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.memspi_host_flush_cache - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_error_check_failed_print - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_int_wdt_cpu_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.task_wdt_timeout_handling - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.add_entry - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.delete_entry - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.task_wdt_isr - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.esp_task_wdt_reset - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.efuse_hal_get_major_chip_version - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.efuse_hal_get_minor_chip_version - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.efuse_hal_set_timing - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.efuse_hal_read - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_hal_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_hal_supports_direct_write - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_hal_supports_direct_read - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_hal_setup_read_suspend - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_hal_setup_auto_suspend_mode - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_hal_setup_auto_resume_mode - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_hal_disable_auto_suspend_mode - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.spi_flash_hal_disable_auto_resume_mode - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.systimer_hal_init - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text.load_partitions - 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .rela.text 0x000000003c0270d8 0x0 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - -.eh_frame_hdr 0x000000003c0270d8 0x0 - 0x000000003c0270d8 __eh_frame_hdr = ABSOLUTE (.) - *(.eh_frame_hdr) - 0x000000003c0270d8 __eh_frame_hdr_end = ABSOLUTE (.) - -.flash.rodata_noload - 0x000000003c0270d8 0x0 - 0x000000003c0270d8 . = ALIGN (0x4) - *(.rodata_wlog_debug .rodata_wlog_debug.*) - *(.rodata_wlog_verbose .rodata_wlog_verbose.*) - -.iram0.text_end - 0x000000004038a898 0x168 - *(.iram_end_test) - 0x000000004038a8a8 . = (. + _esp_memprot_prefetch_pad_size) - *fill* 0x000000004038a898 0x10 - 0x000000004038aa00 . = ALIGN (_esp_memprot_align_size) - *fill* 0x000000004038a8a8 0x158 - 0x000000004038aa00 _iram_text_end = ABSOLUTE (.) - -.iram0.data 0x000000004038aa00 0x0 - 0x000000004038aa00 . = ALIGN (0x10) - 0x000000004038aa00 _iram_data_start = ABSOLUTE (.) - *(.iram.data .iram.data.*) - 0x000000004038aa00 _coredump_iram_start = ABSOLUTE (.) - *(.iram2.coredump .iram2.coredump.*) - 0x000000004038aa00 _coredump_iram_end = ABSOLUTE (.) - 0x000000004038aa00 _iram_data_end = ABSOLUTE (.) - -.iram0.bss 0x000000004038aa00 0x0 - 0x000000004038aa00 . = ALIGN (0x10) - 0x000000004038aa00 _iram_bss_start = ABSOLUTE (.) - *(.iram.bss .iram.bss.*) - 0x000000004038aa00 _iram_bss_end = ABSOLUTE (.) - 0x000000004038aa00 . = ALIGN (0x10) - 0x000000004038aa00 _iram_end = ABSOLUTE (.) - -.dram0.heap_start - 0x000000003fc8cfd0 0x0 - 0x000000003fc8cfd0 . = ALIGN (0x10) - 0x000000003fc8cfd0 _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 - [!provide] PROVIDE (jd_prepare = 0x40000104) - [!provide] PROVIDE (jd_decomp = 0x40000108) - 0x000000004000010c PROVIDE (esp_rom_spiflash_wait_idle = 0x4000010c) - [!provide] 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) - [!provide] 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) - [!provide] 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) - [!provide] 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) - [!provide] 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) - 0x0000000040000520 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) - [!provide] PROVIDE (Cache_Ibus_MMU_Set = 0x40000560) - [!provide] 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_usb_serial_jtag_print_is_disabled = 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 - 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 - 0x0000000040001634 mac_tx_set_duration = 0x40001634 - 0x000000004000163c mac_tx_set_plcp0 = 0x4000163c - 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 - 0x0000000040001680 pm_on_data_rx = 0x40001680 - 0x0000000040001684 pm_on_tbtt = 0x40001684 - 0x0000000040001688 pm_parse_beacon = 0x40001688 - 0x000000004000168c pm_process_tim = 0x4000168c - 0x0000000040001694 pm_rx_data_process = 0x40001694 - 0x000000004000169c pm_sleep_for = 0x4000169c - 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 - 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 - 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 - 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) - 0x00000000400005f4 PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set) - 0x0000000040000584 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency) - [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock) - [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable) - [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea) - [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix) - [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs) - [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction) - [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command) - 0x0000000040001954 PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg) - 0x0000000040001958 PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask) - 0x000000004000195c PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg) - 0x0000000040001960 PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask) - 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 - 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 (__swbuf_r = 0x40000474) - 0x0000000040000478 __swbuf = 0x40000478 - 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 - 0x0000000040001764 rcGetSched = 0x40001764 - 0x00000000400017b4 wDevCheckBlockError = 0x400017b4 - 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) - 0x0000000060003000 PROVIDE (SPIMEM0 = 0x60003000) - 0x0000000060004000 PROVIDE (GPIO = 0x60004000) - [!provide] PROVIDE (SDM = 0x60004f00) - 0x0000000060008000 PROVIDE (RTCCNTL = 0x60008000) - [!provide] PROVIDE (RTCIO = 0x60008400) - 0x0000000060008800 PROVIDE (EFUSE = 0x60008800) - [!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) - 0x0000000060040000 PROVIDE (APB_SARADC = 0x60040000) - 0x0000000060043000 PROVIDE (USB_SERIAL_JTAG = 0x60043000) - 0x000000006003f000 PROVIDE (GDMA = 0x6003f000) -OUTPUT(hello_world.elf elf32-littleriscv) - -.debug_info 0x0000000000000000 0xe35ac - .debug_info 0x0000000000000000 0x337 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_info 0x0000000000000337 0x1f7b esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_info 0x00000000000022b2 0x837 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_info 0x0000000000002ae9 0x84a esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_info 0x0000000000003333 0xe11 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_info 0x0000000000004144 0xc0c esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_info 0x0000000000004d50 0x488f esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_info 0x00000000000095df 0x541 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_info 0x0000000000009b20 0x40e esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_info 0x0000000000009f2e 0x4eb0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_info 0x000000000000edde 0x3a7 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_info 0x000000000000f185 0x457 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_info 0x000000000000f5dc 0x3f6e esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_info 0x000000000001354a 0x1b0 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_info 0x00000000000136fa 0x5c47 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_info 0x0000000000019341 0x42ec esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_info 0x000000000001d62d 0xfc4 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_info 0x000000000001e5f1 0x138 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - .debug_info 0x000000000001e729 0x67dc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_info 0x0000000000024f05 0x1914 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_info 0x0000000000026819 0x3027 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_info 0x0000000000029840 0xa0c esp-idf/log/liblog.a(log.c.obj) - .debug_info 0x000000000002a24c 0x6f0 esp-idf/log/liblog.a(log_freertos.c.obj) - .debug_info 0x000000000002a93c 0x1c25 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_info 0x000000000002c561 0xac1 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_info 0x000000000002d022 0x1534 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_info 0x000000000002e556 0x5b06 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_info 0x000000000003405c 0x861 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_info 0x00000000000348bd 0x2fb esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_info 0x0000000000034bb8 0xeaa esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_info 0x0000000000035a62 0x408 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_info 0x0000000000035e6a 0x1d5b esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_info 0x0000000000037bc5 0x826 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_info 0x00000000000383eb 0x35e0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_info 0x000000000003b9cb 0x72d esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_info 0x000000000003c0f8 0x2442 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_info 0x000000000003e53a 0x10bb esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_info 0x000000000003f5f5 0x65e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_info 0x000000000003fc53 0x5fa esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_info 0x000000000004024d 0x3ce5 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_info 0x0000000000043f32 0x228 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_info 0x000000000004415a 0xabf esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_info 0x0000000000044c19 0x1145 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_info 0x0000000000045d5e 0x1510 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_info 0x000000000004726e 0x2e1c esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_info 0x000000000004a08a 0x4e4f esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_info 0x000000000004eed9 0x89 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) - .debug_info 0x000000000004ef62 0x2c8 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_info 0x000000000004f22a 0x26c esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_info 0x000000000004f496 0x443 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_info 0x000000000004f8d9 0xe26 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_info 0x00000000000506ff 0xfdd esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_info 0x00000000000516dc 0x339 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_info 0x0000000000051a15 0xa9f esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_info 0x00000000000524b4 0x14ca esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_info 0x000000000005397e 0xe2d esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_info 0x00000000000547ab 0x117a esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_info 0x0000000000055925 0x610 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_info 0x0000000000055f35 0x300f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_info 0x0000000000058f44 0x3b2 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_info 0x00000000000592f6 0x1b5f esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_info 0x000000000005ae55 0x278 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_info 0x000000000005b0cd 0x194b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_info 0x000000000005ca18 0x13d esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_info 0x000000000005cb55 0x5105 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_info 0x0000000000061c5a 0x1a2a esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .debug_info 0x0000000000063684 0x2a94 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .debug_info 0x0000000000066118 0x43bc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .debug_info 0x000000000006a4d4 0x12c3 esp-idf/main/libmain.a(hello_world_main.c.obj) - .debug_info 0x000000000006b797 0x179 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_info 0x000000000006b910 0x469 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_info 0x000000000006bd79 0x193a esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_info 0x000000000006d6b3 0xeed esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_info 0x000000000006e5a0 0x1386 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x000000000006f926 0x255b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_info 0x0000000000071e81 0x84a5 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_info 0x000000000007a326 0x36a3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_info 0x000000000007d9c9 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_info 0x000000000007da68 0x2226 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_info 0x000000000007fc8e 0x3fd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_info 0x000000000008008b 0x1dd esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_info 0x0000000000080268 0x4b3 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_info 0x000000000008071b 0x1458 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_info 0x0000000000081b73 0x35c esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_info 0x0000000000081ecf 0x3e9b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_info 0x0000000000085d6a 0x624b esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_info 0x000000000008bfb5 0x117e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_info 0x000000000008d133 0x9b9 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_info 0x000000000008daec 0x121c esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .debug_info 0x000000000008ed08 0xc79 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_info 0x000000000008f981 0x23bf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_info 0x0000000000091d40 0x1009 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_info 0x0000000000092d49 0xeca esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_info 0x0000000000093c13 0x1062 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_info 0x0000000000094c75 0x1425 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_info 0x000000000009609a 0xeef esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_info 0x0000000000096f89 0xeef esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_info 0x0000000000097e78 0x447b esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_info 0x000000000009c2f3 0x39e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_info 0x000000000009c691 0x61e esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_info 0x000000000009ccaf 0x541 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_info 0x000000000009d1f0 0x441e esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_info 0x00000000000a160e 0x5e0c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_info 0x00000000000a741a 0x1ff2 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x00000000000a940c 0x2b6a esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_info 0x00000000000abf76 0x3e8a esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_info 0x00000000000afe00 0x519d esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_info 0x00000000000b4f9d 0x454 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_info 0x00000000000b53f1 0x1764 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_info 0x00000000000b6b55 0x4677 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_info 0x00000000000bb1cc 0x134 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_info 0x00000000000bb300 0xd5 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_info 0x00000000000bb3d5 0x1bb esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - .debug_info 0x00000000000bb590 0x24 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_info 0x00000000000bb5b4 0x35b8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_info 0x00000000000beb6c 0x1e60 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .debug_info 0x00000000000c09cc 0x2a08 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_info 0x00000000000c33d4 0x1975 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_info 0x00000000000c4d49 0x1cf3 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_info 0x00000000000c6a3c 0x793 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_info 0x00000000000c71cf 0x7e4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_info 0x00000000000c79b3 0x761 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_info 0x00000000000c8114 0x7b5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_info 0x00000000000c88c9 0x1f6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .debug_info 0x00000000000c8abf 0x1f6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .debug_info 0x00000000000c8cb5 0x42 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .debug_info 0x00000000000c8cf7 0x840 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .debug_info 0x00000000000c9537 0xbb1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .debug_info 0x00000000000ca0e8 0x1103 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .debug_info 0x00000000000cb1eb 0xb87 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .debug_info 0x00000000000cbd72 0x98f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .debug_info 0x00000000000cc701 0xf87 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .debug_info 0x00000000000cd688 0xc18 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .debug_info 0x00000000000ce2a0 0x940 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .debug_info 0x00000000000cebe0 0xbcd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .debug_info 0x00000000000cf7ad 0x997 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .debug_info 0x00000000000d0144 0xb54 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .debug_info 0x00000000000d0c98 0xa00 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .debug_info 0x00000000000d1698 0xaad /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .debug_info 0x00000000000d2145 0xb27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .debug_info 0x00000000000d2c6c 0x8ef /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_info 0x00000000000d355b 0x2ae7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_info 0x00000000000d6042 0x975 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .debug_info 0x00000000000d69b7 0x98b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .debug_info 0x00000000000d7342 0x1825 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .debug_info 0x00000000000d8b67 0xafe /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .debug_info 0x00000000000d9665 0x87e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .debug_info 0x00000000000d9ee3 0xbe9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .debug_info 0x00000000000daacc 0x1c47 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .debug_info 0x00000000000dc713 0x1cb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_info 0x00000000000dc8de 0x2016 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_info 0x00000000000de8f4 0x22d9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_info 0x00000000000e0bcd 0xb9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - .debug_info 0x00000000000e0c86 0xcfe /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .debug_info 0x00000000000e1984 0xbe2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_info 0x00000000000e2566 0xba7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .debug_info 0x00000000000e310d 0x49f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_abbrev 0x0000000000000000 0x1acce - .debug_abbrev 0x0000000000000000 0x1b2 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_abbrev 0x00000000000001b2 0x4b8 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_abbrev 0x000000000000066a 0x2c9 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_abbrev 0x0000000000000933 0x1fb esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_abbrev 0x0000000000000b2e 0x28b esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_abbrev 0x0000000000000db9 0x32e esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_abbrev 0x00000000000010e7 0x426 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_abbrev 0x000000000000150d 0x18f esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_abbrev 0x000000000000169c 0x215 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_abbrev 0x00000000000018b1 0x45b esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_abbrev 0x0000000000001d0c 0x190 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_abbrev 0x0000000000001e9c 0x1f3 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_abbrev 0x000000000000208f 0x2ab esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_abbrev 0x000000000000233a 0x12e esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_abbrev 0x0000000000002468 0x4d8 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_abbrev 0x0000000000002940 0x37c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_abbrev 0x0000000000002cbc 0x35e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_abbrev 0x000000000000301a 0x97 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - .debug_abbrev 0x00000000000030b1 0x40d esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_abbrev 0x00000000000034be 0x2dc esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_abbrev 0x000000000000379a 0x21b esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_abbrev 0x00000000000039b5 0x3eb esp-idf/log/liblog.a(log.c.obj) - .debug_abbrev 0x0000000000003da0 0x269 esp-idf/log/liblog.a(log_freertos.c.obj) - .debug_abbrev 0x0000000000004009 0x3e8 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_abbrev 0x00000000000043f1 0x2dd esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_abbrev 0x00000000000046ce 0x412 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_abbrev 0x0000000000004ae0 0x492 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_abbrev 0x0000000000004f72 0x2ab esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_abbrev 0x000000000000521d 0xfc esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_abbrev 0x0000000000005319 0x3cf esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_abbrev 0x00000000000056e8 0x1e6 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_abbrev 0x00000000000058ce 0x537 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_abbrev 0x0000000000005e05 0x220 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_abbrev 0x0000000000006025 0x365 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_abbrev 0x000000000000638a 0x215 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_abbrev 0x000000000000659f 0x50c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_abbrev 0x0000000000006aab 0x3a6 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_abbrev 0x0000000000006e51 0x21b esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_abbrev 0x000000000000706c 0x1b9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_abbrev 0x0000000000007225 0x4bb esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_abbrev 0x00000000000076e0 0xd3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_abbrev 0x00000000000077b3 0x3df esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_abbrev 0x0000000000007b92 0x344 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_abbrev 0x0000000000007ed6 0x390 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_abbrev 0x0000000000008266 0x32b esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_abbrev 0x0000000000008591 0x4d3 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_abbrev 0x0000000000008a64 0x40 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) - .debug_abbrev 0x0000000000008aa4 0x111 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_abbrev 0x0000000000008bb5 0x145 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_abbrev 0x0000000000008cfa 0x205 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_abbrev 0x0000000000008eff 0x2a4 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_abbrev 0x00000000000091a3 0x360 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_abbrev 0x0000000000009503 0x1b7 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_abbrev 0x00000000000096ba 0x242 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_abbrev 0x00000000000098fc 0x2d1 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_abbrev 0x0000000000009bcd 0x2cc esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_abbrev 0x0000000000009e99 0x35a esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_abbrev 0x000000000000a1f3 0x1d4 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_abbrev 0x000000000000a3c7 0x60c esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_abbrev 0x000000000000a9d3 0x1bf esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_abbrev 0x000000000000ab92 0x482 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_abbrev 0x000000000000b014 0x186 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_abbrev 0x000000000000b19a 0x411 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_abbrev 0x000000000000b5ab 0xa0 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_abbrev 0x000000000000b64b 0x52f esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_abbrev 0x000000000000bb7a 0x29d esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .debug_abbrev 0x000000000000be17 0x4d0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .debug_abbrev 0x000000000000c2e7 0x5ac esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .debug_abbrev 0x000000000000c893 0x29f esp-idf/main/libmain.a(hello_world_main.c.obj) - .debug_abbrev 0x000000000000cb32 0x10c esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_abbrev 0x000000000000cc3e 0x211 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_abbrev 0x000000000000ce4f 0xf5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_abbrev 0x000000000000cf44 0x28d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_abbrev 0x000000000000d1d1 0x390 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x000000000000d561 0x347 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_abbrev 0x000000000000d8a8 0x647 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_abbrev 0x000000000000deef 0x4de esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_abbrev 0x000000000000e3cd 0x62 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_abbrev 0x000000000000e42f 0x2e4 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_abbrev 0x000000000000e713 0x1c8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_abbrev 0x000000000000e8db 0x12a esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_abbrev 0x000000000000ea05 0x246 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_abbrev 0x000000000000ec4b 0x419 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_abbrev 0x000000000000f064 0x21d esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_abbrev 0x000000000000f281 0x539 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_abbrev 0x000000000000f7ba 0x530 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_abbrev 0x000000000000fcea 0x3b8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_abbrev 0x00000000000100a2 0x243 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_abbrev 0x00000000000102e5 0x26e esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .debug_abbrev 0x0000000000010553 0x142 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_abbrev 0x0000000000010695 0x471 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_abbrev 0x0000000000010b06 0x229 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_abbrev 0x0000000000010d2f 0x1d2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_abbrev 0x0000000000010f01 0x25f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_abbrev 0x0000000000011160 0x280 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_abbrev 0x00000000000113e0 0x1d2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_abbrev 0x00000000000115b2 0x1e3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_abbrev 0x0000000000011795 0x3f0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_abbrev 0x0000000000011b85 0x179 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_abbrev 0x0000000000011cfe 0x20b esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_abbrev 0x0000000000011f09 0x1af esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_abbrev 0x00000000000120b8 0x33b esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_abbrev 0x00000000000123f3 0x4bf esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_abbrev 0x00000000000128b2 0x308 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x0000000000012bba 0x3c3 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_abbrev 0x0000000000012f7d 0x3de esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_abbrev 0x000000000001335b 0x48a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_abbrev 0x00000000000137e5 0x1e6 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_abbrev 0x00000000000139cb 0x364 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_abbrev 0x0000000000013d2f 0x445 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_abbrev 0x0000000000014174 0xa3 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_abbrev 0x0000000000014217 0x95 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_abbrev 0x00000000000142ac 0xf0 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - .debug_abbrev 0x000000000001439c 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_abbrev 0x00000000000143b0 0x349 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_abbrev 0x00000000000146f9 0x482 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .debug_abbrev 0x0000000000014b7b 0x3c7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_abbrev 0x0000000000014f42 0x369 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_abbrev 0x00000000000152ab 0x1de esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_abbrev 0x0000000000015489 0x1bf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_abbrev 0x0000000000015648 0x1ca /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_abbrev 0x0000000000015812 0x1a6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_abbrev 0x00000000000159b8 0x1bb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_abbrev 0x0000000000015b73 0x11d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .debug_abbrev 0x0000000000015c90 0x11d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .debug_abbrev 0x0000000000015dad 0x38 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .debug_abbrev 0x0000000000015de5 0x196 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .debug_abbrev 0x0000000000015f7b 0x319 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .debug_abbrev 0x0000000000016294 0x3f9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .debug_abbrev 0x000000000001668d 0x2b8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .debug_abbrev 0x0000000000016945 0x247 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .debug_abbrev 0x0000000000016b8c 0x317 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .debug_abbrev 0x0000000000016ea3 0x23a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .debug_abbrev 0x00000000000170dd 0x1c1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .debug_abbrev 0x000000000001729e 0x26c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .debug_abbrev 0x000000000001750a 0x244 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .debug_abbrev 0x000000000001774e 0x2ad /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .debug_abbrev 0x00000000000179fb 0x242 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .debug_abbrev 0x0000000000017c3d 0x268 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .debug_abbrev 0x0000000000017ea5 0x255 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .debug_abbrev 0x00000000000180fa 0x1d1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_abbrev 0x00000000000182cb 0x49a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_abbrev 0x0000000000018765 0x230 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .debug_abbrev 0x0000000000018995 0x21d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .debug_abbrev 0x0000000000018bb2 0x325 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .debug_abbrev 0x0000000000018ed7 0x2c4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .debug_abbrev 0x000000000001919b 0x1be /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .debug_abbrev 0x0000000000019359 0x260 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .debug_abbrev 0x00000000000195b9 0x42a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .debug_abbrev 0x00000000000199e3 0x145 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_abbrev 0x0000000000019b28 0x3cc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_abbrev 0x0000000000019ef4 0x456 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_abbrev 0x000000000001a34a 0x62 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - .debug_abbrev 0x000000000001a3ac 0x2d7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .debug_abbrev 0x000000000001a683 0x25d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_abbrev 0x000000000001a8e0 0x247 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .debug_abbrev 0x000000000001ab27 0x1a7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_loc 0x0000000000000000 0x408d8 - .debug_loc 0x0000000000000000 0x164 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_loc 0x0000000000000164 0x134c esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_loc 0x00000000000014b0 0x495 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_loc 0x0000000000001945 0x3f5 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_loc 0x0000000000001d3a 0x690 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_loc 0x00000000000023ca 0xc4 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_loc 0x000000000000248e 0x21e esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_loc 0x00000000000026ac 0xa4 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_loc 0x0000000000002750 0x129 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_loc 0x0000000000002879 0xda esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_loc 0x0000000000002953 0x21 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_loc 0x0000000000002974 0x283 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_loc 0x0000000000002bf7 0x256 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_loc 0x0000000000002e4d 0x20b esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_loc 0x0000000000003058 0x55e esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_loc 0x00000000000035b6 0x63 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - .debug_loc 0x0000000000003619 0xcc5 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_loc 0x00000000000042de 0x24a esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_loc 0x0000000000004528 0x4d esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_loc 0x0000000000004575 0x550 esp-idf/log/liblog.a(log.c.obj) - .debug_loc 0x0000000000004ac5 0x50 esp-idf/log/liblog.a(log_freertos.c.obj) - .debug_loc 0x0000000000004b15 0x1706 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_loc 0x000000000000621b 0x710 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_loc 0x000000000000692b 0xd91 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_loc 0x00000000000076bc 0x60c1 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_loc 0x000000000000d77d 0x3d7 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_loc 0x000000000000db54 0x6ce esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_loc 0x000000000000e222 0x99 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_loc 0x000000000000e2bb 0x1466 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_loc 0x000000000000f721 0x377 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_loc 0x000000000000fa98 0x2ea esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_loc 0x000000000000fd82 0x2cc esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_loc 0x000000000001004e 0xb71 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_loc 0x0000000000010bbf 0x6ed esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_loc 0x00000000000112ac 0x187 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_loc 0x0000000000011433 0x3ee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_loc 0x0000000000011821 0x448e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_loc 0x0000000000015caf 0x246 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_loc 0x0000000000015ef5 0x285 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_loc 0x000000000001617a 0x301 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_loc 0x000000000001647b 0x208 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_loc 0x0000000000016683 0x2b5a esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_loc 0x00000000000191dd 0x3c05 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_loc 0x000000000001cde2 0x68 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_loc 0x000000000001ce4a 0x67 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_loc 0x000000000001ceb1 0x278 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_loc 0x000000000001d129 0x41a esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_loc 0x000000000001d543 0x523 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_loc 0x000000000001da66 0xa5 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_loc 0x000000000001db0b 0x191 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_loc 0x000000000001dc9c 0x21 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_loc 0x000000000001dcbd 0x3c6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_loc 0x000000000001e083 0x711 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_loc 0x000000000001e794 0xd0 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_loc 0x000000000001e864 0x3a7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_loc 0x000000000001ec0b 0x130 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_loc 0x000000000001ed3b 0xc95 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_loc 0x000000000001f9d0 0x29 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_loc 0x000000000001f9f9 0x353 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_loc 0x000000000001fd4c 0x45 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_loc 0x000000000001fd91 0x4321 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_loc 0x00000000000240b2 0x575 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .debug_loc 0x0000000000024627 0x86f esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .debug_loc 0x0000000000024e96 0x1232 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .debug_loc 0x00000000000260c8 0x1f esp-idf/main/libmain.a(hello_world_main.c.obj) - .debug_loc 0x00000000000260e7 0x74 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_loc 0x000000000002615b 0x1eb esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_loc 0x0000000000026346 0x898 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_loc 0x0000000000026bde 0x1134 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x0000000000027d12 0x32c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_loc 0x000000000002803e 0x421e esp-idf/driver/libdriver.a(uart.c.obj) - .debug_loc 0x000000000002c25c 0xc81 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_loc 0x000000000002cedd 0x144 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_loc 0x000000000002d021 0xfd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_loc 0x000000000002d11e 0x101 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_loc 0x000000000002d21f 0x124c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_loc 0x000000000002e46b 0xde esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_loc 0x000000000002e549 0x1a61 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_loc 0x000000000002ffaa 0x6e1 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_loc 0x000000000003068b 0x702 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_loc 0x0000000000030d8d 0x134 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_loc 0x0000000000030ec1 0xbdc esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .debug_loc 0x0000000000031a9d 0x15a4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_loc 0x0000000000033041 0x164 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_loc 0x00000000000331a5 0x95 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_loc 0x000000000003323a 0x1d5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_loc 0x000000000003340f 0x7af esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_loc 0x0000000000033bbe 0xf6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_loc 0x0000000000033cb4 0xf6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_loc 0x0000000000033daa 0x7c1 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_loc 0x000000000003456b 0x32e esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_loc 0x0000000000034899 0x1a0 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_loc 0x0000000000034a39 0x3bc esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_loc 0x0000000000034df5 0x50 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_loc 0x0000000000034e45 0xbb9 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_loc 0x00000000000359fe 0x146 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_loc 0x0000000000035b44 0xe0f esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_loc 0x0000000000036953 0x314 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_loc 0x0000000000036c67 0x121a esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_loc 0x0000000000037e81 0x197 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_loc 0x0000000000038018 0xa43 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_loc 0x0000000000038a5b 0xb50 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_loc 0x00000000000395ab 0xe9 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_loc 0x0000000000039694 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_loc 0x00000000000396e4 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - .debug_loc 0x0000000000039710 0x3b8f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_loc 0x000000000003d29f 0x1864 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .debug_loc 0x000000000003eb03 0x136c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_loc 0x000000000003fe6f 0xa69 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - -.debug_aranges 0x0000000000000000 0x3bc8 - .debug_aranges - 0x0000000000000000 0x30 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_aranges - 0x0000000000000030 0x160 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_aranges - 0x0000000000000190 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_aranges - 0x00000000000001f0 0x58 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_aranges - 0x0000000000000248 0xb8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_aranges - 0x0000000000000300 0x28 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_aranges - 0x0000000000000328 0x38 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_aranges - 0x0000000000000360 0x28 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_aranges - 0x0000000000000388 0x60 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_aranges - 0x00000000000003e8 0x50 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_aranges - 0x0000000000000438 0x30 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_aranges - 0x0000000000000468 0x40 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_aranges - 0x00000000000004a8 0x20 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_aranges - 0x00000000000004c8 0x30 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_aranges - 0x00000000000004f8 0x68 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_aranges - 0x0000000000000560 0x58 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_aranges - 0x00000000000005b8 0x68 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_aranges - 0x0000000000000620 0x20 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - .debug_aranges - 0x0000000000000640 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_aranges - 0x00000000000006b0 0x40 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_aranges - 0x00000000000006f0 0x30 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_aranges - 0x0000000000000720 0x50 esp-idf/log/liblog.a(log.c.obj) - .debug_aranges - 0x0000000000000770 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) - .debug_aranges - 0x00000000000007b8 0x120 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_aranges - 0x00000000000008d8 0x48 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_aranges - 0x0000000000000920 0xd0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_aranges - 0x00000000000009f0 0xe8 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_aranges - 0x0000000000000ad8 0x40 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_aranges - 0x0000000000000b18 0x18 esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_aranges - 0x0000000000000b30 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_aranges - 0x0000000000000ba8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_aranges - 0x0000000000000c08 0xd0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_aranges - 0x0000000000000cd8 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_aranges - 0x0000000000000d38 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_aranges - 0x0000000000000d90 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_aranges - 0x0000000000000df8 0x120 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_aranges - 0x0000000000000f18 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_aranges - 0x0000000000000f70 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_aranges - 0x0000000000000fc8 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_aranges - 0x0000000000001030 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_aranges - 0x0000000000001128 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_aranges - 0x0000000000001160 0xa8 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_aranges - 0x0000000000001208 0x48 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_aranges - 0x0000000000001250 0x30 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_aranges - 0x0000000000001280 0x158 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_aranges - 0x00000000000013d8 0x2a8 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_aranges - 0x0000000000001680 0x18 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) - .debug_aranges - 0x0000000000001698 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_aranges - 0x00000000000016d8 0x20 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_aranges - 0x00000000000016f8 0x30 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_aranges - 0x0000000000001728 0x98 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_aranges - 0x00000000000017c0 0xd8 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_aranges - 0x0000000000001898 0x40 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_aranges - 0x00000000000018d8 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_aranges - 0x0000000000001900 0x28 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_aranges - 0x0000000000001928 0x58 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_aranges - 0x0000000000001980 0x80 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_aranges - 0x0000000000001a00 0x50 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_aranges - 0x0000000000001a50 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_aranges - 0x0000000000001aa0 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_aranges - 0x0000000000001ac8 0xd8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_aranges - 0x0000000000001ba0 0x30 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_aranges - 0x0000000000001bd0 0x90 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_aranges - 0x0000000000001c60 0x38 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_aranges - 0x0000000000001c98 0x1c8 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_aranges - 0x0000000000001e60 0x98 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .debug_aranges - 0x0000000000001ef8 0xd0 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .debug_aranges - 0x0000000000001fc8 0x110 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .debug_aranges - 0x00000000000020d8 0x20 esp-idf/main/libmain.a(hello_world_main.c.obj) - .debug_aranges - 0x00000000000020f8 0x20 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_aranges - 0x0000000000002118 0x68 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_aranges - 0x0000000000002180 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_aranges - 0x0000000000002198 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_aranges - 0x0000000000002228 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x00000000000022f8 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_aranges - 0x0000000000002338 0x240 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_aranges - 0x0000000000002578 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_aranges - 0x0000000000002618 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_aranges - 0x0000000000002638 0x40 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_aranges - 0x0000000000002678 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_aranges - 0x00000000000026b8 0x30 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_aranges - 0x00000000000026e8 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_aranges - 0x0000000000002760 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_aranges - 0x00000000000027e0 0x48 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_aranges - 0x0000000000002828 0x108 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_aranges - 0x0000000000002930 0x50 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_aranges - 0x0000000000002980 0xa8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_aranges - 0x0000000000002a28 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_aranges - 0x0000000000002a68 0x60 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .debug_aranges - 0x0000000000002ac8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_aranges - 0x0000000000002ae0 0x110 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_aranges - 0x0000000000002bf0 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_aranges - 0x0000000000002c28 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_aranges - 0x0000000000002c50 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_aranges - 0x0000000000002c88 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_aranges - 0x0000000000002ce8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_aranges - 0x0000000000002d10 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_aranges - 0x0000000000002d38 0x78 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_aranges - 0x0000000000002db0 0x30 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_aranges - 0x0000000000002de0 0x48 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_aranges - 0x0000000000002e28 0x68 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_aranges - 0x0000000000002e90 0x30 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_aranges - 0x0000000000002ec0 0xb8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_aranges - 0x0000000000002f78 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x0000000000002fd0 0xf8 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_aranges - 0x00000000000030c8 0x40 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_aranges - 0x0000000000003108 0xa8 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_aranges - 0x00000000000031b0 0x48 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_aranges - 0x00000000000031f8 0x88 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_aranges - 0x0000000000003280 0x58 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_aranges - 0x00000000000032d8 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_aranges - 0x0000000000003308 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_aranges - 0x0000000000003330 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - .debug_aranges - 0x0000000000003350 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_aranges - 0x0000000000003370 0x168 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_aranges - 0x00000000000034d8 0xb0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .debug_aranges - 0x0000000000003588 0xf8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_aranges - 0x0000000000003680 0x70 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_aranges - 0x00000000000036f0 0x28 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_aranges - 0x0000000000003718 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_aranges - 0x0000000000003738 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_aranges - 0x0000000000003758 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_aranges - 0x0000000000003778 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_aranges - 0x0000000000003798 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .debug_aranges - 0x00000000000037b8 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .debug_aranges - 0x00000000000037d8 0x18 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .debug_aranges - 0x00000000000037f0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .debug_aranges - 0x0000000000003810 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .debug_aranges - 0x0000000000003830 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .debug_aranges - 0x0000000000003850 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .debug_aranges - 0x0000000000003870 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .debug_aranges - 0x0000000000003890 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .debug_aranges - 0x00000000000038b0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .debug_aranges - 0x00000000000038d0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .debug_aranges - 0x00000000000038f0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .debug_aranges - 0x0000000000003910 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .debug_aranges - 0x0000000000003930 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .debug_aranges - 0x0000000000003950 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .debug_aranges - 0x0000000000003970 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .debug_aranges - 0x0000000000003990 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .debug_aranges - 0x00000000000039b0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_aranges - 0x00000000000039d0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_aranges - 0x00000000000039f0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .debug_aranges - 0x0000000000003a10 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .debug_aranges - 0x0000000000003a30 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .debug_aranges - 0x0000000000003a50 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .debug_aranges - 0x0000000000003a70 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .debug_aranges - 0x0000000000003a90 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .debug_aranges - 0x0000000000003ab0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .debug_aranges - 0x0000000000003ad0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_aranges - 0x0000000000003af0 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_aranges - 0x0000000000003b10 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_aranges - 0x0000000000003b30 0x18 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - .debug_aranges - 0x0000000000003b48 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .debug_aranges - 0x0000000000003b68 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_aranges - 0x0000000000003b88 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .debug_aranges - 0x0000000000003ba8 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_ranges 0x0000000000000000 0x6488 - .debug_ranges 0x0000000000000000 0x68 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_ranges 0x0000000000000068 0x188 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_ranges 0x00000000000001f0 0x90 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_ranges 0x0000000000000280 0x48 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_ranges 0x00000000000002c8 0xa8 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_ranges 0x0000000000000370 0x18 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_ranges 0x0000000000000388 0x28 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_ranges 0x00000000000003b0 0x18 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_ranges 0x00000000000003c8 0x68 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_ranges 0x0000000000000430 0x58 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_ranges 0x0000000000000488 0x20 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_ranges 0x00000000000004a8 0x30 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_ranges 0x00000000000004d8 0x10 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_ranges 0x00000000000004e8 0x20 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_ranges 0x0000000000000508 0x58 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_ranges 0x0000000000000560 0x48 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_ranges 0x00000000000005a8 0xc0 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_ranges 0x0000000000000668 0x10 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - .debug_ranges 0x0000000000000678 0x78 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_ranges 0x00000000000006f0 0x68 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_ranges 0x0000000000000758 0x20 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_ranges 0x0000000000000778 0xb8 esp-idf/log/liblog.a(log.c.obj) - .debug_ranges 0x0000000000000830 0x38 esp-idf/log/liblog.a(log_freertos.c.obj) - .debug_ranges 0x0000000000000868 0x2f8 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_ranges 0x0000000000000b60 0xf0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_ranges 0x0000000000000c50 0xf0 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_ranges 0x0000000000000d40 0xc68 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_ranges 0x00000000000019a8 0x70 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_ranges 0x0000000000001a18 0x170 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_ranges 0x0000000000001b88 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_ranges 0x0000000000001bd8 0x1b0 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_ranges 0x0000000000001d88 0x100 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_ranges 0x0000000000001e88 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_ranges 0x0000000000001ed0 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_ranges 0x0000000000001f28 0x238 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_ranges 0x0000000000002160 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_ranges 0x00000000000021c0 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_ranges 0x0000000000002208 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_ranges 0x0000000000002260 0x6c8 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_ranges 0x0000000000002928 0x28 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_ranges 0x0000000000002950 0xb0 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_ranges 0x0000000000002a00 0x50 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_ranges 0x0000000000002a50 0x68 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_ranges 0x0000000000002ab8 0x230 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_ranges 0x0000000000002ce8 0x570 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_ranges 0x0000000000003258 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_ranges 0x0000000000003288 0x28 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_ranges 0x00000000000032b0 0x70 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_ranges 0x0000000000003320 0x88 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_ranges 0x00000000000033a8 0x110 esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_ranges 0x00000000000034b8 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_ranges 0x00000000000034e8 0x78 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_ranges 0x0000000000003560 0x18 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_ranges 0x0000000000003578 0x60 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_ranges 0x00000000000035d8 0xa0 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_ranges 0x0000000000003678 0x40 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_ranges 0x00000000000036b8 0x88 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_ranges 0x0000000000003740 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_ranges 0x0000000000003758 0x1a8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_ranges 0x0000000000003900 0x20 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_ranges 0x0000000000003920 0x80 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_ranges 0x00000000000039a0 0x28 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_ranges 0x00000000000039c8 0x5a0 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_ranges 0x0000000000003f68 0x88 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .debug_ranges 0x0000000000003ff0 0xf8 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .debug_ranges 0x00000000000040e8 0x260 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .debug_ranges 0x0000000000004348 0x28 esp-idf/main/libmain.a(hello_world_main.c.obj) - .debug_ranges 0x0000000000004370 0x10 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_ranges 0x0000000000004380 0x70 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_ranges 0x00000000000043f0 0x98 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_ranges 0x0000000000004488 0x150 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x00000000000045d8 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_ranges 0x00000000000046c8 0x390 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_ranges 0x0000000000004a58 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_ranges 0x0000000000004b00 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_ranges 0x0000000000004b10 0x48 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_ranges 0x0000000000004b58 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_ranges 0x0000000000004b88 0x20 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_ranges 0x0000000000004ba8 0x68 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_ranges 0x0000000000004c10 0x2a8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_ranges 0x0000000000004eb8 0x38 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_ranges 0x0000000000004ef0 0x1b0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_ranges 0x00000000000050a0 0x90 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_ranges 0x0000000000005130 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_ranges 0x00000000000051e0 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_ranges 0x0000000000005210 0x50 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .debug_ranges 0x0000000000005260 0x188 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_ranges 0x00000000000053e8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_ranges 0x0000000000005410 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_ranges 0x0000000000005428 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_ranges 0x0000000000005450 0x68 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_ranges 0x00000000000054b8 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_ranges 0x00000000000054d0 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_ranges 0x00000000000054e8 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_ranges 0x0000000000005550 0x20 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_ranges 0x0000000000005570 0x50 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_ranges 0x00000000000055c0 0xa0 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_ranges 0x0000000000005660 0x20 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_ranges 0x0000000000005680 0x1c8 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_ranges 0x0000000000005848 0x78 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_ranges 0x00000000000058c0 0x150 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_ranges 0x0000000000005a10 0x48 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_ranges 0x0000000000005a58 0x208 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_ranges 0x0000000000005c60 0x38 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_ranges 0x0000000000005c98 0x90 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_ranges 0x0000000000005d28 0x180 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_ranges 0x0000000000005ea8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_ranges 0x0000000000005ec8 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_ranges 0x0000000000005ee0 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - .debug_ranges 0x0000000000005ef0 0x170 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_ranges 0x0000000000006060 0x1c0 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .debug_ranges 0x0000000000006220 0x160 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_ranges 0x0000000000006380 0xf0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_ranges 0x0000000000006470 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj) - -.debug_line 0x0000000000000000 0x83c0a - .debug_line 0x0000000000000000 0x494 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_line 0x0000000000000494 0x2139 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_line 0x00000000000025cd 0xa8f esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_line 0x000000000000305c 0xa53 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_line 0x0000000000003aaf 0x686 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_line 0x0000000000004135 0xb7f esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_line 0x0000000000004cb4 0x9d4 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_line 0x0000000000005688 0x3d9 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_line 0x0000000000005a61 0x731 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_line 0x0000000000006192 0xce0 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_line 0x0000000000006e72 0x44b esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_line 0x00000000000072bd 0x511 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_line 0x00000000000077ce 0x506 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_line 0x0000000000007cd4 0x303 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_line 0x0000000000007fd7 0xafe esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_line 0x0000000000008ad5 0x68f esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_line 0x0000000000009164 0xd10 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_line 0x0000000000009e74 0x19f esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - .debug_line 0x000000000000a013 0x10fe esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_line 0x000000000000b111 0x4d6 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_line 0x000000000000b5e7 0x2e7 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_line 0x000000000000b8ce 0x96c esp-idf/log/liblog.a(log.c.obj) - .debug_line 0x000000000000c23a 0x800 esp-idf/log/liblog.a(log_freertos.c.obj) - .debug_line 0x000000000000ca3a 0x1b22 esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_line 0x000000000000e55c 0xcdb esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_line 0x000000000000f237 0x11b4 esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_line 0x00000000000103eb 0x463f esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_line 0x0000000000014a2a 0x9f1 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_line 0x000000000001541b 0x229 esp-idf/heap/libheap.a(memory_layout.c.obj) - .debug_line 0x0000000000015644 0x104d esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_line 0x0000000000016691 0x5aa esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_line 0x0000000000016c3b 0x2631 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_line 0x000000000001926c 0x1039 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_line 0x000000000001a2a5 0x9c4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_line 0x000000000001ac69 0x8a3 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_line 0x000000000001b50c 0x199e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_line 0x000000000001ceaa 0x1763 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_line 0x000000000001e60d 0xf48 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_line 0x000000000001f555 0x9f9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_line 0x000000000001ff4e 0x4543 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_line 0x0000000000024491 0x352 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_line 0x00000000000247e3 0xb62 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_line 0x0000000000025345 0x831 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_line 0x0000000000025b76 0x713 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_line 0x0000000000026289 0x2f40 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_line 0x00000000000291c9 0x593d esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_line 0x000000000002eb06 0x4c esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) - .debug_line 0x000000000002eb52 0x59a esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_line 0x000000000002f0ec 0x3d1 esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_line 0x000000000002f4bd 0x598 esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_line 0x000000000002fa55 0x642 esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_line 0x0000000000030097 0xb4c esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_line 0x0000000000030be3 0x379 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_line 0x0000000000030f5c 0x5f4 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_line 0x0000000000031550 0x459 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_line 0x00000000000319a9 0x6ac esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_line 0x0000000000032055 0xdcb esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_line 0x0000000000032e20 0x4c2 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_line 0x00000000000332e2 0xd2f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_line 0x0000000000034011 0x372 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_line 0x0000000000034383 0x18b8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_line 0x0000000000035c3b 0x434 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_line 0x000000000003606f 0xbb2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_line 0x0000000000036c21 0x175 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_line 0x0000000000036d96 0x445e esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_line 0x000000000003b1f4 0x88b esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .debug_line 0x000000000003ba7f 0x10f8 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .debug_line 0x000000000003cb77 0x26e7 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .debug_line 0x000000000003f25e 0x601 esp-idf/main/libmain.a(hello_world_main.c.obj) - .debug_line 0x000000000003f85f 0x29d esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_line 0x000000000003fafc 0x451 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_line 0x000000000003ff4d 0x1e1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .debug_line 0x000000000004012e 0xfdd esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_line 0x000000000004110b 0x146f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x000000000004257a 0xdf4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_line 0x000000000004336e 0x7f8e esp-idf/driver/libdriver.a(uart.c.obj) - .debug_line 0x000000000004b2fc 0x11d5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_line 0x000000000004c4d1 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_line 0x000000000004c57f 0x920 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_line 0x000000000004ce9f 0x495 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_line 0x000000000004d334 0x25f esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_line 0x000000000004d593 0x56f esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_line 0x000000000004db02 0x1869 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_line 0x000000000004f36b 0x42f esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_line 0x000000000004f79a 0x3344 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_line 0x0000000000052ade 0x10fc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_line 0x0000000000053bda 0xcf3 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_line 0x00000000000548cd 0x3fe esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_line 0x0000000000054ccb 0xa4e esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .debug_line 0x0000000000055719 0x355 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .debug_line 0x0000000000055a6e 0x21d5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_line 0x0000000000057c43 0x418 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_line 0x000000000005805b 0x34f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_line 0x00000000000583aa 0x490 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_line 0x000000000005883a 0xab1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_line 0x00000000000592eb 0x361 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_line 0x000000000005964c 0x35f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_line 0x00000000000599ab 0xd25 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_line 0x000000000005a6d0 0x35b esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_line 0x000000000005aa2b 0x56e esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_line 0x000000000005af99 0x8d4 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_line 0x000000000005b86d 0x534 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_line 0x000000000005bda1 0x230c esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_line 0x000000000005e0ad 0x628 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x000000000005e6d5 0x1290 esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_line 0x000000000005f965 0x822 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_line 0x0000000000060187 0x18b3 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_line 0x0000000000061a3a 0x4f6 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_line 0x0000000000061f30 0x9cd esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_line 0x00000000000628fd 0x113a esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_line 0x0000000000063a37 0x20a esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_line 0x0000000000063c41 0x1c4 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_line 0x0000000000063e05 0x352 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - .debug_line 0x0000000000064157 0x144 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .debug_line 0x000000000006429b 0x353a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_line 0x00000000000677d5 0x19dc esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .debug_line 0x00000000000691b1 0x26d3 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_line 0x000000000006b884 0x139d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_line 0x000000000006cc21 0x28f esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_line 0x000000000006ceb0 0x7ca /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_line 0x000000000006d67a 0x862 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_line 0x000000000006dedc 0x727 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_line 0x000000000006e603 0x7a1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_line 0x000000000006eda4 0x370 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .debug_line 0x000000000006f114 0x381 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .debug_line 0x000000000006f495 0x3a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .debug_line 0x000000000006f4cf 0x8e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .debug_line 0x000000000006f55d 0x66a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .debug_line 0x000000000006fbc7 0x7ea /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .debug_line 0x00000000000703b1 0x2b2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .debug_line 0x0000000000070663 0xed /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .debug_line 0x0000000000070750 0xa16 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .debug_line 0x0000000000071166 0x927 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .debug_line 0x0000000000071a8d 0x249 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .debug_line 0x0000000000071cd6 0x386 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .debug_line 0x000000000007205c 0x215 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .debug_line 0x0000000000072271 0x2f0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .debug_line 0x0000000000072561 0x388 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .debug_line 0x00000000000728e9 0x47c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .debug_line 0x0000000000072d65 0x282 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .debug_line 0x0000000000072fe7 0xc3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_line 0x00000000000730aa 0x4a61 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_line 0x0000000000077b0b 0x19f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .debug_line 0x0000000000077caa 0x33e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .debug_line 0x0000000000077fe8 0x218c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .debug_line 0x000000000007a174 0x357 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .debug_line 0x000000000007a4cb 0x189 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .debug_line 0x000000000007a654 0x134 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .debug_line 0x000000000007a788 0x248f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .debug_line 0x000000000007cc17 0x1fd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_line 0x000000000007ce14 0x30dc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_line 0x000000000007fef0 0x31c2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_line 0x00000000000830b2 0x3a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - .debug_line 0x00000000000830ec 0x192 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .debug_line 0x000000000008327e 0x1a3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_line 0x0000000000083421 0x137 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .debug_line 0x0000000000083558 0x6b2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_str 0x0000000000000000 0x208a3 - .debug_str 0x0000000000000000 0x224 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x2a7 (size before relaxing) - .debug_str 0x0000000000000224 0xa0c esp-idf/pthread/libpthread.a(pthread.c.obj) - 0xc9f (size before relaxing) - .debug_str 0x0000000000000c30 0x1b4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 0x495 (size before relaxing) - .debug_str 0x0000000000000de4 0x1d9 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - 0x4d9 (size before relaxing) - .debug_str 0x0000000000000fbd 0x48c esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - 0x65e (size before relaxing) - .debug_str 0x0000000000001449 0x1015 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - 0x12be (size before relaxing) - .debug_str 0x000000000000245e 0x2bdc esp-idf/esp_system/libesp_system.a(clk.c.obj) - 0x351a (size before relaxing) - .debug_str 0x000000000000503a 0x15d esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - 0x9bf (size before relaxing) - .debug_str 0x0000000000005197 0x19c esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - 0x48e (size before relaxing) - .debug_str 0x0000000000005333 0x6a9 esp-idf/esp_system/libesp_system.a(startup.c.obj) - 0x31a2 (size before relaxing) - .debug_str 0x00000000000059dc 0x20d esp-idf/esp_system/libesp_system.a(brownout.c.obj) - 0x3ec (size before relaxing) - .debug_str 0x0000000000005be9 0x2cf esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - 0x76e (size before relaxing) - .debug_str 0x0000000000005eb8 0xd0 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - 0x28f8 (size before relaxing) - .debug_str 0x0000000000005f88 0xad esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - 0x27d (size before relaxing) - .debug_str 0x0000000000006035 0x772 esp-idf/esp_system/libesp_system.a(panic.c.obj) - 0x335c (size before relaxing) - .debug_str 0x00000000000067a7 0x1b3 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - 0x2c7a (size before relaxing) - .debug_str 0x000000000000695a 0x340 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - 0x79b (size before relaxing) - .debug_str 0x0000000000006c9a 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - 0x1f5 (size before relaxing) - .debug_str 0x0000000000006cea 0x1323 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - 0x3ce1 (size before relaxing) - .debug_str 0x000000000000800d 0x11b esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - 0x9b8 (size before relaxing) - .debug_str 0x0000000000008128 0x53 esp-idf/hal/libhal.a(brownout_hal.c.obj) - 0x204c (size before relaxing) - .debug_str 0x000000000000817b 0x293 esp-idf/log/liblog.a(log.c.obj) - 0x52e (size before relaxing) - .debug_str 0x000000000000840e 0x124 esp-idf/log/liblog.a(log_freertos.c.obj) - 0x4cf (size before relaxing) - .debug_str 0x0000000000008532 0x61d esp-idf/heap/libheap.a(heap_caps.c.obj) - 0x917 (size before relaxing) - .debug_str 0x0000000000008b4f 0x21c esp-idf/heap/libheap.a(heap_caps_init.c.obj) - 0x5dd (size before relaxing) - .debug_str 0x0000000000008d6b 0x500 esp-idf/heap/libheap.a(multi_heap.c.obj) - 0x8af (size before relaxing) - .debug_str 0x000000000000926b 0x43a esp-idf/heap/libheap.a(tlsf.c.obj) - 0x8e2 (size before relaxing) - .debug_str 0x00000000000096a5 0x49d esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - 0x7c2 (size before relaxing) - .debug_str 0x0000000000009b42 0x14a esp-idf/heap/libheap.a(memory_layout.c.obj) - 0x394 (size before relaxing) - .debug_str 0x0000000000009c8c 0x327 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - 0x5b9 (size before relaxing) - .debug_str 0x0000000000009fb3 0x14b esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - 0x3f1 (size before relaxing) - .debug_str 0x000000000000a0fe 0x549 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - 0xa1c (size before relaxing) - .debug_str 0x000000000000a647 0x23d esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - 0x6a2 (size before relaxing) - .debug_str 0x000000000000a884 0x146 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - 0x2904 (size before relaxing) - .debug_str 0x000000000000a9ca 0x1cf esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - 0x46c (size before relaxing) - .debug_str 0x000000000000ab99 0xfcc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - 0x1bc0 (size before relaxing) - .debug_str 0x000000000000bb65 0x60e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - 0xcbc (size before relaxing) - .debug_str 0x000000000000c173 0x242 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - 0x4fa (size before relaxing) - .debug_str 0x000000000000c3b5 0x1d8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - 0x5a7 (size before relaxing) - .debug_str 0x000000000000c58d 0x16b4 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - 0x22c8 (size before relaxing) - .debug_str 0x000000000000dc41 0x4b esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - 0x41a (size before relaxing) - .debug_str 0x000000000000dc8c 0x324 esp-idf/freertos/libfreertos.a(port.c.obj) - 0x72b (size before relaxing) - .debug_str 0x000000000000dfb0 0x343 esp-idf/freertos/libfreertos.a(port_common.c.obj) - 0x99e (size before relaxing) - .debug_str 0x000000000000e2f3 0x91a esp-idf/freertos/libfreertos.a(port_systick.c.obj) - 0x14ef (size before relaxing) - .debug_str 0x000000000000ec0d 0x8b1 esp-idf/freertos/libfreertos.a(queue.c.obj) - 0xccc (size before relaxing) - .debug_str 0x000000000000f4be 0xf55 esp-idf/freertos/libfreertos.a(tasks.c.obj) - 0x1cd8 (size before relaxing) - .debug_str 0x0000000000010413 0x3d esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) - 0x193 (size before relaxing) - .debug_str 0x0000000000010450 0x70 esp-idf/freertos/libfreertos.a(list.c.obj) - 0x2d8 (size before relaxing) - .debug_str 0x00000000000104c0 0x35 esp-idf/newlib/libnewlib.a(abort.c.obj) - 0x20a (size before relaxing) - .debug_str 0x00000000000104f5 0x7d esp-idf/newlib/libnewlib.a(assert.c.obj) - 0x281 (size before relaxing) - .debug_str 0x0000000000010572 0x1df esp-idf/newlib/libnewlib.a(heap.c.obj) - 0x720 (size before relaxing) - .debug_str 0x0000000000010751 0x35d esp-idf/newlib/libnewlib.a(locks.c.obj) - 0x84e (size before relaxing) - .debug_str 0x0000000000010aae 0xaf esp-idf/newlib/libnewlib.a(pthread.c.obj) - 0x2ff (size before relaxing) - .debug_str 0x0000000000010b5d 0x4f esp-idf/newlib/libnewlib.a(reent_init.c.obj) - 0x5d2 (size before relaxing) - .debug_str 0x0000000000010bac 0x1f8 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - 0xae2 (size before relaxing) - .debug_str 0x0000000000010da4 0xf7 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - 0x7e8 (size before relaxing) - .debug_str 0x0000000000010e9b 0x235 esp-idf/newlib/libnewlib.a(time.c.obj) - 0x9c9 (size before relaxing) - .debug_str 0x00000000000110d0 0xb2 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - 0x8b2 (size before relaxing) - .debug_str 0x0000000000011182 0x10d7 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - 0x1a0f (size before relaxing) - .debug_str 0x0000000000012259 0x2e3 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - 0x474 (size before relaxing) - .debug_str 0x000000000001253c 0x47a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - 0xc69 (size before relaxing) - .debug_str 0x00000000000129b6 0x3b esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - 0x34c (size before relaxing) - .debug_str 0x00000000000129f1 0x25d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - 0x1767 (size before relaxing) - .debug_str 0x0000000000012c4e 0xb4 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - 0x23b (size before relaxing) - .debug_str 0x0000000000012d02 0x82b esp-idf/vfs/libvfs.a(vfs.c.obj) - 0x129a (size before relaxing) - .debug_str 0x000000000001352d 0x20c esp-idf/vfs/libvfs.a(vfs_console.c.obj) - 0x9e1 (size before relaxing) - .debug_str 0x0000000000013739 0x403 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - 0x153f (size before relaxing) - .debug_str 0x0000000000013b3c 0x62f esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - 0x180e (size before relaxing) - .debug_str 0x000000000001416b 0x310 esp-idf/main/libmain.a(hello_world_main.c.obj) - 0xaa4 (size before relaxing) - .debug_str 0x000000000001447b 0x7b esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - 0x219 (size before relaxing) - .debug_str 0x00000000000144f6 0x133 esp-idf/riscv/libriscv.a(interrupt.c.obj) - 0x38a (size before relaxing) - .debug_str 0x0000000000014629 0xc28 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - 0x17a2 (size before relaxing) - .debug_str 0x0000000000015251 0x356 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - 0x7e3 (size before relaxing) - .debug_str 0x00000000000155a7 0x3ba esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x97f (size before relaxing) - .debug_str 0x0000000000015961 0x1f6 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - 0x18d1 (size before relaxing) - .debug_str 0x0000000000015b57 0x15c5 esp-idf/driver/libdriver.a(uart.c.obj) - 0x2da7 (size before relaxing) - .debug_str 0x000000000001711c 0x13bd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - 0x1eb1 (size before relaxing) - .debug_str 0x00000000000184d9 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - 0x1c5 (size before relaxing) - .debug_str 0x0000000000018510 0x199 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - 0x1865 (size before relaxing) - .debug_str 0x00000000000186a9 0x18a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - 0x572 (size before relaxing) - .debug_str 0x0000000000018833 0x73 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - 0x2d5 (size before relaxing) - .debug_str 0x00000000000188a6 0x341 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - 0x53d (size before relaxing) - .debug_str 0x0000000000018be7 0x35d esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - 0x810 (size before relaxing) - .debug_str 0x0000000000018f44 0x1e3 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - 0x4d6 (size before relaxing) - .debug_str 0x0000000000019127 0xb98 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - 0x19fd (size before relaxing) - .debug_str 0x0000000000019cbf 0xf89 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - 0x340b (size before relaxing) - .debug_str 0x000000000001ac48 0x2cc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - 0xb6a (size before relaxing) - .debug_str 0x000000000001af14 0x93 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - 0x6f9 (size before relaxing) - .debug_str 0x000000000001afa7 0x608 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - 0xd44 (size before relaxing) - .debug_str 0x000000000001b5af 0xd9 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - 0x8f1 (size before relaxing) - .debug_str 0x000000000001b688 0x8e2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - 0x1302 (size before relaxing) - .debug_str 0x000000000001bf6a 0xca esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - 0xc1a (size before relaxing) - .debug_str 0x000000000001c034 0x66 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - 0xb5b (size before relaxing) - .debug_str 0x000000000001c09a 0x12e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - 0xc51 (size before relaxing) - .debug_str 0x000000000001c1c8 0xe7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - 0xcf7 (size before relaxing) - .debug_str 0x000000000001c2af 0x66 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - 0xb79 (size before relaxing) - .debug_str 0x000000000001c315 0x60 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - 0xb71 (size before relaxing) - .debug_str 0x000000000001c375 0x4ac esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - 0x24a4 (size before relaxing) - .debug_str 0x000000000001c821 0x97 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - 0x27e (size before relaxing) - .debug_str 0x000000000001c8b8 0xe9 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - 0x9d7 (size before relaxing) - .debug_str 0x000000000001c9a1 0x1cc esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - 0x436 (size before relaxing) - .debug_str 0x000000000001cb6d 0x31 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - 0x334b (size before relaxing) - .debug_str 0x000000000001cb9e 0x319 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - 0x396a (size before relaxing) - .debug_str 0x000000000001ceb7 0x2a0 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x16a9 (size before relaxing) - .debug_str 0x000000000001d157 0x442 esp-idf/hal/libhal.a(uart_hal.c.obj) - 0x12bc (size before relaxing) - .debug_str 0x000000000001d599 0x140 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - 0x2064 (size before relaxing) - .debug_str 0x000000000001d6d9 0x59d esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - 0x24b3 (size before relaxing) - .debug_str 0x000000000001dc76 0x1ea esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - 0x470 (size before relaxing) - .debug_str 0x000000000001de60 0x21b esp-idf/hal/libhal.a(systimer_hal.c.obj) - 0xd2a (size before relaxing) - .debug_str 0x000000000001e07b 0x26b esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - 0x214b (size before relaxing) - .debug_str 0x000000000001e2e6 0x5e esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - 0x1e6 (size before relaxing) - .debug_str 0x000000000001e344 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - 0x1bf (size before relaxing) - .debug_str 0x000000000001e37a 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - 0x28f (size before relaxing) - .debug_str 0x000000000001e3d2 0x4f esp-idf/freertos/libfreertos.a(portasm.S.obj) - 0x5a (size before relaxing) - .debug_str 0x000000000001e421 0x6f3 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - 0xcc5 (size before relaxing) - .debug_str 0x000000000001eb14 0x4a6 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - 0x96e (size before relaxing) - .debug_str 0x000000000001efba 0x7ae esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - 0x1667 (size before relaxing) - .debug_str 0x000000000001f768 0x25b esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - 0xf93 (size before relaxing) - .debug_str 0x000000000001f9c3 0x55 esp-idf/hal/libhal.a(efuse_hal.c.obj) - 0x13e6 (size before relaxing) - .debug_str 0x000000000001fa18 0x157 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - 0x215 (size before relaxing) - .debug_str 0x000000000001fb6f 0x215 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_str 0x000000000001fb6f 0x216 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_str 0x000000000001fb6f 0x216 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_str 0x000000000001fb6f 0x89 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - 0x14b (size before relaxing) - .debug_str 0x000000000001fbf8 0x14c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .debug_str 0x000000000001fbf8 0x59 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .debug_str 0x000000000001fbf8 0x4b2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .debug_str 0x000000000001fbf8 0x90 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - 0x5d1 (size before relaxing) - .debug_str 0x000000000001fc88 0x18e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - 0x7d9 (size before relaxing) - .debug_str 0x000000000001fe16 0x22 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - 0x5d5 (size before relaxing) - .debug_str 0x000000000001fe38 0x11 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - 0x4d6 (size before relaxing) - .debug_str 0x000000000001fe49 0x34 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - 0x73f (size before relaxing) - .debug_str 0x000000000001fe7d 0x67 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - 0x55b (size before relaxing) - .debug_str 0x000000000001fee4 0xf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - 0x4d0 (size before relaxing) - .debug_str 0x000000000001fef3 0x2f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - 0x655 (size before relaxing) - .debug_str 0x000000000001ff22 0x16 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - 0x4fd (size before relaxing) - .debug_str 0x000000000001ff38 0x8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - 0x5da (size before relaxing) - .debug_str 0x000000000001ff40 0x1d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - 0x4e3 (size before relaxing) - .debug_str 0x000000000001ff5d 0x12 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - 0x564 (size before relaxing) - .debug_str 0x000000000001ff6f 0xb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - 0x51d (size before relaxing) - .debug_str 0x000000000001ff7a 0x13 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - 0x522 (size before relaxing) - .debug_str 0x000000000001ff8d 0x3b5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - 0xd8e (size before relaxing) - .debug_str 0x0000000000020342 0xb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - 0x505 (size before relaxing) - .debug_str 0x000000000002034d 0x527 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .debug_str 0x000000000002034d 0x134 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - 0x872 (size before relaxing) - .debug_str 0x0000000000020481 0xc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - 0x5dc (size before relaxing) - .debug_str 0x000000000002048d 0x5 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - 0x4b2 (size before relaxing) - .debug_str 0x0000000000020492 0x5b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - 0x6fd (size before relaxing) - .debug_str 0x00000000000204ed 0x61 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - 0x7cd (size before relaxing) - .debug_str 0x000000000002054e 0x15 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - 0x14f (size before relaxing) - .debug_str 0x0000000000020563 0x1a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - 0xb5a (size before relaxing) - .debug_str 0x000000000002057d 0x17 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - 0xc78 (size before relaxing) - .debug_str 0x0000000000020594 0x8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - 0xe9 (size before relaxing) - .debug_str 0x000000000002059c 0x63 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - 0x751 (size before relaxing) - .debug_str 0x00000000000205ff 0xa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - 0x6df (size before relaxing) - .debug_str 0x0000000000020609 0x11 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - 0x6e6 (size before relaxing) - .debug_str 0x000000000002061a 0x289 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - 0x345 (size before relaxing) - -.comment 0x0000000000000000 0x26 - .comment 0x0000000000000000 0x26 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - 0x27 (size before relaxing) - .comment 0x0000000000000026 0x27 esp-idf/pthread/libpthread.a(pthread.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(clk.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/log/liblog.a(log.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/log/liblog.a(log_freertos.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(heap_caps.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(multi_heap.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(tlsf.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/heap/libheap.a(memory_layout.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(port.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(queue.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/freertos/libfreertos.a(list.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(abort.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(assert.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(heap.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(locks.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/vfs/libvfs.a(vfs.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(hello_world_main.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/riscv/libriscv.a(interrupt.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(uart.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(uart_hal.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .comment 0x0000000000000026 0x27 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.riscv.attributes - 0x0000000000000000 0x39 - .riscv.attributes - 0x0000000000000000 0x26 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .riscv.attributes - 0x0000000000000026 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) - .riscv.attributes - 0x000000000000004c 0x26 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .riscv.attributes - 0x0000000000000072 0x26 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .riscv.attributes - 0x0000000000000098 0x26 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .riscv.attributes - 0x00000000000000be 0x2a esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .riscv.attributes - 0x00000000000000e8 0x2a esp-idf/esp_system/libesp_system.a(clk.c.obj) - .riscv.attributes - 0x0000000000000112 0x26 esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .riscv.attributes - 0x0000000000000138 0x26 esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .riscv.attributes - 0x000000000000015e 0x26 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .riscv.attributes - 0x0000000000000184 0x26 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .riscv.attributes - 0x00000000000001aa 0x26 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .riscv.attributes - 0x00000000000001d0 0x26 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .riscv.attributes - 0x00000000000001f6 0x26 esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .riscv.attributes - 0x000000000000021c 0x26 esp-idf/esp_system/libesp_system.a(panic.c.obj) - .riscv.attributes - 0x0000000000000242 0x26 esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .riscv.attributes - 0x0000000000000268 0x26 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .riscv.attributes - 0x000000000000028e 0x26 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - .riscv.attributes - 0x00000000000002b4 0x26 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .riscv.attributes - 0x00000000000002da 0x26 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .riscv.attributes - 0x0000000000000300 0x26 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .riscv.attributes - 0x0000000000000326 0x26 esp-idf/log/liblog.a(log.c.obj) - .riscv.attributes - 0x000000000000034c 0x2a esp-idf/log/liblog.a(log_freertos.c.obj) - .riscv.attributes - 0x0000000000000376 0x26 esp-idf/heap/libheap.a(heap_caps.c.obj) - .riscv.attributes - 0x000000000000039c 0x26 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .riscv.attributes - 0x00000000000003c2 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) - .riscv.attributes - 0x00000000000003e8 0x26 esp-idf/heap/libheap.a(tlsf.c.obj) - .riscv.attributes - 0x000000000000040e 0x26 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .riscv.attributes - 0x0000000000000434 0x26 esp-idf/heap/libheap.a(memory_layout.c.obj) - .riscv.attributes - 0x000000000000045a 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .riscv.attributes - 0x0000000000000484 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .riscv.attributes - 0x00000000000004aa 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .riscv.attributes - 0x00000000000004d4 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .riscv.attributes - 0x00000000000004fa 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .riscv.attributes - 0x0000000000000520 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .riscv.attributes - 0x0000000000000546 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .riscv.attributes - 0x000000000000056c 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .riscv.attributes - 0x0000000000000592 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .riscv.attributes - 0x00000000000005b8 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .riscv.attributes - 0x00000000000005de 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .riscv.attributes - 0x0000000000000604 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .riscv.attributes - 0x000000000000062a 0x2a esp-idf/freertos/libfreertos.a(port.c.obj) - .riscv.attributes - 0x0000000000000654 0x26 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .riscv.attributes - 0x000000000000067a 0x26 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .riscv.attributes - 0x00000000000006a0 0x26 esp-idf/freertos/libfreertos.a(queue.c.obj) - .riscv.attributes - 0x00000000000006c6 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .riscv.attributes - 0x00000000000006ec 0x26 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) - .riscv.attributes - 0x0000000000000712 0x26 esp-idf/freertos/libfreertos.a(list.c.obj) - .riscv.attributes - 0x0000000000000738 0x26 esp-idf/newlib/libnewlib.a(abort.c.obj) - .riscv.attributes - 0x000000000000075e 0x26 esp-idf/newlib/libnewlib.a(assert.c.obj) - .riscv.attributes - 0x0000000000000784 0x26 esp-idf/newlib/libnewlib.a(heap.c.obj) - .riscv.attributes - 0x00000000000007aa 0x26 esp-idf/newlib/libnewlib.a(locks.c.obj) - .riscv.attributes - 0x00000000000007d0 0x26 esp-idf/newlib/libnewlib.a(pthread.c.obj) - .riscv.attributes - 0x00000000000007f6 0x26 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .riscv.attributes - 0x000000000000081c 0x26 esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .riscv.attributes - 0x0000000000000842 0x26 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .riscv.attributes - 0x0000000000000868 0x26 esp-idf/newlib/libnewlib.a(time.c.obj) - .riscv.attributes - 0x000000000000088e 0x26 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .riscv.attributes - 0x00000000000008b4 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .riscv.attributes - 0x00000000000008da 0x26 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .riscv.attributes - 0x0000000000000900 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .riscv.attributes - 0x0000000000000926 0x26 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .riscv.attributes - 0x000000000000094c 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .riscv.attributes - 0x0000000000000972 0x26 esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .riscv.attributes - 0x0000000000000998 0x26 esp-idf/vfs/libvfs.a(vfs.c.obj) - .riscv.attributes - 0x00000000000009be 0x26 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .riscv.attributes - 0x00000000000009e4 0x26 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .riscv.attributes - 0x0000000000000a0a 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .riscv.attributes - 0x0000000000000a30 0x26 esp-idf/main/libmain.a(hello_world_main.c.obj) - .riscv.attributes - 0x0000000000000a56 0x26 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .riscv.attributes - 0x0000000000000a7c 0x2a esp-idf/riscv/libriscv.a(interrupt.c.obj) - .riscv.attributes - 0x0000000000000aa6 0x26 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - .riscv.attributes - 0x0000000000000acc 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .riscv.attributes - 0x0000000000000af2 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x0000000000000b18 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .riscv.attributes - 0x0000000000000b3e 0x26 esp-idf/driver/libdriver.a(uart.c.obj) - .riscv.attributes - 0x0000000000000b64 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .riscv.attributes - 0x0000000000000b8a 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .riscv.attributes - 0x0000000000000bb0 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .riscv.attributes - 0x0000000000000bd6 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .riscv.attributes - 0x0000000000000bfc 0x26 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .riscv.attributes - 0x0000000000000c22 0x26 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .riscv.attributes - 0x0000000000000c48 0x26 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .riscv.attributes - 0x0000000000000c6e 0x26 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .riscv.attributes - 0x0000000000000c94 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .riscv.attributes - 0x0000000000000cba 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .riscv.attributes - 0x0000000000000ce0 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .riscv.attributes - 0x0000000000000d06 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .riscv.attributes - 0x0000000000000d2c 0x26 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .riscv.attributes - 0x0000000000000d52 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - .riscv.attributes - 0x0000000000000d78 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .riscv.attributes - 0x0000000000000d9e 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .riscv.attributes - 0x0000000000000dc4 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .riscv.attributes - 0x0000000000000dea 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .riscv.attributes - 0x0000000000000e10 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .riscv.attributes - 0x0000000000000e36 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .riscv.attributes - 0x0000000000000e5c 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .riscv.attributes - 0x0000000000000e82 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .riscv.attributes - 0x0000000000000ea8 0x26 esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .riscv.attributes - 0x0000000000000ece 0x26 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .riscv.attributes - 0x0000000000000ef4 0x26 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .riscv.attributes - 0x0000000000000f1a 0x26 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .riscv.attributes - 0x0000000000000f40 0x26 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .riscv.attributes - 0x0000000000000f66 0x26 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x0000000000000f8c 0x26 esp-idf/hal/libhal.a(uart_hal.c.obj) - .riscv.attributes - 0x0000000000000fb2 0x26 esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .riscv.attributes - 0x0000000000000fd8 0x26 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .riscv.attributes - 0x0000000000000ffe 0x26 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .riscv.attributes - 0x0000000000001024 0x26 esp-idf/hal/libhal.a(systimer_hal.c.obj) - .riscv.attributes - 0x000000000000104a 0x26 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .riscv.attributes - 0x0000000000001070 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .riscv.attributes - 0x0000000000001096 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .riscv.attributes - 0x00000000000010bc 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - .riscv.attributes - 0x00000000000010e2 0x33 esp-idf/freertos/libfreertos.a(portasm.S.obj) - .riscv.attributes - 0x0000000000001115 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .riscv.attributes - 0x000000000000113b 0x26 esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .riscv.attributes - 0x0000000000001161 0x26 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .riscv.attributes - 0x0000000000001187 0x26 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .riscv.attributes - 0x00000000000011ad 0x26 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .riscv.attributes - 0x00000000000011d3 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .riscv.attributes - 0x00000000000011f9 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .riscv.attributes - 0x000000000000121f 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .riscv.attributes - 0x0000000000001245 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .riscv.attributes - 0x000000000000126b 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .riscv.attributes - 0x0000000000001291 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .riscv.attributes - 0x00000000000012b7 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - .riscv.attributes - 0x00000000000012dd 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .riscv.attributes - 0x0000000000001303 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .riscv.attributes - 0x0000000000001329 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .riscv.attributes - 0x000000000000134f 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .riscv.attributes - 0x0000000000001375 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .riscv.attributes - 0x000000000000139b 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .riscv.attributes - 0x00000000000013c1 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .riscv.attributes - 0x00000000000013e7 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .riscv.attributes - 0x000000000000140d 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .riscv.attributes - 0x0000000000001433 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .riscv.attributes - 0x0000000000001459 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .riscv.attributes - 0x000000000000147f 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .riscv.attributes - 0x00000000000014a5 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .riscv.attributes - 0x00000000000014cb 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .riscv.attributes - 0x00000000000014f1 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .riscv.attributes - 0x0000000000001517 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .riscv.attributes - 0x000000000000153d 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .riscv.attributes - 0x0000000000001563 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .riscv.attributes - 0x0000000000001589 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .riscv.attributes - 0x00000000000015af 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .riscv.attributes - 0x00000000000015d5 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .riscv.attributes - 0x00000000000015fb 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .riscv.attributes - 0x0000000000001621 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .riscv.attributes - 0x0000000000001647 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .riscv.attributes - 0x000000000000166d 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .riscv.attributes - 0x0000000000001693 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .riscv.attributes - 0x00000000000016b9 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - .riscv.attributes - 0x00000000000016df 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .riscv.attributes - 0x0000000000001705 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .riscv.attributes - 0x000000000000172b 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .riscv.attributes - 0x0000000000001751 0x26 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_frame 0x0000000000000000 0xca9c - .debug_frame 0x0000000000000000 0x4c esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - .debug_frame 0x000000000000004c 0x534 esp-idf/pthread/libpthread.a(pthread.c.obj) - .debug_frame 0x0000000000000580 0x134 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - .debug_frame 0x00000000000006b4 0x164 esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - .debug_frame 0x0000000000000818 0x1e0 esp-idf/esp_system/libesp_system.a(ubsan.c.obj) - .debug_frame 0x00000000000009f8 0x58 esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - .debug_frame 0x0000000000000a50 0x9c esp-idf/esp_system/libesp_system.a(clk.c.obj) - .debug_frame 0x0000000000000aec 0x3c esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - .debug_frame 0x0000000000000b28 0xdc esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - .debug_frame 0x0000000000000c04 0xe4 esp-idf/esp_system/libesp_system.a(startup.c.obj) - .debug_frame 0x0000000000000ce8 0x60 esp-idf/esp_system/libesp_system.a(brownout.c.obj) - .debug_frame 0x0000000000000d48 0x78 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - .debug_frame 0x0000000000000dc0 0x28 esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - .debug_frame 0x0000000000000de8 0x6c esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - .debug_frame 0x0000000000000e54 0x12c esp-idf/esp_system/libesp_system.a(panic.c.obj) - .debug_frame 0x0000000000000f80 0x11c esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - .debug_frame 0x000000000000109c 0x140 esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - .debug_frame 0x00000000000011dc 0x2c esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj) - .debug_frame 0x0000000000001208 0xdc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - .debug_frame 0x00000000000012e4 0x68 esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - .debug_frame 0x000000000000134c 0x50 esp-idf/hal/libhal.a(brownout_hal.c.obj) - .debug_frame 0x000000000000139c 0x11c esp-idf/log/liblog.a(log.c.obj) - .debug_frame 0x00000000000014b8 0xd0 esp-idf/log/liblog.a(log_freertos.c.obj) - .debug_frame 0x0000000000001588 0x50c esp-idf/heap/libheap.a(heap_caps.c.obj) - .debug_frame 0x0000000000001a94 0x100 esp-idf/heap/libheap.a(heap_caps_init.c.obj) - .debug_frame 0x0000000000001b94 0x2cc esp-idf/heap/libheap.a(multi_heap.c.obj) - .debug_frame 0x0000000000001e60 0x378 esp-idf/heap/libheap.a(tlsf.c.obj) - .debug_frame 0x00000000000021d8 0xc0 esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - .debug_frame 0x0000000000002298 0x140 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - .debug_frame 0x00000000000023d8 0x110 esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - .debug_frame 0x00000000000024e8 0x37c esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - .debug_frame 0x0000000000002864 0x11c esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - .debug_frame 0x0000000000002980 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - .debug_frame 0x0000000000002a78 0x198 esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - .debug_frame 0x0000000000002c10 0x370 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - .debug_frame 0x0000000000002f80 0x11c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - .debug_frame 0x000000000000309c 0xe4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - .debug_frame 0x0000000000003180 0x134 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - .debug_frame 0x00000000000032b4 0x310 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - .debug_frame 0x00000000000035c4 0x50 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - .debug_frame 0x0000000000003614 0x1c4 esp-idf/freertos/libfreertos.a(port.c.obj) - .debug_frame 0x00000000000037d8 0xf0 esp-idf/freertos/libfreertos.a(port_common.c.obj) - .debug_frame 0x00000000000038c8 0x80 esp-idf/freertos/libfreertos.a(port_systick.c.obj) - .debug_frame 0x0000000000003948 0x5c8 esp-idf/freertos/libfreertos.a(queue.c.obj) - .debug_frame 0x0000000000003f10 0xb54 esp-idf/freertos/libfreertos.a(tasks.c.obj) - .debug_frame 0x0000000000004a64 0x60 esp-idf/freertos/libfreertos.a(list.c.obj) - .debug_frame 0x0000000000004ac4 0x2c esp-idf/newlib/libnewlib.a(abort.c.obj) - .debug_frame 0x0000000000004af0 0x5c esp-idf/newlib/libnewlib.a(assert.c.obj) - .debug_frame 0x0000000000004b4c 0x1ac esp-idf/newlib/libnewlib.a(heap.c.obj) - .debug_frame 0x0000000000004cf8 0x30c esp-idf/newlib/libnewlib.a(locks.c.obj) - .debug_frame 0x0000000000005004 0x6c esp-idf/newlib/libnewlib.a(pthread.c.obj) - .debug_frame 0x0000000000005070 0x58 esp-idf/newlib/libnewlib.a(reent_init.c.obj) - .debug_frame 0x00000000000050c8 0x4c esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - .debug_frame 0x0000000000005114 0x110 esp-idf/newlib/libnewlib.a(syscalls.c.obj) - .debug_frame 0x0000000000005224 0x1f0 esp-idf/newlib/libnewlib.a(time.c.obj) - .debug_frame 0x0000000000005414 0x100 esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - .debug_frame 0x0000000000005514 0x100 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - .debug_frame 0x0000000000005614 0x4c esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - .debug_frame 0x0000000000005660 0x3c0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - .debug_frame 0x0000000000005a20 0x64 esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - .debug_frame 0x0000000000005a84 0x1e8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - .debug_frame 0x0000000000005c6c 0x7c esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) - .debug_frame 0x0000000000005ce8 0x910 esp-idf/vfs/libvfs.a(vfs.c.obj) - .debug_frame 0x00000000000065f8 0x234 esp-idf/vfs/libvfs.a(vfs_console.c.obj) - .debug_frame 0x000000000000682c 0x2b4 esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - .debug_frame 0x0000000000006ae0 0x42c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - .debug_frame 0x0000000000006f0c 0x34 esp-idf/main/libmain.a(hello_world_main.c.obj) - .debug_frame 0x0000000000006f40 0x28 esp-idf/riscv/libriscv.a(instruction_decode.c.obj) - .debug_frame 0x0000000000006f68 0xcc esp-idf/riscv/libriscv.a(interrupt.c.obj) - .debug_frame 0x0000000000007034 0x208 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - .debug_frame 0x000000000000723c 0x320 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x000000000000755c 0xf4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - .debug_frame 0x0000000000007650 0xa18 esp-idf/driver/libdriver.a(uart.c.obj) - .debug_frame 0x0000000000008068 0x234 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - .debug_frame 0x000000000000829c 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - .debug_frame 0x00000000000082c8 0xa8 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - .debug_frame 0x0000000000008370 0x8c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - .debug_frame 0x00000000000083fc 0x40 esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - .debug_frame 0x000000000000843c 0x14c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - .debug_frame 0x0000000000008588 0x24c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - .debug_frame 0x00000000000087d4 0x84 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - .debug_frame 0x0000000000008858 0x4dc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - .debug_frame 0x0000000000008d34 0x12c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - .debug_frame 0x0000000000008e60 0x230 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - .debug_frame 0x0000000000009090 0x8c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - .debug_frame 0x000000000000911c 0x150 esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - .debug_frame 0x000000000000926c 0x46c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - .debug_frame 0x00000000000096d8 0x6c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) - .debug_frame 0x0000000000009744 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - .debug_frame 0x0000000000009774 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - .debug_frame 0x00000000000097e4 0x154 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - .debug_frame 0x0000000000009938 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - .debug_frame 0x0000000000009968 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - .debug_frame 0x0000000000009998 0x16c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - .debug_frame 0x0000000000009b04 0x7c esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - .debug_frame 0x0000000000009b80 0xd8 esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - .debug_frame 0x0000000000009c58 0x170 esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - .debug_frame 0x0000000000009dc8 0x70 esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - .debug_frame 0x0000000000009e38 0x2c4 esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - .debug_frame 0x000000000000a0fc 0xc8 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x000000000000a1c4 0x21c esp-idf/hal/libhal.a(uart_hal.c.obj) - .debug_frame 0x000000000000a3e0 0xbc esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - .debug_frame 0x000000000000a49c 0x220 esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - .debug_frame 0x000000000000a6bc 0x80 esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - .debug_frame 0x000000000000a73c 0x15c esp-idf/hal/libhal.a(systimer_hal.c.obj) - .debug_frame 0x000000000000a898 0xf8 esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - .debug_frame 0x000000000000a990 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - .debug_frame 0x000000000000a9d0 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - .debug_frame 0x000000000000aa00 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) - .debug_frame 0x000000000000aa30 0x660 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - .debug_frame 0x000000000000b090 0x2bc esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - .debug_frame 0x000000000000b34c 0x46c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - .debug_frame 0x000000000000b7b8 0x1d8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - .debug_frame 0x000000000000b990 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj) - .debug_frame 0x000000000000b9d0 0x48 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .debug_frame 0x000000000000ba18 0x48 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .debug_frame 0x000000000000ba60 0x2c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - .debug_frame 0x000000000000ba8c 0x84 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .debug_frame 0x000000000000bb10 0x180 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .debug_frame 0x000000000000bc90 0x60 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .debug_frame 0x000000000000bcf0 0x44 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .debug_frame 0x000000000000bd34 0x78 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .debug_frame 0x000000000000bdac 0x60 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .debug_frame 0x000000000000be0c 0x8c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .debug_frame 0x000000000000be98 0x68 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .debug_frame 0x000000000000bf00 0x58 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .debug_frame 0x000000000000bf58 0x54 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .debug_frame 0x000000000000bfac 0x70 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .debug_frame 0x000000000000c01c 0x50 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .debug_frame 0x000000000000c06c 0xa4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .debug_frame 0x000000000000c110 0x30 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_frame 0x000000000000c140 0x108 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_frame 0x000000000000c248 0x5c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .debug_frame 0x000000000000c2a4 0x3c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .debug_frame 0x000000000000c2e0 0x9c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .debug_frame 0x000000000000c37c 0x58 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .debug_frame 0x000000000000c3d4 0x20 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .debug_frame 0x000000000000c3f4 0x40 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .debug_frame 0x000000000000c434 0x2f4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .debug_frame 0x000000000000c728 0x38 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_frame 0x000000000000c760 0x104 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_frame 0x000000000000c864 0x12c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_frame 0x000000000000c990 0x68 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .debug_frame 0x000000000000c9f8 0x38 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_frame 0x000000000000ca30 0x30 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .debug_frame 0x000000000000ca60 0x3c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_loclists - 0x0000000000000000 0xf423 - .debug_loclists - 0x0000000000000000 0x88e /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_loclists - 0x000000000000088e 0x793 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_loclists - 0x0000000000001021 0xa99 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_loclists - 0x0000000000001aba 0x86a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_loclists - 0x0000000000002324 0x1b7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .debug_loclists - 0x00000000000024db 0x1b7 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .debug_loclists - 0x0000000000002692 0x1eb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .debug_loclists - 0x000000000000287d 0x251 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .debug_loclists - 0x0000000000002ace 0x12c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .debug_loclists - 0x0000000000002bfa 0x172 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .debug_loclists - 0x0000000000002d6c 0x2ec /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .debug_loclists - 0x0000000000003058 0x458 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .debug_loclists - 0x00000000000034b0 0x19c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - .debug_loclists - 0x000000000000364c 0x174 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - .debug_loclists - 0x00000000000037c0 0x87 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - .debug_loclists - 0x0000000000003847 0xf0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .debug_loclists - 0x0000000000003937 0xe3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .debug_loclists - 0x0000000000003a1a 0xcd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .debug_loclists - 0x0000000000003ae7 0x2aa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - .debug_loclists - 0x0000000000003d91 0x60 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - .debug_loclists - 0x0000000000003df1 0x3709 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_loclists - 0x00000000000074fa 0x109 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - .debug_loclists - 0x0000000000007603 0x75 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .debug_loclists - 0x0000000000007678 0x187f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .debug_loclists - 0x0000000000008ef7 0xc9 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .debug_loclists - 0x0000000000008fc0 0xcd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - .debug_loclists - 0x000000000000908d 0x5a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .debug_loclists - 0x00000000000090e7 0x1af1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .debug_loclists - 0x000000000000abd8 0xba /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_loclists - 0x000000000000ac92 0x1f63 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_loclists - 0x000000000000cbf5 0x208b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_loclists - 0x000000000000ec80 0x120 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - .debug_loclists - 0x000000000000eda0 0xd8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - .debug_loclists - 0x000000000000ee78 0xc0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - .debug_loclists - 0x000000000000ef38 0x4eb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_rnglists - 0x0000000000000000 0xb6c - .debug_rnglists - 0x0000000000000000 0xf6 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - .debug_rnglists - 0x00000000000000f6 0xbf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_rnglists - 0x00000000000001b5 0x111 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_rnglists - 0x00000000000002c6 0xd1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_rnglists - 0x0000000000000397 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - .debug_rnglists - 0x00000000000003bf 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - .debug_rnglists - 0x00000000000003e7 0x1f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - .debug_rnglists - 0x0000000000000406 0x73 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - .debug_rnglists - 0x0000000000000479 0x1f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - .debug_rnglists - 0x0000000000000498 0x31 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - .debug_rnglists - 0x00000000000004c9 0x4d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - .debug_rnglists - 0x0000000000000516 0x3a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - .debug_rnglists - 0x0000000000000550 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - .debug_rnglists - 0x0000000000000578 0x3b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - .debug_rnglists - 0x00000000000005b3 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - .debug_rnglists - 0x00000000000005db 0x175 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - .debug_rnglists - 0x0000000000000750 0x28 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - .debug_rnglists - 0x0000000000000778 0x44 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - .debug_rnglists - 0x00000000000007bc 0x1f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - .debug_rnglists - 0x00000000000007db 0x58 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - .debug_rnglists - 0x0000000000000833 0xc8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - .debug_rnglists - 0x00000000000008fb 0x1f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - .debug_rnglists - 0x000000000000091a 0x85 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_rnglists - 0x000000000000099f 0xb3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_rnglists - 0x0000000000000a52 0x11a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - -.debug_line_str - 0x0000000000000000 0x1faa - .debug_line_str - 0x0000000000000000 0x189 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - 0x2a8 (size before relaxing) - .debug_line_str - 0x0000000000000189 0x2a8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - .debug_line_str - 0x0000000000000189 0x2a8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - .debug_line_str - 0x0000000000000189 0x2a8 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - .debug_line_str - 0x0000000000000189 0x332 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - 0x45e (size before relaxing) - .debug_line_str - 0x00000000000004bb 0x81 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - 0x461 (size before relaxing) - .debug_line_str - 0x000000000000053c 0x1a1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - 0x2d3 (size before relaxing) - .debug_line_str - 0x00000000000006dd 0x2c4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - 0x3f9 (size before relaxing) - .debug_line_str - 0x00000000000009a1 0x1c0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - 0x48e (size before relaxing) - .debug_line_str - 0x0000000000000b61 0x8a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - 0x497 (size before relaxing) - .debug_line_str - 0x0000000000000beb 0x80 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - 0x48a (size before relaxing) - .debug_line_str - 0x0000000000000c6b 0x80 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - 0x470 (size before relaxing) - .debug_line_str - 0x0000000000000ceb 0x9f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - 0x555 (size before relaxing) - .debug_line_str - 0x0000000000000d8a 0x8c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - 0x492 (size before relaxing) - .debug_line_str - 0x0000000000000e16 0x80 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - 0x470 (size before relaxing) - .debug_line_str - 0x0000000000000e96 0x82 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - 0x545 (size before relaxing) - .debug_line_str - 0x0000000000000f18 0x8a /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - 0x47c (size before relaxing) - .debug_line_str - 0x0000000000000fa2 0x7f /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - 0x48a (size before relaxing) - .debug_line_str - 0x0000000000001021 0x19c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - 0x471 (size before relaxing) - .debug_line_str - 0x00000000000011bd 0x81 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - 0x484 (size before relaxing) - .debug_line_str - 0x000000000000123e 0x80 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - 0x480 (size before relaxing) - .debug_line_str - 0x00000000000012be 0x1b0 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - 0x52d (size before relaxing) - .debug_line_str - 0x000000000000146e 0x138 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - 0x60d (size before relaxing) - .debug_line_str - 0x00000000000015a6 0x82 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - 0x47f (size before relaxing) - .debug_line_str - 0x0000000000001628 0x81 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - 0x484 (size before relaxing) - .debug_line_str - 0x00000000000016a9 0x114 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - 0x5bd (size before relaxing) - .debug_line_str - 0x00000000000017bd 0x81 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - 0x48e (size before relaxing) - .debug_line_str - 0x000000000000183e 0x80 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - 0x3f1 (size before relaxing) - .debug_line_str - 0x00000000000018be 0x1a4 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - 0x499 (size before relaxing) - .debug_line_str - 0x0000000000001a62 0x81 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - 0x5c0 (size before relaxing) - .debug_line_str - 0x0000000000001ae3 0x81 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - 0x461 (size before relaxing) - .debug_line_str - 0x0000000000001b64 0x5f1 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - .debug_line_str - 0x0000000000001b64 0x5fb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - .debug_line_str - 0x0000000000001b64 0x12d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - 0x2c9 (size before relaxing) - .debug_line_str - 0x0000000000001c91 0x105 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - 0x532 (size before relaxing) - .debug_line_str - 0x0000000000001d96 0x84 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - 0x51f (size before relaxing) - .debug_line_str - 0x0000000000001e1a 0x84 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - 0x51f (size before relaxing) - .debug_line_str - 0x0000000000001e9e 0x10c /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - 0x2da (size before relaxing) - -Cross Reference Table - -Symbol File -APB_SARADC esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -Cache_Enable_ICache esp-idf/hal/libhal.a(cache_hal.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_Invalidate_Addr esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -Cache_Invalidate_ICache_All esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.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_IDROM_MMU_Size 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) -EFUSE esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_BTLC_GPIO_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_CAN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_DEVICE 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_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -ESP_EFUSE_ERR_RST_ENABLE 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_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.c.obj) -ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -ESP_EFUSE_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -ESP_EFUSE_MAC_FACTORY esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_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.c.obj) -ESP_EFUSE_RD_DIS_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_RD_DIS_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_CS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_DQS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_D_D0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_HD_D3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_Q_D1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SPI_PAD_CONFIG_WP_D2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -ESP_EFUSE_THRES_HVT 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_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_GROUP_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_GROUP_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_GROUP_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY0_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY1_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY2_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY3_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY4_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_KEY5_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -ESP_EFUSE_WR_DIS_SYS_DATA_PART1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -ESP_EFUSE_WR_DIS_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -FreeRTOS_openocd_params esp-idf/freertos/libfreertos.a(tasks.c.obj) -GDMA esp-idf/hal/libhal.a(gdma_hal.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -GPIO esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/driver/libdriver.a(gpio.c.obj) -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) -RTCCNTL esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -SPIMEM0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -SPIMEM1 esp-idf/soc/libsoc.a(spi_periph.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -SYSTIMER esp-idf/hal/libhal.a(systimer_hal.c.obj) -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/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) -USB_SERIAL_JTAG esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -_Balloc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -_Bfree /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -_PathLocale /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) -__action_table /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__adddf3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) -__any_on /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) -__ascii_mbtowc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) -__ascii_wctomb /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) -__assert esp-idf/newlib/libnewlib.a(assert.c.obj) -__assert_func esp-idf/newlib/libnewlib.a(assert.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/hal/libhal.a(gpio_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/driver/libdriver.a(gpio.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/riscv/libriscv.a(interrupt.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.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_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/log/liblog.a(log.c.obj) - esp-idf/hal/libhal.a(wdt_hal_iram.c.obj) - esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -__atomic_add_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_add_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_add_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_add_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.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_nand_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_nand_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_nand_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_fetch_nand_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 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_load_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_nand_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_nand_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_nand_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_nand_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_or_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_or_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_or_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_or_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_store_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_sub_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_sub_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_sub_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_sub_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_xor_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_xor_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_xor_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__atomic_xor_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__b2d /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) -__bswapdi2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_bswapdi2.o) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -__chclass /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__clz_tab /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clz.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_ffssi2.o) -__clzsi2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_clzsi2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(adddf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -__copybits /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__default_global_locale /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) -__divdf3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(divdf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) -__divdi3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_divdi3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - esp-idf/newlib/libnewlib.a(time.c.obj) -__env_lock /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) -__env_unlock /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) -__eqdf2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__errno /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) -__ffssi2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/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) - esp-idf/heap/libheap.a(tlsf.c.obj) -__fixdfsi /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(fixdfsi.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) -__floatsidf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsidf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) -__floatsisf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatsisf.o) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -__floatunsidf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(floatunsidf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__fp_lock_all /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__fp_unlock_all /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__gedf2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-errno.o) - esp-idf/main/libmain.a(hello_world_main.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) -__gettzinfo /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gettzinfo.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) -__global_locale_ptr /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(gedf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) -__hi0bits /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__i2b /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) -__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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) -__ledf2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__lo0bits /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) -__locale_mb_cur_max /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -__localeconv_l /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__lock___sinit_recursive_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__lock___tz_mutex esp-idf/newlib/libnewlib.a(locks.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) -__lshift /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__ltdf2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(ledf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__mcmp /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__mdiff /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__moddi3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_moddi3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - esp-idf/newlib/libnewlib.a(time.c.obj) -__month_lengths /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-month_lengths.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) -__mprec_bigtens /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__mprec_tens /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__mprec_tinytens /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) -__muldf3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(muldf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__multadd /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__multiply /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__nedf2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(eqdf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__popcountsi2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_popcountsi2.o) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -__pow5mult /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) -__ratio /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) -__retarget_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-envlock.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) -__sccl /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sccl.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -__sclose /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__seofread /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) -__sf_fake_stderr /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) -__sf_fake_stdin /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) -__sf_fake_stdout /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) -__sflags /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-flags.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) -__sflush_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) -__sfmoreglue /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__sfp /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) -__sfp_lock_acquire /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) -__sfp_lock_release /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) -__sfvwrite_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) -__sinit /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) -__sinit_lock_acquire /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__sinit_lock_release /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__smakebuf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) -__sprint_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) -__sread /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__srefill_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) -__sseek /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__ssprint_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__ssrefill_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -__ssvfiscanf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) -__state_table /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__subdf3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(subdf3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__submore /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -__swhatbuf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) -__swrite /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -__swsetup_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -__sync_add_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_add_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_add_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_add_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_and_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_and_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_and_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_and_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_bool_compare_and_swap_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_nand_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_nand_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_nand_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_nand_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_fetch_and_or_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_lock_release_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_release_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_release_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_release_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_test_and_set_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_test_and_set_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_test_and_set_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_lock_test_and_set_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_nand_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_nand_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_nand_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_nand_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_or_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_or_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_or_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_or_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_sub_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_sub_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_sub_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_sub_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_val_compare_and_swap_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) -__sync_xor_and_fetch_1 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_xor_and_fetch_2 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_xor_and_fetch_4 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__sync_xor_and_fetch_8 esp-idf/newlib/libnewlib.a(stdatomic.c.obj) -__trunctfdf2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__tz_lock /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) -__tz_unlock /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzlock.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) -__tzcalc_limits /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzcalc_limits.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_udivdi3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -__ulp /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) -__umoddi3 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(_umoddi3.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - esp-idf/newlib/libnewlib.a(time.c.obj) -__unorddf2 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(unorddf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -__utoa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_cleanup /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -_cleanup_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) -_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-stdio.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_ctype_ /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ctype_.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) -_data_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_daylight /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) -_dtoa_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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/efuse/libefuse.a(esp_efuse_rtc_calib.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/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/freertos/libfreertos.a(port_common.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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) -_fflush_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) -_findenv_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) -_flash_rodata_start esp-idf/freertos/libfreertos.a(port.c.obj) -_fopen_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) -_fprintf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) -_fputs_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) -_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wsetup.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-reent.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_fseek_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) -_fseeko_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) -_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_fwalk /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) -_fwalk_reent /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwalk.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) -_fwrite_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) -_getenv_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sysgettod.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_global_impure_ptr /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-impure.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) -_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/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -_iram_end esp-idf/heap/libheap.a(memory_layout.c.obj) -_iram_start esp-idf/heap/libheap.a(memory_layout.c.obj) -_iram_text_end esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -_isatty_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) -_kill_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_link_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_localeconv_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/log/liblog.a(log_freertos.c.obj) -_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) -_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) -_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_crypto_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/log/liblog.a(log_freertos.c.obj) -_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) -_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-makebuf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_mbrtowc_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -_mbtowc_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbtowc_r.o) -_mprec_log10 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) -_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_printf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) -_puts_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) -_raise_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_reclaim_reent /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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(syscalls.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) -_rtc_text_end esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -_sbrk_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_setlocale_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) -_sfread_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -_siscanf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) -_snprintf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) -_sprintf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) -_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_strerror_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) -_strtol_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -_strtoll_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -_strtoul_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -_strtoull_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -_sungetc_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -_svfiprintf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) -_svfprintf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) -_tzname /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzvars.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) -_tzset_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) -_tzset_unlocked /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-lcltime_r.o) -_tzset_unlocked_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset.o) -_ungetc_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) -_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) -_user_strerror /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-u_strerr.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) -_vector_table esp-idf/riscv/libriscv.a(vectors.S.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -_vfiprintf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) -_vfprintf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-printf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) -_vprintf_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vprintf.o) -_wctomb_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-wctomb_r.o) -_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) -abort esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/hal/libhal.a(sha_hal.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/driver/libdriver.a(gpio.c.obj) - esp-idf/riscv/libriscv.a(instruction_decode.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(tasks.c.obj) - esp-idf/freertos/libfreertos.a(port.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/esp_system/libesp_system.a(startup.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -access esp-idf/vfs/libvfs.a(vfs.c.obj) -adc2_wifi_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc2_wifi_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_calc_hw_calibration_code esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_hal_arbiter_config esp-idf/hal/libhal.a(adc_hal_common.c.obj) -adc_hal_calibration_init esp-idf/hal/libhal.a(adc_hal_common.c.obj) -adc_hal_self_calibration esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_hal_set_calibration_param esp-idf/hal/libhal.a(adc_hal_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_hal_set_controller esp-idf/hal/libhal.a(adc_hal_common.c.obj) -adc_lock_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_lock_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_lock_try_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -adc_power_acquire esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -adc_power_release esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -adc_set_hw_calibration_code esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.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) -block_absorb_post_hook esp-idf/heap/libheap.a(tlsf.c.obj) -bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_common_check_long_hold_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_check_long_hold_gpio_level esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_erase_part_type_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) -bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - 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_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) -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_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -bootloader_flash_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_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) -bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_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(bootloader_flash.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_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -brownout_hal_config esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -brownout_hal_intr_clear esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -brownout_hal_intr_enable esp-idf/hal/libhal.a(brownout_hal.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -bzero /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - esp-idf/newlib/libnewlib.a(heap.c.obj) -cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj) -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/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.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/driver/libdriver.a(gpio.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -ceil /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_ceil.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) -cfree esp-idf/newlib/libnewlib.a(heap.c.obj) -cleanup_glue /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) -console_access esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_close esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_end_select esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_fcntl esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_fstat esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_fsync esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_open esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_read esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_tcdrain esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_tcflush esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_tcgetattr esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_tcsetattr esp-idf/vfs/libvfs.a(vfs_console.c.obj) -console_write esp-idf/vfs/libvfs.a(vfs_console.c.obj) -eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) -efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(chip_info.c.obj) -efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) -efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -environ /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-environ.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/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/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_app_get_description esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -esp_app_get_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -esp_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-idf/driver/libdriver.a(uart.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_clk_cpu_freq esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -esp_clk_init esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_clk_private_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -esp_clk_private_unlock esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -esp_clk_rtc_time esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -esp_clk_slowclk_cal_get esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) -esp_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-idf/driver/libdriver.a(uart.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_cpu_clear_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_compare_and_set esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) -esp_cpu_intr_get_desc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) -esp_cpu_set_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) -esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) -esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) -esp_crosscore_int_init esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/freertos/libfreertos.a(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_gdb_call 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_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/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_efuse_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.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.c.obj) -esp_efuse_find_unused_key_block esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_get_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_rtc_calib_get_cal_voltage esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -esp_efuse_rtc_calib_get_init_code esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -esp_efuse_rtc_calib_get_tsens_val esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) -esp_efuse_rtc_calib_get_ver esp-idf/efuse/libefuse.a(esp_efuse_rtc_calib.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) -esp_efuse_set_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) -esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) -esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) -esp_enable_cache_wrap esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -esp_err_to_name esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_err_to_name_r esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) -esp_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_th esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_chip_winbond esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) -esp_flash_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_deinit_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_encryption_init_checks esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_flash_erase_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_erase_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_get_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_get_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-idf/main/libmain.a(hello_world_main.c.obj) -esp_flash_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_init_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -esp_flash_init_main esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_init_main_bus_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -esp_flash_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_noos_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -esp_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_read_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_read_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_read_unique_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_registered_chips esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_set_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_set_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_set_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_suspend_cmd_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -esp_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) -esp_get_free_heap_size esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -esp_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_init_app_elf_sha256 esp-idf/esp_app_format/libesp_app_format.a(esp_app_desc.c.obj) -esp_int_wdt_cpu_init esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/freertos/libfreertos.a(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(gpio.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) -esp_intr_alloc_intrstatus esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -esp_intr_disable 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_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(esp_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/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_intr_enable_source esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_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/esp_hw_support/libesp_hw_support.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(usb_serial_jtag.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-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) -esp_intr_get_intno esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_mark_shared esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -esp_intr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -esp_intr_reserve esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_intr_set_in_iram esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -esp_log_default_level esp-idf/log/liblog.a(log.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/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(rtc_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/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/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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.c.obj) - esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/driver/libdriver.a(gpio.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/newlib/libnewlib.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(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(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.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/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.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.c.obj) - esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/driver/libdriver.a(gpio.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/newlib/libnewlib.a(pthread.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_log_writev esp-idf/log/liblog.a(log.c.obj) -esp_mprot_dump_configuration esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_active_intr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_get_default_main_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_monitor_en esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_monitor_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_pms_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_split_addr_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_get_violate_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_get_violate_byte_enables esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_get_violate_operation esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_get_violate_world esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_has_byte_enables esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_is_conf_locked_any esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_mprot_is_intr_ena_any esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -esp_mprot_ll_err_to_esp_err esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_ll_world_to_hl_world esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_monitor_clear_intr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_oper_type_to_str esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_pms_world_to_str esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot_conv.c.obj) - esp-idf/esp_system/libesp_system.a(panic_arch.c.obj) -esp_mprot_set_monitor_en esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_monitor_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_pms_area esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_pms_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_prot esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_mprot_set_split_addr esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mprot_set_split_addr_lock esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -esp_mspi_get_io esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -esp_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_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_target.c.obj) -esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_mark_app_invalid_rollback_and_reboot esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_mark_app_valid_cancel_rollback esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_set_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_write esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_ota_write_with_offset esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -esp_panic_handler esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -esp_panic_handler_reconfigure_wdts esp-idf/esp_system/libesp_system.a(panic.c.obj) -esp_partition_check_identity esp-idf/spi_flash/libspi_flash.a(partition_target.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_target.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_target.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_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -esp_partition_mmap esp-idf/spi_flash/libspi_flash.a(partition_target.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_target.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_target.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_target.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_target.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_pthread_get_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_pthread_get_default_config esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_pthread_init esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -esp_pthread_set_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) -esp_ptr_byte_accessible esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) -esp_ptr_dma_ext_capable esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) -esp_ptr_external_ram esp-idf/esp_hw_support/libesp_hw_support.a(esp_memory_utils.c.obj) -esp_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 esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) -esp_reset_reason_get_hint esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) -esp_reset_reason_set_hint esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -esp_restart esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/main/libmain.a(hello_world_main.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_restart_noos esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -esp_restart_noos_dig esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj) -esp_rom_delay_us esp-idf/hal/libhal.a(adc_hal_common.c.obj) - 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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_efuse_get_flash_gpio_info esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -esp_rom_efuse_get_flash_wp_gpio esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -esp_rom_get_cpu_ticks_per_us esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/log/liblog.a(log_freertos.c.obj) -esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/esp_system/libesp_system.a(reset_reason.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_gpio_connect_in_signal esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) - esp-idf/driver/libdriver.a(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_md5_final esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -esp_rom_md5_init esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -esp_rom_md5_update esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) -esp_rom_newlib_init_common_mutexes esp-idf/newlib/libnewlib.a(locks.c.obj) -esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_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/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/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(rtc_init.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/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(brownout.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_regi2c_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_regi2c_read_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_regi2c_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_regi2c_write_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -esp_rom_route_intr_matrix esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_system/libesp_system.a(cache_err_int.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) -esp_rom_spiflash_wait_idle 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/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/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj) -esp_set_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_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_sync_timekeeping_timers esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) -esp_system_abort esp-idf/esp_system/libesp_system.a(esp_system.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -esp_system_get_time esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/newlib/libnewlib.a(esp_time_impl.c.obj) -esp_system_get_time_resolution esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/newlib/libnewlib.a(time.c.obj) -esp_task_wdt_add esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_add_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_deinit esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_delete esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_delete_user esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -esp_task_wdt_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_reset_user 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_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -esp_timer_get_expiry_time esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_next_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_next_alarm_for_wake_up esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_period esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/esp_timer/libesp_timer.a(system_time.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_impl_advance esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_impl_early_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_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 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_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_set esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -esp_timer_private_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.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(port_systick.c.obj) -esp_vfs_access esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_close esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_closedir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_console_register esp-idf/vfs/libvfs.a(vfs_console.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -esp_vfs_dev_console_register esp-idf/vfs/libvfs.a(vfs_console.c.obj) -esp_vfs_dev_uart_port_set_rx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -esp_vfs_dev_uart_port_set_tx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -esp_vfs_dev_uart_register esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -esp_vfs_dev_uart_set_rx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -esp_vfs_dev_uart_set_tx_line_endings esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -esp_vfs_dev_uart_use_driver esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -esp_vfs_dev_uart_use_nonblocking esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -esp_vfs_dev_usb_serial_jtag_register esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) -esp_vfs_dev_usb_serial_jtag_set_rx_line_endings esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) -esp_vfs_dev_usb_serial_jtag_set_tx_line_endings esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) -esp_vfs_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_fstat esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_fsync esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_link esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_lseek esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_open esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_opendir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_pread esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_pwrite esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_read esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_readdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/vfs/libvfs.a(vfs_console.c.obj) -esp_vfs_register_common esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_console.c.obj) -esp_vfs_register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_fd_range esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_fd_with_local_fd esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_register_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_rename esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_select esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_select_triggered esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -esp_vfs_select_triggered_isr esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -esp_vfs_stat esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_telldir esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_truncate esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_uart_get_vfs esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_console.c.obj) -esp_vfs_unlink esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_fd esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_unregister_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_usb_serial_jtag_get_vfs esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/vfs/libvfs.a(vfs_console.c.obj) -esp_vfs_usb_serial_jtag_use_driver esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) -esp_vfs_usb_serial_jtag_use_nonblocking esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) -esp_vfs_utime esp-idf/vfs/libvfs.a(vfs.c.obj) -esp_vfs_write esp-idf/vfs/libvfs.a(vfs.c.obj) -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_get_priority esp-idf/riscv/libriscv.a(interrupt.c.obj) -esprv_intc_int_get_type esp-idf/riscv/libriscv.a(interrupt.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(esp_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(esp_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/hal/libhal.a(efuse_hal.c.obj) -ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) -fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) -fflush /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fflush.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-refill.o) - esp-idf/main/libmain.a(hello_world_main.c.obj) -floor /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libm.a(lib_a-s_floor.o) - esp-idf/hal/libhal.a(spi_flash_hal.c.obj) -fopen /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -fprintf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fprintf.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -fputs /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.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(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(gpio.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/log/liblog.a(log.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -frexp /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-s_frexp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) -fseek /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseek.o) -fseeko /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) -fsync esp-idf/vfs/libvfs.a(vfs.c.obj) -ftruncate esp-idf/vfs/libvfs.a(vfs.c.obj) -fwrite /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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(esp_flash_spi_init.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(task_wdt.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_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_twdt_isr esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -gdma_append esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_apply_strategy esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_connect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) -gdma_del_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) -gdma_disconnect esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) -gdma_get_channel_id esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) -gdma_hal_init esp-idf/hal/libhal.a(gdma_hal.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_new_channel esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/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/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_register_rx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_register_tx_event_callbacks esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_reset esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -gdma_set_transfer_ability esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -gdma_start esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_crypto_shared_gdma.c.obj) -gdma_stop esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) -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) -get_vfs_for_index esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_console.c.obj) -get_vfs_for_path esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/vfs/libvfs.a(vfs_console.c.obj) -gettimeofday /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -gmtime_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-gmtime_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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_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) -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/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_check_add_region_allowed esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) -heap_caps_free esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) -heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -heap_caps_get_info esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_get_largest_free_block esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -heap_caps_get_total_size esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_init esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/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(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_malloc_default esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/newlib/libnewlib.a(heap.c.obj) -heap_caps_malloc_extmem_enable esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_malloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_match esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -heap_caps_print_heap_info esp-idf/heap/libheap.a(heap_caps.c.obj) -heap_caps_realloc esp-idf/heap/libheap.a(heap_caps.c.obj) -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) -include_esp_phy_override esp-idf/esp_phy/libesp_phy.a(phy_override.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) -ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) -iswspace /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) -iswspace_l /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace_l.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-iswspace.o) -itoa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-itoa.o) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) -localeconv /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-localeconv.o) -localtime_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(newlib_init.c.obj) - esp-idf/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/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/log/liblog.a(log.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -malloc_stats esp-idf/newlib/libnewlib.a(heap.c.obj) -malloc_trim esp-idf/newlib/libnewlib.a(heap.c.obj) -malloc_usable_size esp-idf/newlib/libnewlib.a(heap.c.obj) -mallopt esp-idf/newlib/libnewlib.a(heap.c.obj) -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) - 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_starts 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) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) -mbrtowc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mbrtowc.o) -memalign esp-idf/newlib/libnewlib.a(heap.c.obj) -memchr /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memchr.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) -memcmp /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcmp.o) - esp-idf/spi_flash/libspi_flash.a(partition.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_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -memcpy /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memcpy.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-mprec.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-dtoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-utoa.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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/newlib/libnewlib.a(stdatomic.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/esp_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_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/log/liblog.a(log.c.obj) -memmove /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memmove-stub.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fvwrite.o) -memset /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-memset.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti/libgcc.a(trunctfdf2.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-bzero.o) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.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/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_target.c.obj) - esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) - esp-idf/newlib/libnewlib.a(syscalls.c.obj) - esp-idf/newlib/libnewlib.a(reent_init.c.obj) - esp-idf/newlib/libnewlib.a(abort.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -memspi_host_erase_block esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_erase_chip esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_erase_sector esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_flush_cache esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_init_pointers esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -memspi_host_program_page esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read_id_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_read_status_hs esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_set_write_protect esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -memspi_host_write_data_slicer esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) -mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj) -mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) -mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj) -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_assert_impl esp-idf/newlib/libnewlib.a(assert.c.obj) -newlib_include_heap_impl esp-idf/newlib/libnewlib.a(heap.c.obj) -newlib_include_pthread_impl esp-idf/newlib/libnewlib.a(pthread.c.obj) -newlib_include_syscalls_impl esp-idf/newlib/libnewlib.a(syscalls.c.obj) -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) -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(task_wdt.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_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_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.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/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(int_wdt.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -periph_module_reset esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -periph_rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -periph_rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -periph_rtc_dig_clk8m_get_freq esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -phy_i2c_enter_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -phy_i2c_exit_critical esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port_common.c.obj) -posix_memalign esp-idf/newlib/libnewlib.a(heap.c.obj) -pread esp-idf/vfs/libvfs.a(vfs.c.obj) -printf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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(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_cond_broadcast esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_cond_destroy esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_cond_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_cond_signal esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_cond_timedwait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_cond_wait esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_condattr_init esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_condattr_setclock esp-idf/newlib/libnewlib.a(pthread.c.obj) -pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_include_pthread_cond_var_impl esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -pthread_include_pthread_impl esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_include_pthread_local_storage_impl esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) -pthread_include_pthread_rwlock_impl esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_internal_local_storage_destructor_callback esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_join esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_key_create esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - 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) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_rwlock_destroy esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_init esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_rdlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_unlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_rwlock_wrlock esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) -pthread_self esp-idf/pthread/libpthread.a(pthread.c.obj) -pthread_setcancelstate esp-idf/newlib/libnewlib.a(pthread.c.obj) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fclose.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fwrite.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fseeko.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fopen.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-findfp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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(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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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) -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) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiscanf.o) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -regi2c_analog_cali_reg_read esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -regi2c_analog_cali_reg_write esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -regi2c_ctrl_read_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -regi2c_ctrl_read_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -regi2c_ctrl_write_reg esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -regi2c_ctrl_write_reg_mask esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/hal/libhal.a(adc_hal_common.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) -regi2c_enter_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -regi2c_exit_critical esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -regi2c_saradc_disable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -regi2c_saradc_enable esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) -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/esp_hw_support/libesp_hw_support.a(cpu.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_flash_chip_dummy_hpm esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -rom_spiflash_api_funcs esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) -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(esp_flash_api.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8m_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cal_internal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_clk_cal_ratio esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(esp_system.c.obj) -rtc_clk_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_freq_cal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -rtc_clk_select_rtc_slow_clk esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) - esp-idf/esp_system/libesp_system.a(system_internal.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_wait_for_slow_cycle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/esp_system/libesp_system.a(clk.c.obj) -rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_deep_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) -rtc_deep_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) -rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj) -rtc_gpio_is_valid_gpio 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_isr_deregister esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -rtc_isr_noniram_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -rtc_isr_noniram_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) -rtc_isr_register esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -rtc_light_slp_time_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_time.c.obj) -rtc_sleep_get_default_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) -rtc_sleep_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) -rtc_sleep_low_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) -rtc_sleep_pu esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_init.c.obj) -rtc_sleep_set_wakeup_time esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) -rtc_sleep_start esp-idf/esp_hw_support/libesp_hw_support.a(rtc_sleep.c.obj) -rtc_spinlock esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) -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) -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.c.obj) -s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.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) -set_xpd_sar esp-idf/esp_phy/libesp_phy.a(phy_override.c.obj) -setlocale /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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_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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) -sleep esp-idf/newlib/libnewlib.a(time.c.obj) -snprintf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-snprintf.o) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) - esp-idf/log/liblog.a(log_freertos.c.obj) -soc_get_available_memory_region_max_count esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_get_available_memory_regions esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_memory_region_count esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_memory_regions esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(memory_layout_utils.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_memory_type_count esp-idf/heap/libheap.a(memory_layout.c.obj) -soc_memory_types esp-idf/heap/libheap.a(memory_layout.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) -soc_reserved_memory_region_end esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -soc_reserved_memory_region_start esp-idf/heap/libheap.a(memory_layout_utils.c.obj) -spi_bus_add_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_deinit_lock esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) -spi_bus_free esp-idf/driver/libdriver.a(spi_common.c.obj) -spi_bus_get_attr esp-idf/driver/libdriver.a(spi_common.c.obj) -spi_bus_init_lock esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) -spi_bus_initialize esp-idf/driver/libdriver.a(spi_common.c.obj) -spi_bus_lock_acquire_end esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_bus_lock_acquire_start esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_bus_lock_bg_check_dev_acq esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_check_dev_req esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_clear_req esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_entry esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_exit esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_req_exist esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_lock_bg_request esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_lock_get_acquiring_dev esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_lock_get_by_id esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_get_dev_id esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_register_dev esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_set_bg_control esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_lock_touch esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_bus_lock_unregister_dev esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_bus_lock_wait_bg_done esp-idf/driver/libdriver.a(spi_bus_lock.c.obj) -spi_bus_main_set_lock esp-idf/driver/libdriver.a(spi_common.c.obj) -spi_bus_register_destroy_func esp-idf/driver/libdriver.a(spi_common.c.obj) -spi_bus_remove_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_brownout_need_reset esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/esp_system/libesp_system.a(brownout.c.obj) -spi_flash_cache2phys esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) -spi_flash_cache_enabled esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_system/libesp_system.a(esp_err.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -spi_flash_check_and_flush_cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_chip_boya_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) -spi_flash_chip_boya_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) -spi_flash_chip_gd_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_gd_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_generic_config_host_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_detect_size esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_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_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_generic_get_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_chip_generic_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_read_reg esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_read_unique_id esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_read_unique_id_none esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) -spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_generic_set_write_protect esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_suspend_cmd_conf esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_timeout esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_write esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_boya.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_mxic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_chip_generic_yield esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_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_th_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) -spi_flash_chip_th_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_th.c.obj) -spi_flash_chip_winbond_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_get_caps esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_winbond_page_program esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_chip_winbond_probe esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) -spi_flash_chip_winbond_read esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_winbond.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) -spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) -spi_flash_disable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_disable_interrupts_caches_and_other_cpu_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_enable_cache esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) -spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_enable_interrupts_caches_no_os esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_encryption_hal_check esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_destroy esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_disable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_done esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_enable esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_encryption_hal_prepare esp-idf/hal/libhal.a(spi_flash_encrypt_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) -spi_flash_guard_get esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_flash_guard_set esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_hal_check_status esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_common_command esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_device_config esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_disable_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_disable_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_erase_block esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_erase_chip esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_erase_sector esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_check_status esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_common_command esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_configure_host_io_mode esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_device_config esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_gpspi_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal_gpspi.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_init esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_poll_cmd_done esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_program_page esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_read esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_resume esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_set_write_protect esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_setup_auto_resume_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_setup_auto_suspend_mode esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) -spi_flash_hal_setup_read_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_supports_direct_read esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_supports_direct_write esp-idf/hal/libhal.a(spi_flash_hal.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_hal_suspend esp-idf/hal/libhal.a(spi_flash_hal_iram.c.obj) - esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) -spi_flash_init_chip_state esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) - esp-idf/esp_system/libesp_system.a(cpu_start.c.obj) -spi_flash_init_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spi_flash_mmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -spi_flash_mmap_dump esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_mmap_get_free_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -spi_flash_mmap_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_munmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) - esp-idf/spi_flash/libspi_flash.a(partition_target.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) -spi_flash_needs_reset_check esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/esp_system/libesp_system.a(startup.c.obj) -spi_flash_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) -spi_flash_set_erasing_flag esp-idf/spi_flash/libspi_flash.a(flash_brownout_hook.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) -spi_flash_set_rom_required_regs esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) -spi_periph_signal esp-idf/soc/libsoc.a(spi_periph.c.obj) - esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spicommon_bus_free_io_cfg esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_bus_initialize_io esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_bus_using_iomux esp-idf/driver/libdriver.a(spi_common.c.obj) - esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) -spicommon_cs_free_io esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_cs_initialize esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_dma_chan_alloc esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_dma_chan_free esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_dmaworkaround_idle esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_dmaworkaround_req_reset esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_dmaworkaround_reset_in_progress esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_dmaworkaround_transfer_active esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_irqdma_source_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_irqsource_for_host esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_periph_claim esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_periph_free esp-idf/driver/libdriver.a(spi_common.c.obj) -spicommon_periph_in_use esp-idf/driver/libdriver.a(spi_common.c.obj) -sprintf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-sprintf.o) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) -start_cpu0 esp-idf/esp_system/libesp_system.a(startup.c.obj) -strcat /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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 /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcmp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-locale.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/log/liblog.a(log.c.obj) -strcpy /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcpy.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - esp-idf/vfs/libvfs.a(vfs.c.obj) -strcspn /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strcspn.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -strerror /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) -strerror_l /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror.o) -strerror_r /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) -strlcat /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - esp-idf/esp_system/libesp_system.a(ubsan.c.obj) -strlcpy /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcpy.o) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) -strlen /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlen.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-siscanf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strlcat.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strerror_r.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-puts.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-fputs.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) - esp-idf/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(assert.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_memprot.c.obj) - esp-idf/log/liblog.a(log.c.obj) -strncmp /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncmp.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-getenv_r.o) - esp-idf/vfs/libvfs.a(vfs.c.obj) -strncpy /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strncpy.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfiprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-svfprintf.o) - esp-idf/spi_flash/libspi_flash.a(partition.c.obj) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -strstr /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strstr.o) - esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) -strtol /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) -strtol_l /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtol.o) -strtoll /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) -strtoll_l /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoll.o) -strtoul /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) - /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-tzset_r.o) -strtoul_l /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoul.o) -strtoull /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-strtoull.o) -strtoull_l /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_counter_can_stall_by_cpu esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_counter_value_advance esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_deinit esp-idf/hal/libhal.a(systimer_hal.c.obj) -systimer_hal_enable_alarm_int esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_enable_counter esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_get_alarm_value esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_get_counter_value esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_get_time esp-idf/hal/libhal.a(systimer_hal.c.obj) -systimer_hal_init esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_select_alarm_mode esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_set_alarm_period esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_hal_set_alarm_target esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) -systimer_hal_set_tick_rate_ops esp-idf/hal/libhal.a(systimer_hal.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_ticks_to_us esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -systimer_us_to_ticks esp-idf/esp_hw_support/libesp_hw_support.a(systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -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(tlsf.c.obj) -tlsf_align_size esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_alloc_overhead esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_block_size esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_block_size_max esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_block_size_min esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_check esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_check_pool esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_create esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_create_with_pool esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_destroy esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_free esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_get_pool esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_malloc esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_memalign esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_memalign_offs esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_pool_overhead esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_realloc esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_remove_pool esp-idf/heap/libheap.a(tlsf.c.obj) -tlsf_size esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -tlsf_walk_pool esp-idf/heap/libheap.a(tlsf.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) -truncate esp-idf/vfs/libvfs.a(vfs.c.obj) -tzset /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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_sclk_freq esp-idf/driver/libdriver.a(uart.c.obj) -uart_get_selectlock esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_get_stop_bits esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_get_tx_buffer_free_size esp-idf/driver/libdriver.a(uart.c.obj) -uart_get_wakeup_threshold esp-idf/driver/libdriver.a(uart.c.obj) -uart_get_word_length esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_hal_get_baudrate esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_get_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_get_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_get_max_rx_timeout_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_get_parity esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_get_sclk esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_get_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_get_symb_len esp-idf/hal/libhal.a(uart_hal.c.obj) -uart_hal_get_wakeup_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_init esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_inverse_signal esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_is_hw_rts_en esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_read_rxfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_rxfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_at_cmd_char esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_baudrate esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_data_bit_num esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_dtr esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_hw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_loop_back esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_mode esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_parity esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_rx_timeout esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_rxfifo_full_thr esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_sclk esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_stop_bits esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_sw_flow_ctrl esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_tx_idle_num esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_txfifo_empty_thr esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_set_wakeup_thrd esp-idf/hal/libhal.a(uart_hal.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_tx_break esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_txfifo_rst esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_hal_write_txfifo esp-idf/hal/libhal.a(uart_hal_iram.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/esp_system/libesp_system.a(panic.c.obj) -uart_intr_config esp-idf/driver/libdriver.a(uart.c.obj) -uart_is_driver_installed esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_param_config esp-idf/driver/libdriver.a(uart.c.obj) -uart_pattern_get_pos esp-idf/driver/libdriver.a(uart.c.obj) -uart_pattern_pop_pos esp-idf/driver/libdriver.a(uart.c.obj) -uart_pattern_queue_reset esp-idf/driver/libdriver.a(uart.c.obj) -uart_periph_signal esp-idf/soc/libsoc.a(uart_periph.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -uart_read_bytes esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_set_always_rx_timeout esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_baudrate esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_set_dtr esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_hw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_line_inverse esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_loop_back esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_mode esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_parity esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_set_pin esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_rts esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_rx_full_threshold esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_rx_timeout esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_select_notif_callback esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_set_stop_bits esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_set_sw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_tx_empty_threshold esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_tx_idle_num esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_wakeup_threshold esp-idf/driver/libdriver.a(uart.c.obj) -uart_set_word_length esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) -uart_tx_chars esp-idf/driver/libdriver.a(uart.c.obj) -uart_wait_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) -ulTaskGenericNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -ulTaskGenericNotifyValueClear esp-idf/freertos/libfreertos.a(tasks.c.obj) -ulTaskNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) -ungetc /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-ungetc.o) -usb_serial_jtag_driver_install esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) -usb_serial_jtag_driver_uninstall esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) -usb_serial_jtag_read_bytes esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) -usb_serial_jtag_write_bytes esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/vfs/libvfs.a(vfs_usb_serial_jtag.c.obj) -usleep esp-idf/newlib/libnewlib.a(time.c.obj) -utime esp-idf/vfs/libvfs.a(vfs.c.obj) -utoa /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/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) -vApplicationGetIdleTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -vApplicationGetTimerTaskMemory esp-idf/freertos/libfreertos.a(port_common.c.obj) -vApplicationStackOverflowHook esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -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) -vPortClearInterruptMask esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.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/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.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/driver/libdriver.a(gpio.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -vPortExitCritical esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(adc_share_hw_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(clk_ctrl_os.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/esp_system/libesp_system.a(freertos_hooks.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/driver/libdriver.a(gpio.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/vfs/libvfs.a(vfs_uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_systimer.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(regi2c_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(rtc_module.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/heap/libheap.a(multi_heap.c.obj) - esp-idf/heap/libheap.a(heap_caps_init.c.obj) - esp-idf/esp_system/libesp_system.a(apb_backup_dma.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread_rwlock.c.obj) - esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -vPortSetInterruptMask esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/newlib/libnewlib.a(stdatomic.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/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/esp_system/libesp_system.a(crosscore_int.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/freertos/libfreertos.a(port_systick.c.obj) -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/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) -vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - 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(usb_serial_jtag.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(usb_serial_jtag.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/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/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskGenericNotifyGiveFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) -vTaskGetSnapshot esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -vTaskInternalSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPlaceOnEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPlaceOnEventListRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -vTaskPlaceOnUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) -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) -vTaskReleaseKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) -vTaskRemoveFromUnorderedEventList 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) -vTaskTakeKernelLock esp-idf/freertos/libfreertos.a(tasks.c.obj) -valloc esp-idf/newlib/libnewlib.a(heap.c.obj) -vfiprintf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfiprintf.o) -vfprintf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti/libc.a(lib_a-vfprintf.o) -vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) -vprintf /Users/alekseiapaseev/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/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(int_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(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(int_wdt.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_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_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_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_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/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) -wifi_bt_common_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) -wifi_module_disable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) -wifi_module_enable esp-idf/esp_hw_support/libesp_hw_support.a(periph_ctrl.c.obj) -xIsrStackTop esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/freertos/libfreertos.a(portasm.S.obj) -xPortCheckValidTCBMem esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) -xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(gdma.c.obj) - esp-idf/driver/libdriver.a(uart.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(periph_ctrl.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(intr_alloc.c.obj) - esp-idf/esp_hw_support/libesp_hw_support.a(esp_clk.c.obj) - esp-idf/log/liblog.a(log_freertos.c.obj) - esp-idf/esp_system/libesp_system.a(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) -xPortcheckValidStackMem esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/freertos/libfreertos.a(tasks.c.obj) -xQueueAddToSet esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xQueueCreateCountingSemaphore esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) -xQueueCreateCountingSemaphoreStatic esp-idf/freertos/libfreertos.a(queue.c.obj) -xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/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/vfs/libvfs.a(vfs.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/log/liblog.a(log_freertos.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xQueueGenericSendFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/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/vfs/libvfs.a(vfs.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) -xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/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/vfs/libvfs.a(vfs.c.obj) - esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/log/liblog.a(log_freertos.c.obj) - esp-idf/pthread/libpthread.a(pthread_cond_var.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) - esp-idf/newlib/libnewlib.a(locks.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferCanRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - 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) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) -xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) -xRingbufferRemoveFromQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) -xRingbufferSend esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) - esp-idf/driver/libdriver.a(usb_serial_jtag.c.obj) - 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(usb_serial_jtag.c.obj) - esp-idf/driver/libdriver.a(uart.c.obj) -xTaskAbortDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskCatchUpTicks esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) - esp-idf/freertos/libfreertos.a(port_common.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xTaskCreateStaticPinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskDelayUntil esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGenericNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xTaskGenericNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGenericNotifyStateClear esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGenericNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/pthread/libpthread.a(pthread.c.obj) -xTaskGetAffinity esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_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) -xTaskGetHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskGetIdleTaskHandleForCPU esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) -xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.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) -xTaskNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/freertos/libfreertos.a(queue.c.obj) -xTaskResumeAll esp-idf/freertos/libfreertos.a(tasks.c.obj) - esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) -xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) -xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(tasks.c.obj) -xt_unhandled_exception esp-idf/esp_system/libesp_system.a(panic_handler.c.obj) - esp-idf/esp_system/libesp_system.a(task_wdt.c.obj) - esp-idf/riscv/libriscv.a(vectors.S.obj) diff --git a/tests/fixtures/hello_world_esp32c3_panic/build/prefix_map_gdbinit b/tests/fixtures/hello_world_esp32c3_panic/build/prefix_map_gdbinit deleted file mode 100644 index fa14911a..00000000 --- a/tests/fixtures/hello_world_esp32c3_panic/build/prefix_map_gdbinit +++ /dev/null @@ -1 +0,0 @@ -set substitute-path /COMPONENT_MAIN_DIR ./hello_world_esp32c3_panic/main diff --git a/tests/fixtures/hello_world_esp32c3_panic/main/CMakeLists.txt b/tests/fixtures/hello_world_esp32c3_panic/main/CMakeLists.txt new file mode 100644 index 00000000..2d35451d --- /dev/null +++ b/tests/fixtures/hello_world_esp32c3_panic/main/CMakeLists.txt @@ -0,0 +1,5 @@ +idf_component_register(SRCS "hello_world_main.c" + INCLUDE_DIRS "" + REQUIRES spi_flash espcoredump) + +target_compile_options(${COMPONENT_LIB} PRIVATE -w) diff --git a/tests/fixtures/hello_world_esp32c3_panic/sdkconfig.defaults b/tests/fixtures/hello_world_esp32c3_panic/sdkconfig.defaults new file mode 100644 index 00000000..12283f4c --- /dev/null +++ b/tests/fixtures/hello_world_esp32c3_panic/sdkconfig.defaults @@ -0,0 +1,6 @@ + # This file was generated using idf.py save-defconfig. It can be edited manually. + # Espressif IoT Development Framework (ESP-IDF) 6.1.0 Project Minimal Configuration + # + # default: +CONFIG_IDF_TARGET="esp32c3" +CONFIG_APP_REPRODUCIBLE_BUILD=y