diff --git a/tools/idf_size.py b/tools/idf_size.py index 62b4f3be7..a08ab0480 100755 --- a/tools/idf_size.py +++ b/tools/idf_size.py @@ -279,22 +279,18 @@ def load_sections(map_file): return sections -def sizes_by_key(sections, key): - """ Takes a dict of sections (from load_sections) and returns - a dict keyed by 'key' with aggregate output size information. +class MemRegNames(object): - Key can be either "archive" (for per-archive data) or "file" (for per-file data) in the result. - """ - result = {} - for section in sections.values(): - for s in section["sources"]: - if not s[key] in result: - result[s[key]] = {} - archive = result[s[key]] - if not section["name"] in archive: - archive[section["name"]] = 0 - archive[section["name"]] += s["size"] - return result + @staticmethod + def get(mem_regions, memory_config, sections): + mreg = MemRegNames() + mreg.iram_names = mem_regions.get_names(memory_config, MemRegions.IRAM_ID) + mreg.dram_names = mem_regions.get_names(memory_config, MemRegions.DRAM_ID) + mreg.diram_names = mem_regions.get_names(memory_config, MemRegions.DIRAM_ID) + mreg.used_iram_names = mem_regions.get_names(sections, MemRegions.IRAM_ID) + mreg.used_dram_names = mem_regions.get_names(sections, MemRegions.DRAM_ID) + mreg.used_diram_names = mem_regions.get_names(sections, MemRegions.DIRAM_ID) + return mreg def main(): @@ -321,6 +317,12 @@ def main(): parser.add_argument( '--target', help='Set target chip', default='esp32') + parser.add_argument( + '--diff', help='Show the differences in comparison with another MAP file', + metavar='ANOTHER_MAP_FILE', + default=None, + dest='another_map_file') + parser.add_argument( '-o', '--output-file', @@ -330,224 +332,511 @@ def main(): args = parser.parse_args() - mem_regions = MemRegions(args.target) - - output = "" - memory_config, sections = load_map_data(args.map_file) + args.map_file.close() - MemRegNames = collections.namedtuple('MemRegNames', ['iram_names', 'dram_names', 'diram_names', 'used_iram_names', - 'used_dram_names', 'used_diram_names']) - mem_reg = MemRegNames - mem_reg.iram_names = mem_regions.get_names(memory_config, MemRegions.IRAM_ID) - mem_reg.dram_names = mem_regions.get_names(memory_config, MemRegions.DRAM_ID) - mem_reg.diram_names = mem_regions.get_names(memory_config, MemRegions.DIRAM_ID) - mem_reg.used_iram_names = mem_regions.get_names(sections, MemRegions.IRAM_ID) - mem_reg.used_dram_names = mem_regions.get_names(sections, MemRegions.DRAM_ID) - mem_reg.used_diram_names = mem_regions.get_names(sections, MemRegions.DIRAM_ID) + if args.another_map_file: + with open(args.another_map_file, 'r') as f: + memory_config_diff, sections_diff = load_map_data(f) + else: + memory_config_diff, sections_diff = None, None + + mem_regions = MemRegions(args.target) + mem_reg = MemRegNames.get(mem_regions, memory_config, sections) + mem_reg_diff = MemRegNames.get(mem_regions, memory_config_diff, sections_diff) if args.another_map_file else None + + output = '' if not args.json or not (args.archives or args.files or args.archive_details): - output += get_summary(mem_reg, memory_config, sections, args.json) + output += get_summary(args.map_file.name, mem_reg, memory_config, sections, + args.json, + args.another_map_file, mem_reg_diff, memory_config_diff, sections_diff) if args.archives: - output += get_detailed_sizes(mem_reg, sections, "archive", "Archive File", args.json) + output += get_detailed_sizes(mem_reg, sections, "archive", "Archive File", args.json, sections_diff) if args.files: - output += get_detailed_sizes(mem_reg, sections, "file", "Object File", args.json) + output += get_detailed_sizes(mem_reg, sections, "file", "Object File", args.json, sections_diff) if args.archive_details: - output += get_archive_symbols(mem_reg, sections, args.archive_details, args.json) + output += get_archive_symbols(mem_reg, sections, args.archive_details, args.json, sections_diff) args.output_file.write(output) + args.output_file.close() -def get_summary(mem_reg, memory_config, sections, as_json=False): - def get_size(section): +class StructureForSummary(object): + (dram_data_names, dram_bss_names, dram_other_names, + diram_data_names, diram_bss_names) = (frozenset(), ) * 5 + + (total_iram, total_dram, total_dram, total_diram, + used_dram_data, used_dram_bss, used_dram_other, + used_dram, used_dram_ratio, + used_iram, used_iram_ratio, + used_diram_data, used_diram_bss, + used_diram, used_diram_ratio, + flash_code, flash_rodata, + total_size) = (0, ) * 18 + + @staticmethod + def get(reg, mem_conf, sects): + + def _get_size(sects, section): + try: + return sects[section]['size'] + except KeyError: + return 0 + + r = StructureForSummary() + + r.dram_data_names = frozenset([n for n in reg.used_dram_names if n.endswith('.data')]) + r.dram_bss_names = frozenset([n for n in reg.used_dram_names if n.endswith('.bss')]) + r.dram_other_names = reg.used_dram_names - r.dram_data_names - r.dram_bss_names + + r.diram_data_names = frozenset([n for n in reg.used_diram_names if n.endswith('.data')]) + r.diram_bss_names = frozenset([n for n in reg.used_diram_names if n.endswith('.bss')]) + + r.total_iram = sum(mem_conf[n]['length'] for n in reg.iram_names) + r.total_dram = sum(mem_conf[n]['length'] for n in reg.dram_names) + r.total_diram = sum(mem_conf[n]['length'] for n in reg.diram_names) + + r.used_dram_data = sum(_get_size(sects, n) for n in r.dram_data_names) + r.used_dram_bss = sum(_get_size(sects, n) for n in r.dram_bss_names) + r.used_dram_other = sum(_get_size(sects, n) for n in r.dram_other_names) + r.used_dram = r.used_dram_data + r.used_dram_bss + r.used_dram_other try: - return sections[section]["size"] - except KeyError: - return 0 + r.used_dram_ratio = r.used_dram / r.total_dram + except ZeroDivisionError: + r.used_dram_ratio = float('nan') - dram_data_names = frozenset([n for n in mem_reg.used_dram_names if n.endswith('.data')]) - dram_bss_names = frozenset([n for n in mem_reg.used_dram_names if n.endswith('.bss')]) - dram_other_names = mem_reg.used_dram_names - dram_data_names - dram_bss_names + r.used_iram = sum(_get_size(sects, s) for s in sects if s in reg.used_iram_names) + try: + r.used_iram_ratio = r.used_iram / r.total_iram + except ZeroDivisionError: + r.used_iram_ratio = float('nan') - diram_data_names = frozenset([n for n in mem_reg.used_diram_names if n.endswith('.data')]) - diram_bss_names = frozenset([n for n in mem_reg.used_diram_names if n.endswith('.bss')]) + r.used_diram_data = sum(_get_size(sects, n) for n in r.diram_data_names) + r.used_diram_bss = sum(_get_size(sects, n) for n in r.diram_bss_names) + r.used_diram = sum(_get_size(sects, n) for n in reg.used_diram_names) + try: + r.used_diram_ratio = r.used_diram / r.total_diram + except ZeroDivisionError: + r.used_diram_ratio = float('nan') - total_iram = sum(memory_config[n]["length"] for n in mem_reg.iram_names) - total_dram = sum(memory_config[n]["length"] for n in mem_reg.dram_names) - total_diram = sum(memory_config[n]["length"] for n in mem_reg.diram_names) + r.flash_code = _get_size(sects, '.flash.text') + r.flash_rodata = _get_size(sects, '.flash.rodata') + r.total_size = r.used_dram + r.used_iram + r.used_diram + r.flash_code + r.flash_rodata - used_dram_data = sum(get_size(n) for n in dram_data_names) - used_dram_bss = sum(get_size(n) for n in dram_bss_names) - used_dram_other = sum(get_size(n) for n in dram_other_names) - used_dram = used_dram_data + used_dram_bss + used_dram_other - try: - used_dram_ratio = used_dram / total_dram - except ZeroDivisionError: - used_dram_ratio = float('nan') + return r - used_iram = sum(get_size(s) for s in sections if s in mem_reg.used_iram_names) - try: - used_iram_ratio = used_iram / total_iram - except ZeroDivisionError: - used_iram_ratio = float('nan') - used_diram_data = sum(get_size(n) for n in diram_data_names) - used_diram_bss = sum(get_size(n) for n in diram_bss_names) - used_diram = sum(get_size(n) for n in mem_reg.used_diram_names) - try: - used_diram_ratio = used_diram / total_diram - except ZeroDivisionError: - used_diram_ratio = float('nan') +def get_summary(path, mem_reg, memory_config, sections, + as_json=False, + path_diff=None, mem_reg_diff=None, memory_config_diff=None, sections_diff=None): - flash_code = get_size(".flash.text") - flash_rodata = get_size(".flash.rodata") - total_size = used_dram + used_iram + used_diram + flash_code + flash_rodata + diff_en = not as_json and mem_reg_diff and memory_config_diff and sections_diff + + current = StructureForSummary.get(mem_reg, memory_config, sections) + reference = StructureForSummary.get(mem_reg_diff, + memory_config_diff, + sections_diff) if diff_en else StructureForSummary() - output = "" if as_json: output = format_json(collections.OrderedDict([ - ("dram_data", used_dram_data + used_diram_data), - ("dram_bss", used_dram_bss + used_diram_bss), - ("dram_other", used_dram_other), - ("used_dram", used_dram), - ("available_dram", total_dram - used_dram), - ("used_dram_ratio", used_dram_ratio if total_dram != 0 else 0), - ("used_iram", used_iram), - ("available_iram", total_iram - used_iram), - ("used_iram_ratio", used_iram_ratio if total_iram != 0 else 0), - ("used_diram", used_diram), - ("available_diram", total_diram - used_diram), - ("used_diram_ratio", used_diram_ratio if total_diram != 0 else 0), - ("flash_code", flash_code), - ("flash_rodata", flash_rodata), - ("total_size", total_size) + ("dram_data", current.used_dram_data + current.used_diram_data), + ("dram_bss", current.used_dram_bss + current.used_diram_bss), + ("dram_other", current.used_dram_other), + ("used_dram", current.used_dram), + ("available_dram", current.total_dram - current.used_dram), + ("used_dram_ratio", current.used_dram_ratio if current.total_dram != 0 else 0), + ("used_iram", current.used_iram), + ("available_iram", current.total_iram - current.used_iram), + ("used_iram_ratio", current.used_iram_ratio if current.total_iram != 0 else 0), + ("used_diram", current.used_diram), + ("available_diram", current.total_diram - current.used_diram), + ("used_diram_ratio", current.used_diram_ratio if current.total_diram != 0 else 0), + ("flash_code", current.flash_code), + ("flash_rodata", current.flash_rodata), + ("total_size", current.total_size) ])) else: - output += "Total sizes:\n" - output += " DRAM .data size: {:>7} bytes\n".format(used_dram_data + used_diram_data) - output += " DRAM .bss size: {:>7} bytes\n".format(used_dram_bss + used_diram_bss) - if used_dram_other > 0: - output += " DRAM other size: {:>7} bytes ({})\n".format(used_dram_other, ', '.join(dram_other_names)) - output += "Used static DRAM: {:>7} bytes ({:>7} available, {:.1%} used)\n".format( - used_dram, total_dram - used_dram, used_dram_ratio) - output += "Used static IRAM: {:>7} bytes ({:>7} available, {:.1%} used)\n".format( - used_iram, total_iram - used_iram, used_iram_ratio) - if total_diram > 0: - output += "Used stat D/IRAM: {:>7} bytes ({:>7} available, {:.1%} used)\n".format( - used_diram, total_diram - used_diram, used_diram_ratio) - output += " Flash code: {:>7} bytes\n".format(flash_code) - output += " Flash rodata: {:>7} bytes\n".format(flash_rodata) - output += "Total image size:~{:>7} bytes (.bin may be padded larger)\n".format(total_size) + rows = [] + if diff_en: + rows += [(' MAP file: {}'.format(path), '', '', '')] + rows += [(' MAP file: {}'.format(path_diff), '', '', '')] + rows += [('Difference is counted as - , ' + 'i.e. a positive number means that is larger.', + '', '', '')] + rows += [('Total sizes{}:'.format(' of ' if diff_en else ''), '', 'Difference', '')] + rows += [(' DRAM .data size: {f_dram_data:>7} bytes', '{f_dram_data_2:>7}', '{f_dram_data_diff:+}', '')] + rows += [(' DRAM .bss size: {f_dram_bss:>7} bytes', '{f_dram_bss_2:>7}', '{f_dram_bss_diff:+}', '')] + + if current.used_dram_other > 0 or reference.used_dram_other > 0: + diff_list = ['+{}'.format(x) for x in current.dram_other_names - reference.dram_other_names] + diff_list += ['-{}'.format(x) for x in reference.dram_other_names - current.dram_other_names] + other_diff_str = '' if len(diff_list) == 0 else '({})'.format(', '.join(sorted(diff_list))) + rows += [(' DRAM other size: {f_dram_other:>7} bytes ' + '({})'.format(', '.join(current.dram_other_names)), + '{f_dram_other_2:>7}', + '{f_dram_other_diff:+}', + other_diff_str)] + + rows += [('Used static DRAM: {f_used_dram:>7} bytes ({f_dram_avail:>7} available, ' + '{f_used_dram_ratio:.1%} used)', + '{f_used_dram_2:>7}', + '{f_used_dram_diff:+}', + '({f_dram_avail_diff:>+7} available, {f_dram_total_diff:>+7} total)')] + rows += [('Used static IRAM: {f_used_iram:>7} bytes ({f_iram_avail:>7} available, ' + '{f_used_iram_ratio:.1%} used)', + '{f_used_iram_2:>7}', + '{f_used_iram_diff:+}', + '({f_iram_avail_diff:>+7} available, {f_iram_total_diff:>+7} total)')] + + if current.total_diram > 0 or reference.total_diram > 0: + rows += [('Used stat D/IRAM: {f_used_diram:>7} bytes ({f_diram_avail:>7} available, ' + '{f_used_diram_ratio:.1%} used)', + '{f_used_diram_2:>7}', + '{f_used_diram_diff:+}', + '({f_diram_avail_diff:>+7} available, {f_diram_total_diff:>+7} total)')] + + rows += [(' Flash code: {f_flash_code:>7} bytes', + '{f_flash_code_2:>7}', + '{f_flash_code_diff:+}', + '')] + rows += [(' Flash rodata: {f_flash_rodata:>7} bytes', + '{f_flash_rodata_2:>7}', + '{f_flash_rodata_diff:+}', + '')] + rows += [('Total image size:~{f_total_size:>7} bytes (.bin may be padded larger)', + '{f_total_size_2:>7}', + '{f_total_size_diff:+}', + '')] + + f_dic = {'f_dram_data': current.used_dram_data + current.used_diram_data, + 'f_dram_bss': current.used_dram_bss + current.used_diram_bss, + 'f_dram_other': current.used_dram_other, + 'f_used_dram': current.used_dram, + 'f_dram_avail': current.total_dram - current.used_dram, + 'f_used_dram_ratio': current.used_dram_ratio, + 'f_used_iram': current.used_iram, + 'f_iram_avail': current.total_iram - current.used_iram, + 'f_used_iram_ratio': current.used_iram_ratio, + 'f_used_diram': current.used_diram, + 'f_diram_avail': current.total_diram - current.used_diram, + 'f_used_diram_ratio': current.used_diram_ratio, + 'f_flash_code': current.flash_code, + 'f_flash_rodata': current.flash_rodata, + 'f_total_size': current.total_size, + + 'f_dram_data_2': reference.used_dram_data + reference.used_diram_data, + 'f_dram_bss_2': reference.used_dram_bss + reference.used_diram_bss, + 'f_dram_other_2': reference.used_dram_other, + 'f_used_dram_2': reference.used_dram, + 'f_used_iram_2': reference.used_iram, + 'f_used_diram_2': reference.used_diram, + 'f_flash_code_2': reference.flash_code, + 'f_flash_rodata_2': reference.flash_rodata, + 'f_total_size_2': reference.total_size, + + 'f_dram_total_diff': current.total_dram - reference.total_dram, + 'f_iram_total_diff': current.total_iram - reference.total_iram, + 'f_diram_total_diff': current.total_diram - reference.total_diram, + + 'f_dram_data_diff': current.used_dram_data + current.used_diram_data - (reference.used_dram_data + + reference.used_diram_data), + 'f_dram_bss_diff': current.used_dram_bss + current.used_diram_bss - (reference.used_dram_bss + + reference.used_diram_bss), + 'f_dram_other_diff': current.used_dram_other - reference.used_dram_other, + 'f_used_dram_diff': current.used_dram - reference.used_dram, + 'f_dram_avail_diff': current.total_dram - current.used_dram - (reference.total_dram - + reference.used_dram), + 'f_used_iram_diff': current.used_iram - reference.used_iram, + 'f_iram_avail_diff': current.total_iram - current.used_iram - (reference.total_iram - + reference.used_iram), + 'f_used_diram_diff': current.used_diram - reference.used_diram, + 'f_diram_avail_diff': current.total_diram - current.used_diram - (reference.total_diram - + reference.used_diram), + 'f_flash_code_diff': current.flash_code - reference.flash_code, + 'f_flash_rodata_diff': current.flash_rodata - reference.flash_rodata, + 'f_total_size_diff': current.total_size - reference.total_size, + } + + lf = '{:70}{:>15}{:>15} {}' + output = os.linesep.join([lf.format(a.format(**f_dic), + b.format(**f_dic) if diff_en else '', + c.format(**f_dic) if (diff_en and + not c.format(**f_dic).startswith('+0')) else '', + d.format(**f_dic) if diff_en else '' + ).rstrip() for a, b, c, d in rows]) + output += os.linesep # last line need to be terminated because it won't be printed otherwise return output -def get_detailed_sizes(mem_reg, sections, key, header, as_json=False): - sizes = sizes_by_key(sections, key) +class StructureForDetailedSizes(object): - # these sets are also computed in get_summary() but they are small ones so it should not matter - dram_data_names = frozenset([n for n in mem_reg.used_dram_names if n.endswith('.data')]) - dram_bss_names = frozenset([n for n in mem_reg.used_dram_names if n.endswith('.bss')]) - dram_other_names = mem_reg.used_dram_names - dram_data_names - dram_bss_names + @staticmethod + def sizes_by_key(sections, key): + """ Takes a dict of sections (from load_sections) and returns + a dict keyed by 'key' with aggregate output size information. - diram_data_names = frozenset([n for n in mem_reg.used_diram_names if n.endswith('.data')]) - diram_bss_names = frozenset([n for n in mem_reg.used_diram_names if n.endswith('.bss')]) + Key can be either "archive" (for per-archive data) or "file" (for per-file data) in the result. + """ + result = {} + for _, section in iteritems(sections): + for s in section["sources"]: + if not s[key] in result: + result[s[key]] = {} + archive = result[s[key]] + if not section["name"] in archive: + archive[section["name"]] = 0 + archive[section["name"]] += s["size"] + return result - result = {} - for k in sizes: - v = sizes[k] - r = collections.OrderedDict() - r["data"] = sum(v.get(n, 0) for n in dram_data_names | diram_data_names) - r["bss"] = sum(v.get(n, 0) for n in dram_bss_names | diram_bss_names) - r["other"] = sum(v.get(n, 0) for n in dram_other_names) - r["iram"] = sum(t for (s,t) in iteritems(v) if s in mem_reg.used_iram_names) - r["diram"] = sum(t for (s,t) in iteritems(v) if s in mem_reg.used_diram_names) - r["flash_text"] = v.get(".flash.text", 0) - r["flash_rodata"] = v.get(".flash.rodata", 0) - r["total"] = sum(r.values()) - result[k] = r + @staticmethod + def get(mem_reg, sections, key): + sizes = StructureForDetailedSizes.sizes_by_key(sections, key) - s = sorted(list(result.items()), key=lambda elem: elem[0]) - # do a secondary sort in order to have consistent order (for diff-ing the output) - s = sorted(s, key=lambda elem: elem[1]['total'], reverse=True) + # these sets are also computed in get_summary() but they are small ones so it should not matter + dram_data_names = frozenset([n for n in mem_reg.used_dram_names if n.endswith('.data')]) + dram_bss_names = frozenset([n for n in mem_reg.used_dram_names if n.endswith('.bss')]) + dram_other_names = mem_reg.used_dram_names - dram_data_names - dram_bss_names - output = "" + diram_data_names = frozenset([n for n in mem_reg.used_diram_names if n.endswith('.data')]) + diram_bss_names = frozenset([n for n in mem_reg.used_diram_names if n.endswith('.bss')]) - if as_json: - output = format_json(collections.OrderedDict(s)) - else: - header_format = "{:>24} {:>10} {:>6} {:>7} {:>6} {:>8} {:>10} {:>8} {:>7}\n" + s = [] + for k, v in iteritems(sizes): + r = [('data', sum(v.get(n, 0) for n in dram_data_names | diram_data_names)), + ('bss', sum(v.get(n, 0) for n in dram_bss_names | diram_bss_names)), + ('other', sum(v.get(n, 0) for n in dram_other_names)), + ('iram', sum(t for (s,t) in iteritems(v) if s in mem_reg.used_iram_names)), + ('diram', sum(t for (s,t) in iteritems(v) if s in mem_reg.used_diram_names)), + ('flash_text', v.get('.flash.text', 0)), + ('flash_rodata', v.get('.flash.rodata', 0))] + r.append(('total', sum([value for _, value in r]))) + s.append((k, collections.OrderedDict(r))) - output += "Per-{} contributions to ELF file:\n".format(key) - output += header_format.format(header, - "DRAM .data", - "& .bss", - "& other", - "IRAM", - "D/IRAM", - "Flash code", - "& rodata", - "Total") - - for k,v in s: - if ":" in k: # print subheadings for key of format archive:file - sh,k = k.split(":") - output += header_format.format(k[:24], - v["data"], - v["bss"], - v["other"], - v["iram"], - v["diram"], - v["flash_text"], - v["flash_rodata"], - v["total"]) - - return output - - -def get_archive_symbols(mem_reg, sections, archive, as_json=False): - interested_sections = mem_reg.used_dram_names | mem_reg.used_iram_names | mem_reg.used_diram_names - interested_sections |= frozenset([".flash.text", ".flash.rodata"]) - # sort the list for consistent order in the output - interested_sections = sorted(list(interested_sections)) - result = {} - for t in interested_sections: - result[t] = {} - for section in sections.values(): - section_name = section["name"] - if section_name not in interested_sections: - continue - for s in section["sources"]: - if archive != s["archive"]: - continue - s["sym_name"] = re.sub("(.text.|.literal.|.data.|.bss.|.rodata.)", "", s["sym_name"]) - result[section_name][s["sym_name"]] = result[section_name].get(s["sym_name"], 0) + s["size"] - - # build a new ordered dict of each section, where each entry is an ordereddict of symbols to sizes - section_symbols = collections.OrderedDict() - for t in interested_sections: - s = sorted(list(result[t].items()), key=lambda k_v: k_v[0]) + s = sorted(s, key=lambda elem: elem[0]) # do a secondary sort in order to have consistent order (for diff-ing the output) - s = sorted(s, key=lambda k_v: k_v[1], reverse=True) - section_symbols[t] = collections.OrderedDict(s) + s = sorted(s, key=lambda elem: elem[1]['total'], reverse=True) + + return collections.OrderedDict(s) + + +def get_detailed_sizes(mem_reg, sections, key, header, as_json=False, sections_diff=None): + + diff_en = sections_diff is not None + current = StructureForDetailedSizes.get(mem_reg, sections, key) + reference = StructureForDetailedSizes.get(mem_reg, sections_diff, key) if diff_en else {} - output = "" if as_json: - output = format_json(section_symbols) + output = format_json(current) else: - output += "Symbols within the archive: {} (Not all symbols may be reported)\n".format(archive) - for t,s in section_symbols.items(): - section_total = 0 - output += "\nSymbols from section: {}\n".format(t) - for key, val in s.items(): - output += "{}({}) ".format(key.replace(t + ".", ""), val) - section_total += val - output += "\nSection total: {}\n".format(section_total) + def _get_output(data, selection): + header_format = '{:>24} {:>10} {:>6} {:>7} {:>6} {:>8} {:>10} {:>8} {:>7}' + os.linesep + output = header_format.format(header, + 'DRAM .data', + '& .bss', + '& other', + 'IRAM', + 'D/IRAM', + 'Flash code', + '& rodata', + 'Total') + + for k, v in iteritems(data): + if k not in selection: + continue + + try: + _, k = k.split(':', 1) + # print subheadings for key of format archive:file + except ValueError: + # k remains the same + pass + + output += header_format.format(k[:24], + v['data'], + v['bss'], + v['other'], + v['iram'], + v['diram'], + v['flash_text'], + v['flash_rodata'], + v['total'], + ) + return output + + def _get_output_diff(curr, ref): + header_format = '{:>24}' + ' {:>23}' * 8 + output = header_format.format(header, + 'DRAM .data', + 'DRAM .bss', + 'DRAM other', + 'IRAM', + 'D/IRAM', + 'Flash code', + 'Flash rodata', + 'Total') + os.linesep + f_print = ('-' * 23, '') * 4 + header_line = header_format.format('', *f_print).rstrip() + os.linesep + + header_format = '{:>24}' + '|{:>7}|{:>7}|{:>7}' * 8 + f_print = ('', '', '-') * 8 + output += header_format.format('', *f_print) + os.linesep + output += header_line + + for k, v in iteritems(curr): + try: + v2 = ref[k] + except KeyError: + continue + + try: + _, k = k.split(':', 1) + # print subheadings for key of format archive:file + except ValueError: + # k remains the same + pass + + def _get_items(name): + a = v[name] + b = v2[name] + diff = a - b + # the sign is added here and not in header_format in order to be able to print empty strings + return (a or '', b or '', '' if diff == 0 else '{:+}'.format(diff)) + + v_data, v2_data, diff_data = _get_items('data') + v_bss, v2_bss, diff_bss = _get_items('bss') + v_other, v2_other, diff_other = _get_items('other') + v_iram, v2_iram, diff_iram = _get_items('iram') + v_diram, v2_diram, diff_diram = _get_items('diram') + v_flash_text, v2_flash_text, diff_flash_text = _get_items('flash_text') + v_flash_rodata, v2_flash_rodata, diff_flash_rodata = _get_items('flash_rodata') + v_total, v2_total, diff_total = _get_items('total') + + output += header_format.format(k[:24], + v_data, v2_data, diff_data, + v_bss, v2_bss, diff_bss, + v_other, v2_other, diff_other, + v_iram, v2_iram, diff_iram, + v_diram, v2_diram, diff_diram, + v_flash_text, v2_flash_text, diff_flash_text, + v_flash_rodata, v2_flash_rodata, diff_flash_rodata, + v_total, v2_total, diff_total, + ).rstrip() + os.linesep + return output + + output = 'Per-{} contributions to ELF file:{}'.format(key, os.linesep) + + if diff_en: + output += _get_output_diff(current, reference) + + in_current = frozenset(current.keys()) + in_reference = frozenset(reference.keys()) + only_in_current = in_current - in_reference + only_in_reference = in_reference - in_current + + if len(only_in_current) > 0: + output += 'The following entries are present in only:{}'.format(os.linesep) + output += _get_output(current, only_in_current) + + if len(only_in_reference) > 0: + output += 'The following entries are present in only:{}'.format(os.linesep) + output += _get_output(reference, only_in_reference) + else: + output += _get_output(current, current) return output -if __name__ == "__main__": +class StructureForArchiveSymbols(object): + @staticmethod + def get(mem_reg, archive, sections): + interested_sections = mem_reg.used_dram_names | mem_reg.used_iram_names | mem_reg.used_diram_names + interested_sections |= frozenset(['.flash.text', '.flash.rodata']) + result = dict([(t, {}) for t in interested_sections]) + for _, section in iteritems(sections): + section_name = section['name'] + if section_name not in interested_sections: + continue + for s in section['sources']: + if archive != s['archive']: + continue + s['sym_name'] = re.sub('(.text.|.literal.|.data.|.bss.|.rodata.)', '', s['sym_name']) + result[section_name][s['sym_name']] = result[section_name].get(s['sym_name'], 0) + s['size'] + + # build a new ordered dict of each section, where each entry is an ordereddict of symbols to sizes + section_symbols = collections.OrderedDict() + for t in sorted(list(interested_sections)): + s = sorted(list(result[t].items()), key=lambda k_v: k_v[0]) + # do a secondary sort in order to have consistent order (for diff-ing the output) + s = sorted(s, key=lambda k_v: k_v[1], reverse=True) + section_symbols[t] = collections.OrderedDict(s) + + return section_symbols + + +def get_archive_symbols(mem_reg, sections, archive, as_json=False, sections_diff=None): + diff_en = sections_diff is not None + current = StructureForArchiveSymbols.get(mem_reg, archive, sections) + reference = StructureForArchiveSymbols.get(mem_reg, archive, sections_diff) if diff_en else {} + + if as_json: + output = format_json(current) + else: + def _get_item_pairs(name, section): + return collections.OrderedDict([(key.replace(name + '.', ''), val) for key, val in iteritems(section)]) + + def _get_output(section_symbols): + output = '' + for t, s in iteritems(section_symbols): + output += '{}Symbols from section: {}{}'.format(os.linesep, t, os.linesep) + item_pairs = _get_item_pairs(t, s) + output += ' '.join(['{}({})'.format(key, val) for key, val in iteritems(item_pairs)]) + section_total = sum([val for _, val in iteritems(item_pairs)]) + output += '{}Section total: {}{}'.format(os.linesep if section_total > 0 else '', + section_total, + os.linesep) + return output + + output = 'Symbols within the archive: {} (Not all symbols may be reported){}'.format(archive, os.linesep) + if diff_en: + + def _generate_line_tuple(curr, ref, name): + cur_val = curr.get(name, 0) + ref_val = ref.get(name, 0) + diff_val = cur_val - ref_val + # string slicing is used just to make sure it will fit into the first column of line_format + return ((' ' * 4 + name)[:40], cur_val, ref_val, '' if diff_val == 0 else '{:+}'.format(diff_val)) + + line_format = '{:40} {:>12} {:>12} {:>25}' + all_section_names = sorted(list(frozenset(current.keys()) | frozenset(reference.keys()))) + for section_name in all_section_names: + current_item_pairs = _get_item_pairs(section_name, current.get(section_name, {})) + reference_item_pairs = _get_item_pairs(section_name, reference.get(section_name, {})) + output += os.linesep + line_format.format(section_name[:40], + '', + '', + ' - ') + os.linesep + current_section_total = sum([val for _, val in iteritems(current_item_pairs)]) + reference_section_total = sum([val for _, val in iteritems(reference_item_pairs)]) + diff_section_total = current_section_total - reference_section_total + all_item_names = sorted(list(frozenset(current_item_pairs.keys()) | + frozenset(reference_item_pairs.keys()))) + output += os.linesep.join([line_format.format(*_generate_line_tuple(current_item_pairs, + reference_item_pairs, + n) + ).rstrip() for n in all_item_names]) + output += os.linesep if current_section_total > 0 or reference_section_total > 0 else '' + output += line_format.format('Section total:', + current_section_total, + reference_section_total, + '' if diff_section_total == 0 else '{:+}'.format(diff_section_total) + ).rstrip() + os.linesep + else: + output += _get_output(current) + return output + + +if __name__ == '__main__': main() diff --git a/tools/test_idf_size/app2.map b/tools/test_idf_size/app2.map new file mode 100644 index 000000000..ca6114cef --- /dev/null +++ b/tools/test_idf_size/app2.map @@ -0,0 +1,18156 @@ +Archive member included to satisfy reference by file (symbol) + +esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + (esp_app_desc) +esp-idf/pthread/libpthread.a(pthread.c.obj) + (pthread_include_pthread_impl) +esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (pthread_key_create) +esp-idf/esp32/libesp32.a(cpu_start.c.obj) + (call_start_cpu0) +esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_crosscore_int_init) +esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_dport_access_stall_other_cpu_start) +esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + (ld_include_panic_highint_hdl) +esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) (int_wdt_app_cpu_ticked) +esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) (esp_intr_alloc) +esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (abort) +esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (esp_restart_noos) +esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_task_wdt_init) +esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_cache_err_int_init) +esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_clk_init) +esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_brownout_init) +esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (esp_err_to_name) +esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) (esp_register_freertos_idle_hook_for_cpu) +esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) (esp_ipc_call_blocking) +esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_timer_init) +esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (esp_timer_impl_get_time) +esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (port_xSchedulerRunning) +esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) (_frxt_setup_switch) +esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) (_xt_context_save) +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(xtensa_intr_asm.S.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) (_xt_interrupt_table) +esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) (xt_unhandled_interrupt) +esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) (_xt_user_exit) +esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + (uxTopUsedPriority) +esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) (xQueueGenericCreate) +esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (pxCurrentTCB) +esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (xTimerCreateTimerTask) +esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) (xt_debugexception) +esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) (vListInitialise) +esp-idf/vfs/libvfs.a(vfs.c.obj) + (vfs_include_syscalls_impl) +esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_vfs_dev_uart_register) +esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) (malloc) +esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) (_lock_acquire) +esp-idf/newlib/libnewlib.a(pthread.c.obj) + (newlib_include_pthread_impl) +esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_reent_init) +esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (esp_setup_syscall_table) +esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) (_system_r) +esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) (esp_clk_slowclk_cal_set) +esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + (__cxx_fatal_exception) +esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + (__cxa_guard_dummy) +esp-idf/main/libmain.a(blink.c.obj) + (app_main) +esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (esp_backtrace_get_next_frame) +esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) (esp_backtrace_get_start) +esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (esp_cpu_stall) +esp-idf/soc/libsoc.a(cpu_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) (cpu_hal_set_watchpoint) +esp-idf/soc/libsoc.a(soc_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) (soc_hal_stall_core) +esp-idf/soc/libsoc.a(brownout_hal.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) (brownout_hal_config) +esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) (rtc_clk_32k_enable) +esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) (rtc_init) +esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) (rtc_clk_cal) +esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (rtc_wdt_protect_off) +esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) (esp_efuse_get_chip_ver) +esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) (esp_efuse_utility_apply_34_encoding) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.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_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) (ESP_EFUSE_CHIP_VER_REV2) +esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) (esp_efuse_get_coding_scheme) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (bootloader_init_mem) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) (bootloader_fill_random) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (bootloader_flash_update_id) +esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) (bootloader_read_flash_id) +esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) (esp_rom_spiflash_wait_idle) +esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) (spi_flash_cache_enabled) +esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (spi_flash_init) +esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_flash_set_chip_write_protect) +esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_default_chip) +esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_init_os_functions) +esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (esp_flash_noos_functions) +esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (esp_partition_main_flash_region_safe) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) (esp_flash_registered_chips) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_generic) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) (esp_flash_chip_issi) +esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_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(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (memspi_host_read_status_hs) +esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) (spi_flash_mmap) +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/esp32/libesp32.a(intr_alloc.c.obj) (heap_caps_malloc) +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/driver/libdriver.a(gpio.c.obj) + esp-idf/main/libmain.a(blink.c.obj) (gpio_set_level) +esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) (periph_module_enable) +esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (rtc_gpio_deinit) +esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) (rtc_isr_register) +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(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (uart_set_word_length) +esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) (esp_fill_random) +esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) (esp_pm_impl_waiti) +esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) (esp_pm_lock_create) +esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (GPIO_HOLD_MASK) +esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtc_io_desc) +esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_periph_signal) +esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_periph_signal) +esp-idf/soc/libsoc.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/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) (rtcio_hal_set_direction) +esp-idf/soc/libsoc.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) (gpio_hal_intr_enable_on_core) +esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_hal_set_baudrate) +esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (uart_hal_rxfifo_rst) +esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_hal_init) +esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) (spi_flash_hal_poll_cmd_done) +esp-idf/soc/libsoc.a(mpu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (mpu_hal_set_region_access) +esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) (soc_memory_region_count) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (bootloader_common_get_sha256_of_partition) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_mmap) +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(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (esp_partition_table_verify) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_common_get_chip_revision) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (bootloader_sha256_start) +esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (bootloader_debug_buffer) +esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (esp_ota_get_running_partition) +esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) (xRingbufferCreate) +esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) (esp_restart) +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_try_lock_engine) +esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) (MD5Init) +/home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) (xthal_window_spill_nw) +/home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) (xthal_set_intclear) +/home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) (Xthal_intlevel) +/home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) (xthal_restore_extra_nw) +/home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) (xthal_save_extra_nw) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) (__bswapsi2) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__divdi3) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__moddi3) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + esp-idf/esp32/libesp32.a(clk.c.obj) (__udivdi3) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) (__umoddi3) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (__assert_func) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) (bzero) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) (environ) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (__errno) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) (_cleanup_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) (fiprintf) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (fopen) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) (fputs) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) (_fseek_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) (_fseeko_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) (__sfvwrite_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) (_fwalk) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) (_global_impure_ptr) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (localtime_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) (__smakebuf_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) (memchr) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (memcmp) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memcpy) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + esp-idf/heap/libheap.a(multi_heap.c.obj) (memmove) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + esp-idf/pthread/libpthread.a(pthread.c.obj) (memset) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__month_lengths) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) (printf) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (putchar) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + esp-idf/main/libmain.a(blink.c.obj) (puts) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) (qsort) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) (_reclaim_reent) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) (__srefill_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (snprintf) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) (__sread) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) (strcmp) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strcpy) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strcspn) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strerror_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) (strlcpy) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strlen) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) (strncmp) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) (strncpy) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) (strstr) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) (_svfprintf_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + esp-idf/log/liblog.a(log_freertos.c.obj) (gettimeofday) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__tzcalc_limits) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__tz_lock) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (_tzset_unlocked) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) (_tzset_unlocked_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) (_timezone) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) (_vfiprintf_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) (_vfprintf_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) (vprintf) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) (__swsetup_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) (_isatty_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (_dtoa_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) (_fclose_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) (__sflush_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) (__sflags) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) (_fputwc_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) (_getenv_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (__gettzinfo) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) (gmtime_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) (__locale_mb_cur_max) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (_localeconv_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) (__ascii_mbtowc) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) (_Balloc) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) (_putc_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (frexp) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) (siscanf) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) (_strerror_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) (strtoul) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (__chclass) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) (__ssvfiscanf_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) (_user_strerror) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) (__submore) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) (__swbuf_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) (_wcrtomb_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) (__ascii_wctomb) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) (_ctype_) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) (__env_lock) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) (iswspace) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) (_mbrtowc_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) (__sccl) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) (_strtol_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) (_strtoll_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) (_strtoull_r) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) (__adddf3) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (__muldf3) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) (__divdf3) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (__eqdf2) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) (__fixdfsi) +/home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) (__floatunsidf) + +Allocating common symbols +Common symbol size file + +registered_heaps 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) +s_cpu_freq_by_mode 0x40 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +dport_access_end 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) +dport_access_start 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) +s_microseconds_offset + 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + +Discarded input sections + + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_line 0x0000000000000000 0x89 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .debug_str 0x0000000000000000 0xcc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xt.prop 0x0000000000000000 0x24 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .literal 0x0000000000000000 0x44 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .fini.literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .init.literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0xa6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .data 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .bss 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .ctors 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .tm_clone_table + 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .fini 0x0000000000000000 0x6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .init 0x0000000000000000 0x6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .xt.lit 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .xt.prop 0x0000000000000000 0x15c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .text 0x0000000000000000 0x0 CMakeFiles/blink.elf.dir/project_elf_src.c.obj + .data 0x0000000000000000 0x0 CMakeFiles/blink.elf.dir/project_elf_src.c.obj + .bss 0x0000000000000000 0x0 CMakeFiles/blink.elf.dir/project_elf_src.c.obj + .comment 0x0000000000000000 0x26 CMakeFiles/blink.elf.dir/project_elf_src.c.obj + .text 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .xt.prop 0x0000000000000000 0xcc esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .literal.pthread_list_find_item + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_find + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.get_default_pthread_core + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_delete + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.23.literal + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_set_cfg + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_cfg + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.esp_pthread_get_default_config + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_create + 0x0000000000000000 0x80 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_join + 0x0000000000000000 0x50 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_detach + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_exit + 0x0000000000000000 0x48 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_task_func + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_cancel + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.sched_yield + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_self + 0x0000000000000000 0x2c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_once + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_init_if_static + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutex_destroy + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.24.literal + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.25.literal + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.26.literal + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.27.literal + 0x0000000000000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_mutexattr_settype + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_init + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_attr_destroy + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_list_find_item + 0x0000000000000000 0x21 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_handle_by_desc + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_get_desc_by_handle + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_find + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.get_default_pthread_core + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.mutexattr_check + 0x0000000000000000 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_delete + 0x0000000000000000 0x27 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.23 0x0000000000000000 0x64 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_set_cfg + 0x0000000000000000 0x51 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_cfg + 0x0000000000000000 0x32 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.esp_pthread_get_default_config + 0x0000000000000000 0x20 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_create.str1.4 + 0x0000000000000000 0x106 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_create + 0x0000000000000000 0x1ad esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_join + 0x0000000000000000 0x125 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_detach + 0x0000000000000000 0x86 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_exit.str1.4 + 0x0000000000000000 0x34 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_exit + 0x0000000000000000 0xb6 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_task_func + 0x0000000000000000 0x2f esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_cancel.str1.4 + 0x0000000000000000 0x2a esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_cancel + 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.sched_yield + 0x0000000000000000 0x10 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_self.str1.4 + 0x0000000000000000 0x2d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_self + 0x0000000000000000 0x5f esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_equal + 0x0000000000000000 0x11 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.pthread_once.str1.4 + 0x0000000000000000 0x29 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_once + 0x0000000000000000 0x5d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init + 0x0000000000000000 0x70 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_init_if_static + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutex_destroy + 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.24 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.25 0x0000000000000000 0x6e esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.26 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x23 esp-idf/pthread/libpthread.a(pthread.c.obj) + .iram1.27 0x0000000000000000 0x6d esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_init + 0x0000000000000000 0x16 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_destroy + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_gettype + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_mutexattr_settype + 0x0000000000000000 0x22 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_init + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_destroy + 0x0000000000000000 0x18 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getstacksize + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setstacksize + 0x0000000000000000 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_getdetachstate + 0x0000000000000000 0x12 esp-idf/pthread/libpthread.a(pthread.c.obj) + .text.pthread_attr_setdetachstate + 0x0000000000000000 0x25 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6212 + 0x0000000000000000 0x15 esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$6166 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6155 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__FUNCTION__$6148 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6143 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6136 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6128 + 0x0000000000000000 0xd esp-idf/pthread/libpthread.a(pthread.c.obj) + .rodata.__func__$6118 + 0x0000000000000000 0xf esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_list + 0x0000000000000000 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .data.s_mutex_init_lock + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.lit 0x0000000000000000 0xe8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xt.prop 0x0000000000000000 0xf3c esp-idf/pthread/libpthread.a(pthread.c.obj) + .literal.pthread_local_storage_thread_deleted_callback + 0x0000000000000000 0x1c esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0xc esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_getspecific + 0x0000000000000000 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .literal.pthread_setspecific + 0x0000000000000000 0x20 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.find_value + 0x0000000000000000 0x14 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.pthread_local_storage_thread_deleted_callback.str1.4 + 0x0000000000000000 0x50 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_local_storage_thread_deleted_callback + 0x0000000000000000 0x4a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_internal_local_storage_destructor_callback + 0x0000000000000000 0x2a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_getspecific + 0x0000000000000000 0x29 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text.pthread_setspecific + 0x0000000000000000 0xa5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .rodata.__func__$5925 + 0x0000000000000000 0x2e esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xt.prop 0x0000000000000000 0x390 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .xt.prop 0x0000000000000000 0x210 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .iram1.30.literal + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .iram1.30 0x0000000000000000 0xf esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .xt.prop 0x0000000000000000 0x18c esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .iram1.28.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.30.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.31.literal + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.28 0x0000000000000000 0x27 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.30 0x0000000000000000 0x27 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.31 0x0000000000000000 0x2a esp-idf/esp32/libesp32.a(dport_access.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .xt.prop 0x0000000000000000 0x2ac esp-idf/esp32/libesp32.a(dport_access.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .xt.prop 0x0000000000000000 0x9c esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .xt.prop 0x0000000000000000 0xb4 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .literal.esp_intr_mark_shared + 0x0000000000000000 0x14 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.esp_intr_reserve + 0x0000000000000000 0x14 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.23.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.esp_intr_free + 0x0000000000000000 0x3c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.esp_intr_free_cb + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.28.literal + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.29.literal + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_mark_shared + 0x0000000000000000 0x5d esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_reserve + 0x0000000000000000 0x4f esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.23 0x0000000000000000 0x89 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_get_intno + 0x0000000000000000 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_get_cpu + 0x0000000000000000 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .rodata.esp_intr_free.str1.4 + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_free + 0x0000000000000000 0xfe esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.esp_intr_free_cb + 0x0000000000000000 0xe esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.28 0x0000000000000000 0xe esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .iram1.29 0x0000000000000000 0xe esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .rodata.__func__$5234 + 0x0000000000000000 0xe esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .xt.prop 0x0000000000000000 0xd74 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.esp_set_breakpoint_if_jtag + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + .literal._esp_error_check_failed_without_abort + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + .text.esp_set_breakpoint_if_jtag + 0x0000000000000000 0x16 esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata._esp_error_check_failed_without_abort.str1.4 + 0x0000000000000000 0x1e esp-idf/esp32/libesp32.a(panic.c.obj) + .text._esp_error_check_failed_without_abort + 0x0000000000000000 0x18 esp-idf/esp32/libesp32.a(panic.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/esp32/libesp32.a(panic.c.obj) + .xt.prop 0x0000000000000000 0x7bc esp-idf/esp32/libesp32.a(panic.c.obj) + .literal.esp_chip_info + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .text.esp_chip_info + 0x0000000000000000 0x7f esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .literal.esp_task_wdt_deinit + 0x0000000000000000 0x3c esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .literal.esp_task_wdt_delete + 0x0000000000000000 0x38 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .literal.esp_task_wdt_status + 0x0000000000000000 0x1c esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .rodata.esp_task_wdt_deinit.str1.4 + 0x0000000000000000 0x28 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text.esp_task_wdt_deinit + 0x0000000000000000 0x97 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text.esp_task_wdt_delete + 0x0000000000000000 0xb6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text.esp_task_wdt_status + 0x0000000000000000 0x5d esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .rodata.__func__$5837 + 0x0000000000000000 0x14 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .xt.prop 0x0000000000000000 0x570 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .xt.prop 0x0000000000000000 0xa8 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .iram1.6.literal + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(clk.c.obj) + .literal.rtc_clk_select_rtc_slow_clk + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + .iram1.6 0x0000000000000000 0x11 esp-idf/esp32/libesp32.a(clk.c.obj) + .text.rtc_clk_select_rtc_slow_clk + 0x0000000000000000 0xe esp-idf/esp32/libesp32.a(clk.c.obj) + .xt.lit 0x0000000000000000 0x40 esp-idf/esp32/libesp32.a(clk.c.obj) + .xt.prop 0x0000000000000000 0x21c esp-idf/esp32/libesp32.a(clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .xt.prop 0x0000000000000000 0x6c esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .literal.esp_err_to_name_r + 0x0000000000000000 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.esp_err_to_name_r.str1.4 + 0x0000000000000000 0xc esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .text.esp_err_to_name_r + 0x0000000000000000 0x5a esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xt.prop 0x0000000000000000 0xe4 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_register_freertos_idle_hook + 0x0000000000000000 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_register_freertos_tick_hook + 0x0000000000000000 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook_for_cpu + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_register_freertos_idle_hook + 0x0000000000000000 0x15 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_register_freertos_tick_hook + 0x0000000000000000 0x15 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook_for_cpu + 0x0000000000000000 0x44 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_idle_hook + 0x0000000000000000 0x2c esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook_for_cpu + 0x0000000000000000 0x44 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .text.esp_deregister_freertos_tick_hook + 0x0000000000000000 0x2c esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .xt.prop 0x0000000000000000 0x378 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .literal.esp_ipc_call_blocking + 0x0000000000000000 0x4 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .text.esp_ipc_call_blocking + 0x0000000000000000 0x15 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .xt.prop 0x0000000000000000 0x1e0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .iram1.26.literal + 0x0000000000000000 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.print_timer_info + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_create + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.24.literal + 0x0000000000000000 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_deinit + 0x0000000000000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_dump + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.32.literal + 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.22.literal + 0x0000000000000000 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.23.literal + 0x0000000000000000 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_delete + 0x0000000000000000 0x20 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.27 0x0000000000000000 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.26 0x0000000000000000 0x30 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.print_timer_info.str1.4 + 0x0000000000000000 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.print_timer_info + 0x0000000000000000 0x2d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_create + 0x0000000000000000 0x4d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.24 0x0000000000000000 0x39 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_deinit + 0x0000000000000000 0x43 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_dump + 0x0000000000000000 0x89 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.32 0x0000000000000000 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.22 0x0000000000000000 0x67 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.23 0x0000000000000000 0x81 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .text.esp_timer_delete + 0x0000000000000000 0x51 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xt.prop 0x0000000000000000 0x7d4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .literal.esp_timer_impl_lock + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_unlock + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_advance + 0x0000000000000000 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_deinit + 0x0000000000000000 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.26.literal + 0x0000000000000000 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x24 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_lock + 0x0000000000000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_unlock + 0x0000000000000000 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_advance + 0x0000000000000000 0x52 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_deinit + 0x0000000000000000 0x36 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.26 0x0000000000000000 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .text.esp_timer_impl_get_alarm_reg + 0x0000000000000000 0x53 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xt.prop 0x0000000000000000 0x39c esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .literal.vPortAssertIfInISR + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(port.c.obj) + .literal.vPortSetStackWatchpoint + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortEndScheduler + 0x0000000000000000 0x5 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.vPortAssertIfInISR.str1.4 + 0x0000000000000000 0x58 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortAssertIfInISR + 0x0000000000000000 0x25 esp-idf/freertos/libfreertos.a(port.c.obj) + .text.vPortSetStackWatchpoint + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(port.c.obj) + .text.xPortGetTickRateHz + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__FUNCTION__$5142 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/freertos/libfreertos.a(port.c.obj) + .xt.prop 0x0000000000000000 0x390 esp-idf/freertos/libfreertos.a(port.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xt.prop 0x0000000000000000 0x168 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xt.prop 0x0000000000000000 0xf0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .literal.xt_clock_freq + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .text.xt_clock_freq + 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xt.prop 0x0000000000000000 0x6c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .xt.prop 0x0000000000000000 0x54 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .literal.xt_set_exception_handler + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .text.xt_set_exception_handler + 0x0000000000000000 0x4b esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .xt.prop 0x0000000000000000 0x150 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .DebugExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .DoubleExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .KernelExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .UserExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level2InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level3InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level4InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .Level5InterruptVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .NMIExceptionVector.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .UserEnter.text + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xt.prop 0x0000000000000000 0x4f8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .literal.xQueuePeekFromISR + 0x0000000000000000 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaiting + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueSpacesAvailable + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueIsQueueFullFromISR + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueCreateSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueAddToSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueRemoveFromSet + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSet + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.xQueueSelectFromSetFromISR + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueuePeekFromISR + 0x0000000000000000 0x98 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaiting + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueSpacesAvailable + 0x0000000000000000 0x3e esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.uxQueueMessagesWaitingFromISR + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueEmptyFromISR + 0x0000000000000000 0x42 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueIsQueueFullFromISR + 0x0000000000000000 0x44 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueCreateSet + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueAddToSet + 0x0000000000000000 0x34 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueRemoveFromSet + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSet + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueSelectFromSetFromISR + 0x0000000000000000 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5250 + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5240 + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5215 + 0x0000000000000000 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5209 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5203 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5197 + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.lit 0x0000000000000000 0xf8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xt.prop 0x0000000000000000 0xe4c esp-idf/freertos/libfreertos.a(queue.c.obj) + .literal.prvTaskGetSnapshotsFromList + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvTaskIsTaskSuspended + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskCreateRestricted + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskResume + 0x0000000000000000 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskResumeFromISR + 0x0000000000000000 0x4c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskEndScheduler + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetNumberOfTasks + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskGetIdleTaskHandle + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskPlaceOnUnorderedEventList + 0x0000000000000000 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskRemoveFromUnorderedEventList + 0x0000000000000000 0x5c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskMissedYield + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskAllocateMPURegions + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskPriorityGetFromISR + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pvTaskGetThreadLocalStoragePointer + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetStackHighWaterMark + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.pxTaskGetStackStart + 0x0000000000000000 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.eTaskGetState + 0x0000000000000000 0x38 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskDelayUntil + 0x0000000000000000 0x48 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskSuspend + 0x0000000000000000 0x60 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskResetEventItemValue + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.ulTaskNotifyTake + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotifyWait + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotify + 0x0000000000000000 0x50 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.xTaskNotifyFromISR + 0x0000000000000000 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.vTaskNotifyGiveFromISR + 0x0000000000000000 0x58 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.uxTaskGetSnapshotAll + 0x0000000000000000 0x30 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskCheckFreeStackSpace + 0x0000000000000000 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskGetSnapshot + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskGetSnapshotsFromList + 0x0000000000000000 0x47 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvTaskIsTaskSuspended + 0x0000000000000000 0x53 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskCreateRestricted + 0x0000000000000000 0x6e esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskResume + 0x0000000000000000 0xe0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskResumeFromISR + 0x0000000000000000 0x102 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskEndScheduler + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetNumberOfTasks + 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskGetIdleTaskHandle + 0x0000000000000000 0x40 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskPlaceOnUnorderedEventList + 0x0000000000000000 0xeb esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskRemoveFromUnorderedEventList + 0x0000000000000000 0x107 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskMissedYield + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskAllocateMPURegions.str1.4 + 0x0000000000000000 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskAllocateMPURegions + 0x0000000000000000 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskPriorityGetFromISR + 0x0000000000000000 0x23 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointerAndDelCallback + 0x0000000000000000 0x32 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSetThreadLocalStoragePointer + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pvTaskGetThreadLocalStoragePointer + 0x0000000000000000 0x21 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetStackHighWaterMark + 0x0000000000000000 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.pxTaskGetStackStart + 0x0000000000000000 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.eTaskGetState + 0x0000000000000000 0xb9 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskDelayUntil + 0x0000000000000000 0xd7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskSuspend + 0x0000000000000000 0xfc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskResetEventItemValue + 0x0000000000000000 0x56 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.ulTaskNotifyTake + 0x0000000000000000 0x145 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyWait + 0x0000000000000000 0x172 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotify + 0x0000000000000000 0x146 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.xTaskNotifyFromISR + 0x0000000000000000 0x176 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.vTaskNotifyGiveFromISR + 0x0000000000000000 0x124 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.uxTaskGetSnapshotAll + 0x0000000000000000 0xa0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5648 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5635 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5619 + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5498 + 0x0000000000000000 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5453 + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5428 + 0x0000000000000000 0x1f esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5371 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5316 + 0x0000000000000000 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5305 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5310 + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5299 + 0x0000000000000000 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5274 + 0x0000000000000000 0xe esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5258 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5201 + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.lit 0x0000000000000000 0x208 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xt.prop 0x0000000000000000 0x2058 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvInitialiseNewTimer + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerCreate + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGetPeriod + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerGetExpiryTime + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerIsTimerActive + 0x0000000000000000 0xc esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.vTimerSetTimerID + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerPendFunctionCallFromISR + 0x0000000000000000 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.xTimerPendFunctionCall + 0x0000000000000000 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.prvInitialiseNewTimer + 0x0000000000000000 0x3a esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerCreate + 0x0000000000000000 0x26 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGetPeriod + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerGetExpiryTime + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.pcTimerGetTimerName + 0x0000000000000000 0x7 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerIsTimerActive + 0x0000000000000000 0x24 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.pvTimerGetTimerID + 0x0000000000000000 0x7 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.vTimerSetTimerID + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerPendFunctionCallFromISR + 0x0000000000000000 0x22 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.xTimerPendFunctionCall + 0x0000000000000000 0x3c esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$5074 + 0x0000000000000000 0x17 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$5057 + 0x0000000000000000 0x11 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4962 + 0x0000000000000000 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4956 + 0x0000000000000000 0x10 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4942 + 0x0000000000000000 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/freertos/libfreertos.a(timers.c.obj) + .xt.prop 0x0000000000000000 0x6fc esp-idf/freertos/libfreertos.a(timers.c.obj) + .iram1.literal + 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .xt.prop 0x0000000000000000 0x78 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .text 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .data 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xt.prop 0x0000000000000000 0xf0 esp-idf/freertos/libfreertos.a(list.c.obj) + .literal.call_end_selects + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.set_global_fd_sets + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd_range + 0x0000000000000000 0x28 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_with_id + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister + 0x0000000000000000 0x28 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_fd + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_unregister_fd + 0x0000000000000000 0x18 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pread + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_pwrite + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.opendir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.readdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.readdir_r + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.telldir + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.seekdir + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.rewinddir + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.closedir + 0x0000000000000000 0x10 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.mkdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.rmdir + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal._fcntl_r + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.ioctl + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.fsync + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.access + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.truncate + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_select + 0x0000000000000000 0x64 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetattr + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsetattr + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcdrain + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflush + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcflow + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcgetsid + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.tcsendbreak + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_utime + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_poll + 0x0000000000000000 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.call_end_selects + 0x0000000000000000 0x4f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.set_global_fd_sets + 0x0000000000000000 0x114 esp-idf/vfs/libvfs.a(vfs.c.obj) + .rodata.esp_vfs_register_fd_range.str1.4 + 0x0000000000000000 0x1 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd_range + 0x0000000000000000 0x112 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_with_id + 0x0000000000000000 0x22 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister + 0x0000000000000000 0xb0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_register_fd + 0x0000000000000000 0x75 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_unregister_fd + 0x0000000000000000 0x85 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pread + 0x0000000000000000 0x81 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_pwrite + 0x0000000000000000 0x84 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.opendir 0x0000000000000000 0x5a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.readdir 0x0000000000000000 0x59 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.readdir_r + 0x0000000000000000 0x66 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.telldir 0x0000000000000000 0x5f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.seekdir 0x0000000000000000 0x5e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.rewinddir + 0x0000000000000000 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.closedir + 0x0000000000000000 0x5f esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.mkdir 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.rmdir 0x0000000000000000 0x54 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text._fcntl_r + 0x0000000000000000 0x7a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.ioctl 0x0000000000000000 0x9d esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.fsync 0x0000000000000000 0x77 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.access 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.truncate + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_select + 0x0000000000000000 0x45a esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetattr + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsetattr + 0x0000000000000000 0x7e esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcdrain 0x0000000000000000 0x77 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflush 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcflow 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcgetsid + 0x0000000000000000 0x77 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.tcsendbreak + 0x0000000000000000 0x7c esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_utime + 0x0000000000000000 0x57 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.esp_vfs_poll + 0x0000000000000000 0x196 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.lit 0x0000000000000000 0x190 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xt.prop 0x0000000000000000 0x2130 esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.uart_rx_char_via_driver + 0x0000000000000000 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.uart_tx_char_via_driver + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_set_rx_line_endings + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_set_tx_line_endings + 0x0000000000000000 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_use_nonblocking + 0x0000000000000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.esp_vfs_dev_uart_use_driver + 0x0000000000000000 0x1c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_rx_char_via_driver + 0x0000000000000000 0x32 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_tx_char_via_driver + 0x0000000000000000 0x14 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_rx_line_endings + 0x0000000000000000 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_set_tx_line_endings + 0x0000000000000000 0x1b esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_nonblocking + 0x0000000000000000 0x40 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.esp_vfs_dev_uart_use_driver + 0x0000000000000000 0x40 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xt.lit 0x0000000000000000 0xe0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xt.prop 0x0000000000000000 0x1608 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.memalign + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.memalign + 0x0000000000000000 0xd esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_trim + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_usable_size + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.malloc_stats + 0x0000000000000000 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallopt 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(heap.c.obj) + .text.mallinfo + 0x0000000000000000 0x1b esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xt.prop 0x0000000000000000 0x2ac esp-idf/newlib/libnewlib.a(heap.c.obj) + .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) + .xt.lit 0x0000000000000000 0x60 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xt.prop 0x0000000000000000 0x378 esp-idf/newlib/libnewlib.a(locks.c.obj) + .literal.pthread_condattr_setclock + 0x0000000000000000 0x14 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.pthread_condattr_setclock.str1.4 + 0x0000000000000000 0x42 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_condattr_setclock + 0x0000000000000000 0x22 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.pthread_sigmask + 0x0000000000000000 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .text.sigfillset + 0x0000000000000000 0xd esp-idf/newlib/libnewlib.a(pthread.c.obj) + .rodata.__func__$3338 + 0x0000000000000000 0x1a esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .literal.esp_reent_cleanup + 0x0000000000000000 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text.esp_reent_cleanup + 0x0000000000000000 0xdd esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .xt.prop 0x0000000000000000 0x78 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .literal.system + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.raise + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal._exit + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.fcntl + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.system 0x0000000000000000 0x11 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.raise 0x0000000000000000 0x9 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text._exit 0x0000000000000000 0x9 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .text.fcntl 0x0000000000000000 0x36 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xt.prop 0x0000000000000000 0x180 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .literal.adjtime_corr_stop + 0x0000000000000000 0x1c esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.adjtime + 0x0000000000000000 0x40 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.esp_clk_rtc_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.settimeofday + 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.usleep + 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.sleep + 0x0000000000000000 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.system_get_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.system_relative_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.system_get_rtc_time + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.esp_sync_counters_rtc_and_frc + 0x0000000000000000 0x18 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_settime + 0x0000000000000000 0x10 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_gettime + 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.clock_getres + 0x0000000000000000 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime_corr_stop + 0x0000000000000000 0x38 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.adjtime 0x0000000000000000 0xea esp-idf/newlib/libnewlib.a(time.c.obj) + .text.esp_clk_rtc_time + 0x0000000000000000 0xf esp-idf/newlib/libnewlib.a(time.c.obj) + .text.settimeofday + 0x0000000000000000 0x54 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.usleep 0x0000000000000000 0x2c esp-idf/newlib/libnewlib.a(time.c.obj) + .text.sleep 0x0000000000000000 0x13 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.system_get_time + 0x0000000000000000 0xd esp-idf/newlib/libnewlib.a(time.c.obj) + .text.system_relative_time + 0x0000000000000000 0xe esp-idf/newlib/libnewlib.a(time.c.obj) + .text.system_get_rtc_time + 0x0000000000000000 0xf esp-idf/newlib/libnewlib.a(time.c.obj) + .text.esp_sync_counters_rtc_and_frc + 0x0000000000000000 0x60 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_settime + 0x0000000000000000 0x4e esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_gettime + 0x0000000000000000 0x94 esp-idf/newlib/libnewlib.a(time.c.obj) + .text.clock_getres + 0x0000000000000000 0x20 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.lit 0x0000000000000000 0xc0 esp-idf/newlib/libnewlib.a(time.c.obj) + .xt.prop 0x0000000000000000 0x750 esp-idf/newlib/libnewlib.a(time.c.obj) + .literal.__cxx_fatal_exception_bool + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__cxx_fatal_exception_message + 0x0000000000000000 0x10 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__cxx_fatal_exception_message_va + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal.__cxx_fatal_exception_int + 0x0000000000000000 0x10 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__cxx_fatal_exception_bool + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .rodata.__cxx_fatal_exception_message.str1.4 + 0x0000000000000000 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__cxx_fatal_exception_message + 0x0000000000000000 0x1a esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__cxx_fatal_exception_message_va + 0x0000000000000000 0xc esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .rodata.__cxx_fatal_exception_int.str1.4 + 0x0000000000000000 0x9 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .text.__cxx_fatal_exception_int + 0x0000000000000000 0x1a esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .rodata.str1.4 + 0x0000000000000000 0x16 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .data.FATAL_EXCEPTION + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xt.prop 0x0000000000000000 0xc0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .literal._ZL20signal_waiting_tasksv + 0x0000000000000000 0xc esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0x34 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal._ZL19static_init_preparev + 0x0000000000000000 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_acquire + 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_release + 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .literal.__cxa_guard_abort + 0x0000000000000000 0x38 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss 0x0000000000000000 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL20signal_waiting_tasksv + 0x0000000000000000 0x24 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZL18wait_for_guard_objP7guard_t.str1.4 + 0x0000000000000000 0x3f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL18wait_for_guard_objP7guard_t + 0x0000000000000000 0xa6 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text._ZL19static_init_preparev + 0x0000000000000000 0x4a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_acquire + 0x0000000000000000 0x98 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_release.str1.4 + 0x0000000000000000 0x3f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_release + 0x0000000000000000 0x87 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata.__cxa_guard_abort.str1.4 + 0x0000000000000000 0x77 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text.__cxa_guard_abort + 0x0000000000000000 0x9a esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ17__cxa_guard_abortE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2d esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ19__cxa_guard_releaseE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2f esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZL18wait_for_guard_objP7guard_tE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x22 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .rodata._ZZ19__cxa_guard_acquireE19__PRETTY_FUNCTION__ + 0x0000000000000000 0x2e esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL31s_static_init_max_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL27s_static_init_waiting_count + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .data._ZL15s_init_spinlock + 0x0000000000000000 0x8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL22s_static_init_wait_sem + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .bss._ZL19s_static_init_mutex + 0x0000000000000000 0x4 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xt.prop 0x0000000000000000 0x270 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(blink.c.obj) + .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(blink.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(blink.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/main/libmain.a(blink.c.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/main/libmain.a(blink.c.obj) + .iram1.20.literal + 0x0000000000000000 0x64 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x45 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .iram1.20 0x0000000000000000 0x145 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .xt.prop 0x0000000000000000 0x24c esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .iram1.literal + 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .text 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .data 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .bss 0x0000000000000000 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .iram1 0x0000000000000000 0x1a esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_line 0x0000000000000000 0xa5 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_info 0x0000000000000000 0x26 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_abbrev 0x0000000000000000 0x14 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .debug_str 0x0000000000000000 0x87 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .xt.prop 0x0000000000000000 0x30 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .iram1.3.literal + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.4.literal + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.3 0x0000000000000000 0x39 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.4 0x0000000000000000 0xe esp-idf/soc/libsoc.a(cpu_util.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .xt.prop 0x0000000000000000 0x180 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .literal.cpu_hal_set_watchpoint + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text.cpu_hal_set_breakpoint + 0x0000000000000000 0x22 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text.cpu_hal_clear_breakpoint + 0x0000000000000000 0x2a esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text.cpu_hal_set_watchpoint + 0x0000000000000000 0x5c esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text.cpu_hal_clear_watchpoint + 0x0000000000000000 0x1a esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .xt.prop 0x0000000000000000 0x180 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .xt.prop 0x0000000000000000 0x84 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .literal.rtc_clk_32k_bootstrap + 0x0000000000000000 0x34 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_32k_enabled + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_8m_enabled + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_8md256_enabled + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_apll_enable + 0x0000000000000000 0x54 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_fast_freq_get + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_config + 0x0000000000000000 0x1c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_xtal_freq_update + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_apb_freq_get + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_32k_bootstrap + 0x0000000000000000 0xa2 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_32k_enabled + 0x0000000000000000 0x1c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_8m_enabled + 0x0000000000000000 0x1b esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_8md256_enabled + 0x0000000000000000 0x1c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_apll_enable + 0x0000000000000000 0x162 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_fast_freq_get + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_to_config + 0x0000000000000000 0x78 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_to_config + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_xtal_freq_update + 0x0000000000000000 0x2c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_cpu_freq_set_config_fast + 0x0000000000000000 0x36 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_apb_freq_get + 0x0000000000000000 0x2a esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .xt.lit 0x0000000000000000 0xf0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .xt.prop 0x0000000000000000 0xa44 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_vddsdio_get_config + 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .literal.rtc_vddsdio_set_config + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .text.rtc_vddsdio_get_config + 0x0000000000000000 0xd7 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .text.rtc_vddsdio_set_config + 0x0000000000000000 0x46 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .xt.prop 0x0000000000000000 0xf0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .literal.rtc_clk_cal_ratio + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .literal.rtc_time_us_to_slowclk + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text.rtc_clk_cal_ratio + 0x0000000000000000 0x24 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text.rtc_time_us_to_slowclk + 0x0000000000000000 0x1f esp-idf/soc/libsoc.a(rtc_time.c.obj) + .text.rtc_time_slowclk_to_us + 0x0000000000000000 0x1e esp-idf/soc/libsoc.a(rtc_time.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .xt.prop 0x0000000000000000 0x24c esp-idf/soc/libsoc.a(rtc_time.c.obj) + .literal.rtc_wdt_get_timeout + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .text.rtc_wdt_get_timeout + 0x0000000000000000 0x61 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .xt.prop 0x0000000000000000 0x408 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.esp_efuse_get_chip_ver + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_get_pkg_ver + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_disable_basic_rom_console + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_write_random_key + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_chip_ver + 0x0000000000000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_get_pkg_ver + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_disable_basic_rom_console.str1.4 + 0x0000000000000000 0x4f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_disable_basic_rom_console + 0x0000000000000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.esp_efuse_write_random_key.str1.4 + 0x0000000000000000 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .text.esp_efuse_write_random_key + 0x0000000000000000 0x7f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .rodata.__func__$3704 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_frame 0x0000000000000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_info 0x0000000000000000 0xfb9 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_abbrev 0x0000000000000000 0x2b8 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_loc 0x0000000000000000 0x84 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 0x6e1 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .debug_str 0x0000000000000000 0xc55 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xt.prop 0x0000000000000000 0x15c esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .literal.esp_efuse_set_timing + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.read_w_data_and_check_fill + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.read_r_data + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_34_encoding + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x54 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 0x83 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.read_w_data_and_check_fill.str1.4 + 0x0000000000000000 0xd4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.read_w_data_and_check_fill + 0x0000000000000000 0x5f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.read_r_data + 0x0000000000000000 0x39 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_clear_program_registers + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_burn_efuses + 0x0000000000000000 0x53 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_34_encoding + 0x0000000000000000 0x93 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4 + 0x0000000000000000 0x2f4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_apply_new_coding_scheme + 0x0000000000000000 0x1de esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3692 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3723 + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_write_addr_blocks + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.range_read_addr_blocks + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000000000 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000000000000000 0x1135 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x350 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x0000000000000000 0x40f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000000000 0xe8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0000000000000000 0x100b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0000000000000000 0x980 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x0000000000000000 0x3b4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_read_field_blob + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_field_cnt + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_blob + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_field_cnt + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_reg + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_reg + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_read_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_write_block + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_begin + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_cancel + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_batch_write_commit + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_blob + 0x0000000000000000 0x66 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_field_cnt + 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_blob + 0x0000000000000000 0x83 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_write_field_cnt.str1.4 + 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_field_cnt + 0x0000000000000000 0xab esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_field_size + 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_reg + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_reg + 0x0000000000000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_read_block + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_write_block + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_begin.str1.4 + 0x0000000000000000 0x3f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_begin + 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .rodata.esp_efuse_batch_write_cancel.str1.4 + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_cancel + 0x0000000000000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_batch_write_commit + 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_batch_writing_mode + 0x0000000000000000 0x1 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss.s_efuse_lock + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x0000000000000000 0x130 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x0000000000000000 0x14e2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x0000000000000000 0x2c7 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x0000000000000000 0x4fa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x0000000000000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x0000000000000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x0000000000000000 0xd01 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x0000000000000000 0xda4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.prop 0x0000000000000000 0x42c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.fill_reg + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.set_cnt_in_reg + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.write_reg + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.check_range_of_bits + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_process + 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_reset + 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_read_reg + 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_fill_buff + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_count_once + 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_cnt + 0x0000000000000000 0x14 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_reg + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .literal.esp_efuse_utility_write_blob + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .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.get_mask + 0x0000000000000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_reg_num + 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_starting_bit_num_in_reg + 0x0000000000000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.get_count_bits_in_reg + 0x0000000000000000 0x2e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.fill_reg + 0x0000000000000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.set_cnt_in_reg.str1.4 + 0x0000000000000000 0x76 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.set_cnt_in_reg + 0x0000000000000000 0x40 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.write_reg.str1.4 + 0x0000000000000000 0xc0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.write_reg + 0x0000000000000000 0x7b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.check_range_of_bits + 0x0000000000000000 0x5e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_process.str1.4 + 0x0000000000000000 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_process + 0x0000000000000000 0x11e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_reset.str1.4 + 0x0000000000000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_reset + 0x0000000000000000 0x56 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_erase_virt_blocks + 0x0000000000000000 0x5 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_update_virt_blocks.str1.4 + 0x0000000000000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_update_virt_blocks + 0x0000000000000000 0x1e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_debug_dump_blocks.str1.4 + 0x0000000000000000 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_debug_dump_blocks + 0x0000000000000000 0x7b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_get_number_of_items + 0x0000000000000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_read_reg.str1.4 + 0x0000000000000000 0xd0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_read_reg + 0x0000000000000000 0x6b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_fill_buff + 0x0000000000000000 0xc7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_count_once + 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_cnt + 0x0000000000000000 0x4d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.esp_efuse_utility_write_reg.str1.4 + 0x0000000000000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_reg + 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text.esp_efuse_utility_write_blob + 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3769 + 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3746 + 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3727 + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3778 + 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3830 + 0x0000000000000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .rodata.__func__$3673 + 0x0000000000000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_frame 0x0000000000000000 0x1f0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_info 0x0000000000000000 0x1bd7 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x407 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_loc 0x0000000000000000 0xbdc esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_aranges + 0x0000000000000000 0xb8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_ranges 0x0000000000000000 0xf0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_line 0x0000000000000000 0x14ca esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .debug_str 0x0000000000000000 0xc42 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.lit 0x0000000000000000 0x70 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xt.prop 0x0000000000000000 0x690 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_VERSION + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_HIGH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC2_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC1_TP_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ADC_VREF_AND_SDIO_DREF + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SDIO_FORCE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SDIO_TIEH + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_XPD_SDIO_REG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_REV1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_RATED + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_CPU_FREQ_LOW + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_PKG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_DIS_BT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CHIP_VER_DIS_APP_CPU + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_RD_DIS_BLK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK3 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK2 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_BLK1 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_FLASH_CRYPT_CNT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_CONSOLE_DEBUG_DISABLE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_JTAG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_CACHE + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_DECRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_DISABLE_DL_ENCRYPT + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENCRYPT_CONFIG + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ENCRYPT_FLASH_KEY + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_ABS_DONE_0 + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_SECURE_BOOT_KEY + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM_VER + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_CUSTOM_CRC + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_FACTORY_CRC + 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .data.ESP_EFUSE_MAC_FACTORY + 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_VERSION + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_HIGH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC2_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC1_TP_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ADC_VREF_AND_SDIO_DREF + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SDIO_FORCE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SDIO_TIEH + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.XPD_SDIO_REG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_REV1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_RATED + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_CPU_FREQ_LOW + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_PKG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_DIS_BT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CHIP_VER_DIS_APP_CPU + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.RD_DIS_BLK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK3 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK2 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_BLK1 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.WR_DIS_FLASH_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.FLASH_CRYPT_CNT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.CONSOLE_DEBUG_DISABLE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_JTAG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_CACHE + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_DECRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.DISABLE_DL_ENCRYPT + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ENCRYPT_CONFIG + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ENCRYPT_FLASH_KEY + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.ABS_DONE_0 + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.SECURE_BOOT_KEY + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM_VER + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_CUSTOM_CRC + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_FACTORY_CRC + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .rodata.MAC_FACTORY + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_info 0x0000000000000000 0x10c2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_abbrev 0x0000000000000000 0x1da esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_line 0x0000000000000000 0x376 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .debug_str 0x0000000000000000 0xc2f esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xt.prop 0x0000000000000000 0x390 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .literal.esp_efuse_set_write_protect + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_set_read_protect + 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .literal.esp_efuse_get_coding_scheme + 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_set_write_protect + 0x0000000000000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_set_read_protect + 0x0000000000000000 0x45 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text.esp_efuse_get_coding_scheme + 0x0000000000000000 0x41 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_info 0x0000000000000000 0xdbc esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_abbrev 0x0000000000000000 0x24d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_loc 0x0000000000000000 0x172 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_ranges 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_line 0x0000000000000000 0x63a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .debug_str 0x0000000000000000 0xb6d esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xt.prop 0x0000000000000000 0x168 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xt.prop 0x0000000000000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .literal.bootloader_fill_random + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .literal.bootloader_random_enable + 0x0000000000000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .literal.bootloader_random_disable + 0x0000000000000000 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text.bootloader_fill_random + 0x0000000000000000 0xf esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text.bootloader_random_enable + 0x0000000000000000 0x1c4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text.bootloader_random_disable + 0x0000000000000000 0x11d esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_info 0x0000000000000000 0x6eec esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_abbrev 0x0000000000000000 0x2ad esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_line 0x0000000000000000 0x13b3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .debug_str 0x0000000000000000 0x4528 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xt.prop 0x0000000000000000 0x258 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .literal.write_status_8b_wrsr2 + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_rdsr2 + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_16b_wrsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_16b_rdsr_rdsr2 + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_8b_wrsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_rdsr + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.write_status_8b_xmc25qu64a + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.read_status_8b_xmc25qu64a + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.enable_qio_mode + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.bootloader_enable_qio_mode + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr2 + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr2 + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_16b_wrsr + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_16b_rdsr_rdsr2 + 0x0000000000000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_wrsr + 0x0000000000000000 0x13 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_rdsr + 0x0000000000000000 0x15 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.write_status_8b_xmc25qu64a + 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.read_status_8b_xmc25qu64a + 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.enable_qio_mode.str1.4 + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.enable_qio_mode + 0x0000000000000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.bootloader_enable_qio_mode.str1.4 + 0x0000000000000000 0x6f esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.bootloader_enable_qio_mode + 0x0000000000000000 0xfe esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .rodata.chip_data + 0x0000000000000000 0x6c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xt.prop 0x0000000000000000 0x300 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .literal.spi_cache_mode_switch + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_read_status + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_wait_idle + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_chip_internal + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_block_internal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_sector_internal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_read_data + 0x0000000000000000 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_enable_write + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_program_page_internal + 0x0000000000000000 0x40 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_read_statushigh + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_write_status + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_unlock + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_lock + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_config_readmode + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_chip + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_block + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_sector + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_write + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_write_encrypted + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_read + 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .literal.esp_rom_spiflash_erase_area + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.spi_cache_mode_switch + 0x0000000000000000 0x286 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_read_status + 0x0000000000000000 0x63 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_wait_idle + 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_chip_internal + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_block_internal + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_sector_internal + 0x0000000000000000 0x45 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.esp_rom_spiflash_read_data.str1.4 + 0x0000000000000000 0x186 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_read_data + 0x0000000000000000 0x122 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_enable_write + 0x0000000000000000 0x3d esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.esp_rom_spiflash_program_page_internal.str1.4 + 0x0000000000000000 0x13c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_program_page_internal + 0x0000000000000000 0x12a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_read_statushigh + 0x0000000000000000 0x21 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_write_status + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_unlock + 0x0000000000000000 0x82 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_lock + 0x0000000000000000 0x53 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_config_readmode + 0x0000000000000000 0xa2 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.esp_rom_spiflash_config_readmode + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_chip + 0x0000000000000000 0x2a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_block + 0x0000000000000000 0x6a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_sector + 0x0000000000000000 0x6a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_write + 0x0000000000000000 0xde esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_write_encrypted + 0x0000000000000000 0x5a esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_read + 0x0000000000000000 0x284 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .text.esp_rom_spiflash_erase_area + 0x0000000000000000 0xbc esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.__func__$3374 + 0x0000000000000000 0x1b esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .rodata.__func__$3310 + 0x0000000000000000 0x27 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_frame 0x0000000000000000 0x208 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_info 0x0000000000000000 0x3ec1 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_abbrev 0x0000000000000000 0x43f esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_loc 0x0000000000000000 0xbda esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_aranges + 0x0000000000000000 0xc0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_ranges 0x0000000000000000 0xb0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_line 0x0000000000000000 0x2fc1 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .debug_str 0x0000000000000000 0x2580 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .xt.lit 0x0000000000000000 0xa8 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .xt.prop 0x0000000000000000 0xc0c esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .iram1.36.literal + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.37.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.36 0x0000000000000000 0x36 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.37 0x0000000000000000 0x21 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xt.prop 0x0000000000000000 0x390 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .iram1.45.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.40.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.34.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.35.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.41.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.44.literal + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.42.literal + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.43.literal + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.45 0x0000000000000000 0x19 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.40 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.34 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.35 0x0000000000000000 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.41 0x0000000000000000 0x32 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.44 0x0000000000000000 0x4e esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x65 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.42 0x0000000000000000 0xd5 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.43 0x0000000000000000 0x85 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .rodata.__func__$5662 + 0x0000000000000000 0x22 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .dram1.32 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xt.prop 0x0000000000000000 0x3b4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .literal.find_region + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.39.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.24.literal + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.26.literal + 0x0000000000000000 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.27.literal + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.28.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.29.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_get_protectable_regions + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.30.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.31.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.32.literal + 0x0000000000000000 0x38 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.33.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.34.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.36.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.37.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.38.literal + 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .literal.esp_flash_app_disable_protect + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.40.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.41.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.42.literal + 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.find_region + 0x0000000000000000 0x42 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.39 0x0000000000000000 0x7a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.24 0x0000000000000000 0x51 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.26 0x0000000000000000 0x74 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.27 0x0000000000000000 0x1f4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.28 0x0000000000000000 0x64 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.29 0x0000000000000000 0x58 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_get_protectable_regions + 0x0000000000000000 0x69 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.30 0x0000000000000000 0xb5 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.31 0x0000000000000000 0xe8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.32 0x0000000000000000 0x157 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.33 0x0000000000000000 0xf4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.34 0x0000000000000000 0x4f esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.36 0x0000000000000000 0x25 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.37 0x0000000000000000 0x70 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.38 0x0000000000000000 0x65 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .text.esp_flash_app_disable_protect + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.40 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.41 0x0000000000000000 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.42 0x0000000000000000 0x1b esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.lit 0x0000000000000000 0xc0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xt.prop 0x0000000000000000 0x10e0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.19.literal + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_remove_flash_device + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.spi_bus_add_flash_device + 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.str1.4 + 0x0000000000000000 0xdb esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .iram1.19 0x0000000000000000 0x11a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_remove_flash_device + 0x0000000000000000 0x2d esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .text.spi_bus_add_flash_device + 0x0000000000000000 0xd1 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .rodata.__func__$6133 + 0x0000000000000000 0xe esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xt.prop 0x0000000000000000 0x21c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .literal.esp_flash_init_os_functions + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.spi23_start + 0x0000000000000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.spi23_end + 0x0000000000000000 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .text.esp_flash_init_os_functions + 0x0000000000000000 0x39 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .rodata.esp_flash_spi23_default_os_functions + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data.spi3_arg + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .data.spi2_arg + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.6 0x0000000000000000 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xt.prop 0x0000000000000000 0x21c esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.13.literal + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .iram1.13 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xt.prop 0x0000000000000000 0xcc esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .literal.esp_partition_find_first + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_register_external + 0x0000000000000000 0x3c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_deregister_external + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_verify + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_read + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_write + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_erase_range + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_mmap + 0x0000000000000000 0x1c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_get_sha256 + 0x0000000000000000 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .literal.esp_partition_check_identity + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_find_first + 0x0000000000000000 0x2c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.esp_partition_register_external.str1.4 + 0x0000000000000000 0x5c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_register_external + 0x0000000000000000 0x118 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_deregister_external + 0x0000000000000000 0x5e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.esp_partition_verify.str1.4 + 0x0000000000000000 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_verify + 0x0000000000000000 0x81 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_read + 0x0000000000000000 0x51 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_write + 0x0000000000000000 0x51 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_erase_range + 0x0000000000000000 0x59 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_mmap + 0x0000000000000000 0x6e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_get_sha256 + 0x0000000000000000 0x15 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text.esp_partition_check_identity + 0x0000000000000000 0x4c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4302 + 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4293 + 0x0000000000000000 0x1a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4287 + 0x0000000000000000 0x14 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4280 + 0x0000000000000000 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4267 + 0x0000000000000000 0x15 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .rodata.__func__$4117 + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .xt.lit 0x0000000000000000 0x90 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .xt.prop 0x0000000000000000 0x90c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.lit 0x0000000000000000 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xt.prop 0x0000000000000000 0x738 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xt.prop 0x0000000000000000 0xe4 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_gd.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xt.prop 0x0000000000000000 0xfc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.memspi_host_init_pointers + 0x0000000000000000 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_init_pointers + 0x0000000000000000 0x30 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_chip + 0x0000000000000000 0x1e esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_sector + 0x0000000000000000 0x22 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_erase_block + 0x0000000000000000 0x23 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_program_page + 0x0000000000000000 0x2a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_read + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .text.memspi_host_set_write_protect + 0x0000000000000000 0x2a esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.esp_flash_default_host + 0x0000000000000000 0x4c esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xt.prop 0x0000000000000000 0x1f8 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .iram1.37.literal + 0x0000000000000000 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.spi_flash_mmap_dump + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.39.literal + 0x0000000000000000 0x20 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.40.literal + 0x0000000000000000 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.37 0x0000000000000000 0x17 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .rodata.spi_flash_mmap_dump.str1.4 + 0x0000000000000000 0x39 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .text.spi_flash_mmap_dump + 0x0000000000000000 0x5b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.39 0x0000000000000000 0x60 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.40 0x0000000000000000 0x7b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xt.prop 0x0000000000000000 0x72c esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .literal.esp_log_set_vprintf + 0x0000000000000000 0xc esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_level_set + 0x0000000000000000 0x58 esp-idf/log/liblog.a(log.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_set_vprintf + 0x0000000000000000 0x1b esp-idf/log/liblog.a(log.c.obj) + .text.esp_log_level_set + 0x0000000000000000 0x12c esp-idf/log/liblog.a(log.c.obj) + .rodata.__func__$3505 + 0x0000000000000000 0x12 esp-idf/log/liblog.a(log.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/log/liblog.a(log.c.obj) + .xt.prop 0x0000000000000000 0x300 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_impl_lock + 0x0000000000000000 0xc esp-idf/log/liblog.a(log_freertos.c.obj) + .literal.esp_log_system_timestamp + 0x0000000000000000 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .text.esp_log_impl_lock + 0x0000000000000000 0x2c esp-idf/log/liblog.a(log_freertos.c.obj) + .rodata.esp_log_system_timestamp.str1.4 + 0x0000000000000000 0x15 esp-idf/log/liblog.a(log_freertos.c.obj) + .text.esp_log_system_timestamp + 0x0000000000000000 0xe9 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.bufferLock$5216 + 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.buffer$5215 + 0x0000000000000000 0x12 esp-idf/log/liblog.a(log_freertos.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/log/liblog.a(log_freertos.c.obj) + .xt.prop 0x0000000000000000 0x234 esp-idf/log/liblog.a(log_freertos.c.obj) + .literal.heap_caps_malloc_extmem_enable + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.26.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.27.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.32.literal + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.28.literal + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_total_size + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_free_size + 0x0000000000000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_minimum_free_size + 0x0000000000000000 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_info + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_largest_free_block + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_print_heap_info + 0x0000000000000000 0x38 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_all + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_check_integrity_addr + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_dump_all + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_get_allocated_size + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.33.literal + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_aligned_calloc + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.34.literal + 0x0000000000000000 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_malloc_extmem_enable + 0x0000000000000000 0xa esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.26 0x0000000000000000 0x59 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.27 0x0000000000000000 0x6c esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.32 0x0000000000000000 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.28 0x0000000000000000 0x58 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_total_size + 0x0000000000000000 0x2c esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_free_size + 0x0000000000000000 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_minimum_free_size + 0x0000000000000000 0x2d esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_info + 0x0000000000000000 0x73 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_largest_free_block + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.heap_caps_print_heap_info.str1.4 + 0x0000000000000000 0xf4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_print_heap_info + 0x0000000000000000 0x7f esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity + 0x0000000000000000 0x57 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_all + 0x0000000000000000 0x13 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_check_integrity_addr + 0x0000000000000000 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump + 0x0000000000000000 0x3e esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_dump_all + 0x0000000000000000 0xe esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_get_allocated_size + 0x0000000000000000 0x1a esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.33 0x0000000000000000 0x8a esp-idf/heap/libheap.a(heap_caps.c.obj) + .text.heap_caps_aligned_calloc + 0x0000000000000000 0x34 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.34 0x0000000000000000 0x2e esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.__func__$4970 + 0x0000000000000000 0x17 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.lit 0x0000000000000000 0xd8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xt.prop 0x0000000000000000 0xb94 esp-idf/heap/libheap.a(heap_caps.c.obj) + .literal.heap_caps_add_region_with_caps + 0x0000000000000000 0x3c esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.heap_caps_add_region + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region_with_caps + 0x0000000000000000 0x108 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .text.heap_caps_add_region + 0x0000000000000000 0x62 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .data.registered_heaps_write_lock$4841 + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xt.prop 0x0000000000000000 0x378 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .literal.multi_heap_internal_lock + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_internal_unlock + 0x0000000000000000 0x4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_next_block + 0x0000000000000000 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_alloc_impl + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_aligned_free_impl + 0x0000000000000000 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_check + 0x0000000000000000 0x58 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_dump + 0x0000000000000000 0x4c esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.multi_heap_get_info_impl + 0x0000000000000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .text 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .data 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_owner + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_block_address_impl + 0x0000000000000000 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_internal_lock + 0x0000000000000000 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_internal_unlock + 0x0000000000000000 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_first_block + 0x0000000000000000 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_next_block + 0x0000000000000000 0x49 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_is_free + 0x0000000000000000 0xa esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_alloc_impl + 0x0000000000000000 0x72 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_aligned_free_impl + 0x0000000000000000 0x2c esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_check.str1.4 + 0x0000000000000000 0x1b5 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_check + 0x0000000000000000 0x172 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.multi_heap_dump.str1.4 + 0x0000000000000000 0x7b esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_dump + 0x0000000000000000 0xd2 esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_free_size_impl + 0x0000000000000000 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_minimum_free_size_impl + 0x0000000000000000 0xe esp-idf/heap/libheap.a(multi_heap.c.obj) + .text.multi_heap_get_info_impl + 0x0000000000000000 0xee esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4946 + 0x0000000000000000 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4934 + 0x0000000000000000 0x11 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.lit 0x0000000000000000 0x80 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xt.prop 0x0000000000000000 0xcd8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .literal.gpio_intr_enable_on_core + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register_on_core_static + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.22.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_en + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pullup_dis + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_en + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_pulldown_dis + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_intr_type + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_enable + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_intr_disable + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_level + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_pull_mode + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_config + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_reset_pin + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_add + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_handler_remove + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_uninstall_isr_service + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_isr_register + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_install_isr_service + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_enable + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_wakeup_disable + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_set_drive_capability + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_get_drive_capability + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_en + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_hold_dis + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_en + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_in + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.gpio_iomux_out + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(gpio.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable_on_core + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register_on_core_static + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .iram1.22 0x0000000000000000 0xf8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_pullup_en.str1.4 + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_en + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_pullup_dis.str1.4 + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pullup_dis + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_en + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_pulldown_dis + 0x0000000000000000 0xb2 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 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_enable + 0x0000000000000000 0x76 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_intr_disable + 0x0000000000000000 0x51 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_level + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_pull_mode.str1.4 + 0x0000000000000000 0x5d esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_pull_mode + 0x0000000000000000 0xf5 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_config.str1.4 + 0x0000000000000000 0x1c2 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_config + 0x0000000000000000 0x22e esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_reset_pin.str1.4 + 0x0000000000000000 0x2e esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_reset_pin + 0x0000000000000000 0x57 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 0xc1 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_handler_remove + 0x0000000000000000 0xad esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_uninstall_isr_service + 0x0000000000000000 0x3a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_isr_register.str1.4 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_isr_register + 0x0000000000000000 0x8b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_install_isr_service.str1.4 + 0x0000000000000000 0x23 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_install_isr_service + 0x0000000000000000 0x7d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_wakeup_enable.str1.4 + 0x0000000000000000 0x5c esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_enable + 0x0000000000000000 0xdd esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_wakeup_disable + 0x0000000000000000 0x9c esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_set_drive_capability.str1.4 + 0x0000000000000000 0xd4 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_set_drive_capability + 0x0000000000000000 0xf8 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_get_drive_capability.str1.4 + 0x0000000000000000 0xde esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_get_drive_capability + 0x0000000000000000 0xe4 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 0xa6 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_hold_dis + 0x0000000000000000 0xa9 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_en + 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_deep_sleep_hold_dis + 0x0000000000000000 0x2b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_iomux_in.str1.4 + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_in + 0x0000000000000000 0x5b esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_iomux_out.str1.4 + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(gpio.c.obj) + .text.gpio_iomux_out + 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6162 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6152 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6383 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6378 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6114 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6373 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6105 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6367 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6361 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6356 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6349 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6334 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6330 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6323 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6304 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6295 + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6270 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6233 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6225 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6229 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6220 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6014 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6215 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6008 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6211 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$6002 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6207 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__func__$5996 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6203 + 0x0000000000000000 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + .xt.lit 0x0000000000000000 0x128 esp-idf/driver/libdriver.a(gpio.c.obj) + .xt.prop 0x0000000000000000 0x1380 esp-idf/driver/libdriver.a(gpio.c.obj) + .literal.periph_module_disable + 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .literal.periph_module_reset + 0x0000000000000000 0x7c esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.periph_module_disable + 0x0000000000000000 0x27f esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.periph_module_disable + 0x0000000000000000 0x1e8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .text.periph_module_reset + 0x0000000000000000 0x1af esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.periph_module_reset + 0x0000000000000000 0x15c esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .xt.prop 0x0000000000000000 0x13f8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .literal.rtc_gpio_init + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_deinit + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_level + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_level + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_drive_capability + 0x0000000000000000 0x64 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_get_drive_capability + 0x0000000000000000 0x58 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_en + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pullup_dis + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_en + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_pulldown_dis + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_en + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_hold_dis + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_isolate + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_force_hold_en_all + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_enable + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_gpio_wakeup_disable + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_init.str1.4 + 0x0000000000000000 0x16d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_init + 0x0000000000000000 0xe2 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_deinit.str1.4 + 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_deinit + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_level + 0x0000000000000000 0xc8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_level + 0x0000000000000000 0x78 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_set_drive_capability.str1.4 + 0x0000000000000000 0xe8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_drive_capability + 0x0000000000000000 0x162 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_get_drive_capability.str1.4 + 0x0000000000000000 0xd6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_get_drive_capability + 0x0000000000000000 0x132 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction + 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_set_direction_in_sleep + 0x0000000000000000 0x82 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_en + 0x0000000000000000 0xc6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pullup_dis + 0x0000000000000000 0xc9 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_en + 0x0000000000000000 0xc6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_pulldown_dis + 0x0000000000000000 0xcd esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_en + 0x0000000000000000 0x96 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.rtc_gpio_hold_dis.str1.4 + 0x0000000000000000 0xac esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_hold_dis + 0x0000000000000000 0xe0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_isolate + 0x0000000000000000 0x80 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_force_hold_en_all + 0x0000000000000000 0x2d esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_enable + 0x0000000000000000 0xb6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .text.rtc_gpio_wakeup_disable + 0x0000000000000000 0xa4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6851 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6847 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6836 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6696 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6832 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6828 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6684 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6824 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6677 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6820 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6670 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6816 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6663 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6812 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6808 + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6803 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6653 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6798 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6646 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6793 + 0x0000000000000000 0x1e esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6788 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6784 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6779 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__func__$6605 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .rodata.__FUNCTION__$6775 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xt.lit 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xt.prop 0x0000000000000000 0xa38 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .literal.rtc_isr_deregister + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .text.rtc_isr_deregister + 0x0000000000000000 0x61 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .xt.prop 0x0000000000000000 0x1b0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .literal.bus_uses_iomux_pins + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_claim + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_in_use + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_periph_free + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqsource_for_host + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_irqdma_source_for_host + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_claim + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_in_use + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_dma_chan_free + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_initialize_io + 0x0000000000000000 0x178 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_free_io_cfg + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_initialize + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_cs_free_io + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.spicommon_bus_using_iomux + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.24.literal + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.25.literal + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.26.literal + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.27.literal + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.bus_uses_iomux_pins + 0x0000000000000000 0xa0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_periph_claim.str1.4 + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_claim + 0x0000000000000000 0xb2 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_in_use + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_periph_free + 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqsource_for_host + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_irqdma_source_for_host + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_claim.str1.4 + 0x0000000000000000 0x6c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_claim + 0x0000000000000000 0x57 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_in_use.str1.4 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_in_use + 0x0000000000000000 0x36 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_dma_chan_free.str1.4 + 0x0000000000000000 0x55 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_dma_chan_free + 0x0000000000000000 0x71 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_bus_initialize_io.str1.4 + 0x0000000000000000 0x5d6 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_initialize_io + 0x0000000000000000 0x77c esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_free_io_cfg + 0x0000000000000000 0x43 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_initialize.str1.4 + 0x0000000000000000 0xba esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_initialize + 0x0000000000000000 0x10c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.spicommon_cs_free_io.str1.4 + 0x0000000000000000 0x32 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_cs_free_io + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(spi_common.c.obj) + .text.spicommon_bus_using_iomux + 0x0000000000000000 0xa4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.24 0x0000000000000000 0x52 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.25 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.26 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(spi_common.c.obj) + .iram1.27 0x0000000000000000 0x2a esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6739 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6729 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6698 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__FUNCTION__$6695 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6677 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6673 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(spi_common.c.obj) + .rodata.__func__$6669 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_waiting_for_chan + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.dmaworkaround_mux + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb_arg + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_cb + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.dmaworkaround_channels_busy + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_dma_spinlock + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_dma_chan_enabled + 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(spi_common.c.obj) + .bss.spi_claiming_func + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(spi_common.c.obj) + .data.spi_periph_claimed + 0x0000000000000000 0x3 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_frame 0x0000000000000000 0x1c0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_info 0x0000000000000000 0x5997 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_abbrev 0x0000000000000000 0x4b9 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_loc 0x0000000000000000 0xb8b esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_aranges + 0x0000000000000000 0xa8 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_ranges 0x0000000000000000 0x98 esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_line 0x0000000000000000 0x219e esp-idf/driver/libdriver.a(spi_common.c.obj) + .debug_str 0x0000000000000000 0x350d esp-idf/driver/libdriver.a(spi_common.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xt.lit 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xt.prop 0x0000000000000000 0x948 esp-idf/driver/libdriver.a(spi_common.c.obj) + .literal.uart_pattern_dequeue + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_link_free + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_module_enable + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_enqueue + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_rx_intr_handler_default + 0x0000000000000000 0x114 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_module_disable + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_line_inverse + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_sw_flow_ctrl + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_hw_flow_ctrl + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_hw_flow_ctrl + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_clear_intr_status + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_pop_pos + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_get_pos + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_pattern_queue_reset + 0x0000000000000000 0x3c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_pattern_det_intr + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_pattern_det_baud_intr + 0x0000000000000000 0x54 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_pattern_det_intr + 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_check_buf_full + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_disable_tx_intr + 0x0000000000000000 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_enable_tx_intr + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_tx_all + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_isr_register + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_isr_free + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_pin + 0x0000000000000000 0xb0 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rts + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_dtr + 0x0000000000000000 0x28 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_idle_num + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_param_config + 0x0000000000000000 0x78 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_intr_config + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_tx_chars + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_write_bytes + 0x0000000000000000 0x38 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_write_bytes_with_break + 0x0000000000000000 0x50 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_read_bytes + 0x0000000000000000 0x64 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_driver_delete + 0x0000000000000000 0x60 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_driver_install + 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_mode + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_full_threshold + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_tx_empty_threshold + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_rx_timeout + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_collision_flag + 0x0000000000000000 0x40 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_wakeup_threshold + 0x0000000000000000 0x34 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_get_wakeup_threshold + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_wait_tx_idle_polling + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_loop_back + 0x0000000000000000 0x20 esp-idf/driver/libdriver.a(uart.c.obj) + .text 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .data 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_dequeue + 0x0000000000000000 0x3e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_find_pattern_from_last + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_link_free + 0x0000000000000000 0x4d esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_enable + 0x0000000000000000 0x5f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_enqueue + 0x0000000000000000 0x4c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_rx_intr_handler_default + 0x0000000000000000 0x77a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_module_disable + 0x0000000000000000 0x48 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_line_inverse + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_sw_flow_ctrl.str1.4 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_sw_flow_ctrl + 0x0000000000000000 0xd5 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_hw_flow_ctrl.str1.4 + 0x0000000000000000 0x2f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_hw_flow_ctrl + 0x0000000000000000 0xbc esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_hw_flow_ctrl + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_clear_intr_status + 0x0000000000000000 0x44 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_pop_pos + 0x0000000000000000 0x90 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_get_pos + 0x0000000000000000 0x86 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_pattern_queue_reset + 0x0000000000000000 0xc0 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_pattern_det_intr.str1.4 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_pattern_det_intr + 0x0000000000000000 0x120 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_pattern_det_baud_intr + 0x0000000000000000 0x154 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_pattern_det_intr + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_check_buf_full + 0x0000000000000000 0x6e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_disable_tx_intr + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_enable_tx_intr.str1.4 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_enable_tx_intr + 0x0000000000000000 0xa1 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_all + 0x0000000000000000 0x200 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_isr_register + 0x0000000000000000 0x6e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_isr_free + 0x0000000000000000 0xd4 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_pin.str1.4 + 0x0000000000000000 0x34c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_pin + 0x0000000000000000 0x2fc esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rts.str1.4 + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rts + 0x0000000000000000 0xa8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_dtr + 0x0000000000000000 0x5a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_idle_num.str1.4 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_idle_num + 0x0000000000000000 0x8e esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_param_config.str1.4 + 0x0000000000000000 0xb esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_param_config + 0x0000000000000000 0x16d esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_intr_config + 0x0000000000000000 0xf5 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_tx_chars.str1.4 + 0x0000000000000000 0xc esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_tx_chars + 0x0000000000000000 0x130 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes + 0x0000000000000000 0xa9 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_write_bytes_with_break.str1.4 + 0x0000000000000000 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_write_bytes_with_break + 0x0000000000000000 0x109 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_read_bytes + 0x0000000000000000 0x1cd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_delete.str1.4 + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_delete + 0x0000000000000000 0x1bc esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_driver_install.str1.4 + 0x0000000000000000 0x155 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_driver_install + 0x0000000000000000 0x304 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_mode.str1.4 + 0x0000000000000000 0x2c esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_mode + 0x0000000000000000 0x12c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_full_threshold.str1.4 + 0x0000000000000000 0x5e esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_full_threshold + 0x0000000000000000 0xd0 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_tx_empty_threshold.str1.4 + 0x0000000000000000 0x24 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_tx_empty_threshold + 0x0000000000000000 0xd0 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_rx_timeout.str1.4 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_rx_timeout + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_collision_flag.str1.4 + 0x0000000000000000 0x23 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_collision_flag + 0x0000000000000000 0xe8 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_wakeup_threshold.str1.4 + 0x0000000000000000 0x1f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_wakeup_threshold + 0x0000000000000000 0x94 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_get_wakeup_threshold.str1.4 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_get_wakeup_threshold + 0x0000000000000000 0x74 esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_wait_tx_idle_polling + 0x0000000000000000 0x6f esp-idf/driver/libdriver.a(uart.c.obj) + .text.uart_set_loop_back + 0x0000000000000000 0x4a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7323 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7315 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7311 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7306 + 0x0000000000000000 0x1a esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7301 + 0x0000000000000000 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7296 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7291 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7286 + 0x0000000000000000 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7281 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7266 + 0x0000000000000000 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + .bss.pat_flg$7155 + 0x0000000000000000 0x1 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7260 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7226 + 0x0000000000000000 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7215 + 0x0000000000000000 0x1c esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7208 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7182 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7134 + 0x0000000000000000 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7129 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7124 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7119 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7114 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__func__$7097 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7096 + 0x0000000000000000 0xd esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7088 + 0x0000000000000000 0xe esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7083 + 0x0000000000000000 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7073 + 0x0000000000000000 0x14 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7051 + 0x0000000000000000 0x22 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7041 + 0x0000000000000000 0x1d esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7030 + 0x0000000000000000 0x19 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7023 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$7017 + 0x0000000000000000 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6977 + 0x0000000000000000 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6972 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6967 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6960 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6953 + 0x0000000000000000 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + .xt.lit 0x0000000000000000 0x1f8 esp-idf/driver/libdriver.a(uart.c.obj) + .xt.prop 0x0000000000000000 0x2100 esp-idf/driver/libdriver.a(uart.c.obj) + .iram1.0.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .literal.esp_fill_random + 0x0000000000000000 0x18 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .iram1.0 0x0000000000000000 0x46 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .rodata.esp_fill_random.str1.4 + 0x0000000000000000 0x42 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .text.esp_fill_random + 0x0000000000000000 0x3b esp-idf/esp32/libesp32.a(hw_random.c.obj) + .rodata.__func__$3138 + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .bss.last_ccount$3124 + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_info 0x0000000000000000 0x134a esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_abbrev 0x0000000000000000 0x258 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_loc 0x0000000000000000 0x10f esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_line 0x0000000000000000 0x56e esp-idf/esp32/libesp32.a(hw_random.c.obj) + .debug_str 0x0000000000000000 0x11b7 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .xt.prop 0x0000000000000000 0x90 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .iram1.22.literal + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.26.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.24.literal + 0x0000000000000000 0x38 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.25.literal + 0x0000000000000000 0x44 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.27.literal + 0x0000000000000000 0xc esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .literal.esp_pm_impl_get_mode + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.23.literal + 0x0000000000000000 0x30 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .literal.esp_pm_impl_idle_hook + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.28.literal + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .literal.esp_pm_impl_init + 0x0000000000000000 0x58 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.22 0x0000000000000000 0x1d esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.26 0x0000000000000000 0x3e esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .rodata.str1.4 + 0x0000000000000000 0x6d esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.24 0x0000000000000000 0xa8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.25 0x0000000000000000 0x112 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.27 0x0000000000000000 0x30 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text.esp_pm_impl_get_mode + 0x0000000000000000 0x20 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text.esp_pm_configure + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.23 0x0000000000000000 0xb6 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text.esp_pm_impl_idle_hook + 0x0000000000000000 0x3c esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .iram1.28 0x0000000000000000 0x40 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .rodata.esp_pm_impl_init.str1.4 + 0x0000000000000000 0x121 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text.esp_pm_impl_init + 0x0000000000000000 0xd0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .rodata.__func__$7349 + 0x0000000000000000 0x11 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .rodata.__func__$7299 + 0x0000000000000000 0xf esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_config_changed + 0x0000000000000000 0x1 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_rtos_lock_handle + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_core_idle + 0x0000000000000000 0x2 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_need_update_ccompare + 0x0000000000000000 0x2 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_ccount_mul + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_ccount_div + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_mode_mask + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_mode_lock_counts + 0x0000000000000000 0x10 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .data.s_new_mode + 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .bss.s_is_switching + 0x0000000000000000 0x1 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .data.s_mode 0x0000000000000000 0x4 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .data.s_switch_lock + 0x0000000000000000 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .xt.prop 0x0000000000000000 0x48c esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + COMMON 0x0000000000000000 0x40 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .text.esp_pm_lock_create + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .text.esp_pm_lock_delete + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .iram1.21 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .iram1.22 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .text.esp_pm_dump_locks + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_frame 0x0000000000000000 0x88 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_info 0x0000000000000000 0x4374 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_abbrev 0x0000000000000000 0x2d3 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_loc 0x0000000000000000 0xb9 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_ranges 0x0000000000000000 0x30 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_line 0x0000000000000000 0x5fb esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .debug_str 0x0000000000000000 0x2c2c esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .xt.prop 0x0000000000000000 0xb4 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .rodata.GPIO_HOLD_MASK + 0x0000000000000000 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .rodata.rtc_io_desc + 0x0000000000000000 0x3f0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .rodata.rtc_io_num_map + 0x0000000000000000 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_info 0x0000000000000000 0x367a esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x228 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_line 0x0000000000000000 0x32a esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .debug_str 0x0000000000000000 0x1dc4 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .xt.prop 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .rodata.spi_periph_signal + 0x0000000000000000 0x6c esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_info 0x0000000000000000 0x30c0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x255 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_line 0x0000000000000000 0x31d esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .debug_str 0x0000000000000000 0x1f3f esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .rodata.uart_periph_signal + 0x0000000000000000 0x24 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_info 0x0000000000000000 0x1e00 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_abbrev 0x0000000000000000 0x244 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_aranges + 0x0000000000000000 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_line 0x0000000000000000 0x320 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .debug_str 0x0000000000000000 0xf1a esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .xt.prop 0x0000000000000000 0xc esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .xt.lit 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .xt.prop 0x0000000000000000 0x1ec esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .literal.rtcio_hal_set_direction + 0x0000000000000000 0x44 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_isolate + 0x0000000000000000 0x38 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .literal.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x60 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.rtcio_hal_set_direction.str1.4 + 0x0000000000000000 0x1b4 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction + 0x0000000000000000 0x34f esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.rtcio_hal_set_direction + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .text.rtcio_hal_isolate + 0x0000000000000000 0x13a esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.rtcio_hal_set_direction_in_sleep.str1.4 + 0x0000000000000000 0x172 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .text.rtcio_hal_set_direction_in_sleep + 0x0000000000000000 0x385 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3544 + 0x0000000000000000 0x1f esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3516 + 0x0000000000000000 0x21 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3530 + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3537 + 0x0000000000000000 0x1e esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3509 + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3523 + 0x0000000000000000 0x1f esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3470 + 0x0000000000000000 0x1a esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3456 + 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3414 + 0x0000000000000000 0x16 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .rodata.__func__$3421 + 0x0000000000000000 0x17 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_info 0x0000000000000000 0x4ed1 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x344 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_loc 0x0000000000000000 0x60b esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_line 0x0000000000000000 0x128a esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .debug_str 0x0000000000000000 0x249e esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .xt.prop 0x0000000000000000 0x204 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .literal.gpio_hal_intr_enable_on_core + 0x0000000000000000 0xc esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .literal.gpio_hal_intr_disable + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .text.gpio_hal_intr_enable_on_core + 0x0000000000000000 0x84 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .text.gpio_hal_intr_disable + 0x0000000000000000 0x5b esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_info 0x0000000000000000 0x163d esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_abbrev 0x0000000000000000 0x2c9 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_loc 0x0000000000000000 0x28e esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_line 0x0000000000000000 0x59b esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .debug_str 0x0000000000000000 0xb23 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .xt.prop 0x0000000000000000 0xa8 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .literal.uart_hal_set_hw_flow_ctrl + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_sw_flow_ctrl + 0x0000000000000000 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_at_cmd_char + 0x0000000000000000 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_rx_timeout + 0x0000000000000000 0xc esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_tx_idle_num + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_txfifo_empty_thr + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_mode + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_inverse_signal + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_set_loop_back + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_init + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_hw_flow_ctrl + 0x0000000000000000 0x74 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_get_hw_flow_ctrl + 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_sw_flow_ctrl + 0x0000000000000000 0xb2 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_at_cmd_char + 0x0000000000000000 0x87 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_rx_timeout + 0x0000000000000000 0x56 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_tx_idle_num + 0x0000000000000000 0x22 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_dtr + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_rxfifo_full_thr + 0x0000000000000000 0x1d esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_txfifo_empty_thr + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_wakeup_thrd + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_get_wakeup_thrd + 0x0000000000000000 0x13 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_mode + 0x0000000000000000 0x1bd esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_is_hw_rts_en + 0x0000000000000000 0xf esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_inverse_signal + 0x0000000000000000 0xe3 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_set_loop_back + 0x0000000000000000 0x20 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .text.uart_hal_init + 0x0000000000000000 0x108 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .xt.prop 0x0000000000000000 0x588 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .literal.uart_hal_txfifo_rst + 0x0000000000000000 0x8 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .literal.uart_hal_tx_break + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .literal.uart_hal_write_txfifo + 0x0000000000000000 0x2c esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .literal.uart_hal_read_rxfifo + 0x0000000000000000 0x2c esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .text.uart_hal_txfifo_rst + 0x0000000000000000 0x27 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .text.uart_hal_tx_break + 0x0000000000000000 0x47 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .rodata.uart_hal_write_txfifo.str1.4 + 0x0000000000000000 0x90 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .text.uart_hal_write_txfifo + 0x0000000000000000 0x78 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .text.uart_hal_read_rxfifo + 0x0000000000000000 0x64 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .rodata.__func__$2737 + 0x0000000000000000 0x14 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .rodata.__func__$2749 + 0x0000000000000000 0x15 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .xt.prop 0x0000000000000000 0x234 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$5 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$4 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$3 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$2 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$1 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .data.__compound_literal$0 + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .xt.prop 0x0000000000000000 0x1d4 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .xt.lit 0x0000000000000000 0x48 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .xt.prop 0x0000000000000000 0x3c0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .xt.prop 0x0000000000000000 0x54 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .data 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .rodata.soc_memory_type_count + 0x0000000000000000 0x4 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .xt.prop 0x0000000000000000 0x84 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .literal.bootloader_common_ota_select_crc + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_ota_select_valid + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_label_search + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_erase_part_type_data + 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_active_otadata + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_partition_description + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_vddsdio_configure + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_check_chip_validity + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_common_get_reset_reason + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_ota_select_crc + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_ota_select_invalid + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_ota_select_valid + 0x0000000000000000 0x29 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_check_long_hold_gpio.str1.4 + 0x0000000000000000 0x107 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_long_hold_gpio + 0x0000000000000000 0xcd esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_label_search.str1.4 + 0x0000000000000000 0x3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_label_search + 0x0000000000000000 0xb4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_erase_part_type_data.str1.4 + 0x0000000000000000 0x10e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_erase_part_type_data + 0x0000000000000000 0x13e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_sha256_of_partition + 0x0000000000000000 0xd7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_select_otadata + 0x0000000000000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_active_otadata + 0x0000000000000000 0x31 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_partition_description + 0x0000000000000000 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_vddsdio_configure + 0x0000000000000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.bootloader_common_check_chip_validity.str1.4 + 0x0000000000000000 0x8f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_check_chip_validity + 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .text.bootloader_common_get_reset_reason + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .rodata.__func__$5324 + 0x0000000000000000 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_frame 0x0000000000000000 0x148 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_info 0x0000000000000000 0x5432 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_abbrev 0x0000000000000000 0x425 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_loc 0x0000000000000000 0x881 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_aranges + 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_ranges 0x0000000000000000 0xe8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_line 0x0000000000000000 0x150c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .debug_str 0x0000000000000000 0x2cb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.lit 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xt.prop 0x0000000000000000 0x624 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .literal.bootloader_mmap_get_free_pages + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_mmap + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_munmap + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_read + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_write + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_sector + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.bootloader_flash_erase_range + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap_get_free_pages + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .rodata.bootloader_mmap.str1.4 + 0x0000000000000000 0x7b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_mmap + 0x0000000000000000 0x6b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_munmap + 0x0000000000000000 0x1d esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_read + 0x0000000000000000 0x43 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_write + 0x0000000000000000 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_sector + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .text.bootloader_flash_erase_range + 0x0000000000000000 0x11 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .bss.map 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_frame 0x0000000000000000 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_info 0x0000000000000000 0xf05 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_abbrev 0x0000000000000000 0x335 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_loc 0x0000000000000000 0x203 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_aranges + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_ranges 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_line 0x0000000000000000 0x7a4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .debug_str 0x0000000000000000 0x9bf esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.lit 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xt.prop 0x0000000000000000 0x1ec esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .literal.should_map + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_segment_header + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_checksum + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment_data + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_image_header + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.should_load + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.process_segment + 0x0000000000000000 0x54 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.verify_simple_hash + 0x0000000000000000 0x38 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.image_load + 0x0000000000000000 0x80 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader_data + 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_image_verify_bootloader + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.should_map + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_segment_header.str1.4 + 0x0000000000000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_segment_header + 0x0000000000000000 0x78 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_checksum.str1.4 + 0x0000000000000000 0x42 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_checksum + 0x0000000000000000 0xa4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.process_segment_data.str1.4 + 0x0000000000000000 0x3a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment_data + 0x0000000000000000 0xc1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_image_header.str1.4 + 0x0000000000000000 0xb9 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_image_header + 0x0000000000000000 0xa3 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.str1.4 + 0x0000000000000000 0xda esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.process_segment + 0x0000000000000000 0x13c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.verify_simple_hash.str1.4 + 0x0000000000000000 0x5a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.verify_simple_hash + 0x0000000000000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata.image_load.str1.4 + 0x0000000000000000 0x10a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.image_load + 0x0000000000000000 0x26a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.bootloader_load_image_no_verify + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify + 0x0000000000000000 0x14 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .rodata 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader_data + 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .text.esp_image_verify_bootloader + 0x0000000000000000 0x1e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_frame 0x0000000000000000 0x160 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_info 0x0000000000000000 0x28dd esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_abbrev 0x0000000000000000 0x3af esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_loc 0x0000000000000000 0xdb7 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_aranges + 0x0000000000000000 0x88 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_ranges 0x0000000000000000 0xc0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_line 0x0000000000000000 0x1a9f esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .debug_str 0x0000000000000000 0x1c5c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xt.prop 0x0000000000000000 0x6e4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .literal.esp_partition_table_verify + 0x0000000000000000 0x5c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .rodata.esp_partition_table_verify.str1.4 + 0x0000000000000000 0x163 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .text.esp_partition_table_verify + 0x0000000000000000 0x175 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_frame 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_info 0x0000000000000000 0xe82 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_abbrev 0x0000000000000000 0x274 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_loc 0x0000000000000000 0x1ef esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_aranges + 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_ranges 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_line 0x0000000000000000 0x7bb esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .debug_str 0x0000000000000000 0x7de esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.lit 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xt.prop 0x0000000000000000 0x12c esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .literal.bootloader_common_get_chip_revision + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .literal.bootloader_clock_get_rated_freq_mhz + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .text.bootloader_common_get_chip_revision + 0x0000000000000000 0x4d esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .text.bootloader_clock_get_rated_freq_mhz + 0x0000000000000000 0x2d esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_frame 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_info 0x0000000000000000 0xa2b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_abbrev 0x0000000000000000 0x1d0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_loc 0x0000000000000000 0x77 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_aranges + 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_line 0x0000000000000000 0x48a esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .debug_str 0x0000000000000000 0x65b esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .xt.lit 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .xt.prop 0x0000000000000000 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .literal.bootloader_sha256_start + 0x0000000000000000 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_data + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.bootloader_sha256_finish + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_start + 0x0000000000000000 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.bootloader_sha256_data.str1.4 + 0x0000000000000000 0x69 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_data + 0x0000000000000000 0x37 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .text.bootloader_sha256_finish + 0x0000000000000000 0x47 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$3495 + 0x0000000000000000 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .rodata.__func__$3488 + 0x0000000000000000 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_frame 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_info 0x0000000000000000 0xe12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_abbrev 0x0000000000000000 0x255 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_loc 0x0000000000000000 0xb2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_aranges + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_ranges 0x0000000000000000 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_line 0x0000000000000000 0x529 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .debug_str 0x0000000000000000 0x88e esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.lit 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xt.prop 0x0000000000000000 0x108 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .literal.log_invalid_app_partition + 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.read_otadata + 0x0000000000000000 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.write_otadata + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_actual_ota_seq + 0x0000000000000000 0x24 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.set_cache_and_start_app + 0x0000000000000000 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.unpack_load_app + 0x0000000000000000 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.load_image + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_partition_table + 0x0000000000000000 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_get_selected_boot_partition + 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_reset + 0x0000000000000000 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_utility_load_boot_image + 0x0000000000000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_debug_buffer + 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.bootloader_sha256_flash_contents + 0x0000000000000000 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.index_to_partition + 0x0000000000000000 0x4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.check_anti_rollback + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.try_load_partition + 0x0000000000000000 0x7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.log_invalid_app_partition.str1.4 + 0x0000000000000000 0xb3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.log_invalid_app_partition + 0x0000000000000000 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x8e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.read_otadata + 0x0000000000000000 0x91 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.write_otadata.str1.4 + 0x0000000000000000 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.write_otadata + 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.set_actual_ota_seq.str1.4 + 0x0000000000000000 0x3b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_actual_ota_seq + 0x0000000000000000 0x74 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.set_cache_and_start_app + 0x0000000000000000 0x13d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.unpack_load_app.str1.4 + 0x0000000000000000 0x6d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.unpack_load_app + 0x0000000000000000 0xc8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.load_image.str1.4 + 0x0000000000000000 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.load_image + 0x0000000000000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table.str1.4 + 0x0000000000000000 0x196 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_partition_table + 0x0000000000000000 0x1a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_partition_table + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_get_selected_boot_partition.str1.4 + 0x0000000000000000 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_get_selected_boot_partition + 0x0000000000000000 0x121 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_reset + 0x0000000000000000 0x9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_utility_load_boot_image.str1.4 + 0x0000000000000000 0xe1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_utility_load_boot_image + 0x0000000000000000 0x133 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_hex_to_str + 0x0000000000000000 0x7d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.bootloader_debug_buffer.str1.4 + 0x0000000000000000 0x60 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_debug_buffer + 0x0000000000000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .text.bootloader_sha256_flash_contents + 0x0000000000000000 0x8b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .rodata.__func__$7229 + 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .bss.ota_has_initial_contents + 0x0000000000000000 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_frame 0x0000000000000000 0x1a8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_info 0x0000000000000000 0x894d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_abbrev 0x0000000000000000 0x5c2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_loc 0x0000000000000000 0x108b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_aranges + 0x0000000000000000 0xa0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_ranges 0x0000000000000000 0xc0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_line 0x0000000000000000 0x2333 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .debug_str 0x0000000000000000 0x45e0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.lit 0x0000000000000000 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xt.prop 0x0000000000000000 0x864 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .literal.image_validate + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_ota_partition_count + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.find_default_boot_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.read_otadata + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.rewrite_ota_seq + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_rewrite_ota_data + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.check_invalid_otadata + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.get_last_invalid_otadata + 0x0000000000000000 0xc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_begin + 0x0000000000000000 0x28 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_write + 0x0000000000000000 0x58 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_end + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_set_boot_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_boot_partition + 0x0000000000000000 0x30 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_next_update_partition + 0x0000000000000000 0x1c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_partition_description + 0x0000000000000000 0x8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_check_rollback_is_possible + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_current_ota_is_workable + 0x0000000000000000 0x48 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x14 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_get_state_partition + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0x24 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .data 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.is_ota_partition + 0x0000000000000000 0x2e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.set_new_state_otadata + 0x0000000000000000 0x7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.image_validate + 0x0000000000000000 0x25 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_ota_partition_count + 0x0000000000000000 0x3c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.find_default_boot_partition.str1.4 + 0x0000000000000000 0x4e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.find_default_boot_partition + 0x0000000000000000 0x5c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.read_otadata.str1.4 + 0x0000000000000000 0x61 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.read_otadata + 0x0000000000000000 0x92 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.rewrite_ota_seq + 0x0000000000000000 0x5a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_rewrite_ota_data + 0x0000000000000000 0x99 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.check_invalid_otadata + 0x0000000000000000 0x32 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.get_last_invalid_otadata + 0x0000000000000000 0x2c esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_begin + 0x0000000000000000 0xda esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_write.str1.4 + 0x0000000000000000 0xf8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_write + 0x0000000000000000 0x15e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_end + 0x0000000000000000 0xa1 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_set_boot_partition + 0x0000000000000000 0x5d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_boot_partition.str1.4 + 0x0000000000000000 0x4a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_boot_partition + 0x0000000000000000 0x82 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_get_next_update_partition.str1.4 + 0x0000000000000000 0x13 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_next_update_partition + 0x0000000000000000 0x64 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_partition_description + 0x0000000000000000 0x50 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_check_rollback_is_possible + 0x0000000000000000 0xbe esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.esp_ota_current_ota_is_workable.str1.4 + 0x0000000000000000 0xd7 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_current_ota_is_workable + 0x0000000000000000 0xe2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_valid_cancel_rollback + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_mark_app_invalid_rollback_and_reboot + 0x0000000000000000 0x10 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_last_invalid_partition + 0x0000000000000000 0x6a esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_get_state_partition + 0x0000000000000000 0x9d esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .text.esp_ota_erase_last_boot_app_partition + 0x0000000000000000 0xe2 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$5958 + 0x0000000000000000 0x22 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$5904 + 0x0000000000000000 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .rodata.__func__$5877 + 0x0000000000000000 0xe esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_last_handle + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .bss.s_ota_ops_entries_head + 0x0000000000000000 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.lit 0x0000000000000000 0xb8 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xt.prop 0x0000000000000000 0xcfc esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .literal.prvReturnItemByteBuf + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemByteBuf + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsByteBuffer + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReturnItemDefault + 0x0000000000000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvGetItemDefault + 0x0000000000000000 0x4c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvAcquireItemNoSplit + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvSendItemDoneNoSplit + 0x0000000000000000 0x44 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCheckItemFitsDefault + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemByteBuf + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemAllowSplit + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvCopyItemNoSplit + 0x0000000000000000 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvInitializeNewRingbuffer + 0x0000000000000000 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.prvReceiveGenericFromISR + 0x0000000000000000 0x2c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreate + 0x0000000000000000 0x40 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCreateNoSplit + 0x0000000000000000 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendAcquire + 0x0000000000000000 0x48 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendComplete + 0x0000000000000000 0x34 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferSendFromISR + 0x0000000000000000 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveFromISR + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplit + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpTo + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferReturnItemFromISR + 0x0000000000000000 0x28 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferDelete + 0x0000000000000000 0x24 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetMaxItemSize + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferGetCurFreeSize + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferCanRead + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x30 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.vRingbufferGetInfo + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.xRingbufferPrintInfo + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeNoSplit + 0x0000000000000000 0x3e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeAllowSplit + 0x0000000000000000 0x50 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetCurMaxSizeByteBuf + 0x0000000000000000 0x20 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemByteBuf + 0x0000000000000000 0x4f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemByteBuf + 0x0000000000000000 0xdb esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsByteBuffer + 0x0000000000000000 0x62 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReturnItemDefault + 0x0000000000000000 0x154 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvGetItemDefault + 0x0000000000000000 0x148 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvAcquireItemNoSplit + 0x0000000000000000 0xaa esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvSendItemDoneNoSplit + 0x0000000000000000 0x136 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCheckItemFitsDefault + 0x0000000000000000 0xa6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemByteBuf + 0x0000000000000000 0x7d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemAllowSplit + 0x0000000000000000 0xf5 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvCopyItemNoSplit + 0x0000000000000000 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.prvInitializeNewRingbuffer.str1.4 + 0x0000000000000000 0x3a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvInitializeNewRingbuffer + 0x0000000000000000 0xc1 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.prvReceiveGenericFromISR + 0x0000000000000000 0xe6 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreate + 0x0000000000000000 0xda esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCreateNoSplit + 0x0000000000000000 0x1c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendAcquire + 0x0000000000000000 0x12a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendComplete + 0x0000000000000000 0x88 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferSendFromISR + 0x0000000000000000 0xcc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveFromISR + 0x0000000000000000 0x42 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplit + 0x0000000000000000 0xb4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveSplitFromISR + 0x0000000000000000 0xb0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpTo + 0x0000000000000000 0x6c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferReceiveUpToFromISR + 0x0000000000000000 0x68 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferReturnItemFromISR + 0x0000000000000000 0x62 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferDelete + 0x0000000000000000 0x42 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetMaxItemSize + 0x0000000000000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferGetCurFreeSize + 0x0000000000000000 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferAddToQueueSetRead + 0x0000000000000000 0x80 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferCanRead + 0x0000000000000000 0x2f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferRemoveFromQueueSetRead + 0x0000000000000000 0x80 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.vRingbufferGetInfo + 0x0000000000000000 0x6e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.xRingbufferPrintInfo.str1.4 + 0x0000000000000000 0x3d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .text.xRingbufferPrintInfo + 0x0000000000000000 0x4f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5575 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5570 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5558 + 0x0000000000000000 0x22 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5552 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5544 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5537 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5532 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5527 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5522 + 0x0000000000000000 0x1d esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5507 + 0x0000000000000000 0x1e esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5498 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5486 + 0x0000000000000000 0x1f esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5473 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5388 + 0x0000000000000000 0x19 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5461 + 0x0000000000000000 0x1a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5444 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5421 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5408 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__func__$4306 + 0x0000000000000000 0x14 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5260 + 0x0000000000000000 0x18 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5281 + 0x0000000000000000 0x17 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5273 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5320 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5334 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5300 + 0x0000000000000000 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5266 + 0x0000000000000000 0x1b esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5308 + 0x0000000000000000 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5328 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5344 + 0x0000000000000000 0x15 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5393 + 0x0000000000000000 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.lit 0x0000000000000000 0x128 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xt.prop 0x0000000000000000 0x15d8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .literal.esp_register_shutdown_handler + 0x0000000000000000 0x4 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .literal.esp_unregister_shutdown_handler + 0x0000000000000000 0x4 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .iram1.22.literal + 0x0000000000000000 0xc esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .literal.esp_get_free_heap_size + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .literal.esp_get_minimum_free_heap_size + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .literal.esp_get_idf_version + 0x0000000000000000 0x4 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .text 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .data 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .text.esp_register_shutdown_handler + 0x0000000000000000 0x35 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .text.esp_unregister_shutdown_handler + 0x0000000000000000 0x2b esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .iram1.22 0x0000000000000000 0x2a esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .text.esp_get_free_heap_size + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .text.esp_get_minimum_free_heap_size + 0x0000000000000000 0x10 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .rodata.esp_get_idf_version.str1.4 + 0x0000000000000000 0x19 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .text.esp_get_idf_version + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .bss.shutdown_handlers + 0x0000000000000000 0x8 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_frame 0x0000000000000000 0xa0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_info 0x0000000000000000 0x1438 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_abbrev 0x0000000000000000 0x271 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_loc 0x0000000000000000 0x122 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_aranges + 0x0000000000000000 0x48 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_ranges 0x0000000000000000 0x50 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_line 0x0000000000000000 0x6f7 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .debug_str 0x0000000000000000 0x1302 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .xt.lit 0x0000000000000000 0x30 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .xt.prop 0x0000000000000000 0x1bc esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .literal.mbedtls_sha256_software_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_init + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_free + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_clone + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_starts_ret + 0x0000000000000000 0x44 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_starts + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_internal_sha256_process + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_process + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_update_ret + 0x0000000000000000 0x10 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_update + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_finish_ret + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.mbedtls_sha256_finish + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_zeroize + 0x0000000000000000 0x19 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_software_process + 0x0000000000000000 0x9ad esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_init + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_free + 0x0000000000000000 0x22 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_clone + 0x0000000000000000 0x27 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_starts_ret + 0x0000000000000000 0x7a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_starts + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_internal_sha256_process + 0x0000000000000000 0x52 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_process + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_update_ret + 0x0000000000000000 0x93 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_update + 0x0000000000000000 0x12 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_finish_ret + 0x0000000000000000 0x165 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .text.mbedtls_sha256_finish + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.sha256_padding + 0x0000000000000000 0x40 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .rodata.K 0x0000000000000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_frame 0x0000000000000000 0x148 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_info 0x0000000000000000 0x117d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_abbrev 0x0000000000000000 0x3a3 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_loc 0x0000000000000000 0x1639 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_aranges + 0x0000000000000000 0x80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_ranges 0x0000000000000000 0x70 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_line 0x0000000000000000 0x1484 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .debug_str 0x0000000000000000 0x8bb esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.lit 0x0000000000000000 0x60 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xt.prop 0x0000000000000000 0x450 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .literal.sha_get_engine_state + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_lock_engine_common + 0x0000000000000000 0x2c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_lock_memory_block + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_unlock_memory_block + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_try_lock_engine + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_lock_engine + 0x0000000000000000 0x4 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_unlock_engine + 0x0000000000000000 0x1c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_wait_idle + 0x0000000000000000 0x20 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_read_digest_state + 0x0000000000000000 0x4c esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.esp_sha_block + 0x0000000000000000 0x38 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.sha_get_engine_state.str1.4 + 0x0000000000000000 0x51 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.sha_get_engine_state + 0x0000000000000000 0x77 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_lock_engine_common.str1.4 + 0x0000000000000000 0x14 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_lock_engine_common + 0x0000000000000000 0x6e esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_lock_memory_block + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_unlock_memory_block + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_try_lock_engine + 0x0000000000000000 0x11 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_lock_engine + 0x0000000000000000 0xf esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_unlock_engine + 0x0000000000000000 0x4a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_wait_idle + 0x0000000000000000 0x35 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.esp_sha_read_digest_state.str1.4 + 0x0000000000000000 0x48 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_read_digest_state + 0x0000000000000000 0xfa esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .text.esp_sha_block + 0x0000000000000000 0xa7 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$5023 + 0x0000000000000000 0xe esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$5000 + 0x0000000000000000 0x1a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$4966 + 0x0000000000000000 0x15 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .rodata.__func__$4982 + 0x0000000000000000 0x1b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.engines_in_use_lock + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss.engines_in_use + 0x0000000000000000 0x1 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .bss.engine_states + 0x0000000000000000 0xc esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .data.memory_block_lock + 0x0000000000000000 0x8 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_frame 0x0000000000000000 0x100 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_info 0x0000000000000000 0x212d esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_abbrev 0x0000000000000000 0x44a esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_loc 0x0000000000000000 0x661 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_aranges + 0x0000000000000000 0x68 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_ranges 0x0000000000000000 0x88 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_line 0x0000000000000000 0xe80 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .debug_str 0x0000000000000000 0x190b esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.lit 0x0000000000000000 0x50 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xt.prop 0x0000000000000000 0x420 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .literal.MD5Transform + 0x0000000000000000 0x100 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .literal.MD5Init + 0x0000000000000000 0x10 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .literal.MD5Update + 0x0000000000000000 0x18 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .literal.MD5Final + 0x0000000000000000 0x1c esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .literal.md5_vector + 0x0000000000000000 0xc esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .text 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .data 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .bss 0x0000000000000000 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .text.MD5Transform + 0x0000000000000000 0x6e3 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .text.MD5Init 0x0000000000000000 0x1f esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .text.MD5Update + 0x0000000000000000 0x96 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .text.MD5Final + 0x0000000000000000 0x7b esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .text.md5_vector + 0x0000000000000000 0x38 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_frame 0x0000000000000000 0x88 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_info 0x0000000000000000 0xdf0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_abbrev 0x0000000000000000 0x29d esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_loc 0x0000000000000000 0x565 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_aranges + 0x0000000000000000 0x40 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_ranges 0x0000000000000000 0x30 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_line 0x0000000000000000 0xe31 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .debug_str 0x0000000000000000 0x66e esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .comment 0x0000000000000000 0x26 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .xt.lit 0x0000000000000000 0x28 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .xt.prop 0x0000000000000000 0x168 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .xt.prop 0x0000000000000000 0xf0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .xt.prop 0x0000000000000000 0x24 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .text 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .xt.prop 0x0000000000000000 0xc /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .xt.prop 0x0000000000000000 0x24 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .data 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .bss 0x0000000000000000 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .xt.prop 0x0000000000000000 0x24 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .text 0x0000000000000000 0x37 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_info 0x0000000000000000 0xb02 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_abbrev 0x0000000000000000 0x1b1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_loc 0x0000000000000000 0xd1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_line 0x0000000000000000 0x330 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .debug_str 0x0000000000000000 0x6e3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .literal 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .text 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_info 0x0000000000000000 0xb02 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_abbrev 0x0000000000000000 0x1b1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_loc 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_line 0x0000000000000000 0x2e2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .debug_str 0x0000000000000000 0x6df /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .text 0x0000000000000000 0x2aa /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .xt.prop 0x0000000000000000 0x234 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .text 0x0000000000000000 0x2ae /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .xt.prop 0x0000000000000000 0x168 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .text 0x0000000000000000 0x26a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .xt.prop 0x0000000000000000 0x21c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .text 0x0000000000000000 0x272 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .xt.prop 0x0000000000000000 0x168 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x12 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_info 0x0000000000000000 0x977 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_abbrev 0x0000000000000000 0x1cc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_line 0x0000000000000000 0x262 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .debug_str 0x0000000000000000 0x5c3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .bss 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_info 0x0000000000000000 0x43 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_abbrev 0x0000000000000000 0x37 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_line 0x0000000000000000 0x79 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .debug_str 0x0000000000000000 0x110 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .literal 0x0000000000000000 0x94 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .text 0x0000000000000000 0x25b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .bss 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .rodata 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_frame 0x0000000000000000 0x160 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_info 0x0000000000000000 0x1292 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_abbrev 0x0000000000000000 0x3b4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_loc 0x0000000000000000 0x18d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_ranges 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_line 0x0000000000000000 0x9fd /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .debug_str 0x0000000000000000 0x8eb /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .xt.prop 0x0000000000000000 0x228 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .xt.prop 0x0000000000000000 0x9c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .literal 0x0000000000000000 0x34 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .text 0x0000000000000000 0xd0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_info 0x0000000000000000 0xdcd /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_abbrev 0x0000000000000000 0x29f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_loc 0x0000000000000000 0xa6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_line 0x0000000000000000 0x483 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .debug_str 0x0000000000000000 0x7e7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .xt.prop 0x0000000000000000 0xa8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .xt.prop 0x0000000000000000 0x2dc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .literal 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .text 0x0000000000000000 0x2c1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_info 0x0000000000000000 0xf31 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_abbrev 0x0000000000000000 0x26f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_loc 0x0000000000000000 0x5bc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_line 0x0000000000000000 0xb20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .debug_str 0x0000000000000000 0x7d2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .xt.prop 0x0000000000000000 0x204 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .text 0x0000000000000000 0x77 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_info 0x0000000000000000 0xcd5 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_abbrev 0x0000000000000000 0x20d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_loc 0x0000000000000000 0x11b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_line 0x0000000000000000 0x437 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .debug_str 0x0000000000000000 0x745 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .xt.prop 0x0000000000000000 0xb4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .bss 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_info 0x0000000000000000 0x916 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_abbrev 0x0000000000000000 0x169 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_line 0x0000000000000000 0x174 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .debug_str 0x0000000000000000 0x5a7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .literal 0x0000000000000000 0x2c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .text 0x0000000000000000 0x27d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_info 0x0000000000000000 0xc51 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_abbrev 0x0000000000000000 0x234 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_loc 0x0000000000000000 0x1ba /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_line 0x0000000000000000 0x885 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .debug_str 0x0000000000000000 0x6f9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .xt.prop 0x0000000000000000 0x234 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .literal 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .text 0x0000000000000000 0xeb /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_info 0x0000000000000000 0xf4b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_abbrev 0x0000000000000000 0x305 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_loc 0x0000000000000000 0x1e0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_ranges 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_line 0x0000000000000000 0x5c6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .debug_str 0x0000000000000000 0x8a3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .xt.prop 0x0000000000000000 0xf0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .text 0x0000000000000000 0x1b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_info 0x0000000000000000 0x9ac /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_abbrev 0x0000000000000000 0x1c3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_loc 0x0000000000000000 0xab /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_line 0x0000000000000000 0x2ab /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .debug_str 0x0000000000000000 0x5c7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .text 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_info 0x0000000000000000 0x999 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_abbrev 0x0000000000000000 0x1c0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_loc 0x0000000000000000 0xb9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_line 0x0000000000000000 0x2ca /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .debug_str 0x0000000000000000 0x5b7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .xt.prop 0x0000000000000000 0x54 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .text 0x0000000000000000 0x135 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_line 0x0000000000000000 0x355 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .debug_str 0x0000000000000000 0xe4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .xt.prop 0x0000000000000000 0x150 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .text 0x0000000000000000 0x3f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_info 0x0000000000000000 0xef7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_abbrev 0x0000000000000000 0x1c8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_loc 0x0000000000000000 0x1bf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_line 0x0000000000000000 0x39d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .debug_str 0x0000000000000000 0x8e7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .xt.prop 0x0000000000000000 0x6c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .text 0x0000000000000000 0x74 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_line 0x0000000000000000 0x18c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .debug_str 0x0000000000000000 0xe4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .xt.prop 0x0000000000000000 0xcc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .rodata 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_info 0x0000000000000000 0x979 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_abbrev 0x0000000000000000 0x182 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_line 0x0000000000000000 0x239 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .debug_str 0x0000000000000000 0x5d8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .xt.prop 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .literal 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .text 0x0000000000000000 0x78 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_info 0x0000000000000000 0xcd3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_abbrev 0x0000000000000000 0x2a1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_loc 0x0000000000000000 0x89 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_line 0x0000000000000000 0x3d7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .debug_str 0x0000000000000000 0x76e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .xt.prop 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .literal 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .text 0x0000000000000000 0x4c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_info 0x0000000000000000 0xc39 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_abbrev 0x0000000000000000 0x266 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_loc 0x0000000000000000 0x5f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_line 0x0000000000000000 0x315 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .debug_str 0x0000000000000000 0x733 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .xt.prop 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .xt.prop 0x0000000000000000 0xa8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .literal 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .text 0x0000000000000000 0x2de /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_frame 0x0000000000000000 0x58 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_info 0x0000000000000000 0x113a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_abbrev 0x0000000000000000 0x330 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_loc 0x0000000000000000 0x7e8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_line 0x0000000000000000 0x956 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .debug_str 0x0000000000000000 0x5fb /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .xt.prop 0x0000000000000000 0x348 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .xt.prop 0x0000000000000000 0x114 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .literal 0x0000000000000000 0x38 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .text 0x0000000000000000 0x164 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_info 0x0000000000000000 0xd27 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_abbrev 0x0000000000000000 0x264 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_loc 0x0000000000000000 0x135 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_line 0x0000000000000000 0x68a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .debug_str 0x0000000000000000 0x788 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .xt.prop 0x0000000000000000 0x150 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .xt.prop 0x0000000000000000 0xc0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .literal 0x0000000000000000 0x24 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .text 0x0000000000000000 0xbe /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_frame 0x0000000000000000 0x88 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_info 0x0000000000000000 0xe38 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_abbrev 0x0000000000000000 0x24f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_loc 0x0000000000000000 0x14c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_line 0x0000000000000000 0x45c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .debug_str 0x0000000000000000 0x77d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .xt.prop 0x0000000000000000 0xcc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .literal 0x0000000000000000 0x1c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .text 0x0000000000000000 0x123 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_line 0x0000000000000000 0x2fb /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .debug_str 0x0000000000000000 0xe4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .xt.prop 0x0000000000000000 0x120 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x90 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_line 0x0000000000000000 0x1c8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .debug_str 0x0000000000000000 0xe4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .xt.prop 0x0000000000000000 0x114 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .text 0x0000000000000000 0x2b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_info 0x0000000000000000 0x97a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_abbrev 0x0000000000000000 0x1b9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_loc 0x0000000000000000 0x83 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_line 0x0000000000000000 0x2f3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .debug_str 0x0000000000000000 0x5b9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .xt.prop 0x0000000000000000 0x90 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .text 0x0000000000000000 0x2e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_info 0x0000000000000000 0xa2b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_abbrev 0x0000000000000000 0x239 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_loc 0x0000000000000000 0x3a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_line 0x0000000000000000 0x29a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .debug_str 0x0000000000000000 0x60f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .text 0x0000000000000000 0x46 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_info 0x0000000000000000 0x9a2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_abbrev 0x0000000000000000 0x1b9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_loc 0x0000000000000000 0x1b3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_line 0x0000000000000000 0x32b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .debug_str 0x0000000000000000 0x5b9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .xt.prop 0x0000000000000000 0x78 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x63 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_line 0x0000000000000000 0x168 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .debug_str 0x0000000000000000 0xe4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xt.prop 0x0000000000000000 0xc0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .text 0x0000000000000000 0x3e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_info 0x0000000000000000 0x96e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_abbrev 0x0000000000000000 0x194 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_loc 0x0000000000000000 0xd6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_line 0x0000000000000000 0x2e7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .debug_str 0x0000000000000000 0x5b9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x113 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_line 0x0000000000000000 0x2ef /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .debug_str 0x0000000000000000 0xe5 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xt.prop 0x0000000000000000 0x1a4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .text 0x0000000000000000 0x3a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_info 0x0000000000000000 0x974 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_abbrev 0x0000000000000000 0x1c2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_loc 0x0000000000000000 0x6e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_line 0x0000000000000000 0x2fc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .debug_str 0x0000000000000000 0x5c8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .xt.prop 0x0000000000000000 0x78 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .xt.prop 0x0000000000000000 0x27fc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .literal 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .text 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_info 0x0000000000000000 0xa0f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_abbrev 0x0000000000000000 0x202 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_loc 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_line 0x0000000000000000 0x28a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .debug_str 0x0000000000000000 0x63f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .literal 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .text 0x0000000000000000 0x16a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_info 0x0000000000000000 0xb6e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_abbrev 0x0000000000000000 0x207 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_loc 0x0000000000000000 0x1ac /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_ranges 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_line 0x0000000000000000 0x606 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .debug_str 0x0000000000000000 0x698 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .xt.prop 0x0000000000000000 0xe4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .text 0x0000000000000000 0x1e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .bss 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_info 0x0000000000000000 0x9f1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_abbrev 0x0000000000000000 0x1ce /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_line 0x0000000000000000 0x26d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .debug_str 0x0000000000000000 0x60e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .xt.prop 0x0000000000000000 0x54 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .literal 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .text 0x0000000000000000 0x31 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_info 0x0000000000000000 0xa08 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_abbrev 0x0000000000000000 0x1c4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_line 0x0000000000000000 0x279 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .debug_str 0x0000000000000000 0x619 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .literal 0x0000000000000000 0x7c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x33e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .bss 0x0000000000000000 0x1a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .rodata.str1.1 + 0x0000000000000000 0x4e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_info 0x0000000000000000 0xe78 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_abbrev 0x0000000000000000 0x262 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_loc 0x0000000000000000 0x1be /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_line 0x0000000000000000 0xb3b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .debug_str 0x0000000000000000 0x70e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .xt.prop 0x0000000000000000 0x1d4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .data 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .bss 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .rodata.str1.1 + 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_info 0x0000000000000000 0x960 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_abbrev 0x0000000000000000 0x17c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_line 0x0000000000000000 0x1ce /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .debug_str 0x0000000000000000 0x5c1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .xt.prop 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .xt.prop 0x0000000000000000 0x2208 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .xt.prop 0x0000000000000000 0x2904 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .xt.prop 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .literal 0x0000000000000000 0x1c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .text 0x0000000000000000 0xdf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_info 0x0000000000000000 0xc51 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_abbrev 0x0000000000000000 0x247 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_loc 0x0000000000000000 0x5c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_line 0x0000000000000000 0x4fa /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .debug_str 0x0000000000000000 0x75e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .xt.prop 0x0000000000000000 0xf0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .literal 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .text 0x0000000000000000 0x27 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_info 0x0000000000000000 0xba7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_abbrev 0x0000000000000000 0x1f5 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_loc 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_line 0x0000000000000000 0x30e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .debug_str 0x0000000000000000 0x71e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .xt.prop 0x0000000000000000 0x81c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .literal 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .text 0x0000000000000000 0x11e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_info 0x0000000000000000 0xdad /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_abbrev 0x0000000000000000 0x2a4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_loc 0x0000000000000000 0x10a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_line 0x0000000000000000 0x560 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .debug_str 0x0000000000000000 0x7de /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .xt.prop 0x0000000000000000 0x108 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .literal 0x0000000000000000 0x44 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .text 0x0000000000000000 0x1fc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_frame 0x0000000000000000 0x58 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_info 0x0000000000000000 0xe7b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_abbrev 0x0000000000000000 0x2f1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_loc 0x0000000000000000 0x28d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_line 0x0000000000000000 0x880 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .debug_str 0x0000000000000000 0x7e1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .xt.prop 0x0000000000000000 0x210 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .xt.prop 0x0000000000000000 0xc0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .literal 0x0000000000000000 0x34 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .text 0x0000000000000000 0x145 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_frame 0x0000000000000000 0x58 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_info 0x0000000000000000 0xed0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_abbrev 0x0000000000000000 0x2f3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_loc 0x0000000000000000 0x1e8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_ranges 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_line 0x0000000000000000 0x5e5 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .debug_str 0x0000000000000000 0x7f9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .xt.prop 0x0000000000000000 0x144 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .literal 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .text 0x0000000000000000 0x94 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_info 0x0000000000000000 0xaab /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_abbrev 0x0000000000000000 0x236 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_loc 0x0000000000000000 0x124 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_line 0x0000000000000000 0x422 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .debug_str 0x0000000000000000 0x612 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .xt.prop 0x0000000000000000 0xcc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .text 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .data 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_info 0x0000000000000000 0xa6a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_abbrev 0x0000000000000000 0x1a4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_line 0x0000000000000000 0x266 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .debug_str 0x0000000000000000 0x654 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .literal 0x0000000000000000 0x44 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .text 0x0000000000000000 0x1ae /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_info 0x0000000000000000 0xb35 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_abbrev 0x0000000000000000 0x1fa /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_loc 0x0000000000000000 0x198 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_line 0x0000000000000000 0x671 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .debug_str 0x0000000000000000 0x666 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .xt.prop 0x0000000000000000 0x90 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .literal 0x0000000000000000 0x2c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .text 0x0000000000000000 0x80 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .bss 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .xt.prop 0x0000000000000000 0x9c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .xt.prop 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .xt.prop 0x0000000000000000 0x60 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .xt.prop 0x0000000000000000 0x738 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .literal 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .text 0x0000000000000000 0xb8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_info 0x0000000000000000 0xd8b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_abbrev 0x0000000000000000 0x2e2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_loc 0x0000000000000000 0x161 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_line 0x0000000000000000 0x42f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .debug_str 0x0000000000000000 0x7a6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .xt.prop 0x0000000000000000 0xb4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .literal 0x0000000000000000 0x1c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .text 0x0000000000000000 0xc2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_info 0x0000000000000000 0xd0c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_abbrev 0x0000000000000000 0x27c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_loc 0x0000000000000000 0x99 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_line 0x0000000000000000 0x4e1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .debug_str 0x0000000000000000 0x778 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .xt.prop 0x0000000000000000 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .literal 0x0000000000000000 0x154 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .text 0x0000000000000000 0x242 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .rodata.str1.1 + 0x0000000000000000 0x697 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .rodata 0x0000000000000000 0x23c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_frame 0x0000000000000000 0x58 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_info 0x0000000000000000 0xac3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_abbrev 0x0000000000000000 0x233 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_loc 0x0000000000000000 0x63c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_line 0x0000000000000000 0xc83 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .debug_str 0x0000000000000000 0x629 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .xt.prop 0x0000000000000000 0x81c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .literal 0x0000000000000000 0x1c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .text 0x0000000000000000 0x170 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_frame 0x0000000000000000 0x70 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_info 0x0000000000000000 0x123f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_abbrev 0x0000000000000000 0x2ff /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_loc 0x0000000000000000 0x38d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_line 0x0000000000000000 0x76e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .debug_str 0x0000000000000000 0x993 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .xt.prop 0x0000000000000000 0x1c8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .xt.prop 0x0000000000000000 0x2148 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .literal 0x0000000000000000 0xe4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .text 0x0000000000000000 0x2169 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .rodata 0x0000000000000000 0x22 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_frame 0x0000000000000000 0x8c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_info 0x0000000000000000 0x27f1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_abbrev 0x0000000000000000 0x438 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_loc 0x0000000000000000 0x2068 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_ranges 0x0000000000000000 0xb8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_line 0x0000000000000000 0x4006 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .debug_str 0x0000000000000000 0xd13 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .xt.prop 0x0000000000000000 0x1d64 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .text 0x0000000000000000 0x7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_info 0x0000000000000000 0x8b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_abbrev 0x0000000000000000 0x76 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_loc 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_line 0x0000000000000000 0xbb /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .debug_str 0x0000000000000000 0x12f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .xt.prop 0x0000000000000000 0x24 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .literal 0x0000000000000000 0x44 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .text 0x0000000000000000 0x200 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_frame 0x0000000000000000 0x58 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_info 0x0000000000000000 0xe87 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_abbrev 0x0000000000000000 0x323 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_loc 0x0000000000000000 0x2d0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_line 0x0000000000000000 0x877 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .debug_str 0x0000000000000000 0x7c8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .xt.prop 0x0000000000000000 0x1a4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .literal 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .text 0x0000000000000000 0xdc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_info 0x0000000000000000 0xce2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_abbrev 0x0000000000000000 0x288 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_loc 0x0000000000000000 0x10c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_ranges 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_line 0x0000000000000000 0x4c9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .debug_str 0x0000000000000000 0x763 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .xt.prop 0x0000000000000000 0xe4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .text 0x0000000000000000 0x6d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_info 0x0000000000000000 0x10ab /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_abbrev 0x0000000000000000 0x26c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_loc 0x0000000000000000 0xca /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_line 0x0000000000000000 0x428 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .debug_str 0x0000000000000000 0x955 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .xt.prop 0x0000000000000000 0x6c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .literal 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .text 0x0000000000000000 0x4d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_info 0x0000000000000000 0x1020 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_abbrev 0x0000000000000000 0x24a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_loc 0x0000000000000000 0xa7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_ranges 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_line 0x0000000000000000 0x3e7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .debug_str 0x0000000000000000 0x968 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .xt.prop 0x0000000000000000 0x6c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .rodata 0x0000000000000000 0x101 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_info 0x0000000000000000 0xe9a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_abbrev 0x0000000000000000 0x178 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_aranges + 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_line 0x0000000000000000 0x259 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .debug_str 0x0000000000000000 0x8cb /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .text 0x0000000000000000 0x1e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .bss 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_info 0x0000000000000000 0x9ad /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_abbrev 0x0000000000000000 0x1cc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_line 0x0000000000000000 0x278 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .debug_str 0x0000000000000000 0x608 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .xt.prop 0x0000000000000000 0x54 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .text 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_info 0x0000000000000000 0xed9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_abbrev 0x0000000000000000 0x1c3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_loc 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_line 0x0000000000000000 0x30d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .debug_str 0x0000000000000000 0x8e9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .xt.prop 0x0000000000000000 0x3c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .literal 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .text 0x0000000000000000 0x70 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .rodata.str1.1 + 0x0000000000000000 0x1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_frame 0x0000000000000000 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_info 0x0000000000000000 0x10c5 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_abbrev 0x0000000000000000 0x25b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_loc 0x0000000000000000 0xef /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_line 0x0000000000000000 0x410 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .debug_str 0x0000000000000000 0x955 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .xt.prop 0x0000000000000000 0x6c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .text 0x0000000000000000 0x88 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_frame 0x0000000000000000 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_info 0x0000000000000000 0xbd0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_abbrev 0x0000000000000000 0x1f1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_loc 0x0000000000000000 0x178 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_line 0x0000000000000000 0x423 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .debug_str 0x0000000000000000 0x713 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .xt.prop 0x0000000000000000 0xc0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .literal 0x0000000000000000 0x24 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .text 0x0000000000000000 0x17c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_frame 0x0000000000000000 0x70 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_info 0x0000000000000000 0x123f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_abbrev 0x0000000000000000 0x2ff /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_loc 0x0000000000000000 0x39c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_line 0x0000000000000000 0x787 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .debug_str 0x0000000000000000 0x98e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .xt.prop 0x0000000000000000 0x1c8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .literal 0x0000000000000000 0x34 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .text 0x0000000000000000 0x202 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_frame 0x0000000000000000 0x70 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_info 0x0000000000000000 0x1259 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_abbrev 0x0000000000000000 0x314 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_loc 0x0000000000000000 0x49a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_line 0x0000000000000000 0x806 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .debug_str 0x0000000000000000 0x993 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .xt.prop 0x0000000000000000 0x1f8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .literal 0x0000000000000000 0x2c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .text 0x0000000000000000 0x1f6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_frame 0x0000000000000000 0x70 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_info 0x0000000000000000 0x1253 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_abbrev 0x0000000000000000 0x31d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_loc 0x0000000000000000 0x468 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_line 0x0000000000000000 0x7d3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .debug_str 0x0000000000000000 0x998 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .comment 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .xt.prop 0x0000000000000000 0x1ec /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .text 0x0000000000000000 0x312 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_line 0x0000000000000000 0x6f2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .debug_str 0x0000000000000000 0xd3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .xt.prop 0x0000000000000000 0x420 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .literal 0x0000000000000000 0xc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .text 0x0000000000000000 0x1ff /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_line 0x0000000000000000 0x4b9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .debug_str 0x0000000000000000 0xd3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .xt.prop 0x0000000000000000 0x228 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .literal 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .text 0x0000000000000000 0x213 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_line 0x0000000000000000 0x4e2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .debug_str 0x0000000000000000 0xd3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .xt.prop 0x0000000000000000 0x264 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .literal 0x0000000000000000 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .text 0x0000000000000000 0x176 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_line 0x0000000000000000 0x3b0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .debug_str 0x0000000000000000 0xd3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .xt.prop 0x0000000000000000 0x288 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .text 0x0000000000000000 0x4c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_line 0x0000000000000000 0x128 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .debug_str 0x0000000000000000 0xd3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .xt.lit 0x0000000000000000 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .xt.prop 0x0000000000000000 0x6c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .text 0x0000000000000000 0x3d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_line 0x0000000000000000 0x10a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_info 0x0000000000000000 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_abbrev 0x0000000000000000 0x14 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_aranges + 0x0000000000000000 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .debug_str 0x0000000000000000 0xd3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .xt.prop 0x0000000000000000 0x54 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .init.literal 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x16 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .ctors 0x0000000000000000 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .tm_clone_table + 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .init 0x0000000000000000 0x6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .xt.lit 0x0000000000000000 0x10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .xt.prop 0x0000000000000000 0x84 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .text 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .data 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .bss 0x0000000000000000 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .init 0x0000000000000000 0x2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .fini 0x0000000000000000 0x2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + .xt.prop 0x0000000000000000 0x30 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + +Memory Configuration + +Name Origin Length Attributes +iram0_0_seg 0x0000000040080000 0x0000000000020000 xr +iram0_2_seg 0x00000000400d0020 0x000000000032ffe0 xr +dram0_0_seg 0x000000003ffb0000 0x000000000002c200 rw +drom0_0_seg 0x000000003f400020 0x00000000003fffe0 r +rtc_iram_seg 0x00000000400c0000 0x0000000000002000 xrw +rtc_data_seg 0x000000003ff80000 0x0000000000002000 rw +rtc_slow_seg 0x0000000050000000 0x0000000000001000 rw +extern_ram_seg 0x000000003f800000 0x0000000000400000 xrw +*default* 0x0000000000000000 0xffffffffffffffff + +Linker script and memory map + +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +LOAD CMakeFiles/blink.elf.dir/project_elf_src.c.obj +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/efuse/libefuse.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/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/asio/libasio.a +LOAD esp-idf/cbor/libcbor.a +LOAD esp-idf/coap/libcoap.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/esp_adc_cal/libesp_adc_cal.a +LOAD esp-idf/esp_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/protobuf-c/libprotobuf-c.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/mdns/libmdns.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/esp_websocket_client/libesp_websocket_client.a +LOAD esp-idf/expat/libexpat.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/freemodbus/libfreemodbus.a +LOAD esp-idf/jsmn/libjsmn.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/libsodium/liblibsodium.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/openssl/libopenssl.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/main/libmain.a +LOAD esp-idf/asio/libasio.a +LOAD esp-idf/cbor/libcbor.a +LOAD esp-idf/coap/libcoap.a +LOAD esp-idf/esp_adc_cal/libesp_adc_cal.a +LOAD esp-idf/esp_gdbstub/libesp_gdbstub.a +LOAD esp-idf/esp_https_ota/libesp_https_ota.a +LOAD esp-idf/esp_local_ctrl/libesp_local_ctrl.a +LOAD esp-idf/esp_serial_slave_link/libesp_serial_slave_link.a +LOAD esp-idf/esp_websocket_client/libesp_websocket_client.a +LOAD esp-idf/expat/libexpat.a +LOAD esp-idf/fatfs/libfatfs.a +LOAD esp-idf/sdmmc/libsdmmc.a +LOAD esp-idf/wear_levelling/libwear_levelling.a +LOAD esp-idf/freemodbus/libfreemodbus.a +LOAD esp-idf/jsmn/libjsmn.a +LOAD esp-idf/libsodium/liblibsodium.a +LOAD esp-idf/mqtt/libmqtt.a +LOAD esp-idf/openssl/libopenssl.a +LOAD esp-idf/spiffs/libspiffs.a +LOAD esp-idf/unity/libunity.a +LOAD esp-idf/wifi_provisioning/libwifi_provisioning.a +LOAD esp-idf/protocomm/libprotocomm.a +LOAD esp-idf/protobuf-c/libprotobuf-c.a +LOAD esp-idf/mdns/libmdns.a +LOAD esp-idf/console/libconsole.a +LOAD esp-idf/json/libjson.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/efuse/libefuse.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/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/efuse/libefuse.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/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/efuse/libefuse.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/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a +LOAD esp-idf/xtensa/libxtensa.a +LOAD esp-idf/soc/libsoc.a +LOAD esp-idf/esp_eth/libesp_eth.a +LOAD esp-idf/tcpip_adapter/libtcpip_adapter.a +LOAD esp-idf/esp_netif/libesp_netif.a +LOAD esp-idf/esp_event/libesp_event.a +LOAD esp-idf/mbedtls/libmbedtls.a +LOAD esp-idf/wpa_supplicant/libwpa_supplicant.a +LOAD esp-idf/efuse/libefuse.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/nvs_flash/libnvs_flash.a +LOAD esp-idf/esp_wifi/libesp_wifi.a +LOAD esp-idf/lwip/liblwip.a +LOAD esp-idf/log/liblog.a +LOAD esp-idf/heap/libheap.a +LOAD esp-idf/esp_ringbuf/libesp_ringbuf.a +LOAD esp-idf/driver/libdriver.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/espcoredump/libespcoredump.a +LOAD esp-idf/perfmon/libperfmon.a +LOAD esp-idf/esp32/libesp32.a +LOAD esp-idf/esp_common/libesp_common.a +LOAD esp-idf/esp_timer/libesp_timer.a +LOAD esp-idf/freertos/libfreertos.a +LOAD esp-idf/vfs/libvfs.a +LOAD esp-idf/newlib/libnewlib.a +LOAD esp-idf/cxx/libcxx.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD esp-idf/nghttp/libnghttp.a +LOAD esp-idf/esp-tls/libesp-tls.a +LOAD esp-idf/tcp_transport/libtcp_transport.a +LOAD esp-idf/esp_http_client/libesp_http_client.a +LOAD esp-idf/esp_http_server/libesp_http_server.a +LOAD esp-idf/ulp/libulp.a +LOAD esp-idf/soc/soc/esp32/libsoc_esp32.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedtls.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a +LOAD esp-idf/mbedtls/mbedtls/library/libmbedx509.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libcoexist.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libcore.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libespnow.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libmesh.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libnet80211.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libpp.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/librtc.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libsmartconfig.a +LOAD /home/xy/esp/esp-idf/components/esp_wifi/lib/esp32/libphy.a +LOAD /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a +LOAD esp-idf/newlib/libnewlib.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a +LOAD esp-idf/pthread/libpthread.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcov.a +LOAD esp-idf/app_trace/libapp_trace.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcov.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libstdc++.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libm.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libnosys.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o +LOAD /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + 0x0000000040059588 asctime = 0x40059588 + 0x0000000040000ec8 asctime_r = 0x40000ec8 + 0x00000000400595b0 ctime = 0x400595b0 + 0x00000000400595c4 ctime_r = 0x400595c4 + 0x0000000040001fcc __gettzinfo = 0x40001fcc + 0x0000000040001834 __get_current_time_locale = 0x40001834 + 0x0000000040059848 gmtime = 0x40059848 + 0x0000000040059868 gmtime_r = 0x40059868 + 0x00000000400595dc localtime = 0x400595dc + 0x00000000400595fc localtime_r = 0x400595fc + 0x000000004005a5e8 mktime = 0x4005a5e8 + 0x0000000040059ab4 strftime = 0x40059ab4 + 0x0000000040001844 time = 0x40001844 + 0x000000004000183c __time_load_locale = 0x4000183c + 0x0000000040001a1c tzset = 0x40001a1c + 0x0000000040001a28 _tzset_r = 0x40001a28 + [!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) + 0x00000000400095e0 PROVIDE (cache_flash_mmu_set_rom = 0x400095e0) + 0x0000000040009a14 PROVIDE (Cache_Flush_rom = 0x40009a14) + 0x0000000040009ab8 PROVIDE (Cache_Read_Disable_rom = 0x40009ab8) + 0x0000000040009a84 PROVIDE (Cache_Read_Enable_rom = 0x40009a84) + [!provide] PROVIDE (Cache_Read_Init_rom = 0x40009950) + [!provide] PROVIDE (cache_sram_mmu_set_rom = 0x400097f4) + [!provide] PROVIDE (calc_rtc_memory_crc = 0x40008170) + [!provide] PROVIDE (__clear_cache = 0x40063860) + [!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) + 0x000000004005cfec PROVIDE (crc32_le = 0x4005cfec) + [!provide] PROVIDE (crc8_be = 0x4005d114) + [!provide] PROVIDE (crc8_le = 0x4005d0e0) + [!provide] PROVIDE (_data_end_rom = 0x4000d5c8) + [!provide] PROVIDE (_data_end_btdm_rom = 0x4000d4f8) + [!provide] PROVIDE (_data_start_rom = 0x4000d4f8) + [!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) + 0x000000003ffae290 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) + 0x000000003ffae270 PROVIDE (g_rom_flashchip = 0x3ffae270) + [!provide] PROVIDE (gTxMsg = 0x3ffe0050) + [!provide] PROVIDE (hci_cmd_desc_root_tab = 0x3ff976d4) + [!provide] PROVIDE (hci_cmd_desc_tab_ctrl_bb = 0x3ff97b70) + [!provide] PROVIDE (hci_cmd_desc_tab_info_par = 0x3ff97b1c) + [!provide] PROVIDE (hci_cmd_desc_tab_le = 0x3ff97870) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_ctrl = 0x3ff97fc0) + [!provide] PROVIDE (hci_cmd_desc_tab_lk_pol = 0x3ff97f3c) + [!provide] PROVIDE (hci_cmd_desc_tab_stat_par = 0x3ff97ac8) + [!provide] PROVIDE (hci_cmd_desc_tab_testing = 0x3ff97a98) + [!provide] PROVIDE (hci_cmd_desc_tab_vs = 0x3ff97714) + [!provide] PROVIDE (hci_command_handler = 0x4004c928) + [!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 (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) + [!provide] 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_rx = 0x4003274c) + [!provide] PROVIDE (ld_acl_tx = 0x4002ffdc) + [!provide] PROVIDE (ld_acl_rx_sync = 0x4002fbec) + [!provide] PROVIDE (ld_acl_rx_sync2 = 0x4002fd8c) + [!provide] PROVIDE (ld_acl_rx_no_sync = 0x4002fe78) + [!provide] PROVIDE (ld_acl_clk_isr = 0x40030cf8) + [!provide] PROVIDE (ld_acl_rsw_frm_cbk = 0x40033bb0) + [!provide] PROVIDE (ld_sco_modify = 0x40031778) + [!provide] PROVIDE (lm_cmd_cmp_send = 0x40051838) + [!provide] PROVIDE (ld_sco_frm_cbk = 0x400349dc) + [!provide] PROVIDE (ld_acl_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 (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 (r_ld_acl_unsniff = 0x400361e0) + [!provide] PROVIDE (r_ld_active_check = 0x4003cac4) + [!provide] PROVIDE (r_ld_afh_ch_assess_data_get = 0x4003caec) + [!provide] PROVIDE (r_ld_bcst_acl_data_tx = 0x40038d3c) + [!provide] PROVIDE (r_ld_bcst_acl_init = 0x40038bd0) + [!provide] PROVIDE (r_ld_bcst_acl_reset = 0x40038bdc) + [!provide] PROVIDE (r_ld_bcst_acl_start = 0x4003882c) + [!provide] PROVIDE (r_ld_bcst_afh_update = 0x40038f3c) + [!provide] PROVIDE (r_ld_bcst_enc_key_load = 0x4003906c) + [!provide] PROVIDE (r_ld_bcst_lmp_tx = 0x40038bf8) + [!provide] PROVIDE (r_ld_bcst_tx_enc = 0x40038ff8) + [!provide] PROVIDE (r_ld_bd_addr_get = 0x4003ca20) + [!provide] PROVIDE (r_ld_channel_assess = 0x4003c184) + [!provide] PROVIDE (r_ld_class_of_dev_get = 0x4003ca34) + [!provide] PROVIDE (r_ld_class_of_dev_set = 0x4003ca50) + [!provide] PROVIDE (r_ld_csb_rx_afh_update = 0x40039af4) + [!provide] PROVIDE (r_ld_csb_rx_init = 0x40039690) + [!provide] PROVIDE (r_ld_csb_rx_reset = 0x4003969c) + [!provide] PROVIDE (r_ld_csb_rx_start = 0x4003972c) + [!provide] PROVIDE (r_ld_csb_rx_stop = 0x40039bb8) + [!provide] PROVIDE (r_ld_csb_tx_afh_update = 0x4003a5fc) + [!provide] PROVIDE (r_ld_csb_tx_clr_data = 0x4003a71c) + [!provide] PROVIDE (r_ld_csb_tx_dis = 0x4003a5e8) + [!provide] PROVIDE (r_ld_csb_tx_en = 0x4003a1c0) + [!provide] PROVIDE (r_ld_csb_tx_init = 0x4003a0e8) + [!provide] PROVIDE (r_ld_csb_tx_reset = 0x4003a0f8) + [!provide] PROVIDE (r_ld_csb_tx_set_data = 0x4003a6c0) + [!provide] PROVIDE (r_ld_fm_clk_isr = 0x4003a7a8) + [!provide] PROVIDE (r_ld_fm_frame_isr = 0x4003a82c) + [!provide] PROVIDE (r_ld_fm_init = 0x4003a760) + [!provide] PROVIDE (r_ld_fm_prog_check = 0x4003ab28) + [!provide] PROVIDE (r_ld_fm_prog_disable = 0x4003a984) + [!provide] PROVIDE (r_ld_fm_prog_enable = 0x4003a944) + [!provide] PROVIDE (r_ld_fm_prog_push = 0x4003a9d4) + [!provide] PROVIDE (r_ld_fm_reset = 0x4003a794) + [!provide] PROVIDE (r_ld_fm_rx_isr = 0x4003a7f4) + [!provide] PROVIDE (r_ld_fm_sket_isr = 0x4003a8a4) + [!provide] PROVIDE (r_ld_init = 0x4003c294) + [!provide] PROVIDE (r_ld_inq_init = 0x4003b15c) + [!provide] PROVIDE (r_ld_inq_reset = 0x4003b168) + [!provide] PROVIDE (r_ld_inq_start = 0x4003b1f0) + [!provide] PROVIDE (r_ld_inq_stop = 0x4003b4f0) + [!provide] PROVIDE (r_ld_iscan_eir_get = 0x4003c118) + [!provide] PROVIDE (r_ld_iscan_eir_set = 0x4003bfa0) + [!provide] PROVIDE (r_ld_iscan_init = 0x4003b9f0) + [!provide] PROVIDE (r_ld_iscan_reset = 0x4003ba14) + [!provide] PROVIDE (r_ld_iscan_restart = 0x4003ba44) + [!provide] PROVIDE (r_ld_iscan_start = 0x4003bb28) + [!provide] PROVIDE (r_ld_iscan_stop = 0x4003bf1c) + [!provide] PROVIDE (r_ld_iscan_tx_pwr_get = 0x4003c138) + [!provide] PROVIDE (r_ld_page_init = 0x4003d808) + [!provide] PROVIDE (r_ld_page_reset = 0x4003d814) + [!provide] PROVIDE (r_ld_page_start = 0x4003d848) + [!provide] PROVIDE (r_ld_page_stop = 0x4003da54) + [!provide] PROVIDE (r_ld_pca_coarse_clock_adjust = 0x4003e324) + [!provide] PROVIDE (r_ld_pca_init = 0x4003deb4) + [!provide] PROVIDE (r_ld_pca_initiate_clock_dragging = 0x4003e4ac) + [!provide] PROVIDE (r_ld_pca_local_config = 0x4003df6c) + [!provide] PROVIDE (r_ld_pca_mws_frame_sync = 0x4003e104) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_gt = 0x4003e278) + [!provide] PROVIDE (r_ld_pca_mws_moment_offset_lt = 0x4003e280) + [!provide] PROVIDE (r_ld_pca_reporting_enable = 0x4003e018) + [!provide] PROVIDE (r_ld_pca_reset = 0x4003df0c) + [!provide] PROVIDE (r_ld_pca_update_target_offset = 0x4003e050) + [!provide] PROVIDE (r_ld_pscan_evt_handler = 0x4003f238) + [!provide] PROVIDE (r_ld_pscan_init = 0x4003f474) + [!provide] PROVIDE (r_ld_pscan_reset = 0x4003f498) + [!provide] PROVIDE (r_ld_pscan_restart = 0x4003f4b8) + [!provide] PROVIDE (r_ld_pscan_start = 0x4003f514) + [!provide] PROVIDE (r_ld_pscan_stop = 0x4003f618) + [!provide] PROVIDE (r_ld_read_clock = 0x4003c9e4) + [!provide] PROVIDE (r_ld_reset = 0x4003c714) + [!provide] PROVIDE (r_ld_sched_acl_add = 0x4003f978) + [!provide] PROVIDE (r_ld_sched_acl_remove = 0x4003f99c) + [!provide] PROVIDE (r_ld_sched_compute = 0x4003f6f8) + [!provide] PROVIDE (r_ld_sched_init = 0x4003f7ac) + [!provide] PROVIDE (r_ld_sched_inq_add = 0x4003f8a8) + [!provide] PROVIDE (r_ld_sched_inq_remove = 0x4003f8d0) + [!provide] PROVIDE (r_ld_sched_iscan_add = 0x4003f7e8) + [!provide] PROVIDE (r_ld_sched_iscan_remove = 0x4003f808) + [!provide] PROVIDE (r_ld_sched_page_add = 0x4003f910) + [!provide] PROVIDE (r_ld_sched_page_remove = 0x4003f938) + [!provide] PROVIDE (r_ld_sched_pscan_add = 0x4003f828) + [!provide] PROVIDE (r_ld_sched_pscan_remove = 0x4003f848) + [!provide] PROVIDE (r_ld_sched_reset = 0x4003f7d4) + [!provide] PROVIDE (r_ld_sched_sco_add = 0x4003fa4c) + [!provide] PROVIDE (r_ld_sched_sco_remove = 0x4003fa9c) + [!provide] PROVIDE (r_ld_sched_sniff_add = 0x4003f9c4) + [!provide] PROVIDE (r_ld_sched_sniff_remove = 0x4003fa0c) + [!provide] PROVIDE (r_ld_sched_sscan_add = 0x4003f868) + [!provide] PROVIDE (r_ld_sched_sscan_remove = 0x4003f888) + [!provide] PROVIDE (r_ld_sco_audio_isr = 0x40037cc8) + [!provide] PROVIDE (r_ld_sco_data_tx = 0x40037ee8) + [!provide] PROVIDE (r_ld_sco_start = 0x40037110) + [!provide] PROVIDE (r_ld_sco_stop = 0x40037c40) + [!provide] PROVIDE (r_ld_sco_update = 0x40037a74) + [!provide] PROVIDE (r_ld_sscan_activated = 0x4004031c) + [!provide] PROVIDE (r_ld_sscan_init = 0x400402f0) + [!provide] PROVIDE (r_ld_sscan_reset = 0x400402fc) + [!provide] PROVIDE (r_ld_sscan_start = 0x40040384) + [!provide] PROVIDE (r_ld_strain_init = 0x400409f4) + [!provide] PROVIDE (r_ld_strain_reset = 0x40040a00) + [!provide] PROVIDE (r_ld_strain_start = 0x40040a8c) + [!provide] PROVIDE (r_ld_strain_stop = 0x40040df0) + [!provide] PROVIDE (r_ld_timing_accuracy_get = 0x4003caac) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_get = 0x4004131c) + [!provide] PROVIDE (r_ld_util_active_master_afh_map_set = 0x40041308) + [!provide] PROVIDE (r_ld_util_bch_create = 0x40040fcc) + [!provide] PROVIDE (r_ld_util_fhs_pk = 0x400411c8) + [!provide] PROVIDE (r_ld_util_fhs_unpk = 0x40040e54) + [!provide] PROVIDE (r_ld_util_stp_pk = 0x400413f4) + [!provide] PROVIDE (r_ld_util_stp_unpk = 0x40041324) + [!provide] PROVIDE (r_ld_version_get = 0x4003ca6c) + [!provide] PROVIDE (r_ld_wlcoex_set = 0x4003caf8) + [!provide] PROVIDE (r_llc_ch_assess_get_current_ch_map = 0x40041574) + [!provide] PROVIDE (r_llc_ch_assess_get_local_ch_map = 0x4004150c) + [!provide] PROVIDE (r_llc_ch_assess_local = 0x40041494) + [!provide] PROVIDE (r_llc_ch_assess_merge_ch = 0x40041588) + [!provide] PROVIDE (r_llc_ch_assess_reass_ch = 0x400415c0) + [!provide] PROVIDE (r_llc_common_cmd_complete_send = 0x40044eac) + [!provide] PROVIDE (r_llc_common_cmd_status_send = 0x40044ee0) + [!provide] PROVIDE (r_llc_common_enc_change_evt_send = 0x40044f6c) + [!provide] PROVIDE (r_llc_common_enc_key_ref_comp_evt_send = 0x40044f38) + [!provide] PROVIDE (r_llc_common_flush_occurred_send = 0x40044f0c) + [!provide] PROVIDE (r_llc_common_nb_of_pkt_comp_evt_send = 0x40045000) + [!provide] PROVIDE (r_llc_con_update_complete_send = 0x40044d68) + [!provide] PROVIDE (r_llc_con_update_finished = 0x4004518c) + [!provide] PROVIDE (r_llc_con_update_ind = 0x40045038) + [!provide] PROVIDE (r_llc_discon_event_complete_send = 0x40044a30) + [!provide] PROVIDE (r_llc_end_evt_defer = 0x40046330) + [!provide] PROVIDE (r_llc_feats_rd_event_send = 0x40044e0c) + [!provide] PROVIDE (r_llc_init = 0x40044778) + [!provide] PROVIDE (r_llc_le_con_cmp_evt_send = 0x40044a78) + [!provide] PROVIDE (r_llc_llcp_ch_map_update_pdu_send = 0x40043f94) + [!provide] PROVIDE (r_llc_llcp_con_param_req_pdu_send = 0x400442fc) + [!provide] PROVIDE (r_llc_llcp_con_param_rsp_pdu_send = 0x40044358) + [!provide] PROVIDE (r_llc_llcp_con_update_pdu_send = 0x400442c4) + [!provide] PROVIDE (r_llc_llcp_enc_req_pdu_send = 0x40044064) + [!provide] PROVIDE (r_llc_llcp_enc_rsp_pdu_send = 0x40044160) + [!provide] PROVIDE (r_llc_llcp_feats_req_pdu_send = 0x400443b4) + [!provide] PROVIDE (r_llc_llcp_feats_rsp_pdu_send = 0x400443f0) + [!provide] PROVIDE (r_llc_llcp_get_autorize = 0x4004475c) + [!provide] PROVIDE (r_llc_llcp_length_req_pdu_send = 0x40044574) + [!provide] PROVIDE (r_llc_llcp_length_rsp_pdu_send = 0x400445ac) + [!provide] PROVIDE (r_llc_llcp_pause_enc_req_pdu_send = 0x40043fd8) + [!provide] PROVIDE (r_llc_llcp_pause_enc_rsp_pdu_send = 0x40044010) + [!provide] PROVIDE (r_llc_llcp_ping_req_pdu_send = 0x4004454c) + [!provide] PROVIDE (r_llc_llcp_ping_rsp_pdu_send = 0x40044560) + [!provide] PROVIDE (r_llc_llcp_recv_handler = 0x40044678) + [!provide] PROVIDE (r_llc_llcp_reject_ind_pdu_send = 0x4004425c) + [!provide] PROVIDE (r_llc_llcp_start_enc_req_pdu_send = 0x4004441c) + [!provide] PROVIDE (r_llc_llcp_start_enc_rsp_pdu_send = 0x400441f8) + [!provide] PROVIDE (r_llc_llcp_terminate_ind_pdu_send = 0x400444b0) + [!provide] PROVIDE (r_llc_llcp_tester_send = 0x400445e4) + [!provide] PROVIDE (r_llc_llcp_unknown_rsp_send_pdu = 0x40044534) + [!provide] PROVIDE (r_llc_llcp_version_ind_pdu_send = 0x40043f6c) + [!provide] PROVIDE (r_llc_lsto_con_update = 0x40045098) + [!provide] PROVIDE (r_llc_ltk_req_send = 0x40044dc0) + [!provide] PROVIDE (r_llc_map_update_finished = 0x40045260) + [!provide] PROVIDE (r_llc_map_update_ind = 0x400450f0) + [!provide] PROVIDE (r_llc_pdu_acl_tx_ack_defer = 0x400464dc) + [!provide] PROVIDE (r_llc_pdu_defer = 0x40046528) + [!provide] PROVIDE (r_llc_pdu_llcp_tx_ack_defer = 0x400463ac) + [!provide] PROVIDE (r_llc_reset = 0x400447b8) + [!provide] PROVIDE (r_llc_start = 0x400447f4) + [!provide] PROVIDE (r_llc_stop = 0x400449ac) + [!provide] PROVIDE (r_llc_util_bw_mgt = 0x4004629c) + [!provide] PROVIDE (r_llc_util_clear_operation_ptr = 0x40046234) + [!provide] PROVIDE (r_llc_util_dicon_procedure = 0x40046130) + [!provide] PROVIDE (r_llc_util_get_free_conhdl = 0x400460c8) + [!provide] PROVIDE (r_llc_util_get_nb_active_link = 0x40046100) + [!provide] PROVIDE (r_llc_util_set_auth_payl_to_margin = 0x400461f4) + [!provide] PROVIDE (r_llc_util_set_llcp_discard_enable = 0x400461c8) + [!provide] PROVIDE (r_llc_util_update_channel_map = 0x400461ac) + [!provide] PROVIDE (r_llc_version_rd_event_send = 0x40044e60) + [!provide] PROVIDE (r_lld_adv_start = 0x40048b38) + [!provide] PROVIDE (r_lld_adv_stop = 0x40048ea0) + [!provide] PROVIDE (r_lld_ch_map_ind = 0x4004a2f4) + [!provide] PROVIDE (r_lld_con_param_req = 0x40049f0c) + [!provide] PROVIDE (r_lld_con_param_rsp = 0x40049e00) + [!provide] PROVIDE (r_lld_con_start = 0x400491f8) + [!provide] PROVIDE (r_lld_con_stop = 0x40049fdc) + [!provide] PROVIDE (r_lld_con_update_after_param_req = 0x40049bcc) + [!provide] PROVIDE (r_lld_con_update_ind = 0x4004a30c) + [!provide] PROVIDE (r_lld_con_update_req = 0x40049b60) + [!provide] PROVIDE (r_lld_core_reset = 0x40048a9c) + [!provide] PROVIDE (r_lld_crypt_isr = 0x4004a324) + [!provide] PROVIDE (r_lld_evt_adv_create = 0x400481f4) + [!provide] PROVIDE (r_lld_evt_canceled = 0x400485c8) + [!provide] PROVIDE (r_lld_evt_channel_next = 0x40046aac) + [!provide] PROVIDE (r_lld_evt_deffered_elt_handler = 0x400482bc) + [!provide] PROVIDE (r_lld_evt_delete_elt_handler = 0x40046974) + [!provide] PROVIDE (r_lld_evt_delete_elt_push = 0x40046a3c) + [!provide] PROVIDE (r_lld_evt_drift_compute = 0x40047670) + [!provide] PROVIDE (r_lld_evt_elt_delete = 0x40047538) + [!provide] PROVIDE (r_lld_evt_elt_insert = 0x400474c8) + [!provide] PROVIDE (r_lld_evt_end = 0x400483e8) + [!provide] PROVIDE (r_lld_evt_end_isr = 0x4004862c) + [!provide] PROVIDE (r_lld_evt_init = 0x40046b3c) + [!provide] PROVIDE (r_lld_evt_init_evt = 0x40046cd0) + [!provide] PROVIDE (r_lld_evt_move_to_master = 0x40047ba0) + [!provide] PROVIDE (r_lld_evt_move_to_slave = 0x40047e18) + [!provide] PROVIDE (r_lld_evt_prevent_stop = 0x40047adc) + [!provide] PROVIDE (r_lld_evt_restart = 0x40046d50) + [!provide] PROVIDE (r_lld_evt_rx = 0x40048578) + [!provide] PROVIDE (r_lld_evt_rx_isr = 0x40048678) + [!provide] PROVIDE (r_lld_evt_scan_create = 0x40047ae8) + [!provide] PROVIDE (r_lld_evt_schedule = 0x40047908) + [!provide] PROVIDE (r_lld_evt_schedule_next = 0x400477dc) + [!provide] PROVIDE (r_lld_evt_schedule_next_instant = 0x400476a8) + [!provide] PROVIDE (r_lld_evt_slave_update = 0x40048138) + [!provide] PROVIDE (r_lld_evt_update_create = 0x40047cd8) + [!provide] PROVIDE (r_lld_get_mode = 0x40049ff8) + [!provide] PROVIDE (r_lld_init = 0x4004873c) + [!provide] PROVIDE (r_lld_move_to_master = 0x400499e0) + [!provide] PROVIDE (r_lld_move_to_slave = 0x4004a024) + [!provide] PROVIDE (r_lld_pdu_adv_pack = 0x4004b488) + [!provide] PROVIDE (r_lld_pdu_check = 0x4004ac34) + [!provide] PROVIDE (r_lld_pdu_data_send = 0x4004b018) + [!provide] PROVIDE (r_lld_pdu_data_tx_push = 0x4004aecc) + [!provide] PROVIDE (r_lld_pdu_rx_handler = 0x4004b4d4) + [!provide] PROVIDE (r_lld_pdu_send_packet = 0x4004b774) + [!provide] PROVIDE (r_lld_pdu_tx_flush = 0x4004b414) + [!provide] PROVIDE (r_lld_pdu_tx_loop = 0x4004ae40) + [!provide] PROVIDE (r_lld_pdu_tx_prog = 0x4004b120) + [!provide] PROVIDE (r_lld_pdu_tx_push = 0x4004b080) + [!provide] PROVIDE (r_lld_ral_renew_req = 0x4004a73c) + [!provide] PROVIDE (r_lld_scan_start = 0x40048ee0) + [!provide] PROVIDE (r_lld_scan_stop = 0x40049190) + [!provide] PROVIDE (r_lld_test_mode_rx = 0x4004a540) + [!provide] PROVIDE (r_lld_test_mode_tx = 0x4004a350) + [!provide] PROVIDE (r_lld_test_stop = 0x4004a710) + [!provide] PROVIDE (r_lld_util_anchor_point_move = 0x4004bacc) + [!provide] PROVIDE (r_lld_util_compute_ce_max = 0x4004bc0c) + [!provide] PROVIDE (r_lld_util_connection_param_set = 0x4004ba40) + [!provide] PROVIDE (r_lld_util_dle_set_cs_fields = 0x4004ba90) + [!provide] PROVIDE (r_lld_util_eff_tx_time_set = 0x4004bd88) + [!provide] PROVIDE (r_lld_util_elt_programmed = 0x4004bce0) + [!provide] PROVIDE (r_lld_util_flush_list = 0x4004bbd8) + [!provide] PROVIDE (r_lld_util_freq2chnl = 0x4004b9e4) + [!provide] PROVIDE (r_lld_util_get_bd_address = 0x4004b8ac) + [!provide] PROVIDE (r_lld_util_get_local_offset = 0x4004ba10) + [!provide] PROVIDE (r_lld_util_get_peer_offset = 0x4004ba24) + [!provide] PROVIDE (r_lld_util_get_tx_pkt_cnt = 0x4004bd80) + [!provide] PROVIDE (r_lld_util_instant_get = 0x4004b890) + [!provide] PROVIDE (r_lld_util_instant_ongoing = 0x4004bbfc) + [!provide] PROVIDE (r_lld_util_priority_set = 0x4004bd10) + [!provide] PROVIDE (r_lld_util_priority_update = 0x4004bd78) + [!provide] PROVIDE (r_lld_util_ral_force_rpa_renew = 0x4004b980) + [!provide] PROVIDE (r_lld_util_set_bd_address = 0x4004b8f8) + [!provide] PROVIDE (r_lld_wlcoex_set = 0x4004bd98) + [!provide] PROVIDE (r_llm_ble_ready = 0x4004cc34) + [!provide] PROVIDE (r_llm_common_cmd_complete_send = 0x4004d288) + [!provide] PROVIDE (r_llm_common_cmd_status_send = 0x4004d2b4) + [!provide] PROVIDE (r_llm_con_req_ind = 0x4004cc54) + [!provide] PROVIDE (r_llm_con_req_tx_cfm = 0x4004d158) + [!provide] PROVIDE (r_llm_create_con = 0x4004de78) + [!provide] PROVIDE (r_llm_encryption_done = 0x4004dff8) + [!provide] PROVIDE (r_llm_encryption_start = 0x4004e128) + [!provide] PROVIDE (r_llm_end_evt_defer = 0x4004eb6c) + [!provide] PROVIDE (r_llm_init = 0x4004c9f8) + [!provide] PROVIDE (r_llm_le_adv_report_ind = 0x4004cdf4) + [!provide] PROVIDE (r_llm_pdu_defer = 0x4004ec48) + [!provide] PROVIDE (r_llm_ral_clear = 0x4004e1fc) + [!provide] PROVIDE (r_llm_ral_dev_add = 0x4004e23c) + [!provide] PROVIDE (r_llm_ral_dev_rm = 0x4004e3bc) + [!provide] PROVIDE (r_llm_ral_get_rpa = 0x4004e400) + [!provide] PROVIDE (r_llm_ral_set_timeout = 0x4004e4a0) + [!provide] PROVIDE (r_llm_ral_update = 0x4004e4f8) + [!provide] PROVIDE (r_llm_set_adv_data = 0x4004d960) + [!provide] PROVIDE (r_llm_set_adv_en = 0x4004d7ec) + [!provide] PROVIDE (r_llm_set_adv_param = 0x4004d5f4) + [!provide] PROVIDE (r_llm_set_scan_en = 0x4004db64) + [!provide] PROVIDE (r_llm_set_scan_param = 0x4004dac8) + [!provide] PROVIDE (r_llm_set_scan_rsp_data = 0x4004da14) + [!provide] PROVIDE (r_llm_test_mode_start_rx = 0x4004d534) + [!provide] PROVIDE (r_llm_test_mode_start_tx = 0x4004d2fc) + [!provide] PROVIDE (r_llm_util_adv_data_update = 0x4004e8fc) + [!provide] PROVIDE (r_llm_util_apply_bd_addr = 0x4004e868) + [!provide] PROVIDE (r_llm_util_bd_addr_in_ral = 0x4004eb08) + [!provide] PROVIDE (r_llm_util_bd_addr_in_wl = 0x4004e788) + [!provide] PROVIDE (r_llm_util_bd_addr_wl_position = 0x4004e720) + [!provide] PROVIDE (r_llm_util_bl_add = 0x4004e9ac) + [!provide] PROVIDE (r_llm_util_bl_check = 0x4004e930) + [!provide] PROVIDE (r_llm_util_bl_rem = 0x4004ea70) + [!provide] PROVIDE (r_llm_util_check_address_validity = 0x4004e7e4) + [!provide] PROVIDE (r_llm_util_check_evt_mask = 0x4004e8b0) + [!provide] PROVIDE (r_llm_util_check_map_validity = 0x4004e800) + [!provide] PROVIDE (r_llm_util_get_channel_map = 0x4004e8d4) + [!provide] PROVIDE (r_llm_util_get_supp_features = 0x4004e8e8) + [!provide] PROVIDE (r_llm_util_set_public_addr = 0x4004e89c) + [!provide] PROVIDE (r_llm_wl_clr = 0x4004dc54) + [!provide] PROVIDE (r_llm_wl_dev_add = 0x4004dcc0) + [!provide] PROVIDE (r_llm_wl_dev_add_hdl = 0x4004dd38) + [!provide] PROVIDE (r_llm_wl_dev_rem = 0x4004dcfc) + [!provide] PROVIDE (r_llm_wl_dev_rem_hdl = 0x4004dde0) + [!provide] PROVIDE (r_lm_acl_disc = 0x4004f148) + [!provide] PROVIDE (r_LM_AddSniff = 0x40022d20) + [!provide] PROVIDE (r_lm_add_sync = 0x40051358) + [!provide] PROVIDE (r_lm_afh_activate_timer = 0x4004f444) + [!provide] PROVIDE (r_lm_afh_ch_ass_en_get = 0x4004f3f8) + [!provide] PROVIDE (r_lm_afh_host_ch_class_get = 0x4004f410) + [!provide] PROVIDE (r_lm_afh_master_ch_map_get = 0x4004f43c) + [!provide] PROVIDE (r_lm_afh_peer_ch_class_set = 0x4004f418) + [!provide] PROVIDE (r_lm_check_active_sync = 0x40051334) + [!provide] PROVIDE (r_LM_CheckEdrFeatureRequest = 0x4002f90c) + [!provide] PROVIDE (r_LM_CheckSwitchInstant = 0x4002f8c0) + [!provide] PROVIDE (r_lm_check_sync_hl_rsp = 0x4005169c) + [!provide] PROVIDE (r_lm_clk_adj_ack_pending_clear = 0x4004f514) + [!provide] PROVIDE (r_lm_clk_adj_instant_pending_set = 0x4004f4d8) + [!provide] PROVIDE (r_LM_ComputePacketType = 0x4002f554) + [!provide] PROVIDE (r_LM_ComputeSniffSubRate = 0x400233ac) + [!provide] PROVIDE (r_lm_debug_key_compare_192 = 0x4004f3a8) + [!provide] PROVIDE (r_lm_debug_key_compare_256 = 0x4004f3d0) + [!provide] PROVIDE (r_lm_dhkey_calc_init = 0x40013234) + [!provide] PROVIDE (r_lm_dhkey_compare = 0x400132d8) + [!provide] PROVIDE (r_lm_dut_mode_en_get = 0x4004f3ec) + [!provide] PROVIDE (r_LM_ExtractMaxEncKeySize = 0x4001aca4) + [!provide] PROVIDE (r_lm_f1 = 0x40012bb8) + [!provide] PROVIDE (r_lm_f2 = 0x40012cfc) + [!provide] PROVIDE (r_lm_f3 = 0x40013050) + [!provide] PROVIDE (r_lm_g = 0x40012f90) + [!provide] PROVIDE (r_LM_GetAFHSwitchInstant = 0x4002f86c) + [!provide] PROVIDE (r_lm_get_auth_en = 0x4004f1ac) + [!provide] PROVIDE (r_lm_get_common_pkt_types = 0x4002fa1c) + [!provide] PROVIDE (r_LM_GetConnectionAcceptTimeout = 0x4004f1f4) + [!provide] PROVIDE (r_LM_GetFeature = 0x4002f924) + [!provide] PROVIDE (r_LM_GetLinkTimeout = 0x400233ec) + [!provide] PROVIDE (r_LM_GetLocalNameSeg = 0x4004f200) + [!provide] PROVIDE (r_lm_get_loopback_mode = 0x4004f248) + [!provide] PROVIDE (r_LM_GetMasterEncKeySize = 0x4001b29c) + [!provide] PROVIDE (r_LM_GetMasterEncRand = 0x4001b288) + [!provide] PROVIDE (r_LM_GetMasterKey = 0x4001b260) + [!provide] PROVIDE (r_LM_GetMasterKeyRand = 0x4001b274) + [!provide] PROVIDE (r_lm_get_min_sync_intv = 0x400517a8) + [!provide] PROVIDE (r_lm_get_nb_acl = 0x4004ef9c) + [!provide] PROVIDE (r_lm_get_nb_sync_link = 0x4005179c) + [!provide] PROVIDE (r_lm_get_nonce = 0x400131c4) + [!provide] PROVIDE (r_lm_get_oob_local_commit = 0x4004f374) + [!provide] PROVIDE (r_lm_get_oob_local_data_192 = 0x4004f2d4) + [!provide] PROVIDE (r_lm_get_oob_local_data_256 = 0x4004f318) + [!provide] PROVIDE (r_LM_GetPINType = 0x4004f1e8) + [!provide] PROVIDE (r_lm_get_priv_key_192 = 0x4004f278) + [!provide] PROVIDE (r_lm_get_priv_key_256 = 0x4004f2b8) + [!provide] PROVIDE (r_lm_get_pub_key_192 = 0x4004f258) + [!provide] PROVIDE (r_lm_get_pub_key_256 = 0x4004f298) + [!provide] PROVIDE (r_LM_GetQoSParam = 0x4002f6e0) + [!provide] PROVIDE (r_lm_get_sec_con_host_supp = 0x4004f1d4) + [!provide] PROVIDE (r_LM_GetSniffSubratingParam = 0x4002325c) + [!provide] PROVIDE (r_lm_get_sp_en = 0x4004f1c0) + [!provide] PROVIDE (r_LM_GetSwitchInstant = 0x4002f7f8) + [!provide] PROVIDE (r_lm_get_synchdl = 0x4005175c) + [!provide] PROVIDE (r_lm_get_sync_param = 0x400503b4) + [!provide] PROVIDE (r_lm_init = 0x4004ed34) + [!provide] PROVIDE (r_lm_init_sync = 0x400512d8) + [!provide] PROVIDE (r_lm_is_acl_con = 0x4004f47c) + [!provide] PROVIDE (r_lm_is_acl_con_role = 0x4004f49c) + [!provide] PROVIDE (r_lm_is_clk_adj_ack_pending = 0x4004f4e8) + [!provide] PROVIDE (r_lm_is_clk_adj_instant_pending = 0x4004f4c8) + [!provide] PROVIDE (r_lm_local_ext_fr_configured = 0x4004f540) + [!provide] PROVIDE (r_lm_look_for_stored_link_key = 0x4002f948) + [!provide] PROVIDE (r_lm_look_for_sync = 0x40051774) + [!provide] PROVIDE (r_lm_lt_addr_alloc = 0x4004ef1c) + [!provide] PROVIDE (r_lm_lt_addr_free = 0x4004ef74) + [!provide] PROVIDE (r_lm_lt_addr_reserve = 0x4004ef48) + [!provide] PROVIDE (r_LM_MakeCof = 0x4002f84c) + [!provide] PROVIDE (r_LM_MakeRandVec = 0x400112d8) + [!provide] PROVIDE (r_lm_master_clk_adj_req_handler = 0x40054180) + [!provide] PROVIDE (r_LM_MaxSlot = 0x4002f694) + [!provide] PROVIDE (r_lm_modif_sync = 0x40051578) + [!provide] PROVIDE (r_lm_n_is_zero = 0x40012170) + [!provide] PROVIDE (r_lm_num_clk_adj_ack_pending_set = 0x4004f500) + [!provide] PROVIDE (r_lm_oob_f1 = 0x40012e54) + [!provide] PROVIDE (r_lm_pca_sscan_link_get = 0x4004f560) + [!provide] PROVIDE (r_lm_pca_sscan_link_set = 0x4004f550) + [!provide] PROVIDE (nvds_null_read = 0x400542a0) + [!provide] PROVIDE (nvds_null_write = 0x400542a8) + [!provide] PROVIDE (nvds_null_erase = 0x400542b0) + [!provide] PROVIDE (nvds_read = 0x400542c4) + [!provide] PROVIDE (nvds_write = 0x400542fc) + [!provide] PROVIDE (nvds_erase = 0x40054334) + [!provide] PROVIDE (nvds_init_memory = 0x40054358) + [!provide] PROVIDE (r_lmp_pack = 0x4001135c) + [!provide] PROVIDE (r_lmp_unpack = 0x4001149c) + [!provide] PROVIDE (r_lm_read_features = 0x4004f0d8) + [!provide] PROVIDE (r_LM_RemoveSniff = 0x40023124) + [!provide] PROVIDE (r_LM_RemoveSniffSubrating = 0x400233c4) + [!provide] PROVIDE (r_lm_remove_sync = 0x400517c8) + [!provide] PROVIDE (r_lm_reset_sync = 0x40051304) + [!provide] PROVIDE (r_lm_role_switch_finished = 0x4004f028) + [!provide] PROVIDE (r_lm_role_switch_start = 0x4004efe0) + [!provide] PROVIDE (r_lm_sco_nego_end = 0x40051828) + [!provide] PROVIDE (r_LM_SniffSubrateNegoRequired = 0x40023334) + [!provide] PROVIDE (r_LM_SniffSubratingHlReq = 0x40023154) + [!provide] PROVIDE (r_LM_SniffSubratingPeerReq = 0x400231dc) + [!provide] PROVIDE (r_lm_sp_debug_mode_get = 0x4004f398) + [!provide] PROVIDE (r_lm_sp_n192_convert_wnaf = 0x400123c0) + [!provide] PROVIDE (r_lm_sp_n_one = 0x400123a4) + [!provide] PROVIDE (r_lm_sp_p192_add = 0x40012828) + [!provide] PROVIDE (r_lm_sp_p192_dbl = 0x4001268c) + [!provide] PROVIDE (r_lm_sp_p192_invert = 0x40012b6c) + [!provide] PROVIDE (r_lm_sp_p192_point_jacobian_to_affine = 0x40012468) + [!provide] PROVIDE (r_lm_sp_p192_points_jacobian_to_affine = 0x400124e4) + [!provide] PROVIDE (r_lm_sp_p192_point_to_inf = 0x40012458) + [!provide] PROVIDE (r_lm_sp_pre_compute_points = 0x40012640) + [!provide] PROVIDE (r_lm_sp_sha256_calculate = 0x400121a0) + [!provide] PROVIDE (r_LM_SuppressAclPacket = 0x4002f658) + [!provide] PROVIDE (r_lm_sync_flow_ctrl_en_get = 0x4004f404) + [!provide] PROVIDE (r_LM_UpdateAclEdrPacketType = 0x4002f5d8) + [!provide] PROVIDE (r_LM_UpdateAclPacketType = 0x4002f584) + [!provide] PROVIDE (r_modules_funcs = 0x3ffafd6c) + [!provide] PROVIDE (r_modules_funcs_p = 0x3ffafd68) + [!provide] PROVIDE (r_nvds_del = 0x400544c4) + [!provide] PROVIDE (r_nvds_get = 0x40054488) + [!provide] PROVIDE (r_nvds_init = 0x40054410) + [!provide] PROVIDE (r_nvds_lock = 0x400544fc) + [!provide] PROVIDE (r_nvds_put = 0x40054534) + [!provide] PROVIDE (rom_abs_temp = 0x400054f0) + [!provide] PROVIDE (rom_bb_bss_bw_40_en = 0x4000401c) + [!provide] PROVIDE (rom_bb_bss_cbw40_dig = 0x40003bac) + [!provide] PROVIDE (rom_bb_rx_ht20_cen_bcov_en = 0x40003734) + [!provide] PROVIDE (rom_bb_tx_ht20_cen = 0x40003760) + [!provide] PROVIDE (rom_bb_wdg_test_en = 0x40003b70) + [!provide] PROVIDE (rom_cbw2040_cfg = 0x400040b0) + [!provide] PROVIDE (rom_check_noise_floor = 0x40003c78) + [!provide] PROVIDE (rom_chip_i2c_readReg = 0x40004110) + [!provide] PROVIDE (rom_chip_i2c_writeReg = 0x40004168) + [!provide] PROVIDE (rom_chip_v7_bt_init = 0x40004d8c) + [!provide] PROVIDE (rom_chip_v7_rx_init = 0x40004cec) + [!provide] PROVIDE (rom_chip_v7_rx_rifs_en = 0x40003d90) + [!provide] PROVIDE (rom_chip_v7_tx_init = 0x40004d18) + [!provide] PROVIDE (rom_clk_force_on_vit = 0x40003710) + [!provide] PROVIDE (rom_correct_rf_ana_gain = 0x400062a8) + [!provide] PROVIDE (rom_dc_iq_est = 0x400055c8) + [!provide] PROVIDE (rom_disable_agc = 0x40002fa4) + [!provide] PROVIDE (rom_enable_agc = 0x40002fcc) + [!provide] PROVIDE (rom_en_pwdet = 0x4000506c) + [!provide] PROVIDE (rom_gen_rx_gain_table = 0x40003e3c) + [!provide] PROVIDE (rom_get_data_sat = 0x4000312c) + [!provide] PROVIDE (rom_get_fm_sar_dout = 0x40005204) + [!provide] PROVIDE (rom_get_power_db = 0x40005fc8) + [!provide] PROVIDE (rom_get_pwctrl_correct = 0x400065d4) + [!provide] PROVIDE (rom_get_rfcal_rxiq_data = 0x40005bbc) + [!provide] PROVIDE (rom_get_rf_gain_qdb = 0x40006290) + [!provide] PROVIDE (rom_get_sar_dout = 0x40006564) + [!provide] PROVIDE (rom_i2c_readReg = 0x40004148) + 0x00000000400041c0 PROVIDE (rom_i2c_readReg_Mask = 0x400041c0) + 0x00000000400041a4 PROVIDE (rom_i2c_writeReg = 0x400041a4) + 0x00000000400041fc PROVIDE (rom_i2c_writeReg_Mask = 0x400041fc) + [!provide] PROVIDE (rom_index_to_txbbgain = 0x40004df8) + [!provide] PROVIDE (rom_iq_est_disable = 0x40005590) + [!provide] PROVIDE (rom_iq_est_enable = 0x40005514) + [!provide] PROVIDE (rom_linear_to_db = 0x40005f64) + [!provide] PROVIDE (rom_loopback_mode_en = 0x400030f8) + [!provide] PROVIDE (rom_meas_tone_pwr_db = 0x40006004) + [!provide] PROVIDE (rom_mhz2ieee = 0x4000404c) + [!provide] PROVIDE (rom_noise_floor_auto_set = 0x40003bdc) + [!provide] PROVIDE (rom_pbus_debugmode = 0x40004458) + [!provide] PROVIDE (rom_pbus_force_mode = 0x40004270) + [!provide] PROVIDE (rom_pbus_force_test = 0x400043c0) + [!provide] PROVIDE (rom_pbus_rd = 0x40004414) + [!provide] PROVIDE (rom_pbus_rd_addr = 0x40004334) + [!provide] PROVIDE (rom_pbus_rd_shift = 0x40004374) + [!provide] PROVIDE (rom_pbus_rx_dco_cal = 0x40005620) + [!provide] PROVIDE (rom_pbus_set_dco = 0x40004638) + [!provide] PROVIDE (rom_pbus_set_rxgain = 0x40004480) + [!provide] PROVIDE (rom_pbus_workmode = 0x4000446c) + [!provide] PROVIDE (rom_pbus_xpd_rx_off = 0x40004508) + [!provide] PROVIDE (rom_pbus_xpd_rx_on = 0x4000453c) + [!provide] PROVIDE (rom_pbus_xpd_tx_off = 0x40004590) + [!provide] PROVIDE (rom_pbus_xpd_tx_on = 0x400045e0) + [!provide] PROVIDE (rom_phy_disable_agc = 0x40002f6c) + [!provide] PROVIDE (rom_phy_disable_cca = 0x40003000) + [!provide] PROVIDE (rom_phy_enable_agc = 0x40002f88) + [!provide] PROVIDE (rom_phy_enable_cca = 0x4000302c) + [!provide] PROVIDE (rom_phy_freq_correct = 0x40004b44) + [!provide] PROVIDE (rom_phyFuns = 0x3ffae0c0) + [!provide] PROVIDE (rom_phy_get_noisefloor = 0x40003c2c) + [!provide] PROVIDE (rom_phy_get_vdd33 = 0x4000642c) + [!provide] PROVIDE (rom_pow_usr = 0x40003044) + [!provide] PROVIDE (rom_read_sar_dout = 0x400051c0) + [!provide] PROVIDE (rom_restart_cal = 0x400046e0) + [!provide] PROVIDE (rom_rfcal_pwrctrl = 0x40006058) + [!provide] PROVIDE (rom_rfcal_rxiq = 0x40005b4c) + [!provide] PROVIDE (rom_rfcal_txcap = 0x40005dec) + [!provide] PROVIDE (rom_rfpll_reset = 0x40004680) + [!provide] PROVIDE (rom_rfpll_set_freq = 0x400047f8) + [!provide] PROVIDE (rom_rtc_mem_backup = 0x40003db4) + [!provide] PROVIDE (rom_rtc_mem_recovery = 0x40003df4) + [!provide] PROVIDE (rom_rx_gain_force = 0x4000351c) + [!provide] PROVIDE (rom_rxiq_cover_mg_mp = 0x40005a68) + [!provide] PROVIDE (rom_rxiq_get_mis = 0x400058e4) + [!provide] PROVIDE (rom_rxiq_set_reg = 0x40005a00) + [!provide] PROVIDE (rom_set_cal_rxdc = 0x400030b8) + [!provide] PROVIDE (rom_set_chan_cal_interp = 0x40005ce0) + [!provide] PROVIDE (rom_set_channel_freq = 0x40004880) + [!provide] PROVIDE (rom_set_loopback_gain = 0x40003060) + [!provide] PROVIDE (rom_set_noise_floor = 0x40003d48) + [!provide] PROVIDE (rom_set_pbus_mem = 0x400031a4) + [!provide] PROVIDE (rom_set_rf_freq_offset = 0x40004ca8) + [!provide] PROVIDE (rom_set_rxclk_en = 0x40003594) + [!provide] PROVIDE (rom_set_txcap_reg = 0x40005d50) + [!provide] PROVIDE (rom_set_txclk_en = 0x40003564) + [!provide] PROVIDE (rom_spur_coef_cfg = 0x40003ac8) + [!provide] PROVIDE (rom_spur_reg_write_one_tone = 0x400037f0) + [!provide] PROVIDE (rom_start_tx_tone = 0x400036b4) + [!provide] PROVIDE (rom_start_tx_tone_step = 0x400035d0) + [!provide] PROVIDE (rom_stop_tx_tone = 0x40003f98) + [!provide] PROVIDE (_rom_store = 0x4000d66c) + [!provide] PROVIDE (_rom_store_table = 0x4000d4f8) + [!provide] PROVIDE (rom_target_power_add_backoff = 0x40006268) + [!provide] PROVIDE (rom_tx_atten_set_interp = 0x400061cc) + [!provide] PROVIDE (rom_txbbgain_to_index = 0x40004dc0) + [!provide] PROVIDE (rom_txcal_work_mode = 0x4000510c) + [!provide] PROVIDE (rom_txdc_cal_init = 0x40004e10) + [!provide] PROVIDE (rom_txdc_cal_v70 = 0x40004ea4) + [!provide] PROVIDE (rom_txiq_cover = 0x4000538c) + [!provide] PROVIDE (rom_txiq_get_mis_pwr = 0x400052dc) + [!provide] PROVIDE (rom_txiq_set_reg = 0x40005154) + [!provide] PROVIDE (rom_tx_pwctrl_bg_init = 0x4000662c) + [!provide] PROVIDE (rom_txtone_linear_pwr = 0x40005290) + [!provide] PROVIDE (rom_wait_rfpll_cal_end = 0x400047a8) + [!provide] PROVIDE (rom_write_gain_mem = 0x4000348c) + [!provide] PROVIDE (rom_write_rfpll_sdm = 0x40004740) + [!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) + 0x000000003ffae020 PROVIDE (syscall_table_ptr_app = 0x3ffae020) + 0x000000003ffae024 PROVIDE (syscall_table_ptr_pro = 0x3ffae024) + [!provide] PROVIDE (tdefl_compress = 0x400600bc) + [!provide] PROVIDE (tdefl_compress_buffer = 0x400607f4) + [!provide] PROVIDE (tdefl_compress_mem_to_mem = 0x40060900) + [!provide] PROVIDE (tdefl_compress_mem_to_output = 0x400608e0) + [!provide] PROVIDE (tdefl_get_adler32 = 0x400608d8) + [!provide] PROVIDE (tdefl_get_prev_return_status = 0x400608d0) + [!provide] PROVIDE (tdefl_init = 0x40060810) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory = 0x4006091c) + [!provide] PROVIDE (tdefl_write_image_to_png_file_in_memory_ex = 0x40060910) + [!provide] PROVIDE (tinfl_decompress = 0x4005ef30) + [!provide] PROVIDE (tinfl_decompress_mem_to_callback = 0x40060090) + [!provide] PROVIDE (tinfl_decompress_mem_to_mem = 0x40060050) + [!provide] PROVIDE (UartDev = 0x3ffe019c) + [!provide] PROVIDE (user_code_start = 0x3ffe0400) + [!provide] PROVIDE (veryBigHexP256 = 0x3ff9736c) + [!provide] PROVIDE (xthal_bcopy = 0x4000c098) + [!provide] PROVIDE (xthal_copy123 = 0x4000c124) + [!provide] PROVIDE (xthal_get_ccompare = 0x4000c078) + [!provide] PROVIDE (xthal_get_ccount = 0x4000c050) + [!provide] PROVIDE (xthal_get_interrupt = 0x4000c1e4) + [!provide] PROVIDE (xthal_get_intread = 0x4000c1e4) + [!provide] PROVIDE (Xthal_intlevel = 0x3ff9c2b4) + [!provide] PROVIDE (xthal_memcpy = 0x4000c0bc) + [!provide] PROVIDE (xthal_set_ccompare = 0x4000c058) + [!provide] PROVIDE (xthal_set_intclear = 0x4000c1ec) + 0x000000004000bfdc PROVIDE (_xtos_set_intlevel = 0x4000bfdc) + 0x000000003ffe01e0 PROVIDE (g_ticks_per_us_pro = 0x3ffe01e0) + 0x000000003ffe40f0 PROVIDE (g_ticks_per_us_app = 0x3ffe40f0) + [!provide] PROVIDE (esp_rom_spiflash_config_param = 0x40063238) + 0x00000000400621b0 PROVIDE (esp_rom_spiflash_read_user_cmd = 0x400621b0) + 0x0000000040062e60 PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x40062e60) + 0x0000000040062df4 PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40062df4) + 0x0000000040062e1c PROVIDE (esp_rom_spiflash_prepare_encrypted_data = 0x40062e1c) + 0x0000000040061ddc PROVIDE (esp_rom_spiflash_select_qio_pins = 0x40061ddc) + [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40062a6c) + 0x0000000040062bc8 PROVIDE (esp_rom_spiflash_config_clk = 0x40062bc8) + 0x000000003ffae270 PROVIDE (g_rom_spiflash_chip = 0x3ffae270) + [!provide] PROVIDE (hci_le_rd_rem_used_feats_cmd_handler = 0x400417b4) + [!provide] PROVIDE (llcp_length_req_handler = 0x40043808) + [!provide] PROVIDE (llcp_unknown_rsp_handler = 0x40043ba8) + [!provide] PROVIDE (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) + 0x0000000040008fd0 PROVIDE (uartAttach = 0x40008fd0) + 0x00000000400090cc PROVIDE (uart_div_modify = 0x400090cc) + [!provide] PROVIDE (uart_rx_intr_handler = 0x40008f4c) + [!provide] PROVIDE (uart_rx_one_char = 0x400092d0) + [!provide] PROVIDE (uart_rx_one_char_block = 0x400092a4) + [!provide] PROVIDE (uart_rx_readbuff = 0x40009394) + [!provide] PROVIDE (uart_tx_flush = 0x40009258) + [!provide] PROVIDE (uart_tx_one_char = 0x40009200) + [!provide] PROVIDE (uart_tx_one_char2 = 0x4000922c) + 0x0000000040009028 PROVIDE (uart_tx_switch = 0x40009028) + [!provide] PROVIDE (gpio_output_set = 0x40009b24) + 0x0000000040009b5c PROVIDE (gpio_output_set_high = 0x40009b5c) + 0x0000000040009b88 PROVIDE (gpio_input_get = 0x40009b88) + 0x0000000040009b9c PROVIDE (gpio_input_get_high = 0x40009b9c) + 0x0000000040009edc PROVIDE (gpio_matrix_in = 0x40009edc) + 0x0000000040009f0c PROVIDE (gpio_matrix_out = 0x40009f0c) + 0x0000000040009fdc PROVIDE (gpio_pad_select_gpio = 0x40009fdc) + [!provide] PROVIDE (gpio_pad_set_drv = 0x4000a11c) + [!provide] PROVIDE (gpio_pad_pulldown = 0x4000a348) + 0x000000004000a22c PROVIDE (gpio_pad_pullup = 0x4000a22c) + [!provide] PROVIDE (gpio_pad_hold = 0x4000a734) + [!provide] PROVIDE (gpio_pad_unhold = 0x4000a484) + [!provide] PROVIDE (ets_aes_crypt = 0x4005c9b8) + [!provide] PROVIDE (ets_aes_disable = 0x4005c8f8) + [!provide] PROVIDE (ets_aes_enable = 0x4005c8cc) + [!provide] PROVIDE (ets_aes_set_endian = 0x4005c928) + [!provide] PROVIDE (ets_aes_setkey_dec = 0x4005c994) + [!provide] PROVIDE (ets_aes_setkey_enc = 0x4005c97c) + [!provide] PROVIDE (ets_bigint_disable = 0x4005c4e0) + [!provide] PROVIDE (ets_bigint_enable = 0x4005c498) + [!provide] PROVIDE (ets_bigint_mod_mult_getz = 0x4005c818) + [!provide] PROVIDE (ets_bigint_mod_mult_prepare = 0x4005c7b4) + [!provide] PROVIDE (ets_bigint_mod_power_getz = 0x4005c614) + [!provide] PROVIDE (ets_bigint_mod_power_prepare = 0x4005c54c) + [!provide] PROVIDE (ets_bigint_montgomery_mult_getz = 0x4005c7a4) + [!provide] PROVIDE (ets_bigint_montgomery_mult_prepare = 0x4005c6fc) + [!provide] PROVIDE (ets_bigint_mult_getz = 0x4005c6e8) + [!provide] PROVIDE (ets_bigint_mult_prepare = 0x4005c630) + [!provide] PROVIDE (ets_bigint_wait_finish = 0x4005c520) + [!provide] PROVIDE (ets_post = 0x4000673c) + [!provide] PROVIDE (ets_run = 0x400066bc) + [!provide] PROVIDE (ets_set_idle_cb = 0x40006674) + [!provide] PROVIDE (ets_task = 0x40006688) + [!provide] PROVIDE (ets_efuse_get_8M_clock = 0x40008710) + 0x0000000040008658 PROVIDE (ets_efuse_get_spiconfig = 0x40008658) + [!provide] PROVIDE (ets_efuse_program_op = 0x40008628) + [!provide] PROVIDE (ets_efuse_read_op = 0x40008600) + [!provide] PROVIDE (ets_intr_lock = 0x400067b0) + [!provide] PROVIDE (ets_intr_unlock = 0x400067c4) + [!provide] PROVIDE (ets_isr_attach = 0x400067ec) + [!provide] PROVIDE (ets_waiti0 = 0x400067d8) + 0x000000004000681c PROVIDE (intr_matrix_set = 0x4000681c) + [!provide] PROVIDE (check_pos = 0x400068b8) + 0x000000004000689c PROVIDE (ets_set_appcpu_boot_addr = 0x4000689c) + [!provide] PROVIDE (ets_set_startup_callback = 0x4000688c) + [!provide] PROVIDE (ets_set_user_start = 0x4000687c) + [!provide] PROVIDE (ets_unpack_flash_code = 0x40007018) + [!provide] PROVIDE (ets_unpack_flash_code_legacy = 0x4000694c) + [!provide] PROVIDE (rom_main = 0x400076c4) + [!provide] PROVIDE (ets_write_char_uart = 0x40007cf8) + [!provide] PROVIDE (ets_install_putc1 = 0x40007d18) + [!provide] PROVIDE (ets_install_putc2 = 0x40007d38) + 0x0000000040007d28 PROVIDE (ets_install_uart_printf = 0x40007d28) + 0x0000000040007d54 PROVIDE (ets_printf = 0x40007d54) + [!provide] PROVIDE (rtc_boot_control = 0x4000821c) + 0x00000000400081d4 PROVIDE (rtc_get_reset_reason = 0x400081d4) + [!provide] PROVIDE (rtc_get_wakeup_cause = 0x400081f4) + [!provide] PROVIDE (rtc_select_apb_bridge = 0x40008288) + [!provide] PROVIDE (set_rtc_memory_crc = 0x40008208) + [!provide] PROVIDE (software_reset = 0x4000824c) + [!provide] PROVIDE (software_reset_cpu = 0x40008264) + [!provide] PROVIDE (ets_secure_boot_check = 0x4005cb40) + [!provide] PROVIDE (ets_secure_boot_check_finish = 0x4005cc04) + [!provide] PROVIDE (ets_secure_boot_check_start = 0x4005cbcc) + [!provide] PROVIDE (ets_secure_boot_finish = 0x4005ca84) + [!provide] PROVIDE (ets_secure_boot_hash = 0x4005cad4) + [!provide] PROVIDE (ets_secure_boot_obtain = 0x4005cb14) + [!provide] PROVIDE (ets_secure_boot_rd_abstract = 0x4005cba8) + [!provide] PROVIDE (ets_secure_boot_rd_iv = 0x4005cb84) + [!provide] PROVIDE (ets_secure_boot_start = 0x4005ca34) + [!provide] PROVIDE (ets_sha_disable = 0x4005c0a8) + [!provide] PROVIDE (ets_sha_enable = 0x4005c07c) + [!provide] PROVIDE (ets_sha_finish = 0x4005c104) + [!provide] PROVIDE (ets_sha_init = 0x4005c0d4) + [!provide] PROVIDE (ets_sha_update = 0x4005c2a0) + 0x0000000040008534 PROVIDE (ets_delay_us = 0x40008534) + [!provide] PROVIDE (ets_get_cpu_frequency = 0x4000855c) + [!provide] PROVIDE (ets_get_detected_xtal_freq = 0x40008588) + [!provide] PROVIDE (ets_get_xtal_scale = 0x4000856c) + [!provide] 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) + 0x000000004006387c __absvdi2 = 0x4006387c + 0x0000000040063868 __absvsi2 = 0x40063868 + 0x0000000040002590 __adddf3 = 0x40002590 + 0x00000000400020e8 __addsf3 = 0x400020e8 + 0x0000000040002cbc __addvdi3 = 0x40002cbc + 0x0000000040002c98 __addvsi3 = 0x40002c98 + 0x000000004000c818 __ashldi3 = 0x4000c818 + 0x000000004000c830 __ashrdi3 = 0x4000c830 + 0x0000000040064b08 __bswapdi2 = 0x40064b08 + 0x0000000040064ae0 __bswapsi2 = 0x40064ae0 + 0x0000000040064b7c __clrsbdi2 = 0x40064b7c + 0x0000000040064b64 __clrsbsi2 = 0x40064b64 + 0x000000004000ca50 __clzdi2 = 0x4000ca50 + 0x000000004000c7e8 __clzsi2 = 0x4000c7e8 + 0x0000000040063820 __cmpdi2 = 0x40063820 + 0x000000004000ca64 __ctzdi2 = 0x4000ca64 + 0x000000004000c7f0 __ctzsi2 = 0x4000c7f0 + 0x00000000400645a4 __divdc3 = 0x400645a4 + 0x0000000040002954 __divdf3 = 0x40002954 + 0x000000004000ca84 __divdi3 = 0x4000ca84 + 0x000000004000c7b8 __divsi3 = 0x4000c7b8 + 0x00000000400636a8 __eqdf2 = 0x400636a8 + 0x0000000040063374 __eqsf2 = 0x40063374 + 0x0000000040002c34 __extendsfdf2 = 0x40002c34 + 0x000000004000ca2c __ffsdi2 = 0x4000ca2c + 0x000000004000c804 __ffssi2 = 0x4000c804 + 0x0000000040002ac4 __fixdfdi = 0x40002ac4 + 0x0000000040002a78 __fixdfsi = 0x40002a78 + 0x000000004000244c __fixsfdi = 0x4000244c + 0x000000004000240c __fixsfsi = 0x4000240c + 0x0000000040002b30 __fixunsdfsi = 0x40002b30 + 0x0000000040002504 __fixunssfdi = 0x40002504 + 0x00000000400024ac __fixunssfsi = 0x400024ac + 0x000000004000c988 __floatdidf = 0x4000c988 + 0x000000004000c8c0 __floatdisf = 0x4000c8c0 + 0x000000004000c944 __floatsidf = 0x4000c944 + 0x000000004000c870 __floatsisf = 0x4000c870 + 0x000000004000c978 __floatundidf = 0x4000c978 + 0x000000004000c8b0 __floatundisf = 0x4000c8b0 + 0x000000004000c938 __floatunsidf = 0x4000c938 + 0x000000004000c864 __floatunsisf = 0x4000c864 + 0x0000000040064a70 __gcc_bcmp = 0x40064a70 + 0x0000000040063768 __gedf2 = 0x40063768 + 0x000000004006340c __gesf2 = 0x4006340c + 0x00000000400636dc __gtdf2 = 0x400636dc + 0x00000000400633a0 __gtsf2 = 0x400633a0 + 0x0000000040063704 __ledf2 = 0x40063704 + 0x00000000400633c0 __lesf2 = 0x400633c0 + 0x000000004000c84c __lshrdi3 = 0x4000c84c + 0x0000000040063790 __ltdf2 = 0x40063790 + 0x000000004006342c __ltsf2 = 0x4006342c + 0x000000004000cd4c __moddi3 = 0x4000cd4c + 0x000000004000c7c0 __modsi3 = 0x4000c7c0 + 0x0000000040063c90 __muldc3 = 0x40063c90 + 0x000000004006358c __muldf3 = 0x4006358c + 0x000000004000c9fc __muldi3 = 0x4000c9fc + 0x00000000400632c8 __mulsf3 = 0x400632c8 + 0x000000004000c7b0 __mulsi3 = 0x4000c7b0 + 0x0000000040002d78 __mulvdi3 = 0x40002d78 + 0x0000000040002d60 __mulvsi3 = 0x40002d60 + 0x00000000400636a8 __nedf2 = 0x400636a8 + 0x00000000400634a0 __negdf2 = 0x400634a0 + 0x000000004000ca14 __negdi2 = 0x4000ca14 + 0x00000000400020c0 __negsf2 = 0x400020c0 + 0x0000000040002e98 __negvdi2 = 0x40002e98 + 0x0000000040002e78 __negvsi2 = 0x40002e78 + 0x0000000040063374 __nesf2 = 0x40063374 + 0x000000003ff96544 __nsau_data = 0x3ff96544 + 0x0000000040002f3c __paritysi2 = 0x40002f3c + 0x000000003ff96544 __popcount_tab = 0x3ff96544 + 0x0000000040002ef8 __popcountdi2 = 0x40002ef8 + 0x0000000040002ed0 __popcountsi2 = 0x40002ed0 + 0x00000000400638e4 __powidf2 = 0x400638e4 + 0x00000000400026e4 __subdf3 = 0x400026e4 + 0x00000000400021d0 __subsf3 = 0x400021d0 + 0x0000000040002d20 __subvdi3 = 0x40002d20 + 0x0000000040002cf8 __subvsi3 = 0x40002cf8 + 0x0000000040002b90 __truncdfsf2 = 0x40002b90 + 0x0000000040063840 __ucmpdi2 = 0x40063840 + 0x0000000040064bec __udiv_w_sdiv = 0x40064bec + 0x000000004000cff8 __udivdi3 = 0x4000cff8 + 0x0000000040064bf4 __udivmoddi4 = 0x40064bf4 + 0x000000004000c7c8 __udivsi3 = 0x4000c7c8 + 0x000000004000d280 __umoddi3 = 0x4000d280 + 0x000000004000c7d0 __umodsi3 = 0x4000c7d0 + 0x000000004000c7d8 __umulsidi3 = 0x4000c7d8 + 0x00000000400637f4 __unorddf2 = 0x400637f4 + 0x0000000040063478 __unordsf2 = 0x40063478 + 0x000000003ff96354 _ctype_ = 0x3ff96354 + 0x000000003ff96350 __ctype_ptr__ = 0x3ff96350 + 0x000000003ffae0a4 _daylight = 0x3ffae0a4 + 0x000000003ffae0b4 environ = 0x3ffae0b4 + 0x000000003ffae0b0 _global_impure_ptr = 0x3ffae0b0 + 0x000000003ff96530 __mb_cur_max = 0x3ff96530 + 0x000000003ff9609c __month_lengths = 0x3ff9609c + 0x000000003ff96458 __sf_fake_stderr = 0x3ff96458 + 0x000000003ff96498 __sf_fake_stdin = 0x3ff96498 + 0x000000003ff96478 __sf_fake_stdout = 0x3ff96478 + 0x000000003ffae0a0 _timezone = 0x3ffae0a0 + 0x000000003ffae030 _tzname = 0x3ffae030 + 0x000000003ff96540 __wctomb = 0x3ff96540 + 0x0000000040001778 close = 0x40001778 + 0x000000004000178c open = 0x4000178c + 0x00000000400017dc read = 0x400017dc + 0x00000000400017f4 sbrk = 0x400017f4 + 0x0000000040001808 times = 0x40001808 + 0x000000004000181c write = 0x4000181c + 0x0000000040056340 abs = 0x40056340 + 0x0000000040058ef0 __ascii_wctomb = 0x40058ef0 + 0x00000000400566c4 atoi = 0x400566c4 + 0x00000000400566d4 _atoi_r = 0x400566d4 + 0x00000000400566ec atol = 0x400566ec + 0x00000000400566fc _atol_r = 0x400566fc + 0x000000004000c1f4 bzero = 0x4000c1f4 + 0x0000000040001df8 _cleanup = 0x40001df8 + 0x0000000040001d48 _cleanup_r = 0x40001d48 + 0x0000000040000e8c creat = 0x40000e8c + 0x0000000040056348 div = 0x40056348 + 0x000000004000c728 __dummy_lock = 0x4000c728 + 0x000000004000c730 __dummy_lock_try = 0x4000c730 + 0x0000000040001fd4 __env_lock = 0x40001fd4 + 0x0000000040001fe0 __env_unlock = 0x40001fe0 + 0x00000000400020ac fclose = 0x400020ac + 0x0000000040001fec _fclose_r = 0x40001fec + 0x0000000040059394 fflush = 0x40059394 + 0x0000000040059320 _fflush_r = 0x40059320 + 0x0000000040001f44 _findenv_r = 0x40001f44 + 0x0000000040001f1c __fp_lock_all = 0x40001f1c + 0x0000000040001f30 __fp_unlock_all = 0x40001f30 + 0x0000000040058da0 __fputwc = 0x40058da0 + 0x0000000040058ea8 fputwc = 0x40058ea8 + 0x0000000040058e4c _fputwc_r = 0x40058e4c + 0x000000004000c738 _fwalk = 0x4000c738 + 0x000000004000c770 _fwalk_reent = 0x4000c770 + 0x0000000040001fbc _getenv_r = 0x40001fbc + 0x0000000040000f04 isalnum = 0x40000f04 + 0x0000000040000f18 isalpha = 0x40000f18 + 0x000000004000c20c isascii = 0x4000c20c + 0x0000000040000ea0 _isatty_r = 0x40000ea0 + 0x0000000040000f2c isblank = 0x40000f2c + 0x0000000040000f50 iscntrl = 0x40000f50 + 0x0000000040000f64 isdigit = 0x40000f64 + 0x0000000040000f94 isgraph = 0x40000f94 + 0x0000000040000f78 islower = 0x40000f78 + 0x0000000040000fa8 isprint = 0x40000fa8 + 0x0000000040000fc0 ispunct = 0x40000fc0 + 0x0000000040000fd4 isspace = 0x40000fd4 + 0x0000000040000fe8 isupper = 0x40000fe8 + 0x0000000040056678 __itoa = 0x40056678 + 0x00000000400566b4 itoa = 0x400566b4 + 0x0000000040056370 labs = 0x40056370 + 0x0000000040056378 ldiv = 0x40056378 + 0x00000000400562cc longjmp = 0x400562cc + 0x000000004000c220 memccpy = 0x4000c220 + 0x000000004000c244 memchr = 0x4000c244 + 0x000000004000c260 memcmp = 0x4000c260 + 0x000000004000c2c8 memcpy = 0x4000c2c8 + 0x000000004000c3c0 memmove = 0x4000c3c0 + 0x000000004000c400 memrchr = 0x4000c400 + 0x000000004000c44c memset = 0x4000c44c + 0x0000000040056424 qsort = 0x40056424 + 0x0000000040001058 rand = 0x40001058 + 0x00000000400010d4 rand_r = 0x400010d4 + 0x000000004000c498 __sccl = 0x4000c498 + 0x00000000400011b8 __sclose = 0x400011b8 + 0x0000000040001148 __seofread = 0x40001148 + 0x0000000040056268 setjmp = 0x40056268 + 0x00000000400591e0 __sflush_r = 0x400591e0 + 0x0000000040001dc8 __sfmoreglue = 0x40001dc8 + 0x0000000040001e90 __sfp = 0x40001e90 + 0x0000000040001e08 __sfp_lock_acquire = 0x40001e08 + 0x0000000040001e14 __sfp_lock_release = 0x40001e14 + 0x000000004005893c __sfvwrite_r = 0x4005893c + 0x0000000040001e38 __sinit = 0x40001e38 + 0x0000000040001e20 __sinit_lock_acquire = 0x40001e20 + 0x0000000040001e2c __sinit_lock_release = 0x40001e2c + 0x0000000040059108 __smakebuf_r = 0x40059108 + 0x0000000040001004 srand = 0x40001004 + 0x0000000040001118 __sread = 0x40001118 + 0x00000000400593d4 __srefill_r = 0x400593d4 + 0x0000000040001184 __sseek = 0x40001184 + 0x00000000400011cc strcasecmp = 0x400011cc + 0x0000000040001210 strcasestr = 0x40001210 + 0x000000004000c518 strcat = 0x4000c518 + 0x000000004000c53c strchr = 0x4000c53c + 0x0000000040001274 strcmp = 0x40001274 + 0x0000000040001398 strcoll = 0x40001398 + 0x00000000400013ac strcpy = 0x400013ac + 0x000000004000c558 strcspn = 0x4000c558 + 0x000000004000143c strdup = 0x4000143c + 0x0000000040001450 _strdup_r = 0x40001450 + 0x0000000040001470 strlcat = 0x40001470 + 0x000000004000c584 strlcpy = 0x4000c584 + 0x00000000400014c0 strlen = 0x400014c0 + 0x0000000040001524 strlwr = 0x40001524 + 0x0000000040001550 strncasecmp = 0x40001550 + 0x000000004000c5c4 strncat = 0x4000c5c4 + 0x000000004000c5f4 strncmp = 0x4000c5f4 + 0x00000000400015d4 strncpy = 0x400015d4 + 0x00000000400016b0 strndup = 0x400016b0 + 0x00000000400016c4 _strndup_r = 0x400016c4 + 0x000000004000c628 strnlen = 0x4000c628 + 0x0000000040001708 strrchr = 0x40001708 + 0x0000000040001734 strsep = 0x40001734 + 0x000000004000c648 strspn = 0x4000c648 + 0x000000004000c674 strstr = 0x4000c674 + 0x000000004000c6a8 __strtok_r = 0x4000c6a8 + 0x000000004000c70c strtok_r = 0x4000c70c + 0x000000004005681c strtol = 0x4005681c + 0x0000000040056714 _strtol_r = 0x40056714 + 0x000000004005692c strtoul = 0x4005692c + 0x0000000040056834 _strtoul_r = 0x40056834 + 0x000000004000174c strupr = 0x4000174c + 0x0000000040058f3c __submore = 0x40058f3c + 0x0000000040058cb4 __swbuf = 0x40058cb4 + 0x0000000040058bec __swbuf_r = 0x40058bec + 0x0000000040001150 __swrite = 0x40001150 + 0x0000000040058cc8 __swsetup_r = 0x40058cc8 + 0x000000004000c720 toascii = 0x4000c720 + 0x0000000040001868 tolower = 0x40001868 + 0x0000000040001884 toupper = 0x40001884 + 0x00000000400018a0 __tzcalc_limits = 0x400018a0 + 0x0000000040001a04 __tz_lock = 0x40001a04 + 0x0000000040001a10 __tz_unlock = 0x40001a10 + 0x00000000400590f4 ungetc = 0x400590f4 + 0x0000000040058fa0 _ungetc_r = 0x40058fa0 + 0x00000000400561f0 __utoa = 0x400561f0 + 0x0000000040056258 utoa = 0x40056258 + 0x0000000040058920 wcrtomb = 0x40058920 + 0x00000000400588d8 _wcrtomb_r = 0x400588d8 + 0x0000000040058f14 _wctomb_r = 0x40058f14 + 0x000000003ffb2970 _static_data_end = _bss_end + 0x0000000040000000 _heap_end = 0x40000000 + 0x000000003ff80000 _data_seg_org = ORIGIN (rtc_data_seg) + +.rtc.text 0x00000000400c0000 0x0 + 0x00000000400c0000 . = ALIGN (0x4) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.literal EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.text EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.text.*) + *libsoc.a:uart_hal_iram.*(.rtc.literal .rtc.text .rtc.text.*) + *rtc_wake_stub*.*(.literal .text .literal.* .text.*) + 0x00000000400c0000 _rtc_text_end = ABSOLUTE (.) + +.rtc.dummy 0x000000003ff80000 0x0 + 0x000000003ff80000 _rtc_dummy_start = ABSOLUTE (.) + 0x000000003ff80000 _rtc_fast_start = ABSOLUTE (.) + 0x0000000000000000 . = SIZEOF (.rtc.text) + 0x0000000000000000 _rtc_dummy_end = ABSOLUTE (.) + +.rtc.force_fast + 0x000000003ff80000 0x0 + 0x000000003ff80000 . = ALIGN (0x4) + 0x000000003ff80000 _rtc_force_fast_start = ABSOLUTE (.) + *(.rtc.force_fast .rtc.force_fast.*) + 0x000000003ff80000 . = ALIGN (0x4) + 0x000000003ff80000 _rtc_force_fast_end = ABSOLUTE (.) + +.rtc.data 0x0000000050000000 0x0 + 0x0000000050000000 _rtc_data_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.data EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.data.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.rodata EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.rodata.*) + *libsoc.a:uart_hal_iram.*(.rtc.data .rtc.data.* .rtc.rodata .rtc.rodata.*) + *rtc_wake_stub*.*(.data .rodata .data.* .rodata.* .bss .bss.*) + 0x0000000050000000 _rtc_data_end = ABSOLUTE (.) + +.rtc.bss 0x0000000050000000 0x0 + 0x0000000050000000 _rtc_bss_start = ABSOLUTE (.) + *rtc_wake_stub*.*(.bss .bss.*) + *rtc_wake_stub*.*(COMMON) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .rtc.bss) + *libsoc.a:uart_hal_iram.*(.rtc.bss) + 0x0000000050000000 _rtc_bss_end = ABSOLUTE (.) + +.rtc_noinit 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_noinit_start = ABSOLUTE (.) + *(.rtc_noinit .rtc_noinit.*) + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_noinit_end = ABSOLUTE (.) + +.rtc.force_slow + 0x0000000050000000 0x0 + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_slow_start = ABSOLUTE (.) + *(.rtc.force_slow .rtc.force_slow.*) + 0x0000000050000000 . = ALIGN (0x4) + 0x0000000050000000 _rtc_force_slow_end = ABSOLUTE (.) + 0x0000000000000000 _rtc_slow_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_slow_end - _rtc_data_start):(_rtc_force_slow_end - _rtc_force_slow_start) + 0x0000000000000000 _rtc_fast_length = (ORIGIN (rtc_slow_seg) == ORIGIN (rtc_data_location))?(_rtc_force_fast_end - _rtc_fast_start):(_rtc_noinit_end - _rtc_fast_start) + 0x0000000000000000 ASSERT ((_rtc_slow_length <= LENGTH (rtc_slow_seg)), RTC_SLOW segment data does not fit.) + 0x0000000000000000 ASSERT ((_rtc_fast_length <= LENGTH (rtc_data_seg)), RTC_FAST segment data does not fit.) + +.iram0.vectors 0x0000000040080000 0x403 + 0x0000000040080000 _iram_start = ABSOLUTE (.) + 0x0000000040080000 _init_start = ABSOLUTE (.) + 0x0000000000000000 . = 0x0 + *(.WindowVectors.text) + .WindowVectors.text + 0x0000000040080000 0x16a esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080000 _WindowOverflow4 + 0x0000000040080040 _WindowUnderflow4 + 0x0000000040080050 _xt_alloca_exc + 0x0000000040080080 _WindowOverflow8 + 0x00000000400800c0 _WindowUnderflow8 + 0x0000000040080100 _WindowOverflow12 + 0x0000000040080140 _WindowUnderflow12 + 0x0000000000000180 . = 0x180 + *fill* 0x000000004008016a 0x16 + *(.Level2InterruptVector.text) + .Level2InterruptVector.text + 0x0000000040080180 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080180 _Level2Vector + 0x00000000000001c0 . = 0x1c0 + *fill* 0x0000000040080186 0x3a + *(.Level3InterruptVector.text) + .Level3InterruptVector.text + 0x00000000400801c0 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x00000000400801c0 _Level3Vector + 0x0000000000000200 . = 0x200 + *fill* 0x00000000400801c6 0x3a + *(.Level4InterruptVector.text) + .Level4InterruptVector.text + 0x0000000040080200 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080200 _Level4Vector + 0x0000000000000240 . = 0x240 + *fill* 0x0000000040080206 0x3a + *(.Level5InterruptVector.text) + .Level5InterruptVector.text + 0x0000000040080240 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080240 _Level5Vector + 0x0000000000000280 . = 0x280 + *fill* 0x0000000040080246 0x3a + *(.DebugExceptionVector.text) + .DebugExceptionVector.text + 0x0000000040080280 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080280 _DebugExceptionVector + 0x00000000000002c0 . = 0x2c0 + *fill* 0x0000000040080286 0x3a + *(.NMIExceptionVector.text) + .NMIExceptionVector.text + 0x00000000400802c0 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x00000000400802c0 _NMIExceptionVector + 0x0000000000000300 . = 0x300 + *fill* 0x00000000400802c6 0x3a + *(.KernelExceptionVector.text) + .KernelExceptionVector.text + 0x0000000040080300 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080300 _KernelExceptionVector + 0x0000000000000340 . = 0x340 + *fill* 0x0000000040080306 0x3a + *(.UserExceptionVector.text) + .UserExceptionVector.text + 0x0000000040080340 0x6 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040080340 _UserExceptionVector + 0x00000000000003c0 . = 0x3c0 + *fill* 0x0000000040080346 0x7a + *(.DoubleExceptionVector.text) + .DoubleExceptionVector.text + 0x00000000400803c0 0xf esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x00000000400803c0 _DoubleExceptionVector + 0x0000000000000400 . = 0x400 + *fill* 0x00000000400803cf 0x31 + *(.*Vector.literal) + *(.UserEnter.literal) + *(.UserEnter.text) + 0x0000000040080400 . = ALIGN (0x10) + *(.entry.text) + *(.init.literal) + *(.init) + .init 0x0000000040080400 0x3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + 0x0000000040080400 _init + 0x0000000040080403 _init_end = ABSOLUTE (.) + +.iram0.text 0x0000000040080404 0x9429 + 0x0000000040080404 _iram_text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .iram1 EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .iram1.*) + .iram1.1.literal + 0x0000000040080404 0x4 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .iram1.33.literal + 0x0000000040080408 0x50 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0xe4 (size before relaxing) + .iram1.35.literal + 0x0000000040080458 0xc esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x2c (size before relaxing) + .iram1.37.literal + 0x0000000040080464 0x1c esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x38 (size before relaxing) + .iram1.36.literal + 0x0000000040080480 0x60 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x118 (size before relaxing) + .iram1.28.literal + 0x00000000400804e0 0x1c esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x28 (size before relaxing) + .iram1.27.literal + 0x00000000400804fc 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x18 (size before relaxing) + .iram1.29.literal + 0x00000000400804fc 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x4 (size before relaxing) + .iram1.26.literal + 0x00000000400804fc 0x28 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x2c (size before relaxing) + .iram1.27.literal + 0x0000000040080524 0xc esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x2c (size before relaxing) + .iram1.29.literal + 0x0000000040080530 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.32.literal + 0x0000000040080530 0x4 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .iram1.33.literal + 0x0000000040080534 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x4 (size before relaxing) + .iram1.literal + 0x0000000040080534 0x14 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + 0x28 (size before relaxing) + .iram1.22.literal + 0x0000000040080548 0x8 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0xc (size before relaxing) + .iram1.22.literal + 0x0000000040080550 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.24.literal + 0x0000000040080554 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x24 (size before relaxing) + .iram1.25.literal + 0x0000000040080558 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x40 (size before relaxing) + .iram1.26.literal + 0x0000000040080564 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x10 (size before relaxing) + .iram1.27.literal + 0x0000000040080570 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0xc (size before relaxing) + .iram1.32.literal + 0x0000000040080570 0x44 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0xb0 (size before relaxing) + .iram1.24.literal + 0x00000000400805b4 0xc esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x14 (size before relaxing) + .iram1.4.literal + 0x00000000400805c0 0x8 esp-idf/esp32/libesp32.a(clk.c.obj) + .iram1.5.literal + 0x00000000400805c8 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x8 (size before relaxing) + .iram1.7.literal + 0x00000000400805c8 0x4 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x8 (size before relaxing) + .iram1.21.literal + 0x00000000400805cc 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .iram1.22.literal + 0x00000000400805d0 0x20 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x34 (size before relaxing) + .iram1.31.literal + 0x00000000400805f0 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .iram1.28.literal + 0x00000000400805f4 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.25.literal + 0x00000000400805f8 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x18 (size before relaxing) + .iram1.29.literal + 0x0000000040080608 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x10 (size before relaxing) + .iram1.30.literal + 0x0000000040080608 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xc (size before relaxing) + .iram1.33.literal + 0x000000004008060c 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x4 (size before relaxing) + .iram1.24.literal + 0x000000004008060c 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.21.literal + 0x0000000040080614 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .iram1.22.literal + 0x0000000040080624 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x4 (size before relaxing) + .iram1.23.literal + 0x0000000040080624 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x34 (size before relaxing) + .iram1.25.literal + 0x0000000040080634 0x18 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x30 (size before relaxing) + .iram1.22.literal + 0x000000004008064c 0x4 esp-idf/freertos/libfreertos.a(port.c.obj) + .iram1.literal + 0x0000000040080650 0x44 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x68 (size before relaxing) + .iram1.22.literal + 0x0000000040080694 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x1c (size before relaxing) + .iram1.26.literal + 0x0000000040080698 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x34 (size before relaxing) + .iram1.31.literal + 0x00000000400806a4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + .iram1.23.literal + 0x00000000400806a4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.24.literal + 0x00000000400806a4 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.25.literal + 0x00000000400806a4 0x4 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x28 (size before relaxing) + .iram1.27.literal + 0x00000000400806a8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.28.literal + 0x00000000400806a8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.29.literal + 0x00000000400806a8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.30.literal + 0x00000000400806a8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.32.literal + 0x00000000400806a8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.33.literal + 0x00000000400806a8 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4 (size before relaxing) + .iram1.0.literal + 0x00000000400806a8 0x4 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0xc (size before relaxing) + .iram1.23.literal + 0x00000000400806ac 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x18 (size before relaxing) + .iram1.22.literal + 0x00000000400806b8 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .iram1.19.literal + 0x00000000400806b8 0x30 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .iram1.0.literal + 0x00000000400806e8 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x4 (size before relaxing) + .iram1.1.literal + 0x00000000400806e8 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x4 (size before relaxing) + .iram1.2.literal + 0x00000000400806e8 0x4 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.5.literal + 0x00000000400806ec 0x4 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .iram1.0.literal + 0x00000000400806f0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.1.literal + 0x0000000040080700 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.2.literal + 0x0000000040080704 0x3c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x60 (size before relaxing) + .iram1.3.literal + 0x0000000040080740 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .iram1.39.literal + 0x0000000040080758 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.33.literal + 0x0000000040080768 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x20 (size before relaxing) + .iram1.38.literal + 0x0000000040080774 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x30 (size before relaxing) + .iram1.34.literal + 0x000000004008077c 0x2c esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x74 (size before relaxing) + .iram1.35.literal + 0x00000000400807a8 0xc esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x44 (size before relaxing) + .iram1.40.literal + 0x00000000400807b4 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + .iram1.41.literal + 0x00000000400807b4 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x4 (size before relaxing) + .iram1.33.literal + 0x00000000400807b4 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .iram1.23.literal + 0x00000000400807b8 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x24 (size before relaxing) + .iram1.22.literal + 0x00000000400807c4 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xc (size before relaxing) + .iram1.25.literal + 0x00000000400807c8 0x8 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x18 (size before relaxing) + .iram1.21.literal + 0x00000000400807d0 0xc esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3c (size before relaxing) + .iram1.2.literal + 0x00000000400807dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.3.literal + 0x00000000400807dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.4.literal + 0x00000000400807dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.5.literal + 0x00000000400807dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x4 (size before relaxing) + .iram1.11.literal + 0x00000000400807dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x4 (size before relaxing) + .iram1.10.literal + 0x00000000400807dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x30 (size before relaxing) + .iram1.9.literal + 0x00000000400807dc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x18 (size before relaxing) + .iram1.33.literal + 0x00000000400807dc 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x8 (size before relaxing) + .iram1.32.literal + 0x00000000400807e0 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.41.literal + 0x00000000400807ec 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x10 (size before relaxing) + .iram1.38.literal + 0x00000000400807ec 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x10 (size before relaxing) + .iram1.35.literal + 0x00000000400807ec 0x24 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x80 (size before relaxing) + .iram1.34.literal + 0x0000000040080810 0x8 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .iram1.36.literal + 0x0000000040080818 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x34 (size before relaxing) + .iram1.42.literal + 0x0000000040080824 0xc esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x2c (size before relaxing) + .iram1.29.literal + 0x0000000040080830 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .iram1.22.literal + 0x0000000040080834 0x24 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3c (size before relaxing) + .iram1.23.literal + 0x0000000040080858 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x1c (size before relaxing) + .iram1.24.literal + 0x000000004008085c 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.30.literal + 0x0000000040080868 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .iram1.31.literal + 0x0000000040080874 0xc esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x50 (size before relaxing) + .iram1.25.literal + 0x0000000040080880 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x20 (size before relaxing) + .literal 0x0000000040080880 0x4 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .literal.rtc_clk_32k_enable_common + 0x0000000040080884 0x18 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_bbpll_disable + 0x000000004008089c 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_enable + 0x00000000400808a8 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x1c (size before relaxing) + .literal.rtc_clk_32k_enable + 0x00000000400808b0 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_32k_enable_external + 0x00000000400808b8 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_8m_enable + 0x00000000400808b8 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_slow_freq_set + 0x00000000400808c4 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xc (size before relaxing) + .literal.rtc_clk_slow_freq_get + 0x00000000400808c4 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_slow_freq_get_hz + 0x00000000400808c4 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_fast_freq_set + 0x00000000400808d0 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_bbpll_configure + 0x00000000400808d8 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x40 (size before relaxing) + .literal.rtc_clk_xtal_freq_get + 0x00000000400808e8 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_mhz_to_config + 0x00000000400808f0 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4 (size before relaxing) + .literal.rtc_clk_cpu_freq_get_config + 0x00000000400808f0 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x34 (size before relaxing) + .literal.rtc_clk_apb_freq_update + 0x0000000040080900 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .literal.rtc_clk_cpu_freq_to_xtal + 0x0000000040080904 0x8 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x2c (size before relaxing) + .literal.rtc_clk_cpu_freq_set_xtal + 0x000000004008090c 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_pll_mhz + 0x000000004008090c 0xc esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x44 (size before relaxing) + .literal.rtc_clk_cpu_freq_to_8m + 0x0000000040080918 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x28 (size before relaxing) + .literal.rtc_clk_cpu_freq_set_config + 0x000000004008091c 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x30 (size before relaxing) + .literal.rtc_wdt_get_protect_status + 0x000000004008091c 0x8 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.rtc_wdt_protect_off + 0x0000000040080924 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x8 (size before relaxing) + .literal.rtc_wdt_protect_on + 0x0000000040080924 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x4 (size before relaxing) + .literal.rtc_wdt_enable + 0x0000000040080924 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .literal.rtc_wdt_flashboot_mode_enable + 0x0000000040080934 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x4 (size before relaxing) + .literal.rtc_wdt_feed + 0x0000000040080934 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x14 (size before relaxing) + .literal.rtc_wdt_set_time + 0x0000000040080934 0x14 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x20 (size before relaxing) + .literal.rtc_wdt_set_stage + 0x0000000040080948 0x1c esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x24 (size before relaxing) + .literal.rtc_wdt_disable + 0x0000000040080964 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x2c (size before relaxing) + .literal.rtc_wdt_set_length_of_reset_signal + 0x0000000040080964 0x8 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x14 (size before relaxing) + .literal.rtc_wdt_is_on + 0x000000004008096c 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x4 (size before relaxing) + .literal.rtc_init + 0x000000004008096c 0x78 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0xe0 (size before relaxing) + .literal.soc_hal_stall_core + 0x00000000400809e4 0x10 esp-idf/soc/libsoc.a(soc_hal.c.obj) + 0x14 (size before relaxing) + .literal.soc_hal_unstall_core + 0x00000000400809f4 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + 0x10 (size before relaxing) + .literal.rtc_clk_cal_internal + 0x00000000400809f4 0x34 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x70 (size before relaxing) + .literal.rtc_clk_cal + 0x0000000040080a28 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0xc (size before relaxing) + .literal.rtc_time_get + 0x0000000040080a28 0x10 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x18 (size before relaxing) + .literal.rtc_clk_wait_for_slow_cycle + 0x0000000040080a38 0x8 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_hal_configure_host_io_mode + 0x0000000040080a40 0x18 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x4c (size before relaxing) + .literal.spi_flash_hal_common_command + 0x0000000040080a58 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x24 (size before relaxing) + .literal.spi_flash_hal_read + 0x0000000040080a58 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_hal_erase_chip + 0x0000000040080a58 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_hal_erase_sector + 0x0000000040080a58 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_erase_block + 0x0000000040080a5c 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_hal_program_page + 0x0000000040080a5c 0x4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x1c (size before relaxing) + .literal.spi_flash_hal_set_write_protect + 0x0000000040080a60 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_hal_host_idle + 0x0000000040080a60 0x8 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .literal.memspi_host_read_id_hs + 0x0000000040080a68 0x10 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x18 (size before relaxing) + .literal.memspi_host_flush_cache + 0x0000000040080a78 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_gd_probe + 0x0000000040080a78 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .literal.spi_flash_chip_gd_set_io_mode + 0x0000000040080a7c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + .literal.spi_flash_chip_gd_get_io_mode + 0x0000000040080a8c 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 + 0x0000000040080a8c 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_erase_chip + 0x0000000040080a90 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_chip_generic_write_encrypted + 0x0000000040080a94 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .literal.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x0000000040080a98 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 + 0x0000000040080a98 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_get_write_protect + 0x0000000040080a98 0xc esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x10 (size before relaxing) + .literal.spi_flash_chip_generic_wait_idle + 0x0000000040080aa4 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x4 (size before relaxing) + .literal.spi_flash_chip_generic_config_host_io_mode + 0x0000000040080aa4 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_chip_generic_read + 0x0000000040080aa8 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x14 (size before relaxing) + .literal.spi_flash_common_read_status_8b_rdsr2 + 0x0000000040080ab0 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 + 0x0000000040080ab0 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 + 0x0000000040080ab0 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 + 0x0000000040080ab0 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 + 0x0000000040080ab0 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 + 0x0000000040080ab0 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_chip_issi_probe + 0x0000000040080ab0 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 + 0x0000000040080ab4 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 + 0x0000000040080abc 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_write + 0x0000000040080abc 0x0 esp-idf/log/liblog.a(log.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_impl_unlock + 0x0000000040080abc 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x8 (size before relaxing) + .literal.esp_log_timestamp + 0x0000000040080ac0 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1c (size before relaxing) + .literal.esp_log_early_timestamp + 0x0000000040080ac4 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x4 (size before relaxing) + .literal.esp_log_impl_lock_timeout + 0x0000000040080ac4 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0xc (size before relaxing) + .literal.get_prev_free_block + 0x0000000040080ac4 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x28 (size before relaxing) + .literal.split_if_necessary + 0x0000000040080ad4 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x50 (size before relaxing) + .literal.assert_valid_block + 0x0000000040080ae4 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x2c (size before relaxing) + .literal.merge_adjacent + 0x0000000040080ae4 0x8 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x4c (size before relaxing) + .literal.multi_heap_get_allocated_size_impl + 0x0000000040080aec 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x10 (size before relaxing) + .literal.multi_heap_malloc_impl + 0x0000000040080aec 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x28 (size before relaxing) + .literal.multi_heap_free_impl + 0x0000000040080aec 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x50 (size before relaxing) + .literal.multi_heap_realloc_impl + 0x0000000040080aec 0xc esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x68 (size before relaxing) + .literal.prvGetFreeSize + 0x0000000040080af8 0xc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x14 (size before relaxing) + .literal.prvReceiveGeneric + 0x0000000040080b04 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x3c (size before relaxing) + .literal.xRingbufferSend + 0x0000000040080b08 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x40 (size before relaxing) + .literal.xRingbufferReceive + 0x0000000040080b0c 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x18 (size before relaxing) + .literal.vRingbufferReturnItem + 0x0000000040080b10 0x4 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x28 (size before relaxing) + .literal.panicPutChar + 0x0000000040080b14 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panicPutStr + 0x0000000040080b18 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.panicPutHex + 0x0000000040080b18 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.panicPutDec + 0x0000000040080b18 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x10 (size before relaxing) + .literal.illegal_instruction_helper + 0x0000000040080b1c 0x18 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x3c (size before relaxing) + .literal.reconfigureAllWdts + 0x0000000040080b34 0x10 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x2c (size before relaxing) + .literal.putEntry + 0x0000000040080b44 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x18 (size before relaxing) + .literal.invoke_abort + 0x0000000040080b4c 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x8 (size before relaxing) + .literal.haltOtherCore + 0x0000000040080b50 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x4 (size before relaxing) + .literal.doBacktrace + 0x0000000040080b50 0x10 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x60 (size before relaxing) + .literal.commonErrorHandler_dump + 0x0000000040080b60 0x30 esp-idf/esp32/libesp32.a(panic.c.obj) + 0xa8 (size before relaxing) + .literal.esp_panic_dig_reset + 0x0000000040080b90 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x18 (size before relaxing) + .literal.commonErrorHandler + 0x0000000040080b90 0xc esp-idf/esp32/libesp32.a(panic.c.obj) + 0x60 (size before relaxing) + .literal.esp_error_check_failed_print + 0x0000000040080b9c 0x14 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x2c (size before relaxing) + .literal.abort + 0x0000000040080bb0 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x18 (size before relaxing) + .literal.vApplicationStackOverflowHook + 0x0000000040080bb8 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x18 (size before relaxing) + .literal.panicHandler + 0x0000000040080bc0 0x34 esp-idf/esp32/libesp32.a(panic.c.obj) + 0xa8 (size before relaxing) + .literal.xt_unhandled_exception + 0x0000000040080bf4 0x18 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x68 (size before relaxing) + .literal._esp_error_check_failed + 0x0000000040080c0c 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + 0xc (size before relaxing) + .literal.vPortTaskWrapper + 0x0000000040080c10 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x18 (size before relaxing) + .literal.pxPortInitialiseStack + 0x0000000040080c18 0x14 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1c (size before relaxing) + .literal.xPortStartScheduler + 0x0000000040080c2c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x14 (size before relaxing) + .literal.xPortSysTickHandler + 0x0000000040080c2c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.vPortYieldOtherCore + 0x0000000040080c2c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.vPortReleaseTaskMPUSettings + 0x0000000040080c2c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x4 (size before relaxing) + .literal.xPortInIsrContext + 0x0000000040080c2c 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x8 (size before relaxing) + .literal.vPortEnterCritical + 0x0000000040080c2c 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + 0x3c (size before relaxing) + .literal.vPortExitCritical + 0x0000000040080c58 0xc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x30 (size before relaxing) + .literal 0x0000000040080c64 0xc esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x54 (size before relaxing) + .literal 0x0000000040080c70 0x4 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x14 (size before relaxing) + .literal._xt_tick_divisor_init + 0x0000000040080c74 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0xc (size before relaxing) + .literal.xt_unhandled_interrupt + 0x0000000040080c78 0x4 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x8 (size before relaxing) + .literal.xt_set_interrupt_handler + 0x0000000040080c7c 0x8 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0xc (size before relaxing) + .literal.prvIsQueueFull + 0x0000000040080c84 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.prvCopyDataToQueue + 0x0000000040080c84 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvNotifyQueueSetContainer + 0x0000000040080c84 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x34 (size before relaxing) + .literal.prvCopyDataFromQueue + 0x0000000040080c98 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericReset + 0x0000000040080c98 0x10 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x40 (size before relaxing) + .literal.prvInitialiseNewQueue + 0x0000000040080ca8 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4 (size before relaxing) + .literal.xQueueGenericCreate + 0x0000000040080ca8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.xQueueGetMutexHolder + 0x0000000040080cac 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueCreateCountingSemaphore + 0x0000000040080cac 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + .literal.xQueueGenericSend + 0x0000000040080cb0 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x88 (size before relaxing) + .literal.prvInitialiseMutex + 0x0000000040080cb4 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.xQueueCreateMutex + 0x0000000040080cb4 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8 (size before relaxing) + .literal.xQueueGiveMutexRecursive + 0x0000000040080cb4 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.xQueueGenericSendFromISR + 0x0000000040080cb8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3c (size before relaxing) + .literal.xQueueGiveFromISR + 0x0000000040080cbc 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.xQueueGenericReceive + 0x0000000040080cc0 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x78 (size before relaxing) + .literal.xQueueTakeMutexRecursive + 0x0000000040080cc4 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1c (size before relaxing) + .literal.xQueueReceiveFromISR + 0x0000000040080cc8 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x30 (size before relaxing) + .literal.vQueueDelete + 0x0000000040080ccc 0x4 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x18 (size before relaxing) + .literal.vQueueWaitForMessageRestricted + 0x0000000040080cd0 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc (size before relaxing) + .literal.prvResetNextTaskUnblockTime + 0x0000000040080cd0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .literal.prvDeleteTLS + 0x0000000040080cd8 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.prvInitialiseNewTask + 0x0000000040080ce8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.prvInitialiseTaskLists + 0x0000000040080ce8 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.prvDeleteTCB + 0x0000000040080d08 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2c (size before relaxing) + .literal.prvCheckTasksWaitingTermination + 0x0000000040080d10 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x30 (size before relaxing) + .literal.prvAddCurrentTaskToDelayedList + 0x0000000040080d24 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.prvIdleTask + 0x0000000040080d28 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.taskYIELD_OTHER_CORE + 0x0000000040080d28 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.prvAddNewTaskToReadyList + 0x0000000040080d28 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + .literal.xTaskCreatePinnedToCore + 0x0000000040080d3c 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x18 (size before relaxing) + .literal.vTaskStartScheduler + 0x0000000040080d3c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.vTaskSuspendAll + 0x0000000040080d50 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.xTaskGetTickCount + 0x0000000040080d54 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetTickCountFromISR + 0x0000000040080d54 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetIdleTaskHandleForCPU + 0x0000000040080d54 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskIncrementTick + 0x0000000040080d5c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x68 (size before relaxing) + .literal.vTaskSwitchContext + 0x0000000040080d70 0x2c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x74 (size before relaxing) + .literal.vTaskPlaceOnEventList + 0x0000000040080d9c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x40 (size before relaxing) + .literal.vTaskPlaceOnEventListRestricted + 0x0000000040080da4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.xTaskRemoveFromEventList + 0x0000000040080dac 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + .literal.vTaskSetTimeOutState + 0x0000000040080db4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x20 (size before relaxing) + .literal.xTaskCheckForTimeOut + 0x0000000040080dbc 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.xTaskGetCurrentTaskHandle + 0x0000000040080dc8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.uxTaskPriorityGet + 0x0000000040080dc8 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.vTaskPrioritySet + 0x0000000040080dc8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x44 (size before relaxing) + .literal.__getreent + 0x0000000040080dcc 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x8 (size before relaxing) + .literal.pcTaskGetTaskName + 0x0000000040080dcc 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1c (size before relaxing) + .literal.xTaskGetAffinity + 0x0000000040080dd4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetCurrentTaskHandleForCPU + 0x0000000040080dd4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x4 (size before relaxing) + .literal.xTaskGetSchedulerState + 0x0000000040080dd4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xc (size before relaxing) + .literal.vTaskDelete + 0x0000000040080dd4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x60 (size before relaxing) + .literal.vTaskDelay + 0x0000000040080dd8 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x38 (size before relaxing) + .literal.xTaskResumeAll + 0x0000000040080ddc 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x60 (size before relaxing) + .literal.vTaskPriorityInherit + 0x0000000040080de4 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x28 (size before relaxing) + .literal.xTaskPriorityDisinherit + 0x0000000040080de4 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3c (size before relaxing) + .literal.pvTaskIncrementMutexHeldCount + 0x0000000040080dec 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x10 (size before relaxing) + .literal.prvGetNextExpireTime + 0x0000000040080dec 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .literal.prvInsertTimerInActiveList + 0x0000000040080df0 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x10 (size before relaxing) + .literal.prvCheckForValidListAndQueue + 0x0000000040080df4 0x1c esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x44 (size before relaxing) + .literal.xTimerCreateTimerTask + 0x0000000040080e10 0xc esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x2c (size before relaxing) + .literal.xTimerGenericCommand + 0x0000000040080e1c 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x14 (size before relaxing) + .literal.prvSwitchTimerLists + 0x0000000040080e1c 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x28 (size before relaxing) + .literal.prvSampleTimeNow + 0x0000000040080e20 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xc (size before relaxing) + .literal.prvProcessExpiredTimer + 0x0000000040080e24 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x24 (size before relaxing) + .literal.prvProcessTimerOrBlockTask + 0x0000000040080e28 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x24 (size before relaxing) + .literal.prvProcessReceivedCommands + 0x0000000040080e28 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x40 (size before relaxing) + .literal.prvTimerTask + 0x0000000040080e30 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xc (size before relaxing) + .literal.malloc + 0x0000000040080e30 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.realloc + 0x0000000040080e30 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal.free 0x0000000040080e30 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._malloc_r + 0x0000000040080e30 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._free_r + 0x0000000040080e30 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._realloc_r + 0x0000000040080e30 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x4 (size before relaxing) + .literal._calloc_r + 0x0000000040080e30 0x4 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .literal.calloc + 0x0000000040080e34 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x8 (size before relaxing) + .iram1.1 0x0000000040080e34 0x69 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x0000000040080e34 esp_ota_get_app_elf_sha256 + *fill* 0x0000000040080e9d 0x3 + .iram1.33 0x0000000040080ea0 0x119 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x185 (size before relaxing) + 0x0000000040080ea0 start_cpu0 + 0x0000000040080ea0 start_cpu0_default + *fill* 0x0000000040080fb9 0x3 + .iram1.35 0x0000000040080fbc 0x32 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x46 (size before relaxing) + 0x0000000040080fbc start_cpu1_default + 0x0000000040080fbc start_cpu1 + *fill* 0x0000000040080fee 0x2 + .iram1.37 0x0000000040080ff0 0x4a esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x56 (size before relaxing) + *fill* 0x000000004008103a 0x2 + .iram1.36 0x000000004008103c 0x1be esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x216 (size before relaxing) + 0x000000004008103c call_start_cpu0 + *fill* 0x00000000400811fa 0x2 + .iram1.28 0x00000000400811fc 0x54 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x5c (size before relaxing) + .iram1.27 0x0000000040081250 0x44 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x4c (size before relaxing) + .iram1.29 0x0000000040081294 0xf esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x0000000040081294 esp_crosscore_int_send_yield + *fill* 0x00000000400812a3 0x1 + .iram1.26 0x00000000400812a4 0xb6 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x00000000400812a4 esp_dport_access_stall_other_cpu_start + *fill* 0x000000004008135a 0x2 + .iram1.27 0x000000004008135c 0x83 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x000000004008135c esp_dport_access_stall_other_cpu_end + *fill* 0x00000000400813df 0x1 + .iram1.29 0x00000000400813e0 0x14 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x00000000400813e0 esp_dport_access_int_abort + .iram1.32 0x00000000400813f4 0x15 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x00000000400813f4 esp_dport_access_reg_read + *fill* 0x0000000040081409 0x3 + .iram1.33 0x000000004008140c 0xc esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x000000004008140c esp_dport_access_sequence_reg_read + .iram1 0x0000000040081418 0xe6 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + 0x0000000040081418 xt_highint4 + 0x00000000400814fe ld_include_panic_highint_hdl + *fill* 0x00000000400814fe 0x2 + .iram1.22 0x0000000040081500 0x56 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + *fill* 0x0000000040081556 0x2 + .iram1.22 0x0000000040081558 0x39 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x3c (size before relaxing) + *fill* 0x0000000040081591 0x3 + .iram1.24 0x0000000040081594 0xad esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0xb9 (size before relaxing) + 0x0000000040081594 esp_intr_enable + *fill* 0x0000000040081641 0x3 + .iram1.25 0x0000000040081644 0xf7 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x117 (size before relaxing) + 0x0000000040081644 esp_intr_disable + *fill* 0x000000004008173b 0x1 + .iram1.26 0x000000004008173c 0x52 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x000000004008173c esp_intr_noniram_disable + *fill* 0x000000004008178e 0x2 + .iram1.27 0x0000000040081790 0x41 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x0000000040081790 esp_intr_noniram_enable + *fill* 0x00000000400817d1 0x3 + .iram1.32 0x00000000400817d4 0x16f esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0x1bb (size before relaxing) + 0x00000000400817d4 esp_restart_noos + *fill* 0x0000000040081943 0x1 + .iram1.24 0x0000000040081944 0x2c esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x30 (size before relaxing) + 0x0000000040081944 esp_cache_err_get_cpuid + .iram1.4 0x0000000040081970 0x10 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x0000000040081970 esp_clk_cpu_freq + .iram1.5 0x0000000040081980 0x15 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x0000000040081980 esp_clk_apb_freq + *fill* 0x0000000040081995 0x3 + .iram1.7 0x0000000040081998 0xf esp-idf/esp32/libesp32.a(clk.c.obj) + 0x0000000040081998 ets_update_cpu_frequency + *fill* 0x00000000400819a7 0x1 + .iram1.21 0x00000000400819a8 0x2b esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x00000000400819a8 esp_vApplicationTickHook + *fill* 0x00000000400819d3 0x1 + .iram1.22 0x00000000400819d4 0xa0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0xa4 (size before relaxing) + .iram1.31 0x0000000040081a74 0x13 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x0000000040081a87 0x1 + .iram1.28 0x0000000040081a88 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x23 (size before relaxing) + *fill* 0x0000000040081aa4 0x0 + .iram1.25 0x0000000040081aa4 0x86 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x0000000040081b2a 0x2 + .iram1.29 0x0000000040081b2c 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x23 (size before relaxing) + *fill* 0x0000000040081b48 0x0 + .iram1.30 0x0000000040081b48 0x1c esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x20 (size before relaxing) + .iram1.33 0x0000000040081b64 0xf esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x0000000040081b64 esp_timer_get_time + *fill* 0x0000000040081b73 0x1 + .iram1.24 0x0000000040081b74 0x1a esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x0000000040081b8e 0x2 + .iram1.21 0x0000000040081b90 0x51 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x0000000040081b90 esp_timer_impl_get_counter_reg + *fill* 0x0000000040081be1 0x3 + .iram1.22 0x0000000040081be4 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x17 (size before relaxing) + 0x0000000040081be4 esp_timer_impl_get_time + *fill* 0x0000000040081bf8 0x0 + .iram1.23 0x0000000040081bf8 0xe4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0xf7 (size before relaxing) + 0x0000000040081bf8 esp_timer_impl_set_alarm + *fill* 0x0000000040081cdc 0x0 + .iram1.25 0x0000000040081cdc 0x5f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x63 (size before relaxing) + 0x0000000040081cdc esp_timer_private_update_apb_freq + 0x0000000040081cdc esp_timer_impl_update_apb_freq + *fill* 0x0000000040081d3b 0x1 + .iram1.22 0x0000000040081d3c 0x1e esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040081d3c xPortInterruptedFromISRContext + *fill* 0x0000000040081d5a 0x2 + .iram1 0x0000000040081d5c 0x4fc esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x0000000040081d5c _xt_panic + 0x0000000040081e7c _xt_user_exit + 0x0000000040082194 _xt_medint2_exit + 0x0000000040082244 _xt_medint3_exit + .iram1.22 0x0000000040082258 0x34 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x43 (size before relaxing) + *fill* 0x000000004008228c 0x0 + .iram1.26 0x000000004008228c 0x9e esp-idf/newlib/libnewlib.a(locks.c.obj) + 0xba (size before relaxing) + *fill* 0x000000004008232a 0x2 + .iram1.31 0x000000004008232c 0x46 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4e (size before relaxing) + *fill* 0x0000000040082372 0x2 + .iram1.23 0x0000000040082374 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082374 _lock_init + *fill* 0x0000000040082387 0x1 + .iram1.24 0x0000000040082388 0x13 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082388 _lock_init_recursive + *fill* 0x000000004008239b 0x1 + .iram1.25 0x000000004008239c 0x3b esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x4b (size before relaxing) + 0x000000004008239c _lock_close_recursive + 0x000000004008239c _lock_close + *fill* 0x00000000400823d7 0x1 + .iram1.27 0x00000000400823d8 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x00000000400823d8 _lock_acquire + *fill* 0x00000000400823e6 0x2 + .iram1.28 0x00000000400823e8 0xe esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x12 (size before relaxing) + 0x00000000400823e8 _lock_acquire_recursive + *fill* 0x00000000400823f6 0x2 + .iram1.29 0x00000000400823f8 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x00000000400823f8 _lock_try_acquire + .iram1.30 0x0000000040082408 0x10 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14 (size before relaxing) + 0x0000000040082408 _lock_try_acquire_recursive + .iram1.32 0x0000000040082418 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082418 _lock_release + *fill* 0x0000000040082427 0x1 + .iram1.33 0x0000000040082428 0xf esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x0000000040082428 _lock_release_recursive + *fill* 0x0000000040082437 0x1 + .iram1.0 0x0000000040082438 0x37 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x0000000040082438 esp_reent_init + *fill* 0x000000004008246f 0x1 + .iram1.23 0x0000000040082470 0x46 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4a (size before relaxing) + 0x0000000040082470 _gettimeofday_r + *fill* 0x00000000400824b6 0x2 + .iram1.22 0x00000000400824b8 0x29 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2d (size before relaxing) + 0x00000000400824b8 _times_r + *fill* 0x00000000400824e1 0x3 + .iram1.19 0x00000000400824e4 0xa9 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + 0x00000000400824e4 esp_backtrace_get_next_frame + *fill* 0x000000004008258d 0x3 + .iram1.0 0x0000000040082590 0xa esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0xe (size before relaxing) + 0x0000000040082590 esp_cpu_stall + *fill* 0x000000004008259a 0x2 + .iram1.1 0x000000004008259c 0xa esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0xe (size before relaxing) + 0x000000004008259c esp_cpu_unstall + *fill* 0x00000000400825a6 0x2 + .iram1.2 0x00000000400825a8 0x21 esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x00000000400825a8 esp_cpu_reset + *fill* 0x00000000400825c9 0x3 + .iram1.5 0x00000000400825cc 0xe esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x00000000400825cc esp_cpu_in_ocd_debug_mode + *fill* 0x00000000400825da 0x2 + .iram1.0 0x00000000400825dc 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x00000000400825dc bootloader_flash_cs_timing_config + *fill* 0x000000004008264a 0x2 + .iram1.1 0x000000004008264c 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x000000004008264c bootloader_flash_clock_config + *fill* 0x000000004008268a 0x2 + .iram1.2 0x000000004008268c 0x240 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x000000004008268c bootloader_flash_gpio_config + .iram1.3 0x00000000400828cc 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x00000000400828cc bootloader_flash_dummy_config + .iram1.39 0x000000004008297c 0x64 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x6c (size before relaxing) + .iram1.33 0x00000000400829e0 0x46 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x52 (size before relaxing) + 0x00000000400829e0 spi_flash_op_block_func + *fill* 0x0000000040082a26 0x2 + .iram1.38 0x0000000040082a28 0x66 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x6e (size before relaxing) + *fill* 0x0000000040082a8e 0x2 + .iram1.34 0x0000000040082a90 0x103 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x12f (size before relaxing) + 0x0000000040082a90 spi_flash_disable_interrupts_caches_and_other_cpu + *fill* 0x0000000040082b93 0x1 + .iram1.35 0x0000000040082b94 0x9e esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0xa9 (size before relaxing) + 0x0000000040082b94 spi_flash_enable_interrupts_caches_and_other_cpu + *fill* 0x0000000040082c32 0x2 + .iram1.40 0x0000000040082c34 0x25 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x29 (size before relaxing) + 0x0000000040082c34 spi_flash_cache_enabled + *fill* 0x0000000040082c59 0x3 + .iram1.41 0x0000000040082c5c 0xf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x0000000040082c5c spi_flash_enable_cache + *fill* 0x0000000040082c6b 0x1 + .iram1.33 0x0000000040082c6c 0xa esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x0000000040082c6c spi_flash_guard_set + *fill* 0x0000000040082c76 0x2 + .iram1.23 0x0000000040082c78 0x78 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x84 (size before relaxing) + .iram1.22 0x0000000040082cf0 0x36 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x3e (size before relaxing) + 0x0000000040082cf0 esp_flash_read_chip_id + *fill* 0x0000000040082d26 0x2 + .iram1.25 0x0000000040082d28 0x70 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x7c (size before relaxing) + 0x0000000040082d28 esp_flash_get_size + .iram1.21 0x0000000040082d98 0xde esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0xfa (size before relaxing) + 0x0000000040082d98 esp_flash_init + *fill* 0x0000000040082e76 0x2 + .iram1.2 0x0000000040082e78 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.3 0x0000000040082e88 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .iram1.4 0x0000000040082e98 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040082eb5 0x3 + .iram1.5 0x0000000040082eb8 0x1e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + *fill* 0x0000000040082ed6 0x2 + .iram1.11 0x0000000040082ed8 0x1d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + *fill* 0x0000000040082ef5 0x3 + .iram1.10 0x0000000040082ef8 0x3f esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x57 (size before relaxing) + *fill* 0x0000000040082f37 0x1 + .iram1.9 0x0000000040082f38 0x23 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x2f (size before relaxing) + *fill* 0x0000000040082f5b 0x1 + .iram1.33 0x0000000040082f5c 0x25 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x0000000040082f81 0x3 + .iram1.32 0x0000000040082f84 0x84 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x8c (size before relaxing) + .iram1.41 0x0000000040083008 0x64 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .iram1.38 0x000000004008306c 0x1a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x22 (size before relaxing) + *fill* 0x0000000040083086 0x2 + .iram1.35 0x0000000040083088 0x22e esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x256 (size before relaxing) + 0x0000000040083088 spi_flash_mmap_pages + *fill* 0x00000000400832b6 0x2 + .iram1.34 0x00000000400832b8 0x75 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x79 (size before relaxing) + 0x00000000400832b8 spi_flash_mmap + *fill* 0x000000004008332d 0x3 + .iram1.36 0x0000000040083330 0x9f esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0xa6 (size before relaxing) + 0x0000000040083330 spi_flash_munmap + *fill* 0x00000000400833cf 0x1 + .iram1.42 0x00000000400833d0 0x6b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x77 (size before relaxing) + 0x00000000400833d0 spi_flash_check_and_flush_cache + *fill* 0x000000004008343b 0x1 + .iram1.29 0x000000004008343c 0x23 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000004008345f 0x1 + .iram1.22 0x0000000040083460 0x75 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x81 (size before relaxing) + *fill* 0x00000000400834d5 0x3 + .iram1.23 0x00000000400834d8 0xac esp-idf/heap/libheap.a(heap_caps.c.obj) + 0xb0 (size before relaxing) + 0x00000000400834d8 heap_caps_malloc + .iram1.24 0x0000000040083584 0x41 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x49 (size before relaxing) + 0x0000000040083584 heap_caps_malloc_default + *fill* 0x00000000400835c5 0x3 + .iram1.30 0x00000000400835c8 0x37 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x3e (size before relaxing) + 0x00000000400835c8 heap_caps_free + *fill* 0x00000000400835ff 0x1 + .iram1.31 0x0000000040083600 0x10a esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x12a (size before relaxing) + 0x0000000040083600 heap_caps_realloc + *fill* 0x000000004008370a 0x2 + .iram1.25 0x000000004008370c 0x5e esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x62 (size before relaxing) + 0x000000004008370c heap_caps_realloc_default + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x0 + *fill* 0x000000004008376a 0x2 + .iram1 0x000000004008376c 0x2e esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x000000004008376c xt_debugexception + 0x000000004008378c xt_highint5 + 0x0000000040083794 _xt_nmi + 0x0000000040083794 xt_nmi + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x0 + *fill* 0x000000004008379a 0x2 + .iram1.19 0x000000004008379c 0x20 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .iram1.20 0x00000000400837bc 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *fill* 0x00000000400837d4 0x0 + *libxtensa.a:eri.*(.literal .literal.* .text .text.*) + *libxtensa.a:stdatomic.*(.literal .literal.* .text .text.*) + *libhal.a:(.literal .literal.* .text .text.*) + .text 0x00000000400837d4 0x137 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + 0x00000000400837d4 xthal_window_spill_nw + 0x00000000400837d4 xthal_spill_registers_into_stack_nw + 0x00000000400838e8 xthal_window_spill + *fill* 0x000000004008390b 0x0 + *fill* 0x000000004008390b 0x1 + .text 0x000000004008390c 0x8 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + 0x000000004008390c xthal_set_intclear + .text 0x0000000040083914 0x3e /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + 0x0000000040083914 xthal_restore_extra_nw + *fill* 0x0000000040083952 0x2 + .text 0x0000000040083954 0x3e /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + 0x0000000040083954 xthal_save_extra_nw + *libsoc.a:spi_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:spi_slave_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:lldesc.*(.literal .literal.* .text .text.*) + *libsoc.a:cpu_util.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_clk.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040083992 0x2 + .text.rtc_clk_32k_enable_common + 0x0000000040083994 0x88 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .text.rtc_clk_bbpll_disable + 0x0000000040083a1c 0x3e esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x0000000040083a5a 0x2 + .text.rtc_clk_bbpll_enable + 0x0000000040083a5c 0x66 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x0000000040083ac2 0x2 + .text.rtc_clk_32k_enable + 0x0000000040083ac4 0x3d esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040083ac4 rtc_clk_32k_enable + *fill* 0x0000000040083b01 0x3 + .text.rtc_clk_32k_enable_external + 0x0000000040083b04 0xe esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x12 (size before relaxing) + 0x0000000040083b04 rtc_clk_32k_enable_external + *fill* 0x0000000040083b12 0x2 + .text.rtc_clk_8m_enable + 0x0000000040083b14 0x9c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040083b14 rtc_clk_8m_enable + .text.rtc_clk_slow_freq_set + 0x0000000040083bb0 0x48 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040083bb0 rtc_clk_slow_freq_set + .text.rtc_clk_slow_freq_get + 0x0000000040083bf8 0x10 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040083bf8 rtc_clk_slow_freq_get + .text.rtc_clk_slow_freq_get_hz + 0x0000000040083c08 0x29 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x2d (size before relaxing) + 0x0000000040083c08 rtc_clk_slow_freq_get_hz + *fill* 0x0000000040083c31 0x3 + .text.rtc_clk_fast_freq_set + 0x0000000040083c34 0x2c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040083c34 rtc_clk_fast_freq_set + .text.rtc_clk_bbpll_configure + 0x0000000040083c60 0x19d esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x1a1 (size before relaxing) + 0x0000000040083c60 rtc_clk_bbpll_configure + *fill* 0x0000000040083dfd 0x3 + .text.rtc_clk_xtal_freq_get + 0x0000000040083e00 0x36 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040083e00 rtc_get_xtal + 0x0000000040083e00 rtc_clk_xtal_freq_get + *fill* 0x0000000040083e36 0x2 + .text.rtc_clk_cpu_freq_mhz_to_config + 0x0000000040083e38 0x64 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040083e38 rtc_clk_cpu_freq_mhz_to_config + .text.rtc_clk_cpu_freq_get_config + 0x0000000040083e9c 0xa6 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xb6 (size before relaxing) + 0x0000000040083e9c rtc_clk_cpu_freq_get_config + *fill* 0x0000000040083f42 0x2 + .text.rtc_clk_apb_freq_update + 0x0000000040083f44 0x19 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x0000000040083f44 rtc_clk_apb_freq_update + *fill* 0x0000000040083f5d 0x3 + .text.rtc_clk_cpu_freq_to_xtal + 0x0000000040083f60 0x87 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x8b (size before relaxing) + 0x0000000040083f60 rtc_clk_cpu_freq_to_xtal + *fill* 0x0000000040083fe7 0x1 + .text.rtc_clk_cpu_freq_set_xtal + 0x0000000040083fe8 0x13 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x1f (size before relaxing) + 0x0000000040083fe8 rtc_clk_cpu_freq_set_xtal + *fill* 0x0000000040083ffb 0x1 + .text.rtc_clk_cpu_freq_to_pll_mhz + 0x0000000040083ffc 0x9c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0xa8 (size before relaxing) + .text.rtc_clk_cpu_freq_to_8m + 0x0000000040084098 0x58 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x5c (size before relaxing) + .text.rtc_clk_cpu_freq_set_config + 0x00000000400840f0 0x5c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x77 (size before relaxing) + 0x00000000400840f0 rtc_clk_cpu_freq_set_config + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *fill* 0x000000004008414c 0x0 + *libsoc.a:cpu_hal.*(.literal .literal.* .text .text.*) + *fill* 0x000000004008414c 0x0 + .text.cpu_hal_set_vecbase + 0x000000004008414c 0x8 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + 0x000000004008414c cpu_hal_set_vecbase + *libsoc.a:rtc_wdt.*(.literal .literal.* .text .text.*) + .text.rtc_wdt_get_protect_status + 0x0000000040084154 0x1b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040084154 rtc_wdt_get_protect_status + *fill* 0x000000004008416f 0x1 + .text.rtc_wdt_protect_off + 0x0000000040084170 0x10 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040084170 rtc_wdt_protect_off + .text.rtc_wdt_protect_on + 0x0000000040084180 0xf esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040084180 rtc_wdt_protect_on + *fill* 0x000000004008418f 0x1 + .text.rtc_wdt_enable + 0x0000000040084190 0x2b esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040084190 rtc_wdt_enable + *fill* 0x00000000400841bb 0x1 + .text.rtc_wdt_flashboot_mode_enable + 0x00000000400841bc 0x18 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x00000000400841bc rtc_wdt_flashboot_mode_enable + .text.rtc_wdt_feed + 0x00000000400841d4 0x2a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x32 (size before relaxing) + 0x00000000400841d4 rtc_wdt_feed + *fill* 0x00000000400841fe 0x2 + .text.rtc_wdt_set_time + 0x0000000040084200 0x61 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040084200 rtc_wdt_set_time + *fill* 0x0000000040084261 0x3 + .text.rtc_wdt_set_stage + 0x0000000040084264 0xc1 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040084264 rtc_wdt_set_stage + *fill* 0x0000000040084325 0x3 + .text.rtc_wdt_disable + 0x0000000040084328 0x6a esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x7e (size before relaxing) + 0x0000000040084328 rtc_wdt_disable + *fill* 0x0000000040084392 0x2 + .text.rtc_wdt_set_length_of_reset_signal + 0x0000000040084394 0x71 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040084394 rtc_wdt_set_length_of_reset_signal + *fill* 0x0000000040084405 0x3 + .text.rtc_wdt_is_on + 0x0000000040084408 0x28 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x0000000040084408 rtc_wdt_is_on + *fill* 0x0000000040084430 0x0 + *fill* 0x0000000040084430 0x0 + *fill* 0x0000000040084430 0x0 + *fill* 0x0000000040084430 0x0 + *fill* 0x0000000040084430 0x0 + *fill* 0x0000000040084430 0x0 + *fill* 0x0000000040084430 0x0 + *fill* 0x0000000040084430 0x0 + *libsoc.a:rtc_init.*(.literal .literal.* .text .text.*) + .text.rtc_init + 0x0000000040084430 0x344 esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x368 (size before relaxing) + 0x0000000040084430 rtc_init + *libsoc.a:rtc_sleep.*(.literal .literal.* .text .text.*) + *libsoc.a:i2c_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:soc_hal.*(.literal .literal.* .text .text.*) + .text.soc_hal_stall_core + 0x0000000040084774 0x8e esp-idf/soc/libsoc.a(soc_hal.c.obj) + 0x0000000040084774 soc_hal_stall_core + *fill* 0x0000000040084802 0x2 + .text.soc_hal_unstall_core + 0x0000000040084804 0x4c esp-idf/soc/libsoc.a(soc_hal.c.obj) + 0x0000000040084804 soc_hal_unstall_core + *fill* 0x0000000040084850 0x0 + *libsoc.a:rtc_periph.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_pm.*(.literal .literal.* .text .text.*) + *libsoc.a:spi_flash_hal_gpspi.*(.literal .literal.* .text .text.*) + *libsoc.a:uart_hal_iram.*(.iram1 .iram1.*) + *libsoc.a:rtc_time.*(.literal .literal.* .text .text.*) + .text.rtc_clk_cal_internal + 0x0000000040084850 0x1d0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x1dc (size before relaxing) + .text.rtc_clk_cal + 0x0000000040084a20 0x4e esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x52 (size before relaxing) + 0x0000000040084a20 rtc_clk_cal + *fill* 0x0000000040084a6e 0x2 + .text.rtc_time_get + 0x0000000040084a70 0x50 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x0000000040084a70 rtc_time_get + .text.rtc_clk_wait_for_slow_cycle + 0x0000000040084ac0 0x79 esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x0000000040084ac0 rtc_clk_wait_for_slow_cycle + *fill* 0x0000000040084b39 0x0 + *libsoc.a:ledc_hal_iram.*(.literal .literal.* .text .text.*) + *libsoc.a:rtc_clk_init.*(.literal .literal.* .text .text.*) + *libsoc.a:spi_flash_hal_iram.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040084b39 0x3 + .text.spi_flash_hal_configure_host_io_mode + 0x0000000040084b3c 0x1b4 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040084b3c spi_flash_hal_configure_host_io_mode + .text.spi_flash_hal_common_command + 0x0000000040084cf0 0x1c3 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040084cf0 spi_flash_hal_common_command + *fill* 0x0000000040084eb3 0x1 + .text.spi_flash_hal_read + 0x0000000040084eb4 0xf3 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040084eb4 spi_flash_hal_read + *fill* 0x0000000040084fa7 0x1 + .text.spi_flash_hal_erase_chip + 0x0000000040084fa8 0x22 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040084fa8 spi_flash_hal_erase_chip + *fill* 0x0000000040084fca 0x2 + .text.spi_flash_hal_erase_sector + 0x0000000040084fcc 0x5a esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040084fcc spi_flash_hal_erase_sector + *fill* 0x0000000040085026 0x2 + .text.spi_flash_hal_erase_block + 0x0000000040085028 0x52 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040085028 spi_flash_hal_erase_block + *fill* 0x000000004008507a 0x2 + .text.spi_flash_hal_program_page + 0x000000004008507c 0xa7 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x000000004008507c spi_flash_hal_program_page + *fill* 0x0000000040085123 0x1 + .text.spi_flash_hal_set_write_protect + 0x0000000040085124 0x40 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040085124 spi_flash_hal_set_write_protect + .text.spi_flash_hal_host_idle + 0x0000000040085164 0x3a esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x0000000040085164 spi_flash_hal_host_idle + *fill* 0x000000004008519e 0x2 + .text.spi_flash_hal_poll_cmd_done + 0x00000000400851a0 0x11 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400851a0 spi_flash_hal_poll_cmd_done + *fill* 0x00000000400851b1 0x3 + .text.spi_flash_hal_device_config + 0x00000000400851b4 0x74 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x00000000400851b4 spi_flash_hal_device_config + *fill* 0x0000000040085228 0x0 + *fill* 0x0000000040085228 0x0 + *fill* 0x0000000040085228 0x0 + *fill* 0x0000000040085228 0x0 + *fill* 0x0000000040085228 0x0 + *fill* 0x0000000040085228 0x0 + *libesp_event.a:esp_event.*(.literal.esp_event_isr_post_to .text.esp_event_isr_post_to) + *libesp_event.a:default_event_loop.*(.literal.esp_event_isr_post .text.esp_event_isr_post) + *libspi_flash.a:memspi_host_driver.*(.literal .literal.* .text .text.*) + .text.memspi_host_read_id_hs + 0x0000000040085228 0x79 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x7d (size before relaxing) + 0x0000000040085228 memspi_host_read_id_hs + *fill* 0x00000000400852a1 0x3 + .text.memspi_host_flush_cache + 0x00000000400852a4 0x18 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x1c (size before relaxing) + 0x00000000400852a4 memspi_host_flush_cache + *fill* 0x00000000400852bc 0x0 + .text.memspi_host_read_status_hs + 0x00000000400852bc 0x2d esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x00000000400852bc memspi_host_read_status_hs + *fill* 0x00000000400852e9 0x0 + *fill* 0x00000000400852e9 0x0 + *libspi_flash.a:spi_flash_chip_gd.*(.literal .literal.* .text .text.*) + *fill* 0x00000000400852e9 0x3 + .text.spi_flash_chip_gd_probe + 0x00000000400852ec 0x41 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x00000000400852ec spi_flash_chip_gd_probe + *fill* 0x000000004008532d 0x3 + .text.spi_flash_chip_gd_set_io_mode + 0x0000000040085330 0x44 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x0000000040085330 spi_flash_chip_gd_set_io_mode + .text.spi_flash_chip_gd_get_io_mode + 0x0000000040085374 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x20 (size before relaxing) + 0x0000000040085374 spi_flash_chip_gd_get_io_mode + *fill* 0x0000000040085390 0x0 + *libspi_flash.a:spi_flash_chip_generic.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_generic_detect_size + 0x0000000040085390 0x25 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040085390 spi_flash_chip_generic_detect_size + *fill* 0x00000000400853b5 0x3 + .text.spi_flash_chip_generic_erase_chip + 0x00000000400853b8 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400853b8 spi_flash_chip_generic_erase_chip + .text.spi_flash_chip_generic_write_encrypted + 0x0000000040085400 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040085400 spi_flash_chip_generic_write_encrypted + .text.spi_flash_common_read_status_16b_rdsr_rdsr2 + 0x0000000040085408 0x34 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x0000000040085408 spi_flash_common_read_status_16b_rdsr_rdsr2 + .text.spi_flash_common_write_status_16b_wrsr + 0x000000004008543c 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004008543c spi_flash_common_write_status_16b_wrsr + *fill* 0x0000000040085451 0x3 + .text.spi_flash_chip_generic_get_write_protect + 0x0000000040085454 0x35 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x38 (size before relaxing) + 0x0000000040085454 spi_flash_chip_generic_get_write_protect + *fill* 0x0000000040085489 0x3 + .text.spi_flash_chip_generic_wait_idle + 0x000000004008548c 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x5c (size before relaxing) + 0x000000004008548c spi_flash_chip_generic_wait_idle + .text.spi_flash_chip_generic_config_host_io_mode + 0x00000000400854e4 0x5e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400854e4 spi_flash_chip_generic_config_host_io_mode + *fill* 0x0000000040085542 0x2 + .text.spi_flash_chip_generic_read + 0x0000000040085544 0x5d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x65 (size before relaxing) + 0x0000000040085544 spi_flash_chip_generic_read + *fill* 0x00000000400855a1 0x3 + .text.spi_flash_common_read_status_8b_rdsr2 + 0x00000000400855a4 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400855a4 spi_flash_common_read_status_8b_rdsr2 + *fill* 0x00000000400855b9 0x3 + .text.spi_flash_chip_generic_get_io_mode + 0x00000000400855bc 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x20 (size before relaxing) + 0x00000000400855bc spi_flash_chip_generic_get_io_mode + .text.spi_flash_common_read_status_8b_rdsr + 0x00000000400855d8 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400855d8 spi_flash_common_read_status_8b_rdsr + *fill* 0x00000000400855ed 0x3 + .text.spi_flash_common_write_status_8b_wrsr + 0x00000000400855f0 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400855f0 spi_flash_common_write_status_8b_wrsr + *fill* 0x0000000040085605 0x3 + .text.spi_flash_common_write_status_8b_wrsr2 + 0x0000000040085608 0x15 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040085608 spi_flash_common_write_status_8b_wrsr2 + *fill* 0x000000004008561d 0x3 + .text.spi_flash_chip_generic_set_io_mode + 0x0000000040085620 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040085620 spi_flash_chip_generic_set_io_mode + .text.spi_flash_chip_generic_probe + 0x0000000040085638 0x7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040085638 spi_flash_chip_generic_probe + *fill* 0x000000004008563f 0x1 + .text.spi_flash_chip_generic_reset + 0x0000000040085640 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040085640 spi_flash_chip_generic_reset + *fill* 0x000000004008568c 0x0 + .text.spi_flash_chip_generic_erase_sector + 0x000000004008568c 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000004008568c spi_flash_chip_generic_erase_sector + .text.spi_flash_chip_generic_erase_block + 0x00000000400856d8 0x4c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400856d8 spi_flash_chip_generic_erase_block + .text.spi_flash_chip_generic_page_program + 0x0000000040085724 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040085724 spi_flash_chip_generic_page_program + *fill* 0x0000000040085755 0x3 + .text.spi_flash_chip_generic_write + 0x0000000040085758 0x7a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040085758 spi_flash_chip_generic_write + *fill* 0x00000000400857d2 0x2 + .text.spi_flash_chip_generic_set_write_protect + 0x00000000400857d4 0x3b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400857d4 spi_flash_chip_generic_set_write_protect + *fill* 0x000000004008580f 0x1 + .text.spi_flash_common_read_qe_sr + 0x0000000040085810 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x0000000040085839 0x3 + .text.spi_flash_common_write_qe_sr + 0x000000004008583c 0x31 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000004008586d 0x0 + *fill* 0x000000004008586d 0x3 + .text.spi_flash_generic_wait_host_idle + 0x0000000040085870 0x3a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x0000000040085870 spi_flash_generic_wait_host_idle + *fill* 0x00000000400858aa 0x0 + *fill* 0x00000000400858aa 0x0 + *fill* 0x00000000400858aa 0x0 + *fill* 0x00000000400858aa 0x0 + *fill* 0x00000000400858aa 0x0 + *fill* 0x00000000400858aa 0x0 + *fill* 0x00000000400858aa 0x2 + .text.spi_flash_common_set_io_mode + 0x00000000400858ac 0x78 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x00000000400858ac spi_flash_common_set_io_mode + *libspi_flash.a:spi_flash_chip_issi.*(.literal .literal.* .text .text.*) + .text.spi_flash_chip_issi_probe + 0x0000000040085924 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x0000000040085924 spi_flash_chip_issi_probe + *fill* 0x000000004008594d 0x3 + .text.spi_flash_chip_issi_set_io_mode + 0x0000000040085950 0x14 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x18 (size before relaxing) + 0x0000000040085950 spi_flash_chip_issi_set_io_mode + .text.spi_flash_chip_issi_get_io_mode + 0x0000000040085964 0x1c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x20 (size before relaxing) + 0x0000000040085964 spi_flash_chip_issi_get_io_mode + *fill* 0x0000000040085980 0x0 + *libspi_flash.a:spi_flash_rom_patch.*(.literal .literal.* .text .text.*) + *librtc.a:(.literal .literal.* .text .text.*) + *libpp.a:(.wifi0iram .wifi0iram.*) + *libpp.a:(.wifirxiram .wifirxiram.*) + *libnet80211.a:(.wifi0iram .wifi0iram.*) + *libnet80211.a:(.wifirxiram .wifirxiram.*) + *liblog.a:log.*(.literal.esp_log_write .text.esp_log_write) + .text.esp_log_write + 0x0000000040085980 0x22 esp-idf/log/liblog.a(log.c.obj) + 0x26 (size before relaxing) + 0x0000000040085980 esp_log_write + *liblog.a:log_freertos.*(.literal.esp_log_impl_unlock .text.esp_log_impl_unlock) + *fill* 0x00000000400859a2 0x2 + .text.esp_log_impl_unlock + 0x00000000400859a4 0x16 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x00000000400859a4 esp_log_impl_unlock + *fill* 0x00000000400859ba 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_timestamp .text.esp_log_timestamp) + *fill* 0x00000000400859ba 0x2 + .text.esp_log_timestamp + 0x00000000400859bc 0x4f esp-idf/log/liblog.a(log_freertos.c.obj) + 0x5b (size before relaxing) + 0x00000000400859bc esp_log_timestamp + *fill* 0x0000000040085a0b 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_early_timestamp .text.esp_log_early_timestamp) + *fill* 0x0000000040085a0b 0x1 + .text.esp_log_early_timestamp + 0x0000000040085a0c 0x1e esp-idf/log/liblog.a(log_freertos.c.obj) + 0x0000000040085a0c esp_log_early_timestamp + *fill* 0x0000000040085a2a 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock .text.esp_log_impl_lock) + *liblog.a:log_freertos.*(.literal.esp_log_impl_lock_timeout .text.esp_log_impl_lock_timeout) + *fill* 0x0000000040085a2a 0x2 + .text.esp_log_impl_lock_timeout + 0x0000000040085a2c 0x31 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x35 (size before relaxing) + 0x0000000040085a2c esp_log_impl_lock_timeout + *fill* 0x0000000040085a5d 0x0 + *libheap.a:multi_heap.*(.literal .literal.* .text .text.*) + *fill* 0x0000000040085a5d 0x3 + .text.get_prev_free_block + 0x0000000040085a60 0x6b esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x7a (size before relaxing) + *fill* 0x0000000040085acb 0x1 + .text.split_if_necessary + 0x0000000040085acc 0x12f esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x143 (size before relaxing) + *fill* 0x0000000040085bfb 0x1 + .text.assert_valid_block + 0x0000000040085bfc 0xac esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xb4 (size before relaxing) + .text.merge_adjacent + 0x0000000040085ca8 0x11e esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x132 (size before relaxing) + *fill* 0x0000000040085dc6 0x2 + .text.multi_heap_get_allocated_size_impl + 0x0000000040085dc8 0x39 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x3d (size before relaxing) + 0x0000000040085dc8 multi_heap_get_allocated_size + 0x0000000040085dc8 multi_heap_get_allocated_size_impl + *fill* 0x0000000040085e01 0x3 + .text.multi_heap_malloc_impl + 0x0000000040085e04 0x119 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x129 (size before relaxing) + 0x0000000040085e04 multi_heap_malloc + 0x0000000040085e04 multi_heap_malloc_impl + *fill* 0x0000000040085f1d 0x3 + .text.multi_heap_free_impl + 0x0000000040085f20 0x138 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x154 (size before relaxing) + 0x0000000040085f20 multi_heap_free + 0x0000000040085f20 multi_heap_free_impl + .text.multi_heap_realloc_impl + 0x0000000040086058 0x23c esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x254 (size before relaxing) + 0x0000000040086058 multi_heap_realloc + 0x0000000040086058 multi_heap_realloc_impl + *fill* 0x0000000040086294 0x0 + *fill* 0x0000000040086294 0x0 + *fill* 0x0000000040086294 0x0 + *fill* 0x0000000040086294 0x0 + *fill* 0x0000000040086294 0x0 + .text.multi_heap_register_impl + 0x0000000040086294 0x60 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x0000000040086294 multi_heap_register_impl + 0x0000000040086294 multi_heap_register + .text.multi_heap_set_lock + 0x00000000400862f4 0x7 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x00000000400862f4 multi_heap_set_lock + *fill* 0x00000000400862fb 0x0 + *fill* 0x00000000400862fb 0x0 + *libheap.a:multi_heap_poisoning.*(.literal .literal.* .text .text.*) + *libesp_ringbuf.a:(.literal .literal.* .text .text.*) + *fill* 0x00000000400862fb 0x1 + .text.prvGetFreeSize + 0x00000000400862fc 0x3a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x3e (size before relaxing) + *fill* 0x0000000040086336 0x2 + .text.prvReceiveGeneric + 0x0000000040086338 0x12c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x13c (size before relaxing) + .text.xRingbufferSend + 0x0000000040086464 0x100 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x114 (size before relaxing) + 0x0000000040086464 xRingbufferSend + .text.xRingbufferReceive + 0x0000000040086564 0x46 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x0000000040086564 xRingbufferReceive + *fill* 0x00000000400865aa 0x2 + .text.vRingbufferReturnItem + 0x00000000400865ac 0x5a esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x66 (size before relaxing) + 0x00000000400865ac vRingbufferReturnItem + *fill* 0x0000000040086606 0x2 + .text.prvCheckItemAvail + 0x0000000040086608 0x38 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x0000000040086640 0x0 + *fill* 0x0000000040086640 0x0 + *libesp32.a:panic.*(.literal .literal.* .text .text.*) + .text.panicPutChar + 0x0000000040086640 0x1e esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000004008665e 0x2 + .text.panicPutStr + 0x0000000040086660 0x1a esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000004008667a 0x2 + .text.panicPutHex + 0x000000004008667c 0x2c esp-idf/esp32/libesp32.a(panic.c.obj) + 0x2f (size before relaxing) + *fill* 0x00000000400866a8 0x0 + .text.panicPutDec + 0x00000000400866a8 0x40 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x46 (size before relaxing) + *fill* 0x00000000400866e8 0x0 + .text.illegal_instruction_helper + 0x00000000400866e8 0x57 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x73 (size before relaxing) + *fill* 0x000000004008673f 0x1 + .text.reconfigureAllWdts + 0x0000000040086740 0xcc esp-idf/esp32/libesp32.a(panic.c.obj) + .text.putEntry + 0x000000004008680c 0x1b esp-idf/esp32/libesp32.a(panic.c.obj) + 0x27 (size before relaxing) + *fill* 0x0000000040086827 0x1 + .text.invoke_abort + 0x0000000040086828 0x1d esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x0000000040086845 0x3 + .text.haltOtherCore + 0x0000000040086848 0x1a esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x0000000040086862 0x2 + .text.doBacktrace + 0x0000000040086864 0x129 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x138 (size before relaxing) + *fill* 0x000000004008698d 0x3 + .text.commonErrorHandler_dump + 0x0000000040086990 0xfe esp-idf/esp32/libesp32.a(panic.c.obj) + 0x14e (size before relaxing) + *fill* 0x0000000040086a8e 0x2 + .text.esp_panic_dig_reset + 0x0000000040086a90 0x32 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x36 (size before relaxing) + *fill* 0x0000000040086ac2 0x2 + .text.commonErrorHandler + 0x0000000040086ac4 0x7a esp-idf/esp32/libesp32.a(panic.c.obj) + 0xb9 (size before relaxing) + *fill* 0x0000000040086b3e 0x2 + .text.esp_error_check_failed_print + 0x0000000040086b40 0x56 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x5e (size before relaxing) + *fill* 0x0000000040086b96 0x2 + .text.abort 0x0000000040086b98 0x38 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x3e (size before relaxing) + 0x0000000040086b98 abort + *fill* 0x0000000040086bd0 0x0 + .text.vApplicationStackOverflowHook + 0x0000000040086bd0 0x17 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x23 (size before relaxing) + 0x0000000040086bd0 vApplicationStackOverflowHook + *fill* 0x0000000040086be7 0x1 + .text.panicHandler + 0x0000000040086be8 0x165 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x19c (size before relaxing) + 0x0000000040086be8 panicHandler + *fill* 0x0000000040086d4d 0x3 + .text.xt_unhandled_exception + 0x0000000040086d50 0x88 esp-idf/esp32/libesp32.a(panic.c.obj) + 0xb8 (size before relaxing) + 0x0000000040086d50 xt_unhandled_exception + .text._esp_error_check_failed + 0x0000000040086dd8 0x16 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x1e (size before relaxing) + 0x0000000040086dd8 _esp_error_check_failed + *fill* 0x0000000040086dee 0x0 + *fill* 0x0000000040086dee 0x0 + *fill* 0x0000000040086dee 0x0 + *fill* 0x0000000040086dee 0x0 + *fill* 0x0000000040086dee 0x2 + .text.setFirstBreakpoint + 0x0000000040086df0 0x13 esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x0000000040086e03 0x0 + *fill* 0x0000000040086e03 0x0 + *fill* 0x0000000040086e03 0x0 + *fill* 0x0000000040086e03 0x0 + *fill* 0x0000000040086e03 0x0 + *fill* 0x0000000040086e03 0x0 + *fill* 0x0000000040086e03 0x0 + *fill* 0x0000000040086e03 0x0 + *fill* 0x0000000040086e03 0x1 + .text.esp_reset_reason_set_hint + 0x0000000040086e04 0x5 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x0000000040086e04 esp_reset_reason_set_hint + *fill* 0x0000000040086e09 0x3 + .text.esp_reset_reason_get_hint + 0x0000000040086e0c 0x7 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x0000000040086e0c esp_reset_reason_get_hint + *fill* 0x0000000040086e13 0x0 + *fill* 0x0000000040086e13 0x0 + *fill* 0x0000000040086e13 0x0 + *libgcc.a:_divsf3.*(.literal .literal.* .text .text.*) + *libgcc.a:lib2funcs.*(.literal .literal.* .text .text.*) + *libgcov.a:(.literal .literal.* .text .text.*) + *libfreertos.a:(.literal .literal.* .text .text.*) + *fill* 0x0000000040086e13 0x1 + .text.vPortTaskWrapper + 0x0000000040086e14 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x32 (size before relaxing) + *fill* 0x0000000040086e3a 0x2 + .text.pxPortInitialiseStack + 0x0000000040086e3c 0x86 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040086e3c pxPortInitialiseStack + *fill* 0x0000000040086ec2 0x2 + .text.xPortStartScheduler + 0x0000000040086ec4 0x23 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x2f (size before relaxing) + 0x0000000040086ec4 xPortStartScheduler + *fill* 0x0000000040086ee7 0x1 + .text.xPortSysTickHandler + 0x0000000040086ee8 0x10 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x16 (size before relaxing) + 0x0000000040086ee8 xPortSysTickHandler + *fill* 0x0000000040086ef8 0x0 + .text.vPortYieldOtherCore + 0x0000000040086ef8 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x0000000040086ef8 vPortYieldOtherCore + *fill* 0x0000000040086f02 0x2 + .text.vPortReleaseTaskMPUSettings + 0x0000000040086f04 0xa esp-idf/freertos/libfreertos.a(port.c.obj) + 0xe (size before relaxing) + 0x0000000040086f04 vPortReleaseTaskMPUSettings + *fill* 0x0000000040086f0e 0x2 + .text.xPortInIsrContext + 0x0000000040086f10 0x28 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040086f10 xPortInIsrContext + .text.vPortEnterCritical + 0x0000000040086f38 0xb3 esp-idf/freertos/libfreertos.a(port.c.obj) + 0xba (size before relaxing) + 0x0000000040086f38 vPortEnterCritical + *fill* 0x0000000040086feb 0x1 + .text.vPortExitCritical + 0x0000000040086fec 0x8a esp-idf/freertos/libfreertos.a(port.c.obj) + 0x0000000040086fec vPortExitCritical + *fill* 0x0000000040087076 0x2 + .text 0x0000000040087078 0x1d0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x0000000040087078 _frxt_setup_switch + 0x0000000040087090 _frxt_int_enter + 0x00000000400870d8 _frxt_int_exit + 0x0000000040087128 _frxt_timer_int + 0x0000000040087150 _frxt_tick_timer_init + 0x0000000040087168 _frxt_dispatch + 0x00000000400871b0 vPortYield + 0x00000000400871fc vPortYieldFromInt + 0x000000004008721c _frxt_task_coproc_state + .text 0x0000000040087248 0x16b esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x0000000040087248 _xt_context_save + 0x00000000400872f0 _xt_context_restore + 0x0000000040087334 _xt_coproc_init + 0x0000000040087348 _xt_coproc_release + 0x0000000040087374 _xt_coproc_savecs + 0x0000000040087394 _xt_coproc_restorecs + *fill* 0x00000000400873b3 0x1 + .text._xt_tick_divisor_init + 0x00000000400873b4 0x1c esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x1f (size before relaxing) + 0x00000000400873b4 _xt_tick_divisor_init + *fill* 0x00000000400873d0 0x0 + .text.xt_unhandled_interrupt + 0x00000000400873d0 0x16 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x00000000400873d0 xt_unhandled_interrupt + *fill* 0x00000000400873e6 0x2 + .text.xt_set_interrupt_handler + 0x00000000400873e8 0x4f esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x00000000400873e8 xt_set_interrupt_handler + *fill* 0x0000000040087437 0x1 + .text.prvIsQueueFull + 0x0000000040087438 0x2a esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x0000000040087462 0x2 + .text.prvCopyDataToQueue + 0x0000000040087464 0xa2 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x0000000040087506 0x2 + .text.prvNotifyQueueSetContainer + 0x0000000040087508 0x77 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x8a (size before relaxing) + *fill* 0x000000004008757f 0x1 + .text.prvCopyDataFromQueue + 0x0000000040087580 0x24 esp-idf/freertos/libfreertos.a(queue.c.obj) + .text.xQueueGenericReset + 0x00000000400875a4 0xa6 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xb2 (size before relaxing) + 0x00000000400875a4 xQueueGenericReset + *fill* 0x000000004008764a 0x2 + .text.prvInitialiseNewQueue + 0x000000004008764c 0x1f esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x23 (size before relaxing) + *fill* 0x000000004008766b 0x1 + .text.xQueueGenericCreate + 0x000000004008766c 0x45 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4d (size before relaxing) + 0x000000004008766c xQueueGenericCreate + *fill* 0x00000000400876b1 0x3 + .text.xQueueGetMutexHolder + 0x00000000400876b4 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x00000000400876b4 xQueueGetMutexHolder + *fill* 0x00000000400876d7 0x1 + .text.xQueueCreateCountingSemaphore + 0x00000000400876d8 0x66 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x6a (size before relaxing) + 0x00000000400876d8 xQueueCreateCountingSemaphore + *fill* 0x000000004008773e 0x2 + .text.xQueueGenericSend + 0x0000000040087740 0x17c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1b8 (size before relaxing) + 0x0000000040087740 xQueueGenericSend + .text.prvInitialiseMutex + 0x00000000400878bc 0x36 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x3e (size before relaxing) + *fill* 0x00000000400878f2 0x2 + .text.xQueueCreateMutex + 0x00000000400878f4 0x16 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a (size before relaxing) + 0x00000000400878f4 xQueueCreateMutex + *fill* 0x000000004008790a 0x2 + .text.xQueueGiveMutexRecursive + 0x000000004008790c 0x4a esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x4e (size before relaxing) + 0x000000004008790c xQueueGiveMutexRecursive + *fill* 0x0000000040087956 0x2 + .text.xQueueGenericSendFromISR + 0x0000000040087958 0xd6 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xe6 (size before relaxing) + 0x0000000040087958 xQueueGenericSendFromISR + *fill* 0x0000000040087a2e 0x2 + .text.xQueueGiveFromISR + 0x0000000040087a30 0xb6 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xc2 (size before relaxing) + 0x0000000040087a30 xQueueGiveFromISR + *fill* 0x0000000040087ae6 0x2 + .text.xQueueGenericReceive + 0x0000000040087ae8 0x144 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x17c (size before relaxing) + 0x0000000040087ae8 xQueueGenericReceive + .text.xQueueTakeMutexRecursive + 0x0000000040087c2c 0x51 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x0000000040087c2c xQueueTakeMutexRecursive + *fill* 0x0000000040087c7d 0x3 + .text.xQueueReceiveFromISR + 0x0000000040087c80 0x96 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0xa6 (size before relaxing) + 0x0000000040087c80 xQueueReceiveFromISR + *fill* 0x0000000040087d16 0x2 + .text.vQueueDelete + 0x0000000040087d18 0x25 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x28 (size before relaxing) + 0x0000000040087d18 vQueueDelete + *fill* 0x0000000040087d3d 0x3 + .text.vQueueWaitForMessageRestricted + 0x0000000040087d40 0x23 esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x2a (size before relaxing) + 0x0000000040087d40 vQueueWaitForMessageRestricted + *fill* 0x0000000040087d63 0x1 + .text.prvResetNextTaskUnblockTime + 0x0000000040087d64 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvDeleteTLS + 0x0000000040087d98 0x44 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .text.prvInitialiseNewTask + 0x0000000040087ddc 0xc2 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xce (size before relaxing) + *fill* 0x0000000040087e9e 0x2 + .text.prvInitialiseTaskLists + 0x0000000040087ea0 0x5a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x72 (size before relaxing) + *fill* 0x0000000040087efa 0x2 + .text.prvDeleteTCB + 0x0000000040087efc 0x4a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5d (size before relaxing) + *fill* 0x0000000040087f46 0x2 + .text.prvCheckTasksWaitingTermination + 0x0000000040087f48 0xca esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xd2 (size before relaxing) + *fill* 0x0000000040088012 0x2 + .text.prvAddCurrentTaskToDelayedList + 0x0000000040088014 0x6a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x6e (size before relaxing) + *fill* 0x000000004008807e 0x2 + .text.prvIdleTask + 0x0000000040088080 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x12 (size before relaxing) + *fill* 0x000000004008808c 0x0 + .text.taskYIELD_OTHER_CORE + 0x000000004008808c 0x54 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x58 (size before relaxing) + 0x000000004008808c taskYIELD_OTHER_CORE + .text.prvAddNewTaskToReadyList + 0x00000000400880e0 0x168 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x17f (size before relaxing) + *fill* 0x0000000040088248 0x0 + .text.xTaskCreatePinnedToCore + 0x0000000040088248 0x69 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x79 (size before relaxing) + 0x0000000040088248 xTaskCreatePinnedToCore + *fill* 0x00000000400882b1 0x3 + .text.vTaskStartScheduler + 0x00000000400882b4 0x7c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x84 (size before relaxing) + 0x00000000400882b4 vTaskStartScheduler + .text.vTaskSuspendAll + 0x0000000040088330 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040088330 vTaskSuspendAll + .text.xTaskGetTickCount + 0x0000000040088358 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040088358 xTaskGetTickCount + *fill* 0x0000000040088365 0x3 + .text.xTaskGetTickCountFromISR + 0x0000000040088368 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040088368 xTaskGetTickCountFromISR + *fill* 0x0000000040088375 0x3 + .text.xTaskGetIdleTaskHandleForCPU + 0x0000000040088378 0x2e esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040088378 xTaskGetIdleTaskHandleForCPU + *fill* 0x00000000400883a6 0x2 + .text.xTaskIncrementTick + 0x00000000400883a8 0x1aa esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x1be (size before relaxing) + 0x00000000400883a8 xTaskIncrementTick + *fill* 0x0000000040088552 0x2 + .text.vTaskSwitchContext + 0x0000000040088554 0x3a6 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x3ba (size before relaxing) + 0x0000000040088554 vTaskSwitchContext + *fill* 0x00000000400888fa 0x2 + .text.vTaskPlaceOnEventList + 0x00000000400888fc 0x93 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xa7 (size before relaxing) + 0x00000000400888fc vTaskPlaceOnEventList + *fill* 0x000000004008898f 0x1 + .text.vTaskPlaceOnEventListRestricted + 0x0000000040088990 0x6f esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7f (size before relaxing) + 0x0000000040088990 vTaskPlaceOnEventListRestricted + *fill* 0x00000000400889ff 0x1 + .text.xTaskRemoveFromEventList + 0x0000000040088a00 0x140 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x14f (size before relaxing) + 0x0000000040088a00 xTaskRemoveFromEventList + *fill* 0x0000000040088b40 0x0 + .text.vTaskSetTimeOutState + 0x0000000040088b40 0x34 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040088b40 vTaskSetTimeOutState + .text.xTaskCheckForTimeOut + 0x0000000040088b74 0x8b esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x96 (size before relaxing) + 0x0000000040088b74 xTaskCheckForTimeOut + *fill* 0x0000000040088bff 0x1 + .text.xTaskGetCurrentTaskHandle + 0x0000000040088c00 0x22 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040088c00 xTaskGetCurrentTaskHandle + *fill* 0x0000000040088c22 0x2 + .text.uxTaskPriorityGet + 0x0000000040088c24 0x1c esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x23 (size before relaxing) + 0x0000000040088c24 uxTaskPriorityGet + *fill* 0x0000000040088c40 0x0 + .text.vTaskPrioritySet + 0x0000000040088c40 0x135 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x147 (size before relaxing) + 0x0000000040088c40 vTaskPrioritySet + *fill* 0x0000000040088d75 0x3 + .text.__getreent + 0x0000000040088d78 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x19 (size before relaxing) + 0x0000000040088d78 __getreent + *fill* 0x0000000040088d8d 0x3 + .text.pcTaskGetTaskName + 0x0000000040088d90 0x2a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2d (size before relaxing) + 0x0000000040088d90 pcTaskGetTaskName + *fill* 0x0000000040088dba 0x2 + .text.xTaskGetAffinity + 0x0000000040088dbc 0x10 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x13 (size before relaxing) + 0x0000000040088dbc xTaskGetAffinity + *fill* 0x0000000040088dcc 0x0 + .text.xTaskGetCurrentTaskHandleForCPU + 0x0000000040088dcc 0x1a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040088dcc xTaskGetCurrentTaskHandleForCPU + *fill* 0x0000000040088de6 0x2 + .text.xTaskGetSchedulerState + 0x0000000040088de8 0x3a esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x0000000040088de8 xTaskGetSchedulerState + *fill* 0x0000000040088e22 0x2 + .text.vTaskDelete + 0x0000000040088e24 0x106 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x126 (size before relaxing) + 0x0000000040088e24 vTaskDelete + *fill* 0x0000000040088f2a 0x2 + .text.vTaskDelay + 0x0000000040088f2c 0x68 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x7c (size before relaxing) + 0x0000000040088f2c vTaskDelay + .text.xTaskResumeAll + 0x0000000040088f94 0x183 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x196 (size before relaxing) + 0x0000000040088f94 xTaskResumeAll + *fill* 0x0000000040089117 0x1 + .text.vTaskPriorityInherit + 0x0000000040089118 0xd8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xe3 (size before relaxing) + 0x0000000040089118 vTaskPriorityInherit + *fill* 0x00000000400891f0 0x0 + .text.xTaskPriorityDisinherit + 0x00000000400891f0 0x98 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0xab (size before relaxing) + 0x00000000400891f0 xTaskPriorityDisinherit + *fill* 0x0000000040089288 0x0 + .text.pvTaskIncrementMutexHeldCount + 0x0000000040089288 0x56 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x5a (size before relaxing) + 0x0000000040089288 pvTaskIncrementMutexHeldCount + *fill* 0x00000000400892de 0x2 + .text.prvGetNextExpireTime + 0x00000000400892e0 0x20 esp-idf/freertos/libfreertos.a(timers.c.obj) + .text.prvInsertTimerInActiveList + 0x0000000040089300 0x52 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x5a (size before relaxing) + *fill* 0x0000000040089352 0x2 + .text.prvCheckForValidListAndQueue + 0x0000000040089354 0x6e esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x82 (size before relaxing) + *fill* 0x00000000400893c2 0x2 + .text.xTimerCreateTimerTask + 0x00000000400893c4 0x3d esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x48 (size before relaxing) + 0x00000000400893c4 xTimerCreateTimerTask + *fill* 0x0000000040089401 0x3 + .text.xTimerGenericCommand + 0x0000000040089404 0x59 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x61 (size before relaxing) + 0x0000000040089404 xTimerGenericCommand + *fill* 0x000000004008945d 0x3 + .text.prvSwitchTimerLists + 0x0000000040089460 0x76 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x82 (size before relaxing) + *fill* 0x00000000400894d6 0x2 + .text.prvSampleTimeNow + 0x00000000400894d8 0x2b esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x2f (size before relaxing) + *fill* 0x0000000040089503 0x1 + .text.prvProcessExpiredTimer + 0x0000000040089504 0x53 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x5f (size before relaxing) + *fill* 0x0000000040089557 0x1 + .text.prvProcessTimerOrBlockTask + 0x0000000040089558 0x5a esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x71 (size before relaxing) + *fill* 0x00000000400895b2 0x2 + .text.prvProcessReceivedCommands + 0x00000000400895b4 0xd2 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0xea (size before relaxing) + *fill* 0x0000000040089686 0x2 + .text.prvTimerTask + 0x0000000040089688 0x15 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x1d (size before relaxing) + *fill* 0x000000004008969d 0x0 + *fill* 0x000000004008969d 0x0 + *fill* 0x000000004008969d 0x0 + *fill* 0x000000004008969d 0x0 + *fill* 0x000000004008969d 0x0 + *fill* 0x000000004008969d 0x3 + .text.vPortStoreTaskMPUSettings + 0x00000000400896a0 0x13 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x00000000400896a0 vPortStoreTaskMPUSettings + *fill* 0x00000000400896b3 0x0 + *fill* 0x00000000400896b3 0x0 + *fill* 0x00000000400896b3 0x0 + *fill* 0x00000000400896b3 0x0 + *fill* 0x00000000400896b3 0x0 + *fill* 0x00000000400896b3 0x1 + .text 0x00000000400896b4 0x33 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + 0x00000000400896b4 xt_ints_on + 0x00000000400896cc xt_ints_off + *fill* 0x00000000400896e7 0x0 + *fill* 0x00000000400896e7 0x0 + *fill* 0x00000000400896e7 0x1 + .text.prvIsQueueEmpty + 0x00000000400896e8 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + *fill* 0x00000000400896fc 0x0 + .text.vListInitialise + 0x00000000400896fc 0x15 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x00000000400896fc vListInitialise + *fill* 0x0000000040089711 0x3 + .text.vListInitialiseItem + 0x0000000040089714 0x9 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040089714 vListInitialiseItem + *fill* 0x000000004008971d 0x3 + .text.vListInsertEnd + 0x0000000040089720 0x19 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x0000000040089720 vListInsertEnd + *fill* 0x0000000040089739 0x3 + .text.vListInsert + 0x000000004008973c 0x2f esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004008973c vListInsert + *fill* 0x000000004008976b 0x1 + .text.uxListRemove + 0x000000004008976c 0x24 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x000000004008976c uxListRemove + *libnewlib.a:heap.*(.literal .literal.* .text .text.*) + .text.malloc 0x0000000040089790 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x0000000040089790 malloc + 0x0000000040089790 pvalloc + 0x0000000040089790 valloc + .text.realloc 0x000000004008979c 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x000000004008979c realloc + *fill* 0x00000000400897ad 0x3 + .text.free 0x00000000400897b0 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x00000000400897b0 cfree + 0x00000000400897b0 free + *fill* 0x00000000400897ba 0x2 + .text._malloc_r + 0x00000000400897bc 0xc esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x10 (size before relaxing) + 0x00000000400897bc _malloc_r + .text._free_r 0x00000000400897c8 0xa esp-idf/newlib/libnewlib.a(heap.c.obj) + 0xe (size before relaxing) + 0x00000000400897c8 _free_r + *fill* 0x00000000400897d2 0x2 + .text._realloc_r + 0x00000000400897d4 0x11 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x00000000400897d4 _realloc_r + *fill* 0x00000000400897e5 0x3 + .text._calloc_r + 0x00000000400897e8 0x2c esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x30 (size before relaxing) + 0x00000000400897e8 _calloc_r + .text.calloc 0x0000000040089814 0x14 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x18 (size before relaxing) + 0x0000000040089814 calloc + *fill* 0x0000000040089828 0x0 + *fill* 0x0000000040089828 0x0 + *fill* 0x0000000040089828 0x0 + *fill* 0x0000000040089828 0x0 + .text.newlib_include_heap_impl + 0x0000000040089828 0x5 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x0000000040089828 newlib_include_heap_impl + *libapp_trace.a:SEGGER_RTT_esp32.*(.literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.*(.literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace.*(.literal .literal.* .text .text.*) + *libapp_trace.a:SEGGER_SYSVIEW.*(.literal .literal.* .text .text.*) + *libapp_trace.a:app_trace_util.*(.literal .literal.* .text .text.*) + 0x000000004008982d _iram_text_end = ABSOLUTE (.) + +.dram0.data 0x000000003ffb0000 0x2184 + 0x000000003ffb0000 _data_start = ABSOLUTE (.) + 0x000000003ffb0000 _bt_data_start = ABSOLUTE (.) + *libbt.a:(.data .data.*) + 0x000000003ffb0000 . = ALIGN (0x4) + 0x000000003ffb0000 _bt_data_end = ABSOLUTE (.) + 0x000000003ffb0000 _btdm_data_start = ABSOLUTE (.) + *libbtdm_app.a:(.data .data.*) + 0x000000003ffb0000 . = ALIGN (0x4) + 0x000000003ffb0000 _btdm_data_end = ABSOLUTE (.) + 0x000000003ffb0000 _nimble_data_start = ABSOLUTE (.) + *libnimble.a:(.data .data.*) + 0x000000003ffb0000 . = ALIGN (0x4) + 0x000000003ffb0000 _nimble_data_end = ABSOLUTE (.) + *(.gnu.linkonce.d.*) + *(.data1) + *(.sdata) + *(.sdata.*) + *(.gnu.linkonce.s.*) + *(.sdata2) + *(.sdata2.*) + *(.gnu.linkonce.s2.*) + *(.jcr) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .data EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .data.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .dram1 EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .dram1.*) + .data.s_keys_lock + 0x000000003ffb0000 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .data.reason_spinlock + 0x000000003ffb0008 0x8 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .data.g_dport_mux + 0x000000003ffb0010 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .data 0x000000003ffb0018 0xc esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .data.spinlock + 0x000000003ffb0024 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .dram1.25 0x000000003ffb002c 0x19 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003ffb0045 0x3 + .dram1.24 0x000000003ffb0048 0x8 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .dram1.23 0x000000003ffb0050 0x6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003ffb0056 0x2 + .dram1.22 0x000000003ffb0058 0x6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003ffb005e 0x2 + .data.twdt_spinlock + 0x000000003ffb0060 0x8 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .data.hooks_spinlock + 0x000000003ffb0068 0x8 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .data.s_timer_lock + 0x000000003ffb0070 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .data.s_time_update_lock + 0x000000003ffb0078 0x8 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x000000003ffb0078 s_time_update_lock + .data 0x000000003ffb0080 0xc0c esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x000000003ffb0080 port_IntStack + 0x000000003ffb0c80 port_IntStackTop + 0x000000003ffb0c84 port_switch_flag + *fill* 0x000000003ffb0c8c 0x4 + .data 0x000000003ffb0c90 0x400 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + 0x000000003ffb0c90 _xt_interrupt_table + 0x000000003ffb0e90 _xt_exception_table + .data 0x000000003ffb1090 0x8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x000000003ffb1090 _xt_coproc_owner_sa + .dram1.21 0x000000003ffb1098 0x4 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x000000003ffb1098 uxTopUsedPriority + .data.xTaskQueueMutex + 0x000000003ffb109c 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.xNextTaskUnblockTime + 0x000000003ffb10a4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .data.xTimerMux + 0x000000003ffb10a8 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x000000003ffb10a8 xTimerMux + .data.s_fd_table + 0x000000003ffb10b0 0xc0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .data.s_registered_select_lock + 0x000000003ffb1170 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.s_context + 0x000000003ffb1178 0x6c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .data.lock_init_spinlock + 0x000000003ffb11e4 0x8 esp-idf/newlib/libnewlib.a(locks.c.obj) + .data.s_stub_table + 0x000000003ffb11ec 0x90 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .data.s_flash_op_cpu + 0x000000003ffb127c 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .dram1.31 0x000000003ffb1280 0x14 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x000000003ffb1280 g_flash_guard_default_ops + .dram1.22 0x000000003ffb1294 0x1c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.21 0x000000003ffb12b0 0x4c esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.20 0x000000003ffb12fc 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .dram1.8 0x000000003ffb130c 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x000000003ffb130c esp_flash_spi1_default_os_functions + .dram1.7 0x000000003ffb131c 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .dram1.12 0x000000003ffb1324 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x000000003ffb1324 esp_flash_noos_functions + .data.esp_flash_registered_chips + 0x000000003ffb1334 0x4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0x000000003ffb1334 esp_flash_registered_chips + .data.default_registered_chips + 0x000000003ffb1338 0x10 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .data.s_log_print_func + 0x000000003ffb1348 0x4 esp-idf/log/liblog.a(log.c.obj) + .data.s_log_default_level + 0x000000003ffb134c 0x4 esp-idf/log/liblog.a(log.c.obj) + .data.malloc_alwaysinternal_limit + 0x000000003ffb1350 0x4 esp-idf/heap/libheap.a(heap_caps.c.obj) + .data.gpio_context + 0x000000003ffb1354 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + .data._gpio_hal + 0x000000003ffb136c 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + .data.periph_spinlock + 0x000000003ffb1374 0x8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .data.s_rtc_isr_handler_list_lock + 0x000000003ffb137c 0x8 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x000000003ffb137c s_rtc_isr_handler_list_lock + .data.rtc_spinlock + 0x000000003ffb1384 0x8 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x000000003ffb1384 rtc_spinlock + .data.uart_selectlock + 0x000000003ffb138c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + .data.uart_context + 0x000000003ffb1394 0x30 esp-idf/driver/libdriver.a(uart.c.obj) + .data 0x000000003ffb13c4 0x16c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x000000003ffb13c4 __global_locale + *libxtensa.a:stdatomic.*(.rodata .rodata.*) + *libsoc.a:rtc_clk.*(.rodata .rodata.*) + .rodata.rtc_clk_cpu_freq_to_config.str1.4 + 0x000000003ffb1530 0x3c esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .rodata.rtc_clk_cpu_freq_get_config.str1.4 + 0x000000003ffb156c 0x3b esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *fill* 0x000000003ffb15a7 0x1 + .rodata.rtc_clk_cpu_freq_to_pll_mhz.str1.4 + 0x000000003ffb15a8 0x29 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + *libsoc.a:cpu_hal.*(.rodata .rodata.*) + *libsoc.a:i2c_hal_iram.*(.rodata .rodata.*) + *libsoc.a:soc_hal.*(.rodata .rodata.*) + *fill* 0x000000003ffb15d1 0x3 + .rodata 0x000000003ffb15d4 0x18 esp-idf/soc/libsoc.a(soc_hal.c.obj) + *libsoc.a:spi_flash_hal_gpspi.*(.rodata .rodata.*) + *libsoc.a:uart_hal_iram.*(.data .data.* .dram1 .dram1.*) + *libsoc.a:spi_flash_hal_iram.*(.rodata .rodata.*) + .rodata.spi_flash_hal_configure_host_io_mode + 0x000000003ffb15ec 0x18 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + *libesp_event.a:esp_event.*(.rodata.esp_event_isr_post_to) + *libesp_event.a:default_event_loop.*(.rodata.esp_event_isr_post) + *libspi_flash.a:memspi_host_driver.*(.rodata .rodata.*) + .rodata.memspi_host_read_id_hs.str1.4 + 0x000000003ffb1604 0x24 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .rodata.TAG 0x000000003ffb1628 0x7 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + *libspi_flash.a:spi_flash_chip_gd.*(.rodata .rodata.*) + *fill* 0x000000003ffb162f 0x1 + .rodata.esp_flash_chip_gd + 0x000000003ffb1630 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0x000000003ffb1630 esp_flash_chip_gd + .rodata.chip_name + 0x000000003ffb168c 0x3 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + *libspi_flash.a:spi_flash_chip_generic.*(.rodata .rodata.*) + *fill* 0x000000003ffb168f 0x1 + .rodata.spi_flash_chip_generic_get_write_protect.str1.4 + 0x000000003ffb1690 0x5f esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffb16ef 0x1 + .rodata.spi_flash_chip_generic_config_host_io_mode + 0x000000003ffb16f0 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.spi_flash_chip_generic_read.str1.4 + 0x000000003ffb1708 0x43 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffb174b 0x1 + .rodata.__func__$3634 + 0x000000003ffb174c 0x29 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *fill* 0x000000003ffb1775 0x3 + .rodata.esp_flash_chip_generic + 0x000000003ffb1778 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0x000000003ffb1778 esp_flash_chip_generic + .rodata.chip_name + 0x000000003ffb17d4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .rodata.TAG 0x000000003ffb17dc 0xd esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + *libspi_flash.a:spi_flash_chip_issi.*(.rodata .rodata.*) + *fill* 0x000000003ffb17e9 0x3 + .rodata.esp_flash_chip_issi + 0x000000003ffb17ec 0x5c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0x000000003ffb17ec esp_flash_chip_issi + .rodata.chip_name + 0x000000003ffb1848 0x5 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + *libphy.a:(.rodata .rodata.*) + *liblog.a:log.*(.rodata.esp_log_write) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_unlock) + *liblog.a:log_freertos.*(.rodata.esp_log_timestamp) + *liblog.a:log_freertos.*(.rodata.esp_log_early_timestamp) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock) + *liblog.a:log_freertos.*(.rodata.esp_log_impl_lock_timeout) + *libheap.a:multi_heap.*(.rodata .rodata.*) + *fill* 0x000000003ffb184d 0x3 + .rodata.get_prev_free_block.str1.4 + 0x000000003ffb1850 0x8a esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb18da 0x2 + .rodata.split_if_necessary.str1.4 + 0x000000003ffb18dc 0x2f esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb190b 0x1 + .rodata.merge_adjacent.str1.4 + 0x000000003ffb190c 0x6 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb1912 0x2 + .rodata.multi_heap_realloc_impl.str1.4 + 0x000000003ffb1914 0x10 esp-idf/heap/libheap.a(multi_heap.c.obj) + 0xd (size before relaxing) + .rodata.__func__$4922 + 0x000000003ffb1924 0x18 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4830 + 0x000000003ffb193c 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb194b 0x1 + .rodata.__func__$4820 + 0x000000003ffb194c 0x14 esp-idf/heap/libheap.a(multi_heap.c.obj) + .rodata.__func__$4841 + 0x000000003ffb1960 0x13 esp-idf/heap/libheap.a(multi_heap.c.obj) + *fill* 0x000000003ffb1973 0x1 + .rodata.__func__$4795 + 0x000000003ffb1974 0xf esp-idf/heap/libheap.a(multi_heap.c.obj) + *libheap.a:multi_heap_poisoning.*(.rodata .rodata.*) + *libesp32.a:panic.*(.rodata .rodata.*) + *fill* 0x000000003ffb1983 0x1 + .rodata.illegal_instruction_helper.str1.4 + 0x000000003ffb1984 0x17 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x1f (size before relaxing) + *fill* 0x000000003ffb199b 0x1 + .rodata.putEntry.str1.4 + 0x000000003ffb199c 0x8 esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata.doBacktrace.str1.4 + 0x000000003ffb19a4 0x2e esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb19d2 0x2 + .rodata.commonErrorHandler_dump.str1.4 + 0x000000003ffb19d4 0x1b1 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x1b9 (size before relaxing) + *fill* 0x000000003ffb1b85 0x3 + .rodata 0x000000003ffb1b88 0x80 esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata.commonErrorHandler.str1.4 + 0x000000003ffb1c08 0x27 esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb1c2f 0x1 + .rodata.esp_error_check_failed_print.str1.4 + 0x000000003ffb1c30 0x5c esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata.abort.str1.4 + 0x000000003ffb1c8c 0x2d esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb1cb9 0x3 + .rodata.vApplicationStackOverflowHook.str1.4 + 0x000000003ffb1cbc 0x3e esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb1cfa 0x2 + .rodata.panicHandler.str1.4 + 0x000000003ffb1cfc 0x1a9 esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb1ea5 0x3 + .rodata.xt_unhandled_exception.str1.4 + 0x000000003ffb1ea8 0x4d esp-idf/esp32/libesp32.a(panic.c.obj) + 0x51 (size before relaxing) + *fill* 0x000000003ffb1ef5 0x3 + .rodata._esp_error_check_failed.str1.4 + 0x000000003ffb1ef8 0x10 esp-idf/esp32/libesp32.a(panic.c.obj) + .rodata.str1.4 + 0x000000003ffb1f08 0x1db esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb20e3 0x1 + .rodata.edesc 0x000000003ffb20e4 0xa0 esp-idf/esp32/libesp32.a(panic.c.obj) + *libgcc.a:_divsf3.*(.rodata .rodata.*) + *libgcov.a:(.rodata .rodata.*) + *libnewlib.a:heap.*(.rodata .rodata.*) + *libapp_trace.a:SEGGER_RTT_esp32.*(.rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.*(.rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.*(.rodata .rodata.*) + *libapp_trace.a:app_trace.*(.rodata .rodata.*) + *libapp_trace.a:SEGGER_SYSVIEW.*(.rodata .rodata.*) + *libapp_trace.a:app_trace_util.*(.rodata .rodata.*) + 0x000000003ffb2184 _data_end = ABSOLUTE (.) + 0x000000003ffb2184 . = ALIGN (0x4) + +.noinit 0x000000003ffb2184 0x0 + 0x000000003ffb2184 . = ALIGN (0x4) + 0x000000003ffb2184 _noinit_start = ABSOLUTE (.) + *(.noinit .noinit.*) + 0x000000003ffb2184 . = ALIGN (0x4) + 0x000000003ffb2184 _noinit_end = ABSOLUTE (.) + +.dram0.bss 0x000000003ffb2188 0x7e8 + 0x000000003ffb2188 . = ALIGN (0x8) + 0x000000003ffb2188 _bss_start = ABSOLUTE (.) + *(.ext_ram.bss*) + 0x000000003ffb2188 _bt_bss_start = ABSOLUTE (.) + *libbt.a:(.bss .bss.* COMMON) + 0x000000003ffb2188 . = ALIGN (0x4) + 0x000000003ffb2188 _bt_bss_end = ABSOLUTE (.) + 0x000000003ffb2188 _btdm_bss_start = ABSOLUTE (.) + *libbtdm_app.a:(.bss .bss.* COMMON) + 0x000000003ffb2188 . = ALIGN (0x4) + 0x000000003ffb2188 _btdm_bss_end = ABSOLUTE (.) + 0x000000003ffb2188 _nimble_bss_start = ABSOLUTE (.) + *libnimble.a:(.bss .bss.* COMMON) + 0x000000003ffb2188 . = ALIGN (0x4) + 0x000000003ffb2188 _nimble_bss_end = ABSOLUTE (.) + *(EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .bss EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) .bss.* EXCLUDE_FILE(*libsoc.a:uart_hal_iram.*) COMMON) + .bss.s_pthread_cfg_key + 0x000000003ffb2188 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_threads_mux + 0x000000003ffb218c 0x4 esp-idf/pthread/libpthread.a(pthread.c.obj) + .bss.s_keys 0x000000003ffb2190 0x4 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x000000003ffb2190 s_keys + .bss.app_cpu_started + 0x000000003ffb2194 0x1 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x000000003ffb2195 0x3 + .bss.reason 0x000000003ffb2198 0x8 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .bss.oldInterruptLevel + 0x000000003ffb21a0 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .bss.dport_access_ref + 0x000000003ffb21a8 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .bss.dport_core_state + 0x000000003ffb21b0 0x8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + COMMON 0x000000003ffb21b8 0x10 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x000000003ffb21b8 dport_access_end + 0x000000003ffb21c0 dport_access_start + .bss.int_wdt_app_cpu_ticked + 0x000000003ffb21c8 0x1 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x000000003ffb21c8 int_wdt_app_cpu_ticked + *fill* 0x000000003ffb21c9 0x3 + .bss.non_iram_int_disabled_flag + 0x000000003ffb21cc 0x2 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003ffb21ce 0x2 + .bss.non_iram_int_disabled + 0x000000003ffb21d0 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .bss.non_iram_int_mask + 0x000000003ffb21d8 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .bss.vector_desc_head + 0x000000003ffb21e0 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .bss.other_core_frame + 0x000000003ffb21e4 0x4 esp-idf/esp32/libesp32.a(panic.c.obj) + .bss.abort_called + 0x000000003ffb21e8 0x1 esp-idf/esp32/libesp32.a(panic.c.obj) + *fill* 0x000000003ffb21e9 0x3 + .bss.twdt_config + 0x000000003ffb21ec 0x4 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .bss.tick_cb 0x000000003ffb21f0 0x40 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .bss.idle_cb 0x000000003ffb2230 0x40 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .bss.s_ipc_wait + 0x000000003ffb2270 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_func_arg + 0x000000003ffb2278 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_func 0x000000003ffb2280 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_ipc_ack + 0x000000003ffb2288 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_ipc_sem + 0x000000003ffb2290 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_ipc_mutex + 0x000000003ffb2298 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_ipc_task_handle + 0x000000003ffb22a0 0x8 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .bss.s_timer_semaphore + 0x000000003ffb22a8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timer_task + 0x000000003ffb22ac 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_timers 0x000000003ffb22b0 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .bss.s_alarm_handler + 0x000000003ffb22b4 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.s_timer_interrupt_handle + 0x000000003ffb22b8 0x4 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .bss.port_uxOldInterruptState + 0x000000003ffb22bc 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb22bc port_uxOldInterruptState + .bss.port_uxCriticalNesting + 0x000000003ffb22c4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb22c4 port_uxCriticalNesting + .bss.port_interruptNesting + 0x000000003ffb22cc 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb22cc port_interruptNesting + .bss.port_xSchedulerRunning + 0x000000003ffb22d4 0x8 esp-idf/freertos/libfreertos.a(port.c.obj) + 0x000000003ffb22d4 port_xSchedulerRunning + .bss._xt_tick_divisor + 0x000000003ffb22dc 0x4 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x000000003ffb22dc _xt_tick_divisor + .bss.xSwitchingContext + 0x000000003ffb22e0 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxSchedulerSuspended + 0x000000003ffb22e8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTaskNumber + 0x000000003ffb22f0 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xNumOfOverflows + 0x000000003ffb22f4 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xYieldPending + 0x000000003ffb22f8 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxPendedTicks + 0x000000003ffb2300 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSchedulerRunning + 0x000000003ffb2304 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTopReadyPriority + 0x000000003ffb2308 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTickCount + 0x000000003ffb230c 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxCurrentNumberOfTasks + 0x000000003ffb2310 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xIdleTaskHandle + 0x000000003ffb2314 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xSuspendedTaskList + 0x000000003ffb231c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.uxTasksDeleted + 0x000000003ffb2330 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xTasksWaitingTermination + 0x000000003ffb2334 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xPendingReadyList + 0x000000003ffb2348 0x28 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxOverflowDelayedTaskList + 0x000000003ffb2370 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxDelayedTaskList + 0x000000003ffb2374 0x4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList2 + 0x000000003ffb2378 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.xDelayedTaskList1 + 0x000000003ffb238c 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxReadyTasksLists + 0x000000003ffb23a0 0x1f4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .bss.pxCurrentTCB + 0x000000003ffb2594 0x8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x000000003ffb2594 pxCurrentTCB + .bss.xLastTime$4994 + 0x000000003ffb259c 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xTimerQueue + 0x000000003ffb25a0 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.pxOverflowTimerList + 0x000000003ffb25a4 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.pxCurrentTimerList + 0x000000003ffb25a8 0x4 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xActiveTimerList2 + 0x000000003ffb25ac 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.xActiveTimerList1 + 0x000000003ffb25c0 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .bss.s_fd_table_lock + 0x000000003ffb25d4 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs_count + 0x000000003ffb25d8 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_vfs 0x000000003ffb25dc 0x20 esp-idf/vfs/libvfs.a(vfs.c.obj) + .bss.s_registered_select_num + 0x000000003ffb25fc 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_registered_selects + 0x000000003ffb2600 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .bss.s_reent 0x000000003ffb2604 0xf0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + *fill* 0x000000003ffb26f4 0x4 + .bss.adjtime_total_correction + 0x000000003ffb26f8 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.adjtime_start + 0x000000003ffb2700 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_adjust_time_lock + 0x000000003ffb2708 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + .bss.s_boot_time_lock + 0x000000003ffb270c 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + COMMON 0x000000003ffb2710 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x000000003ffb2710 s_microseconds_offset + .bss.s_cur_pll_freq + 0x000000003ffb2718 0x4 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .bss.s_flash_op_complete + 0x000000003ffb271c 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_can_start + 0x000000003ffb271d 0x1 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003ffb271e 0x2 + .bss.s_flash_op_mutex + 0x000000003ffb2720 0x4 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_op_cache_state + 0x000000003ffb2724 0x8 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .bss.s_flash_guard_ops + 0x000000003ffb272c 0x4 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .bss.esp_flash_default_chip + 0x000000003ffb2730 0x4 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x000000003ffb2730 esp_flash_default_chip + .bss.s_partition_list_lock + 0x000000003ffb2734 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss.s_partition_list + 0x000000003ffb2738 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .bss.s_mmap_last_handle + 0x000000003ffb273c 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_mmap_page_refcnt + 0x000000003ffb2740 0x100 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_mmap_entries_head + 0x000000003ffb2840 0x4 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .bss.s_log_cache_misses + 0x000000003ffb2844 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_entry_count + 0x000000003ffb2848 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache_max_generation + 0x000000003ffb284c 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_cache + 0x000000003ffb2850 0xf8 esp-idf/log/liblog.a(log.c.obj) + .bss.s_log_tags + 0x000000003ffb2948 0x4 esp-idf/log/liblog.a(log.c.obj) + .bss.base$5231 + 0x000000003ffb294c 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + .bss.s_log_mutex + 0x000000003ffb2950 0x4 esp-idf/log/liblog.a(log_freertos.c.obj) + COMMON 0x000000003ffb2954 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x000000003ffb2954 registered_heaps + .bss.s_rtc_isr_handle + 0x000000003ffb2958 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss.s_rtc_isr_handler_list + 0x000000003ffb295c 0x4 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .bss.p_uart_obj + 0x000000003ffb2960 0xc esp-idf/driver/libdriver.a(uart.c.obj) + .bss.curr_partition$5945 + 0x000000003ffb296c 0x4 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *libsoc.a:uart_hal_iram.*(.bss .bss.* COMMON) + *(.dynsbss) + *(.sbss) + *(.sbss.*) + *(.gnu.linkonce.sb.*) + *(.scommon) + *(.sbss2) + *(.sbss2.*) + *(.gnu.linkonce.sb2.*) + *(.dynbss) + *(.share.mem) + *(.gnu.linkonce.b.*) + 0x000000003ffb2970 . = ALIGN (0x8) + 0x000000003ffb2970 _bss_end = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_bss_end - ORIGIN (dram0_0_seg)) <= LENGTH (dram0_0_seg)), DRAM segment data does not fit.) + +.flash.rodata 0x000000003f400020 0x5758 + 0x000000003f400020 _rodata_start = ABSOLUTE (.) + *(.rodata_desc .rodata_desc.*) + .rodata_desc 0x000000003f400020 0x100 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x000000003f400020 esp_app_desc + *(.rodata_custom_desc .rodata_custom_desc.*) + *(EXCLUDE_FILE(*libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:heap.* *libgcov.a *libgcc.a:_divsf3.* *libesp32.a:panic.* *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *libphy.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libsoc.a:rtc_clk.* *libsoc.a:cpu_hal.* *libsoc.a:i2c_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:uart_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libxtensa.a:stdatomic.*) .rodata EXCLUDE_FILE(*libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:heap.* *libgcov.a *libgcc.a:_divsf3.* *libesp32.a:panic.* *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *liblog.a:log.* *liblog.a:log_freertos.* *libphy.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libsoc.a:rtc_clk.* *libsoc.a:cpu_hal.* *libsoc.a:i2c_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:uart_hal_iram.* *libsoc.a:spi_flash_hal_iram.* *libxtensa.a:stdatomic.*) .rodata.*) + .rodata.main_task.str1.4 + 0x000000003f400120 0xa5 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x000000003f4001c5 0x3 + .rodata.str1.4 + 0x000000003f4001c8 0x36f esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x373 (size before relaxing) + *fill* 0x000000003f400537 0x1 + .rodata.__func__$10379 + 0x000000003f400538 0xa esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x000000003f400542 0x2 + .rodata.__func__$10354 + 0x000000003f400544 0x13 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x000000003f400557 0x1 + .rodata.str1.4 + 0x000000003f400558 0x56 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + *fill* 0x000000003f4005ae 0x2 + .rodata.esp_crosscore_int_init.str1.4 + 0x000000003f4005b0 0xe esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + *fill* 0x000000003f4005be 0x2 + .rodata.__func__$6825 + 0x000000003f4005c0 0x17 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + *fill* 0x000000003f4005d7 0x1 + .rodata.__func__$6820 + 0x000000003f4005d8 0x17 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + *fill* 0x000000003f4005ef 0x1 + .rodata.str1.4 + 0x000000003f4005f0 0x39 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x3d (size before relaxing) + *fill* 0x000000003f400629 0x3 + .rodata.esp_dport_access_int_init.str1.4 + 0x000000003f40062c 0x6 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000003f400632 0x2 + .rodata.__func__$6499 + 0x000000003f400634 0x1a esp-idf/esp32/libesp32.a(dport_access.c.obj) + *fill* 0x000000003f40064e 0x2 + .rodata.__func__$6489 + 0x000000003f400650 0x25 esp-idf/esp32/libesp32.a(dport_access.c.obj) + *fill* 0x000000003f400675 0x3 + .rodata.find_desc_for_source.str1.4 + 0x000000003f400678 0x43 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003f4006bb 0x1 + .rodata.is_vect_desc_usable.str1.4 + 0x000000003f4006bc 0x43 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003f4006ff 0x1 + .rodata.__func__$5254 + 0x000000003f400700 0x11 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003f400711 0x3 + .rodata.__func__$5164 + 0x000000003f400714 0x14 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .rodata.__func__$5129 + 0x000000003f400728 0x15 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x000000003f40073d 0x3 + .rodata.int_desc + 0x000000003f400740 0x200 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .rodata.task_wdt_isr.str1.4 + 0x000000003f400940 0xfd esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400a3d 0x3 + .rodata.esp_task_wdt_init.str1.4 + 0x000000003f400a40 0x95 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400ad5 0x3 + .rodata.esp_task_wdt_add.str1.4 + 0x000000003f400ad8 0x39 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400b11 0x3 + .rodata.__func__$5849 + 0x000000003f400b14 0x11 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400b25 0x3 + .rodata.__func__$5832 + 0x000000003f400b28 0x12 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x000000003f400b3a 0x2 + .rodata.select_rtc_slow_clk.str1.4 + 0x000000003f400b3c 0x5b esp-idf/esp32/libesp32.a(clk.c.obj) + *fill* 0x000000003f400b97 0x1 + .rodata.esp_clk_init.str1.4 + 0x000000003f400b98 0x64 esp-idf/esp32/libesp32.a(clk.c.obj) + .rodata 0x000000003f400bfc 0x4 esp-idf/esp32/libesp32.a(clk.c.obj) + .rodata.__func__$7391 + 0x000000003f400c00 0xd esp-idf/esp32/libesp32.a(clk.c.obj) + *fill* 0x000000003f400c0d 0x3 + .rodata.rtc_brownout_isr_handler.str1.4 + 0x000000003f400c10 0x26 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + *fill* 0x000000003f400c36 0x2 + .rodata.esp_brownout_init.str1.4 + 0x000000003f400c38 0x8e esp-idf/esp_common/libesp_common.a(brownout.c.obj) + *fill* 0x000000003f400cc6 0x2 + .rodata 0x000000003f400cc8 0x5 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + *fill* 0x000000003f400ccd 0x3 + .rodata.__func__$5475 + 0x000000003f400cd0 0x12 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + *fill* 0x000000003f400ce2 0x2 + .rodata.esp_unknown_msg + 0x000000003f400ce4 0x6 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003f400cea 0x2 + .rodata.str1.4 + 0x000000003f400cec 0xf2f esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + *fill* 0x000000003f401c1b 0x1 + .rodata.esp_err_msg_table + 0x000000003f401c1c 0x4b8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .rodata.str1.4 + 0x000000003f4020d4 0x55 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + *fill* 0x000000003f402129 0x3 + .rodata.esp_ipc_init.str1.4 + 0x000000003f40212c 0x6 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x16 (size before relaxing) + *fill* 0x000000003f402132 0x2 + .rodata.__func__$5070 + 0x000000003f402134 0x9 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + *fill* 0x000000003f40213d 0x3 + .rodata.__func__$5082 + 0x000000003f402140 0xd esp-idf/esp_common/libesp_common.a(ipc.c.obj) + *fill* 0x000000003f40214d 0x3 + .rodata.str1.4 + 0x000000003f402150 0x46 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .rodata.timer_task.str1.4 + 0x000000003f402196 0xe esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f402196 0x2 + .rodata.esp_timer_init.str1.4 + 0x000000003f402198 0xa esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f4021a2 0x2 + .rodata.__func__$5266 + 0x000000003f4021a4 0xb esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f4021af 0x1 + .rodata.__func__$5238 + 0x000000003f4021b0 0xd esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + *fill* 0x000000003f4021bd 0x3 + .rodata.str1.4 + 0x000000003f4021c0 0xe0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.esp_timer_impl_init.str1.4 + 0x000000003f4022a0 0x72 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x000000003f402312 0x2 + .rodata.__func__$5771 + 0x000000003f402314 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .rodata.__func__$5755 + 0x000000003f402328 0x1f esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + *fill* 0x000000003f402347 0x1 + .rodata.vPortTaskWrapper.str1.4 + 0x000000003f402348 0x57 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f40239f 0x1 + .rodata.vPortEnterCritical.str1.4 + 0x000000003f4023a0 0xaf esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f40244f 0x1 + .rodata.vPortExitCritical.str1.4 + 0x000000003f402450 0x2c esp-idf/freertos/libfreertos.a(port.c.obj) + .rodata.__func__$4335 + 0x000000003f40247c 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f40248d 0x3 + .rodata.__func__$4322 + 0x000000003f402490 0x11 esp-idf/freertos/libfreertos.a(port.c.obj) + *fill* 0x000000003f4024a1 0x3 + .rodata.xt_unhandled_interrupt.str1.4 + 0x000000003f4024a4 0x23 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + *fill* 0x000000003f4024c7 0x9 + .rodata 0x000000003f4024d0 0x24 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x000000003f4024d0 _xt_coproc_sa_offset + .rodata.prvNotifyQueueSetContainer.str1.4 + 0x000000003f4024f4 0x54 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.xQueueGenericReset.str1.4 + 0x000000003f402548 0x3a esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5220 + 0x000000003f402548 0xd esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402555 0x3 + .rodata.__FUNCTION__$5188 + 0x000000003f402558 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40256d 0x3 + .rodata.__FUNCTION__$5178 + 0x000000003f402570 0x15 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402585 0x3 + .rodata.__FUNCTION__$5167 + 0x000000003f402588 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40259a 0x2 + .rodata.__FUNCTION__$5159 + 0x000000003f40259c 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4025b5 0x3 + .rodata.__FUNCTION__$5286 + 0x000000003f4025b8 0x1b esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4025d3 0x1 + .rodata.__FUNCTION__$5148 + 0x000000003f4025d4 0x12 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f4025e6 0x2 + .rodata.__FUNCTION__$5137 + 0x000000003f4025e8 0x1e esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402606 0x2 + .rodata.__FUNCTION__$5131 + 0x000000003f402608 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f402621 0x3 + .rodata.__FUNCTION__$5124 + 0x000000003f402624 0x19 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40263d 0x3 + .rodata.__FUNCTION__$5097 + 0x000000003f402640 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__func__$4306 + 0x000000003f402654 0x14 esp-idf/freertos/libfreertos.a(queue.c.obj) + .rodata.__FUNCTION__$5088 + 0x000000003f402668 0x13 esp-idf/freertos/libfreertos.a(queue.c.obj) + *fill* 0x000000003f40267b 0x1 + .rodata.prvDeleteTLS.str1.4 + 0x000000003f40267c 0x35 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x54 (size before relaxing) + *fill* 0x000000003f4026b1 0x3 + .rodata.vTaskStartScheduler.str1.4 + 0x000000003f4026b4 0x7 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.vTaskSwitchContext.str1.4 + 0x000000003f4026bb 0xd4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4026bb 0x1 + .rodata.__FUNCTION__$5588 + 0x000000003f4026bc 0x18 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5463 + 0x000000003f4026d4 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4026e9 0x3 + .rodata.__FUNCTION__$5457 + 0x000000003f4026ec 0x15 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402701 0x3 + .rodata.__FUNCTION__$5443 + 0x000000003f402704 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40271d 0x3 + .rodata.__FUNCTION__$5434 + 0x000000003f402720 0x20 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5421 + 0x000000003f402740 0x16 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402756 0x2 + .rodata.__func__$4339 + 0x000000003f402758 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402769 0x3 + .rodata.__func__$4326 + 0x000000003f40276c 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40277d 0x3 + .rodata.ucExpectedStackBytes$5392 + 0x000000003f402780 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5385 + 0x000000003f402794 0x13 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4027a7 0x1 + .rodata.__FUNCTION__$5376 + 0x000000003f4027a8 0x1d esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4027c5 0x3 + .rodata.__FUNCTION__$5367 + 0x000000003f4027c8 0x12 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4027da 0x2 + .rodata.__FUNCTION__$5347 + 0x000000003f4027dc 0xf esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f4027eb 0x1 + .rodata.__FUNCTION__$5328 + 0x000000003f4027ec 0x14 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5293 + 0x000000003f402800 0x11 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402811 0x3 + .rodata.__FUNCTION__$5265 + 0x000000003f402814 0xb esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40281f 0x1 + .rodata.__FUNCTION__$5552 + 0x000000003f402820 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40282d 0x3 + .rodata.__FUNCTION__$5556 + 0x000000003f402830 0xd esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f40283d 0x3 + .rodata.__FUNCTION__$5250 + 0x000000003f402840 0xc esp-idf/freertos/libfreertos.a(tasks.c.obj) + .rodata.__FUNCTION__$5243 + 0x000000003f40284c 0x19 esp-idf/freertos/libfreertos.a(tasks.c.obj) + *fill* 0x000000003f402865 0x3 + .rodata.prvCheckForValidListAndQueue.str1.4 + 0x000000003f402868 0x36 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x54 (size before relaxing) + *fill* 0x000000003f40289e 0x2 + .rodata.xTimerCreateTimerTask.str1.4 + 0x000000003f4028a0 0x8 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.prvProcessReceivedCommands + 0x000000003f4028a8 0x28 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$5042 + 0x000000003f4028d0 0x1d esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x000000003f4028ed 0x3 + .rodata.__FUNCTION__$5011 + 0x000000003f4028f0 0x1b esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x000000003f40290b 0x1 + .rodata.__FUNCTION__$4973 + 0x000000003f40290c 0x17 esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x000000003f402923 0x1 + .rodata.__FUNCTION__$5035 + 0x000000003f402924 0x14 esp-idf/freertos/libfreertos.a(timers.c.obj) + .rodata.__FUNCTION__$4925 + 0x000000003f402938 0x16 esp-idf/freertos/libfreertos.a(timers.c.obj) + *fill* 0x000000003f40294e 0x2 + .rodata.translate_path.str1.4 + 0x000000003f402950 0x72 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003f4029c2 0x2 + .rodata 0x000000003f4029c4 0x3 esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003f4029c7 0x1 + .rodata.__func__$6261 + 0x000000003f4029c8 0xf esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x000000003f4029d7 0x1 + .rodata.uart_tcsetattr + 0x000000003f4029d8 0x7c esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.uart_access.str1.4 + 0x000000003f402a54 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402a5f 0x1 + .rodata.uart_fcntl.str1.4 + 0x000000003f402a60 0x47 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402aa7 0x1 + .rodata.uart_return_char.str1.4 + 0x000000003f402aa8 0x1d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402ac5 0x3 + .rodata.uart_fsync.str1.4 + 0x000000003f402ac8 0x164 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.esp_vfs_dev_uart_register.str1.4 + 0x000000003f402c2c 0x36 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402c62 0x2 + .rodata.__func__$7457 + 0x000000003f402c64 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402c6f 0x1 + .rodata.__func__$7473 + 0x000000003f402c70 0x11 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402c81 0x3 + .rodata.__func__$7479 + 0x000000003f402c84 0xa esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402c8e 0x2 + .rodata.__func__$7495 + 0x000000003f402c90 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402c9b 0x1 + .rodata.__func__$7491 + 0x000000003f402c9c 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402ca7 0x1 + .rodata.__func__$7501 + 0x000000003f402ca8 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402cb3 0x1 + .rodata.__func__$7343 + 0x000000003f402cb4 0x12 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402cc6 0x2 + .rodata.__func__$7511 + 0x000000003f402cc8 0xb esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402cd3 0x1 + .rodata.__func__$7709 + 0x000000003f402cd4 0x1a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x000000003f402cee 0x2 + .rodata.s_ctx 0x000000003f402cf0 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .rodata.str1.4 + 0x000000003f402cfc 0x33 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x50 (size before relaxing) + *fill* 0x000000003f402d2f 0x1 + .rodata.__FUNCTION__$4841 + 0x000000003f402d30 0x15 esp-idf/newlib/libnewlib.a(locks.c.obj) + *fill* 0x000000003f402d45 0x3 + .rodata.__FUNCTION__$4832 + 0x000000003f402d48 0xc esp-idf/newlib/libnewlib.a(locks.c.obj) + .rodata.app_main.str1.4 + 0x000000003f402d54 0x27 esp-idf/main/libmain.a(blink.c.obj) + *fill* 0x000000003f402d7b 0x1 + .rodata.rtc_clk_cal_internal.str1.4 + 0x000000003f402d7c 0xad esp-idf/soc/libsoc.a(rtc_time.c.obj) + *fill* 0x000000003f402e29 0x3 + .rodata.__func__$3601 + 0x000000003f402e2c 0x15 esp-idf/soc/libsoc.a(rtc_time.c.obj) + *fill* 0x000000003f402e41 0x3 + .rodata 0x000000003f402e44 0x14 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .rodata.spi_flash_init_lock.str1.4 + 0x000000003f402e58 0x58 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.str1.4 + 0x000000003f402eb0 0xdf esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f402f8f 0x1 + .rodata.__func__$5489 + 0x000000003f402f90 0x31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f402fc1 0x3 + .rodata.__func__$5476 + 0x000000003f402fc4 0x32 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + *fill* 0x000000003f402ff6 0x2 + .rodata.__func__$5459 + 0x000000003f402ff8 0x14 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .rodata.str1.4 + 0x000000003f40300c 0xc0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .rodata.io_mode_str + 0x000000003f4030cc 0x2a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f4030f6 0x2 + .rodata.TAG 0x000000003f4030f8 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + *fill* 0x000000003f403102 0x2 + .rodata.esp_flash_init_default_chip.str1.4 + 0x000000003f403104 0xfb esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003f4031ff 0x1 + .rodata.TAG 0x000000003f403200 0xa esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + *fill* 0x000000003f40320a 0x2 + .rodata.ensure_partitions_loaded.str1.4 + 0x000000003f40320c 0x41 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f40324d 0x3 + .rodata.esp_partition_next.str1.4 + 0x000000003f403250 0x3e esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f40328e 0x2 + .rodata.esp_partition_get.str1.4 + 0x000000003f403290 0x11 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f4032a1 0x3 + .rodata.__func__$4235 + 0x000000003f4032a4 0x12 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f4032b6 0x2 + .rodata.__func__$4197 + 0x000000003f4032b8 0x13 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + *fill* 0x000000003f4032cb 0x1 + .rodata.str1.4 + 0x000000003f4032cc 0x102 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f4033ce 0x2 + .rodata.__func__$5541 + 0x000000003f4033d0 0x11 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f4033e1 0x3 + .rodata.__func__$5532 + 0x000000003f4033e4 0x15 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + *fill* 0x000000003f4033f9 0x3 + .rodata.str1.4 + 0x000000003f4033fc 0x131 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f40352d 0x3 + .rodata.__func__$4852 + 0x000000003f403530 0x12 esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f403542 0x2 + .rodata.__func__$4842 + 0x000000003f403544 0xf esp-idf/heap/libheap.a(heap_caps.c.obj) + *fill* 0x000000003f403553 0x1 + .rodata.__func__$4764 + 0x000000003f403554 0x18 esp-idf/heap/libheap.a(heap_caps.c.obj) + .rodata.register_heap.str1.4 + 0x000000003f40356c 0x56 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f4035c2 0x2 + .rodata.heap_caps_init.str1.4 + 0x000000003f4035c4 0xf4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x130 (size before relaxing) + .rodata.__func__$4126 + 0x000000003f4036b8 0x14 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .rodata.__func__$4806 + 0x000000003f4036cc 0xf esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f4036db 0x1 + .rodata.__func__$4775 + 0x000000003f4036dc 0xe esp-idf/heap/libheap.a(heap_caps_init.c.obj) + *fill* 0x000000003f4036ea 0x2 + .rodata.gpio_od_enable.str1.4 + 0x000000003f4036ec 0x3e esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f40372a 0x2 + .rodata.gpio_input_enable.str1.4 + 0x000000003f40372c 0xf3 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f40381f 0x1 + .rodata.gpio_input_disable.str1.4 + 0x000000003f403820 0xbc esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_disable.str1.4 + 0x000000003f4038dc 0xc0 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.gpio_output_enable.str1.4 + 0x000000003f40399c 0x1b esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f4039b7 0x1 + .rodata.gpio_set_direction.str1.4 + 0x000000003f4039b8 0x33 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f4039eb 0x1 + .rodata.__FUNCTION__$6253 + 0x000000003f4039ec 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6257 + 0x000000003f4039fc 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f403a0b 0x1 + .rodata.__func__$6068 + 0x000000003f403a0c 0x17 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f403a23 0x1 + .rodata.__FUNCTION__$6245 + 0x000000003f403a24 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + .rodata.__FUNCTION__$6249 + 0x000000003f403a38 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f403a4b 0x1 + .rodata.__func__$6052 + 0x000000003f403a4c 0x16 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f403a62 0x2 + .rodata.__FUNCTION__$6237 + 0x000000003f403a64 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f403a77 0x1 + .rodata.__func__$6060 + 0x000000003f403a78 0x15 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f403a8d 0x3 + .rodata.__FUNCTION__$6241 + 0x000000003f403a90 0x12 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f403aa2 0x2 + .rodata.__FUNCTION__$6282 + 0x000000003f403aa4 0x13 esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f403ab7 0x1 + .rodata.__FUNCTION__$6262 + 0x000000003f403ab8 0xf esp-idf/driver/libdriver.a(gpio.c.obj) + *fill* 0x000000003f403ac7 0x1 + .rodata.periph_module_enable + 0x000000003f403ac8 0x1e8 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .rodata.uart_pattern_enqueue.str1.4 + 0x000000003f403cb0 0x58 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.uart_set_word_length.str1.4 + 0x000000003f403d08 0x1f esp-idf/driver/libdriver.a(uart.c.obj) + 0x43 (size before relaxing) + *fill* 0x000000003f403d27 0x1 + .rodata.uart_set_stop_bits.str1.4 + 0x000000003f403d28 0xf esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403d37 0x1 + .rodata.uart_pattern_pop_pos.str1.4 + 0x000000003f403d38 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403d4a 0x2 + .rodata.uart_flush_input.str1.4 + 0x000000003f403d4c 0x2d esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403d79 0x3 + .rodata.__FUNCTION__$7244 + 0x000000003f403d7c 0x11 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403d8d 0x3 + .rodata.__FUNCTION__$7238 + 0x000000003f403d90 0x1b esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403dab 0x1 + .rodata.__FUNCTION__$7173 + 0x000000003f403dac 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403dbe 0x2 + .rodata.__FUNCTION__$6987 + 0x000000003f403dc0 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403dd7 0x1 + .rodata.__FUNCTION__$6982 + 0x000000003f403dd8 0x16 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403dee 0x2 + .rodata.__FUNCTION__$6948 + 0x000000003f403df0 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403e02 0x2 + .rodata.__FUNCTION__$6942 + 0x000000003f403e04 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403e16 0x2 + .rodata.__FUNCTION__$6937 + 0x000000003f403e18 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6932 + 0x000000003f403e28 0x10 esp-idf/driver/libdriver.a(uart.c.obj) + .rodata.__FUNCTION__$6927 + 0x000000003f403e38 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403e4b 0x1 + .rodata.__FUNCTION__$6922 + 0x000000003f403e4c 0x13 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403e5f 0x1 + .rodata.__FUNCTION__$6917 + 0x000000003f403e60 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403e75 0x3 + .rodata.__FUNCTION__$6912 + 0x000000003f403e78 0x15 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x000000003f403e8d 0x3 + .rodata.GPIO_PIN_MUX_REG + 0x000000003f403e90 0xa0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + 0x000000003f403e90 GPIO_PIN_MUX_REG + .rodata.s_prepare_reserved_regions.str1.4 + 0x000000003f403f30 0x10c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .rodata.__func__$2685 + 0x000000003f40403c 0x1b esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + *fill* 0x000000003f404057 0x1 + .rodata.spi_flash_clk_cfg_reg + 0x000000003f404058 0x30 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .rodata.soc_memory_region_count + 0x000000003f404088 0x4 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f404088 soc_memory_region_count + .rodata.soc_memory_regions + 0x000000003f40408c 0x2b0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f40408c soc_memory_regions + .rodata.str1.4 + 0x000000003f40433c 0x95 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0xa5 (size before relaxing) + *fill* 0x000000003f4043d1 0x3 + .rodata.soc_memory_types + 0x000000003f4043d4 0x12c esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f4043d4 soc_memory_types + .rodata.get_ota_partition_count.str1.4 + 0x000000003f404500 0x85 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f404585 0x3 + .rodata.esp_ota_get_running_partition.str1.4 + 0x000000003f404588 0x33 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f4045bb 0x1 + .rodata.__func__$5947 + 0x000000003f4045bc 0x1e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + *fill* 0x000000003f4045da 0x2 + .rodata.prvReturnItemByteBuf.str1.4 + 0x000000003f4045dc 0x3c esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x58 (size before relaxing) + .rodata.__FUNCTION__$5515 + 0x000000003f404618 0x16 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f40462e 0x2 + .rodata.__FUNCTION__$5374 + 0x000000003f404630 0x12 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f404642 0x2 + .rodata.__FUNCTION__$5453 + 0x000000003f404644 0x13 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f404657 0x1 + .rodata.__FUNCTION__$5429 + 0x000000003f404658 0x10 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .rodata.__FUNCTION__$5255 + 0x000000003f404668 0xf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + *fill* 0x000000003f404677 0x1 + .rodata 0x000000003f404678 0x20 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + 0x000000003f404678 Xthal_intlevel + .rodata.str1.1 + 0x000000003f404698 0x3c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x3d (size before relaxing) + .rodata.str1.1 + 0x000000003f4046d4 0x3c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x2 (size before relaxing) + .rodata 0x000000003f4046d4 0x2bc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .rodata.str1.1 + 0x000000003f404990 0x34 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .rodata 0x000000003f4049c4 0x2bc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .rodata.str1.1 + 0x000000003f404c80 0x22 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .rodata 0x000000003f404c80 0x2bc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003f404f3c 0x34 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .rodata.str1.1 + 0x000000003f404f3c 0xd /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0xf (size before relaxing) + .rodata.str1.1 + 0x000000003f404f49 0xa /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0xb (size before relaxing) + *fill* 0x000000003f404f53 0x5 + .rodata 0x000000003f404f58 0x128 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x000000003f404f68 __mprec_tinytens + 0x000000003f404f90 __mprec_bigtens + 0x000000003f404fb8 __mprec_tens + .rodata 0x000000003f405080 0x494 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x000000003f40533c __action_table + 0x000000003f4053a8 __state_table + 0x000000003f405414 __chclass + .rodata.str1.1 + 0x000000003f405514 0x22 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + *libsoc.a:uart_hal_iram.*(.rodata .rodata.*) + .rodata.uart_hal_rxfifo_rst.str1.4 + 0x000000003f405514 0xcb esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + *fill* 0x000000003f4055df 0x1 + .rodata.__func__$2760 + 0x000000003f4055e0 0x13 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + *libesp_event.a:esp_event.*(.rodata.handler_instances_add.str1.4 .rodata.base_node_add_handler.str1.4 .rodata.loop_node_add_handler.str1.4 .rodata.esp_event_loop_create.str1.4 .rodata.esp_event_loop_run.str1.4 .rodata.esp_event_loop_run_task.str1.4 .rodata.esp_event_handler_register_with_internal.str1.4 .rodata.esp_event_handler_unregister_with_internal.str1.4 .rodata.__func__$8868 .rodata.__func__$8855 .rodata.__func__$8822 .rodata.__func__$8790 .rodata.__func__$8765 .rodata.__func__$8724 .rodata.__func__$8715) + *libesp_event.a:default_event_loop.*(.rodata.esp_event_loop_create_default.str1.4 .rodata.esp_event_send_to_default_loop) + *liblog.a:log.*(.rodata.esp_log_level_set.str1.4 .rodata.__func__$3534 .rodata.__func__$3505) + *fill* 0x000000003f4055f3 0x1 + .rodata.esp_log_level_set.str1.4 + 0x000000003f4055f4 0x7e esp-idf/log/liblog.a(log.c.obj) + *fill* 0x000000003f405672 0x2 + .rodata.__func__$3534 + 0x000000003f405674 0x15 esp-idf/log/liblog.a(log.c.obj) + *liblog.a:log_freertos.*(.rodata.esp_log_system_timestamp.str1.4) + *(.irom1.text) + *(.gnu.linkonce.r.*) + *(.rodata1) + 0x000000003f405689 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.) + *(.xt_except_table) + *(.gcc_except_table .gcc_except_table.*) + *(.gnu.linkonce.e.*) + *(.gnu.version_r) + 0x000000003f40568c . = ((. + 0x3) & 0xfffffffffffffffc) + *fill* 0x000000003f405689 0x3 + 0x000000003f40568c __eh_frame = ABSOLUTE (.) + *(.eh_frame) + .eh_frame 0x000000003f40568c 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .eh_frame 0x000000003f40568c 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .eh_frame 0x000000003f4056b4 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .eh_frame 0x000000003f4056dc 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .eh_frame 0x000000003f405704 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .eh_frame 0x000000003f40572c 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + 0x000000003f405734 . = ((. + 0x7) & 0xfffffffffffffffc) + *fill* 0x000000003f405730 0x4 + 0x000000003f405734 __init_array_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*crtbegin.* *crtend.*) .ctors .ctors.*) + .ctors 0x000000003f405734 0x4 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x000000003f405738 __init_array_end = ABSOLUTE (.) + *crtbegin.*(.dtors) + .dtors 0x000000003f405738 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + *(EXCLUDE_FILE(*crtend.*) .dtors) + *(SORT_BY_NAME(.dtors.*)) + *(.dtors) + .dtors 0x000000003f40573c 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + 0x000000003f40573c __DTOR_END__ + 0x000000003f405740 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.) + *(.xt_except_desc) + *(.gnu.linkonce.h.*) + 0x000000003f405740 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.) + *(.xt_except_desc_end) + *(.dynamic) + *(.gnu.version_d) + 0x000000003f405740 soc_reserved_memory_region_start = ABSOLUTE (.) + *(.reserved_memory_address) + .reserved_memory_address + 0x000000003f405740 0x38 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x000000003f405778 soc_reserved_memory_region_end = ABSOLUTE (.) + 0x000000003f405778 _rodata_end = ABSOLUTE (.) + 0x000000003f405778 _lit4_start = ABSOLUTE (.) + *(*.lit4) + *(.lit4.*) + *(.gnu.linkonce.lit4.*) + 0x000000003f405778 _lit4_end = ABSOLUTE (.) + 0x000000003f405778 . = ALIGN (0x4) + 0x000000003f405778 _thread_local_start = ABSOLUTE (.) + *(.tdata) + *(.tdata.*) + *(.tbss) + *(.tbss.*) + 0x000000003f405778 _thread_local_end = ABSOLUTE (.) + 0x000000003f405778 . = ALIGN (0x4) + +.flash.text 0x00000000400d0020 0x12d87 + 0x00000000400d0020 _stext = . + 0x00000000400d0020 _text_start = ABSOLUTE (.) + *(EXCLUDE_FILE(*libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:heap.* *libfreertos.a *libgcov.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libesp32.a:panic.* *libesp_ringbuf.a *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *librtc.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_rom_patch.* *libsoc.a:spi_hal_iram.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:cpu_util.* *libsoc.a:rtc_clk.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_wdt.* *libsoc.a:rtc_init.* *libsoc.a:rtc_sleep.* *libsoc.a:i2c_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_pm.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:uart_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_clk_init.* *libsoc.a:spi_flash_hal_iram.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .literal EXCLUDE_FILE(*libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:heap.* *libfreertos.a *libgcov.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libesp32.a:panic.* *libesp_ringbuf.a *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *liblog.a:log.* *liblog.a:log_freertos.* *librtc.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_rom_patch.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libsoc.a:spi_hal_iram.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:cpu_util.* *libsoc.a:rtc_clk.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_wdt.* *libsoc.a:rtc_init.* *libsoc.a:rtc_sleep.* *libsoc.a:i2c_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_pm.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:uart_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_clk_init.* *libsoc.a:spi_flash_hal_iram.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .literal.* EXCLUDE_FILE(*libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:heap.* *libfreertos.a *libgcov.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libesp32.a:panic.* *libesp_ringbuf.a *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *librtc.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_rom_patch.* *libsoc.a:spi_hal_iram.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:cpu_util.* *libsoc.a:rtc_clk.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_wdt.* *libsoc.a:rtc_init.* *libsoc.a:rtc_sleep.* *libsoc.a:i2c_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_pm.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:uart_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_clk_init.* *libsoc.a:spi_flash_hal_iram.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .text EXCLUDE_FILE(*libapp_trace.a:SEGGER_RTT_esp32.* *libapp_trace.a:SEGGER_SYSVIEW_FreeRTOS.* *libapp_trace.a:SEGGER_SYSVIEW_Config_FreeRTOS.* *libapp_trace.a:app_trace.* *libapp_trace.a:SEGGER_SYSVIEW.* *libapp_trace.a:app_trace_util.* *libnewlib.a:heap.* *libfreertos.a *libgcov.a *libgcc.a:_divsf3.* *libgcc.a:lib2funcs.* *libesp32.a:panic.* *libesp_ringbuf.a *libheap.a:multi_heap.* *libheap.a:multi_heap_poisoning.* *liblog.a:log.* *liblog.a:log_freertos.* *librtc.a *libspi_flash.a:memspi_host_driver.* *libspi_flash.a:spi_flash_chip_gd.* *libspi_flash.a:spi_flash_chip_generic.* *libspi_flash.a:spi_flash_chip_issi.* *libspi_flash.a:spi_flash_rom_patch.* *libesp_event.a:esp_event.* *libesp_event.a:default_event_loop.* *libsoc.a:spi_hal_iram.* *libsoc.a:spi_slave_hal_iram.* *libsoc.a:lldesc.* *libsoc.a:cpu_util.* *libsoc.a:rtc_clk.* *libsoc.a:cpu_hal.* *libsoc.a:rtc_wdt.* *libsoc.a:rtc_init.* *libsoc.a:rtc_sleep.* *libsoc.a:i2c_hal_iram.* *libsoc.a:soc_hal.* *libsoc.a:rtc_periph.* *libsoc.a:rtc_pm.* *libsoc.a:spi_flash_hal_gpspi.* *libsoc.a:uart_hal_iram.* *libsoc.a:rtc_time.* *libsoc.a:ledc_hal_iram.* *libsoc.a:rtc_clk_init.* *libsoc.a:spi_flash_hal_iram.* *libhal.a *libxtensa.a:eri.* *libxtensa.a:stdatomic.*) .text.* EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifi0iram EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifi0iram.* EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifirxiram EXCLUDE_FILE(*libnet80211.a *libpp.a *libsoc.a:uart_hal_iram.*) .wifirxiram.*) + .literal.esp_ota_get_app_description + 0x00000000400d0020 0x4 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .literal.esp_pthread_cfg_key_destructor + 0x00000000400d0024 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x4 (size before relaxing) + .literal.esp_pthread_init + 0x00000000400d0024 0xc esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x18 (size before relaxing) + .literal.find_key + 0x00000000400d0030 0x8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x10 (size before relaxing) + .literal.pthread_key_create + 0x00000000400d0038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14 (size before relaxing) + .literal.pthread_key_delete + 0x00000000400d0038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x18 (size before relaxing) + .literal.do_global_ctors + 0x00000000400d0038 0x8 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .literal.main_task + 0x00000000400d0040 0x18 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x48 (size before relaxing) + .literal.intr_matrix_clear + 0x00000000400d0058 0x4 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x8 (size before relaxing) + .literal.wdt_reset_cpu1_info_enable + 0x00000000400d005c 0x4 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0xc (size before relaxing) + .literal.esp_crosscore_int_init + 0x00000000400d0060 0x1c esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x30 (size before relaxing) + .literal.dport_access_init_core + 0x00000000400d007c 0x14 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x24 (size before relaxing) + .literal.esp_dport_access_int_init + 0x00000000400d0090 0x14 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x1c (size before relaxing) + .literal.esp_int_wdt_init + 0x00000000400d00a4 0x30 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x34 (size before relaxing) + .literal.esp_int_wdt_cpu_init + 0x00000000400d00d4 0x8 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x18 (size before relaxing) + .literal.insert_vector_desc + 0x00000000400d00dc 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.find_desc_for_int + 0x00000000400d00e0 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.int_has_handler + 0x00000000400d00e0 0x8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .literal.get_desc_for_int + 0x00000000400d00e8 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.find_desc_for_source + 0x00000000400d00f4 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x14 (size before relaxing) + .literal.is_vect_desc_usable + 0x00000000400d0100 0xc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x18 (size before relaxing) + .literal.get_available_int + 0x00000000400d010c 0x4 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x24 (size before relaxing) + .literal.esp_intr_alloc_intrstatus + 0x00000000400d0110 0x1c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x6c (size before relaxing) + .literal.esp_intr_alloc + 0x00000000400d012c 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x4 (size before relaxing) + .literal.find_task_in_twdt_list + 0x00000000400d012c 0x4 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .literal.reset_hw_timer + 0x00000000400d0130 0x4 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0xc (size before relaxing) + .literal.task_wdt_isr + 0x00000000400d0134 0x30 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x94 (size before relaxing) + .literal.esp_task_wdt_init + 0x00000000400d0164 0x1c esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x70 (size before relaxing) + .literal.esp_task_wdt_add + 0x00000000400d0180 0xc esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x48 (size before relaxing) + .literal.esp_task_wdt_reset + 0x00000000400d018c 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x24 (size before relaxing) + .literal.idle_hook_cb + 0x00000000400d018c 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x4 (size before relaxing) + .literal.esp_cache_err_int_init + 0x00000000400d018c 0xc esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x20 (size before relaxing) + .literal.select_rtc_slow_clk + 0x00000000400d0198 0xc esp-idf/esp32/libesp32.a(clk.c.obj) + 0x30 (size before relaxing) + .literal.esp_clk_init + 0x00000000400d01a4 0x24 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x68 (size before relaxing) + .literal.esp_perip_clk_init + 0x00000000400d01c8 0x2c esp-idf/esp32/libesp32.a(clk.c.obj) + 0x60 (size before relaxing) + .literal.rtc_brownout_isr_handler + 0x00000000400d01f4 0x4 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x18 (size before relaxing) + .literal.esp_brownout_init + 0x00000000400d01f8 0x14 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x24 (size before relaxing) + .literal.esp_err_to_name + 0x00000000400d020c 0x8 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .literal.esp_vApplicationIdleHook + 0x00000000400d0214 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x8 (size before relaxing) + .literal.esp_register_freertos_idle_hook_for_cpu + 0x00000000400d0218 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_register_freertos_tick_hook_for_cpu + 0x00000000400d021c 0x4 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x14 (size before relaxing) + .literal.esp_ipc_call_and_wait + 0x00000000400d0220 0x1c esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x44 (size before relaxing) + .literal.esp_ipc_init + 0x00000000400d023c 0x14 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x3c (size before relaxing) + .literal.esp_ipc_call + 0x00000000400d0250 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x4 (size before relaxing) + .literal.timer_process_alarm + 0x00000000400d0250 0xc esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x34 (size before relaxing) + .literal.timer_task + 0x00000000400d025c 0x10 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1c (size before relaxing) + .literal.esp_timer_init + 0x00000000400d026c 0x14 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x30 (size before relaxing) + .literal.esp_timer_impl_init + 0x00000000400d0280 0x50 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x74 (size before relaxing) + .literal.get_vfs_for_fd + 0x00000000400d02d0 0xc esp-idf/vfs/libvfs.a(vfs.c.obj) + .literal.esp_vfs_register_common + 0x00000000400d02dc 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.get_vfs_for_path + 0x00000000400d02e4 0x8 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.translate_path + 0x00000000400d02ec 0x14 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_register + 0x00000000400d0300 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_open + 0x00000000400d0300 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_write + 0x00000000400d0304 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_lseek + 0x00000000400d0304 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_read + 0x00000000400d0304 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_close + 0x00000000400d0304 0x4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x18 (size before relaxing) + .literal.esp_vfs_fstat + 0x00000000400d0308 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_stat + 0x00000000400d0308 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_link + 0x00000000400d0308 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_unlink + 0x00000000400d0308 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x8 (size before relaxing) + .literal.esp_vfs_rename + 0x00000000400d0308 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x10 (size before relaxing) + .literal.esp_vfs_select_triggered + 0x00000000400d0308 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.esp_vfs_select_triggered_isr + 0x00000000400d0308 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xc (size before relaxing) + .literal.uart_tx_char + 0x00000000400d0308 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .literal.uart_rx_char + 0x00000000400d030c 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_read_char + 0x00000000400d030c 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4 (size before relaxing) + .literal.unregister_select + 0x00000000400d030c 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_end_select + 0x00000000400d0318 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.register_select + 0x00000000400d0318 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x18 (size before relaxing) + .literal.uart_start_select + 0x00000000400d0318 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x38 (size before relaxing) + .literal.select_notif_callback_isr + 0x00000000400d031c 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_tcflush + 0x00000000400d031c 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_tcdrain + 0x00000000400d031c 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xc (size before relaxing) + .literal.uart_tcgetattr + 0x00000000400d031c 0x48 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x8c (size before relaxing) + .literal.uart_tcsetattr + 0x00000000400d0364 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xa0 (size before relaxing) + .literal.uart_access + 0x00000000400d0368 0x10 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_open + 0x00000000400d0378 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_fcntl + 0x00000000400d037c 0xc esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.uart_fstat + 0x00000000400d0388 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_close + 0x00000000400d0390 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x10 (size before relaxing) + .literal.uart_return_char + 0x00000000400d0394 0x8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x14 (size before relaxing) + .literal.uart_fsync + 0x00000000400d039c 0x24 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x40 (size before relaxing) + .literal.uart_read + 0x00000000400d03c0 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x30 (size before relaxing) + .literal.uart_write + 0x00000000400d03c4 0x4 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + .literal.esp_vfs_dev_uart_register + 0x00000000400d03c8 0x44 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x54 (size before relaxing) + .literal.raise_r_stub + 0x00000000400d040c 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + 0x4 (size before relaxing) + .literal.esp_setup_syscall_table + 0x00000000400d040c 0x18 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + 0x1c (size before relaxing) + .literal._raise_r + 0x00000000400d0424 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal._sbrk_r + 0x00000000400d0424 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x4 (size before relaxing) + .literal.get_boot_time + 0x00000000400d0424 0xc esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal.set_boot_time + 0x00000000400d0430 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal.get_time_since_boot + 0x00000000400d0430 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.adjust_boot_time + 0x00000000400d0434 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x20 (size before relaxing) + .literal.get_adjusted_boot_time + 0x00000000400d043c 0x4 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x10 (size before relaxing) + .literal.esp_clk_slowclk_cal_set + 0x00000000400d0440 0x8 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14 (size before relaxing) + .literal.esp_clk_slowclk_cal_get + 0x00000000400d0448 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x4 (size before relaxing) + .literal.get_rtc_time_us + 0x00000000400d0448 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x8 (size before relaxing) + .literal.esp_set_time_from_rtc + 0x00000000400d0448 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + 0xc (size before relaxing) + .literal.__cxx_fatal_exception + 0x00000000400d0448 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x4 (size before relaxing) + .literal.app_main + 0x00000000400d0448 0xc esp-idf/main/libmain.a(blink.c.obj) + 0x28 (size before relaxing) + .literal.brownout_hal_config + 0x00000000400d0454 0x1c esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .literal.brownout_hal_intr_enable + 0x00000000400d0470 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x4 (size before relaxing) + .literal.brownout_hal_intr_clear + 0x00000000400d0470 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x4 (size before relaxing) + .literal.bootloader_init_mem + 0x00000000400d0470 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x10 (size before relaxing) + .literal.bootloader_flash_update_id + 0x00000000400d0474 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x8 (size before relaxing) + .literal.execute_flash_command + 0x00000000400d0478 0x2c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x3c (size before relaxing) + .literal.bootloader_read_flash_id + 0x00000000400d04a4 0x8 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_init_lock + 0x00000000400d04ac 0x10 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x18 (size before relaxing) + .literal.spi_flash_op_lock + 0x00000000400d04bc 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_op_unlock + 0x00000000400d04bc 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x8 (size before relaxing) + .literal.is_safe_write_address + 0x00000000400d04bc 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_init + 0x00000000400d04bc 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x4 (size before relaxing) + .literal.esp_flash_init_default_chip + 0x00000000400d04bc 0x18 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x34 (size before relaxing) + .literal.esp_flash_app_init + 0x00000000400d04d4 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x8 (size before relaxing) + .literal.esp_flash_app_init_os_functions + 0x00000000400d04d4 0x8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .literal.load_partitions + 0x00000000400d04dc 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x38 (size before relaxing) + .literal.ensure_partitions_loaded + 0x00000000400d04fc 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x24 (size before relaxing) + .literal.iterator_create + 0x00000000400d0508 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.esp_partition_iterator_release + 0x00000000400d0508 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x4 (size before relaxing) + .literal.esp_partition_next + 0x00000000400d0508 0xc esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x28 (size before relaxing) + .literal.esp_partition_find + 0x00000000400d0514 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0xc (size before relaxing) + .literal.esp_partition_get + 0x00000000400d0514 0x8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x10 (size before relaxing) + .literal.esp_partition_main_flash_region_safe + 0x00000000400d051c 0x4 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x8 (size before relaxing) + .literal.spi_flash_cache2phys + 0x00000000400d0520 0x14 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x18 (size before relaxing) + .literal.register_heap + 0x00000000400d0534 0x10 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x18 (size before relaxing) + .literal.heap_caps_enable_nonos_stack_heaps + 0x00000000400d0544 0x4 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0xc (size before relaxing) + .literal.heap_caps_init + 0x00000000400d0548 0x34 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x84 (size before relaxing) + .literal.gpio_od_enable + 0x00000000400d057c 0x18 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_od_disable + 0x00000000400d0594 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_input_enable + 0x00000000400d0598 0x14 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_input_disable + 0x00000000400d05ac 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x34 (size before relaxing) + .literal.gpio_output_disable + 0x00000000400d05b8 0x10 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x3c (size before relaxing) + .literal.gpio_output_enable + 0x00000000400d05c8 0xc esp-idf/driver/libdriver.a(gpio.c.obj) + 0x24 (size before relaxing) + .literal.gpio_set_level + 0x00000000400d05d4 0x4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x20 (size before relaxing) + .literal.gpio_set_direction + 0x00000000400d05d8 0x8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x40 (size before relaxing) + .literal.periph_module_enable + 0x00000000400d05e0 0x40 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x98 (size before relaxing) + .literal.rtc_gpio_force_hold_dis_all + 0x00000000400d0620 0xc esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x14 (size before relaxing) + .literal.rtc_isr + 0x00000000400d062c 0x10 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .literal.rtc_isr_ensure_installed + 0x00000000400d063c 0xc esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x20 (size before relaxing) + .literal.rtc_isr_register + 0x00000000400d0648 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x18 (size before relaxing) + .literal.uart_pattern_queue_update + 0x00000000400d0648 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.uart_set_word_length + 0x00000000400d064c 0x18 esp-idf/driver/libdriver.a(uart.c.obj) + 0x34 (size before relaxing) + .literal.uart_get_word_length + 0x00000000400d0664 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_set_stop_bits + 0x00000000400d0668 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x34 (size before relaxing) + .literal.uart_get_stop_bits + 0x00000000400d0670 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_set_parity + 0x00000000400d0674 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x28 (size before relaxing) + .literal.uart_get_parity + 0x00000000400d0678 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x20 (size before relaxing) + .literal.uart_set_baudrate + 0x00000000400d067c 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x2c (size before relaxing) + .literal.uart_get_baudrate + 0x00000000400d0680 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x28 (size before relaxing) + .literal.uart_enable_intr_mask + 0x00000000400d0684 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_disable_intr_mask + 0x00000000400d0688 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x24 (size before relaxing) + .literal.uart_enable_rx_intr + 0x00000000400d068c 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_disable_rx_intr + 0x00000000400d068c 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_wait_tx_done + 0x00000000400d068c 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x64 (size before relaxing) + .literal.uart_get_buffered_data_len + 0x00000000400d0694 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + 0x28 (size before relaxing) + .literal.uart_flush_input + 0x00000000400d0698 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x84 (size before relaxing) + .literal.uart_is_driver_installed + 0x00000000400d06a0 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_set_select_notif_callback + 0x00000000400d06a0 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + 0x4 (size before relaxing) + .literal.uart_get_selectlock + 0x00000000400d06a0 0x4 esp-idf/driver/libdriver.a(uart.c.obj) + .literal.s_get_num_reserved_regions + 0x00000000400d06a4 0x8 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .literal.s_prepare_reserved_regions + 0x00000000400d06ac 0x20 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x3c (size before relaxing) + .literal.soc_get_available_memory_region_max_count + 0x00000000400d06cc 0x4 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x8 (size before relaxing) + .literal.soc_get_available_memory_regions + 0x00000000400d06d0 0x4 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x14 (size before relaxing) + .literal.uart_hal_set_baudrate + 0x00000000400d06d4 0x10 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x18 (size before relaxing) + .literal.uart_hal_get_baudrate + 0x00000000400d06e4 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_init + 0x00000000400d06e4 0x1c esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x2c (size before relaxing) + .literal.spi_flash_hal_supports_direct_write + 0x00000000400d0700 0x8 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0xc (size before relaxing) + .literal.spi_flash_hal_supports_direct_read + 0x00000000400d0708 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0xc (size before relaxing) + .literal.esp_ota_get_running_partition + 0x00000000400d0708 0x18 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x38 (size before relaxing) + .literal 0x00000000400d0720 0xc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x18 (size before relaxing) + .literal 0x00000000400d072c 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x4 (size before relaxing) + .literal 0x00000000400d072c 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + 0xc (size before relaxing) + .literal 0x00000000400d072c 0x1c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x48 (size before relaxing) + .literal 0x00000000400d0748 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0xc (size before relaxing) + .literal 0x00000000400d0748 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x80 (size before relaxing) + .literal 0x00000000400d0770 0xc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x3c (size before relaxing) + .literal 0x00000000400d077c 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x38 (size before relaxing) + .literal 0x00000000400d077c 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0xc (size before relaxing) + .literal 0x00000000400d077c 0x90 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x1a0 (size before relaxing) + .literal 0x00000000400d080c 0x2c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0xb8 (size before relaxing) + .literal 0x00000000400d0838 0x38 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x1ec (size before relaxing) + .literal 0x00000000400d0870 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x14 (size before relaxing) + .literal 0x00000000400d0870 0x6c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0x218 (size before relaxing) + .literal 0x00000000400d08dc 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x4 (size before relaxing) + .literal 0x00000000400d08dc 0x4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x10 (size before relaxing) + .literal 0x00000000400d08e0 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x8 (size before relaxing) + .literal 0x00000000400d08e0 0x10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x70 (size before relaxing) + .literal 0x00000000400d08f0 0x8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x20 (size before relaxing) + .literal 0x00000000400d08f8 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x78 (size before relaxing) + .literal.uart_hal_rxfifo_rst + 0x00000000400d0920 0x20 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x2c (size before relaxing) + .literal.heap_bubble_down + 0x00000000400d0940 0x4 esp-idf/log/liblog.a(log.c.obj) + .literal.esp_log_writev + 0x00000000400d0944 0x28 esp-idf/log/liblog.a(log.c.obj) + 0x44 (size before relaxing) + .text.esp_ota_get_app_description + 0x00000000400d096c 0x8 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0x00000000400d096c esp_ota_get_app_description + .text.esp_pthread_cfg_key_destructor + 0x00000000400d0974 0xa esp-idf/pthread/libpthread.a(pthread.c.obj) + 0xe (size before relaxing) + *fill* 0x00000000400d097e 0x2 + .text.esp_pthread_init + 0x00000000400d0980 0x36 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x3e (size before relaxing) + 0x00000000400d0980 esp_pthread_init + *fill* 0x00000000400d09b6 0x2 + .text.find_key + 0x00000000400d09b8 0x28 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x2b (size before relaxing) + *fill* 0x00000000400d09e0 0x0 + .text.pthread_key_create + 0x00000000400d09e0 0x48 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x4c (size before relaxing) + 0x00000000400d09e0 pthread_key_create + .text.pthread_key_delete + 0x00000000400d0a28 0x3a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x45 (size before relaxing) + 0x00000000400d0a28 pthread_key_delete + *fill* 0x00000000400d0a62 0x2 + .text.do_global_ctors + 0x00000000400d0a64 0x19 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x00000000400d0a7d 0x3 + .text.main_task + 0x00000000400d0a80 0x6c esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x90 (size before relaxing) + .text.intr_matrix_clear + 0x00000000400d0aec 0x29 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + *fill* 0x00000000400d0b15 0x3 + .text.wdt_reset_cpu1_info_enable + 0x00000000400d0b18 0x29 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x2d (size before relaxing) + *fill* 0x00000000400d0b41 0x3 + .text.esp_crosscore_int_init + 0x00000000400d0b44 0x6a esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x76 (size before relaxing) + 0x00000000400d0b44 esp_crosscore_int_init + *fill* 0x00000000400d0bae 0x2 + .text.dport_access_init_core + 0x00000000400d0bb0 0x62 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x6a (size before relaxing) + *fill* 0x00000000400d0c12 0x2 + .text.esp_dport_access_int_init + 0x00000000400d0c14 0x33 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x37 (size before relaxing) + 0x00000000400d0c14 esp_dport_access_int_init + *fill* 0x00000000400d0c47 0x1 + .text.esp_int_wdt_init + 0x00000000400d0c48 0xee esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0xf2 (size before relaxing) + 0x00000000400d0c48 esp_int_wdt_init + *fill* 0x00000000400d0d36 0x2 + .text.esp_int_wdt_cpu_init + 0x00000000400d0d38 0x2f esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x37 (size before relaxing) + 0x00000000400d0d38 esp_int_wdt_cpu_init + *fill* 0x00000000400d0d67 0x1 + .text.insert_vector_desc + 0x00000000400d0d68 0x50 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.find_desc_for_int + 0x00000000400d0db8 0x25 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x00000000400d0ddd 0x3 + .text.int_has_handler + 0x00000000400d0de0 0x23 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + *fill* 0x00000000400d0e03 0x1 + .text.get_desc_for_int + 0x00000000400d0e04 0x6c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x74 (size before relaxing) + .text.find_desc_for_source + 0x00000000400d0e70 0x6c esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.is_vect_desc_usable + 0x00000000400d0edc 0xe0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .text.get_available_int + 0x00000000400d0fbc 0x158 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x164 (size before relaxing) + .text.esp_intr_alloc_intrstatus + 0x00000000400d1114 0x281 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x2a5 (size before relaxing) + 0x00000000400d1114 esp_intr_alloc_intrstatus + *fill* 0x00000000400d1395 0x3 + .text.esp_intr_alloc + 0x00000000400d1398 0x18 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x1c (size before relaxing) + 0x00000000400d1398 esp_intr_alloc + .text.find_task_in_twdt_list + 0x00000000400d13b0 0x2f esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x00000000400d13df 0x1 + .text.reset_hw_timer + 0x00000000400d13e0 0x35 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + *fill* 0x00000000400d1415 0x3 + .text.task_wdt_isr + 0x00000000400d1418 0x12a esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x156 (size before relaxing) + *fill* 0x00000000400d1542 0x2 + .text.esp_task_wdt_init + 0x00000000400d1544 0x1c5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x1d5 (size before relaxing) + 0x00000000400d1544 esp_task_wdt_init + *fill* 0x00000000400d1709 0x3 + .text.esp_task_wdt_add + 0x00000000400d170c 0xb6 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0xd5 (size before relaxing) + 0x00000000400d170c esp_task_wdt_add + *fill* 0x00000000400d17c2 0x2 + .text.esp_task_wdt_reset + 0x00000000400d17c4 0x4f esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x61 (size before relaxing) + 0x00000000400d17c4 esp_task_wdt_reset + *fill* 0x00000000400d1813 0x1 + .text.idle_hook_cb + 0x00000000400d1814 0xa esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0xd (size before relaxing) + *fill* 0x00000000400d181e 0x2 + .text.esp_cache_err_int_init + 0x00000000400d1820 0x56 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x5e (size before relaxing) + 0x00000000400d1820 esp_cache_err_int_init + *fill* 0x00000000400d1876 0x2 + .text.select_rtc_slow_clk + 0x00000000400d1878 0x67 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x7b (size before relaxing) + *fill* 0x00000000400d18df 0x1 + .text.esp_clk_init + 0x00000000400d18e0 0xa5 esp-idf/esp32/libesp32.a(clk.c.obj) + 0xd9 (size before relaxing) + 0x00000000400d18e0 esp_clk_init + *fill* 0x00000000400d1985 0x3 + .text.esp_perip_clk_init + 0x00000000400d1988 0xde esp-idf/esp32/libesp32.a(clk.c.obj) + 0x10a (size before relaxing) + 0x00000000400d1988 esp_perip_clk_init + *fill* 0x00000000400d1a66 0x2 + .text.rtc_brownout_isr_handler + 0x00000000400d1a68 0x29 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400d1a91 0x3 + .text.esp_brownout_init + 0x00000000400d1a94 0x37 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x43 (size before relaxing) + 0x00000000400d1a94 esp_brownout_init + *fill* 0x00000000400d1acb 0x1 + .text.esp_err_to_name + 0x00000000400d1acc 0x2d esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x00000000400d1acc esp_err_to_name + *fill* 0x00000000400d1af9 0x3 + .text.esp_vApplicationIdleHook + 0x00000000400d1afc 0x34 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x37 (size before relaxing) + 0x00000000400d1afc esp_vApplicationIdleHook + *fill* 0x00000000400d1b30 0x0 + .text.esp_register_freertos_idle_hook_for_cpu + 0x00000000400d1b30 0x59 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x5d (size before relaxing) + 0x00000000400d1b30 esp_register_freertos_idle_hook_for_cpu + *fill* 0x00000000400d1b89 0x3 + .text.esp_register_freertos_tick_hook_for_cpu + 0x00000000400d1b8c 0x5a esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x00000000400d1b8c esp_register_freertos_tick_hook_for_cpu + *fill* 0x00000000400d1be6 0x2 + .text.esp_ipc_call_and_wait + 0x00000000400d1be8 0xb5 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0xd5 (size before relaxing) + *fill* 0x00000000400d1c9d 0x3 + .text.esp_ipc_init + 0x00000000400d1ca0 0x75 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x89 (size before relaxing) + *fill* 0x00000000400d1d15 0x3 + .text.esp_ipc_call + 0x00000000400d1d18 0x15 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x00000000400d1d18 esp_ipc_call + *fill* 0x00000000400d1d2d 0x3 + .text.timer_process_alarm + 0x00000000400d1d30 0xba esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0xcd (size before relaxing) + *fill* 0x00000000400d1dea 0x2 + .text.timer_task + 0x00000000400d1dec 0x2d esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x34 (size before relaxing) + *fill* 0x00000000400d1e19 0x3 + .text.esp_timer_init + 0x00000000400d1e1c 0x7a esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x86 (size before relaxing) + 0x00000000400d1e1c esp_timer_init + *fill* 0x00000000400d1e96 0x2 + .text.esp_timer_impl_init + 0x00000000400d1e98 0xf2 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x10a (size before relaxing) + 0x00000000400d1e98 esp_timer_impl_init + *fill* 0x00000000400d1f8a 0x2 + .text.get_vfs_for_fd + 0x00000000400d1f8c 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d1fca 0x2 + .text.esp_vfs_register_common + 0x00000000400d1fcc 0xf6 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xfa (size before relaxing) + *fill* 0x00000000400d20c2 0x2 + .text.get_vfs_for_path + 0x00000000400d20c4 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + .text.translate_path + 0x00000000400d2134 0x3e esp-idf/vfs/libvfs.a(vfs.c.obj) + *fill* 0x00000000400d2172 0x2 + .text.esp_vfs_register + 0x00000000400d2174 0x1c esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x20 (size before relaxing) + 0x00000000400d2174 esp_vfs_register + .text.esp_vfs_open + 0x00000000400d2190 0xd4 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xd8 (size before relaxing) + 0x00000000400d2190 esp_vfs_open + 0x00000000400d2190 _open_r + .text.esp_vfs_write + 0x00000000400d2264 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x78 (size before relaxing) + 0x00000000400d2264 esp_vfs_write + 0x00000000400d2264 _write_r + .text.esp_vfs_lseek + 0x00000000400d22d8 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x78 (size before relaxing) + 0x00000000400d22d8 _lseek_r + 0x00000000400d22d8 esp_vfs_lseek + .text.esp_vfs_read + 0x00000000400d234c 0x74 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x78 (size before relaxing) + 0x00000000400d234c _read_r + 0x00000000400d234c esp_vfs_read + .text.esp_vfs_close + 0x00000000400d23c0 0xa0 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0xab (size before relaxing) + 0x00000000400d23c0 _close_r + 0x00000000400d23c0 esp_vfs_close + *fill* 0x00000000400d2460 0x0 + .text.esp_vfs_fstat + 0x00000000400d2460 0x70 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x74 (size before relaxing) + 0x00000000400d2460 _fstat_r + 0x00000000400d2460 esp_vfs_fstat + .text.esp_vfs_stat + 0x00000000400d24d0 0x47 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4b (size before relaxing) + 0x00000000400d24d0 _stat_r + 0x00000000400d24d0 esp_vfs_stat + *fill* 0x00000000400d2517 0x1 + .text.esp_vfs_link + 0x00000000400d2518 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x00000000400d2518 esp_vfs_link + 0x00000000400d2518 _link_r + .text.esp_vfs_unlink + 0x00000000400d2580 0x44 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x48 (size before relaxing) + 0x00000000400d2580 _unlink_r + 0x00000000400d2580 esp_vfs_unlink + .text.esp_vfs_rename + 0x00000000400d25c4 0x68 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x70 (size before relaxing) + 0x00000000400d25c4 esp_vfs_rename + 0x00000000400d25c4 _rename_r + .text.esp_vfs_select_triggered + 0x00000000400d262c 0x49 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x4d (size before relaxing) + 0x00000000400d262c esp_vfs_select_triggered + *fill* 0x00000000400d2675 0x3 + .text.esp_vfs_select_triggered_isr + 0x00000000400d2678 0x45 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x49 (size before relaxing) + 0x00000000400d2678 esp_vfs_select_triggered_isr + *fill* 0x00000000400d26bd 0x3 + .text.uart_tx_char + 0x00000000400d26c0 0x29 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d26e9 0x3 + .text.uart_rx_char + 0x00000000400d26ec 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d2712 0x2 + .text.uart_read_char + 0x00000000400d2714 0x24 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.unregister_select + 0x00000000400d2738 0x68 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x6c (size before relaxing) + .text.uart_end_select + 0x00000000400d27a0 0x34 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x48 (size before relaxing) + .text.register_select + 0x00000000400d27d4 0x49 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x4d (size before relaxing) + *fill* 0x00000000400d281d 0x3 + .text.uart_start_select + 0x00000000400d2820 0x179 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x199 (size before relaxing) + *fill* 0x00000000400d2999 0x3 + .text.select_notif_callback_isr + 0x00000000400d299c 0xde esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xe2 (size before relaxing) + *fill* 0x00000000400d2a7a 0x2 + .text.uart_tcflush + 0x00000000400d2a7c 0x3d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x41 (size before relaxing) + *fill* 0x00000000400d2ab9 0x3 + .text.uart_tcdrain + 0x00000000400d2abc 0x31 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x35 (size before relaxing) + *fill* 0x00000000400d2aed 0x3 + .text.uart_tcgetattr + 0x00000000400d2af0 0x378 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x384 (size before relaxing) + .text.uart_tcsetattr + 0x00000000400d2e68 0x265 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x27d (size before relaxing) + *fill* 0x00000000400d30cd 0x3 + .text.uart_access + 0x00000000400d30d0 0x5a esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d312a 0x2 + .text.uart_open + 0x00000000400d312c 0x60 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x64 (size before relaxing) + .text.uart_fcntl + 0x00000000400d318c 0x65 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + *fill* 0x00000000400d31f1 0x3 + .text.uart_fstat + 0x00000000400d31f4 0x1e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x21 (size before relaxing) + *fill* 0x00000000400d3212 0x2 + .text.uart_close + 0x00000000400d3214 0x19 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x1c (size before relaxing) + *fill* 0x00000000400d322d 0x3 + .text.uart_return_char + 0x00000000400d3230 0x28 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .text.uart_fsync + 0x00000000400d3258 0x7e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x86 (size before relaxing) + *fill* 0x00000000400d32d6 0x2 + .text.uart_read + 0x00000000400d32d8 0xae esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0xbe (size before relaxing) + *fill* 0x00000000400d3386 0x2 + .text.uart_write + 0x00000000400d3388 0x88 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x90 (size before relaxing) + .text.esp_vfs_dev_uart_register + 0x00000000400d3410 0x7e esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x82 (size before relaxing) + 0x00000000400d3410 esp_vfs_dev_uart_register + *fill* 0x00000000400d348e 0x2 + .text.raise_r_stub + 0x00000000400d3490 0xf esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + *fill* 0x00000000400d349f 0x1 + .text.esp_setup_syscall_table + 0x00000000400d34a0 0x2b esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + 0x00000000400d34a0 esp_setup_syscall_table + *fill* 0x00000000400d34cb 0x1 + .text._raise_r + 0x00000000400d34cc 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x9 (size before relaxing) + 0x00000000400d34cc _raise_r + *fill* 0x00000000400d34d2 0x2 + .text._sbrk_r 0x00000000400d34d4 0x6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x9 (size before relaxing) + 0x00000000400d34d4 _sbrk_r + *fill* 0x00000000400d34da 0x2 + .text.get_boot_time + 0x00000000400d34dc 0x23 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x27 (size before relaxing) + *fill* 0x00000000400d34ff 0x1 + .text.set_boot_time + 0x00000000400d3500 0x24 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x28 (size before relaxing) + .text.get_time_since_boot + 0x00000000400d3524 0x1f esp-idf/newlib/libnewlib.a(time.c.obj) + *fill* 0x00000000400d3543 0x1 + .text.adjust_boot_time + 0x00000000400d3544 0x146 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x14a (size before relaxing) + *fill* 0x00000000400d368a 0x2 + .text.get_adjusted_boot_time + 0x00000000400d368c 0x1e esp-idf/newlib/libnewlib.a(time.c.obj) + 0x26 (size before relaxing) + *fill* 0x00000000400d36aa 0x2 + .text.esp_clk_slowclk_cal_set + 0x00000000400d36ac 0x6a esp-idf/newlib/libnewlib.a(time.c.obj) + 0x6e (size before relaxing) + 0x00000000400d36ac esp_clk_slowclk_cal_set + *fill* 0x00000000400d3716 0x2 + .text.esp_clk_slowclk_cal_get + 0x00000000400d3718 0xd esp-idf/newlib/libnewlib.a(time.c.obj) + 0x00000000400d3718 esp_clk_slowclk_cal_get + *fill* 0x00000000400d3725 0x3 + .text.get_rtc_time_us + 0x00000000400d3728 0x43 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x47 (size before relaxing) + *fill* 0x00000000400d376b 0x1 + .text.esp_set_time_from_rtc + 0x00000000400d376c 0x27 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2f (size before relaxing) + 0x00000000400d376c esp_set_time_from_rtc + *fill* 0x00000000400d3793 0x1 + .text.__cxx_fatal_exception + 0x00000000400d3794 0x6 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0x9 (size before relaxing) + 0x00000000400d3794 __cxa_free_exception + 0x00000000400d3794 __cxa_rethrow + 0x00000000400d3794 __cxa_free_dependent_exception + 0x00000000400d3794 __cxa_get_exception_ptr + 0x00000000400d3794 __cxa_allocate_dependent_exception + 0x00000000400d3794 __cxx_fatal_exception + 0x00000000400d3794 __cxa_end_catch + 0x00000000400d3794 __cxa_throw + 0x00000000400d3794 __cxa_call_terminate + 0x00000000400d3794 __cxa_begin_catch + 0x00000000400d3794 __cxa_allocate_exception + *fill* 0x00000000400d379a 0x2 + .text.app_main + 0x00000000400d379c 0x3c esp-idf/main/libmain.a(blink.c.obj) + 0x54 (size before relaxing) + 0x00000000400d379c app_main + .text.brownout_hal_config + 0x00000000400d37d8 0xb6 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400d37d8 brownout_hal_config + *fill* 0x00000000400d388e 0x2 + .text.brownout_hal_intr_enable + 0x00000000400d3890 0x21 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400d3890 brownout_hal_intr_enable + *fill* 0x00000000400d38b1 0x3 + .text.brownout_hal_intr_clear + 0x00000000400d38b4 0x1a esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x00000000400d38b4 brownout_hal_intr_clear + *fill* 0x00000000400d38ce 0x2 + .text.bootloader_init_mem + 0x00000000400d38d0 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x3a (size before relaxing) + 0x00000000400d38d0 bootloader_init_mem + *fill* 0x00000000400d3906 0x2 + .text.bootloader_flash_update_id + 0x00000000400d3908 0xd esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0x10 (size before relaxing) + 0x00000000400d3908 bootloader_flash_update_id + *fill* 0x00000000400d3915 0x3 + .text.execute_flash_command + 0x00000000400d3918 0x18c esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .text.bootloader_read_flash_id + 0x00000000400d3aa4 0x2a esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x2e (size before relaxing) + 0x00000000400d3aa4 bootloader_read_flash_id + *fill* 0x00000000400d3ace 0x2 + .text.spi_flash_init_lock + 0x00000000400d3ad0 0x22 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x26 (size before relaxing) + 0x00000000400d3ad0 spi_flash_init_lock + *fill* 0x00000000400d3af2 0x2 + .text.spi_flash_op_lock + 0x00000000400d3af4 0x12 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x00000000400d3af4 spi_flash_op_lock + *fill* 0x00000000400d3b06 0x2 + .text.spi_flash_op_unlock + 0x00000000400d3b08 0xd esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x10 (size before relaxing) + 0x00000000400d3b08 spi_flash_op_unlock + *fill* 0x00000000400d3b15 0x3 + .text.is_safe_write_address + 0x00000000400d3b18 0x15 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x19 (size before relaxing) + *fill* 0x00000000400d3b2d 0x3 + .text.spi_flash_init + 0x00000000400d3b30 0x8 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0xb (size before relaxing) + 0x00000000400d3b30 spi_flash_init + *fill* 0x00000000400d3b38 0x0 + .text.esp_flash_init_default_chip + 0x00000000400d3b38 0x9a esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0xa2 (size before relaxing) + 0x00000000400d3b38 esp_flash_init_default_chip + *fill* 0x00000000400d3bd2 0x2 + .text.esp_flash_app_init + 0x00000000400d3bd4 0xd esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x10 (size before relaxing) + 0x00000000400d3bd4 esp_flash_app_init + *fill* 0x00000000400d3be1 0x3 + .text.esp_flash_app_init_os_functions + 0x00000000400d3be4 0x11 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0x00000000400d3be4 esp_flash_app_init_os_functions + *fill* 0x00000000400d3bf5 0x3 + .text.load_partitions + 0x00000000400d3bf8 0xf7 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0xfa (size before relaxing) + *fill* 0x00000000400d3cef 0x1 + .text.ensure_partitions_loaded + 0x00000000400d3cf0 0x4c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x58 (size before relaxing) + .text.iterator_create + 0x00000000400d3d3c 0x1d esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x21 (size before relaxing) + *fill* 0x00000000400d3d59 0x3 + .text.esp_partition_iterator_release + 0x00000000400d3d5c 0xa esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0xe (size before relaxing) + 0x00000000400d3d5c esp_partition_iterator_release + *fill* 0x00000000400d3d66 0x2 + .text.esp_partition_next + 0x00000000400d3d68 0x7c esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x84 (size before relaxing) + 0x00000000400d3d68 esp_partition_next + .text.esp_partition_find + 0x00000000400d3de4 0x20 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x28 (size before relaxing) + 0x00000000400d3de4 esp_partition_find + .text.esp_partition_get + 0x00000000400d3e04 0x19 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x1c (size before relaxing) + 0x00000000400d3e04 esp_partition_get + *fill* 0x00000000400d3e1d 0x3 + .text.esp_partition_main_flash_region_safe + 0x00000000400d3e20 0x39 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x3d (size before relaxing) + 0x00000000400d3e20 esp_partition_main_flash_region_safe + *fill* 0x00000000400d3e59 0x3 + .text.spi_flash_cache2phys + 0x00000000400d3e5c 0x69 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x00000000400d3e5c spi_flash_cache2phys + *fill* 0x00000000400d3ec5 0x3 + .text.register_heap + 0x00000000400d3ec8 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2b (size before relaxing) + *fill* 0x00000000400d3ef0 0x0 + .text.heap_caps_enable_nonos_stack_heaps + 0x00000000400d3ef0 0x28 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2c (size before relaxing) + 0x00000000400d3ef0 heap_caps_enable_nonos_stack_heaps + .text.heap_caps_init + 0x00000000400d3f18 0x2aa esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x2c6 (size before relaxing) + 0x00000000400d3f18 heap_caps_init + *fill* 0x00000000400d41c2 0x2 + .text.gpio_od_enable + 0x00000000400d41c4 0x5e esp-idf/driver/libdriver.a(gpio.c.obj) + 0x62 (size before relaxing) + *fill* 0x00000000400d4222 0x2 + .text.gpio_od_disable + 0x00000000400d4224 0x5e esp-idf/driver/libdriver.a(gpio.c.obj) + 0x62 (size before relaxing) + *fill* 0x00000000400d4282 0x2 + .text.gpio_input_enable + 0x00000000400d4284 0x78 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x7c (size before relaxing) + .text.gpio_input_disable + 0x00000000400d42fc 0x78 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x7c (size before relaxing) + .text.gpio_output_disable + 0x00000000400d4374 0xa8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xac (size before relaxing) + .text.gpio_output_enable + 0x00000000400d441c 0x8d esp-idf/driver/libdriver.a(gpio.c.obj) + 0x95 (size before relaxing) + *fill* 0x00000000400d44a9 0x3 + .text.gpio_set_level + 0x00000000400d44ac 0xc0 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xc8 (size before relaxing) + 0x00000000400d44ac gpio_set_level + .text.gpio_set_direction + 0x00000000400d456c 0xa4 esp-idf/driver/libdriver.a(gpio.c.obj) + 0xb8 (size before relaxing) + 0x00000000400d456c gpio_set_direction + .text.periph_module_enable + 0x00000000400d4610 0x278 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x287 (size before relaxing) + 0x00000000400d4610 periph_module_enable + *fill* 0x00000000400d4888 0x0 + .text.rtc_gpio_force_hold_dis_all + 0x00000000400d4888 0x29 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x2d (size before relaxing) + 0x00000000400d4888 rtc_gpio_force_hold_dis_all + *fill* 0x00000000400d48b1 0x3 + .text.rtc_isr 0x00000000400d48b4 0x4a esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x56 (size before relaxing) + *fill* 0x00000000400d48fe 0x2 + .text.rtc_isr_ensure_installed + 0x00000000400d4900 0x43 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x4a (size before relaxing) + *fill* 0x00000000400d4943 0x1 + .text.rtc_isr_register + 0x00000000400d4944 0x3e esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x4a (size before relaxing) + 0x00000000400d4944 rtc_isr_register + *fill* 0x00000000400d4982 0x2 + .text.uart_pattern_queue_update + 0x00000000400d4984 0x46 esp-idf/driver/libdriver.a(uart.c.obj) + *fill* 0x00000000400d49ca 0x2 + .text.uart_set_word_length + 0x00000000400d49cc 0x78 esp-idf/driver/libdriver.a(uart.c.obj) + 0x88 (size before relaxing) + 0x00000000400d49cc uart_set_word_length + .text.uart_get_word_length + 0x00000000400d4a44 0x41 esp-idf/driver/libdriver.a(uart.c.obj) + 0x45 (size before relaxing) + 0x00000000400d4a44 uart_get_word_length + *fill* 0x00000000400d4a85 0x3 + .text.uart_set_stop_bits + 0x00000000400d4a88 0x78 esp-idf/driver/libdriver.a(uart.c.obj) + 0x88 (size before relaxing) + 0x00000000400d4a88 uart_set_stop_bits + .text.uart_get_stop_bits + 0x00000000400d4b00 0x41 esp-idf/driver/libdriver.a(uart.c.obj) + 0x45 (size before relaxing) + 0x00000000400d4b00 uart_get_stop_bits + *fill* 0x00000000400d4b41 0x3 + .text.uart_set_parity + 0x00000000400d4b44 0x4e esp-idf/driver/libdriver.a(uart.c.obj) + 0x5a (size before relaxing) + 0x00000000400d4b44 uart_set_parity + *fill* 0x00000000400d4b92 0x2 + .text.uart_get_parity + 0x00000000400d4b94 0x41 esp-idf/driver/libdriver.a(uart.c.obj) + 0x45 (size before relaxing) + 0x00000000400d4b94 uart_get_parity + *fill* 0x00000000400d4bd5 0x3 + .text.uart_set_baudrate + 0x00000000400d4bd8 0x5c esp-idf/driver/libdriver.a(uart.c.obj) + 0x6c (size before relaxing) + 0x00000000400d4bd8 uart_set_baudrate + .text.uart_get_baudrate + 0x00000000400d4c34 0x4e esp-idf/driver/libdriver.a(uart.c.obj) + 0x5a (size before relaxing) + 0x00000000400d4c34 uart_get_baudrate + *fill* 0x00000000400d4c82 0x2 + .text.uart_enable_intr_mask + 0x00000000400d4c84 0x5e esp-idf/driver/libdriver.a(uart.c.obj) + 0x66 (size before relaxing) + 0x00000000400d4c84 uart_enable_intr_mask + *fill* 0x00000000400d4ce2 0x2 + .text.uart_disable_intr_mask + 0x00000000400d4ce4 0x5c esp-idf/driver/libdriver.a(uart.c.obj) + 0x64 (size before relaxing) + 0x00000000400d4ce4 uart_disable_intr_mask + .text.uart_enable_rx_intr + 0x00000000400d4d40 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d4d40 uart_enable_rx_intr + *fill* 0x00000000400d4d52 0x2 + .text.uart_disable_rx_intr + 0x00000000400d4d54 0x12 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d4d54 uart_disable_rx_intr + *fill* 0x00000000400d4d66 0x2 + .text.uart_wait_tx_done + 0x00000000400d4d68 0x1a1 esp-idf/driver/libdriver.a(uart.c.obj) + 0x1c9 (size before relaxing) + 0x00000000400d4d68 uart_wait_tx_done + *fill* 0x00000000400d4f09 0x3 + .text.uart_get_buffered_data_len + 0x00000000400d4f0c 0x69 esp-idf/driver/libdriver.a(uart.c.obj) + 0x71 (size before relaxing) + 0x00000000400d4f0c uart_get_buffered_data_len + *fill* 0x00000000400d4f75 0x3 + .text.uart_flush_input + 0x00000000400d4f78 0x1c1 esp-idf/driver/libdriver.a(uart.c.obj) + 0x20d (size before relaxing) + 0x00000000400d4f78 uart_flush_input + 0x00000000400d4f78 uart_flush + *fill* 0x00000000400d5139 0x3 + .text.uart_is_driver_installed + 0x00000000400d513c 0x1e esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d513c uart_is_driver_installed + *fill* 0x00000000400d515a 0x2 + .text.uart_set_select_notif_callback + 0x00000000400d515c 0x17 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d515c uart_set_select_notif_callback + *fill* 0x00000000400d5173 0x1 + .text.uart_get_selectlock + 0x00000000400d5174 0x8 esp-idf/driver/libdriver.a(uart.c.obj) + 0x00000000400d5174 uart_get_selectlock + .text.s_get_num_reserved_regions + 0x00000000400d517c 0x11 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + *fill* 0x00000000400d518d 0x3 + .text.s_prepare_reserved_regions + 0x00000000400d5190 0x9a esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0xa2 (size before relaxing) + *fill* 0x00000000400d522a 0x2 + .text.soc_get_available_memory_region_max_count + 0x00000000400d522c 0x12 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x00000000400d522c soc_get_available_memory_region_max_count + *fill* 0x00000000400d523e 0x2 + .text.soc_get_available_memory_regions + 0x00000000400d5240 0x100 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x104 (size before relaxing) + 0x00000000400d5240 soc_get_available_memory_regions + .text.uart_hal_set_baudrate + 0x00000000400d5340 0x6e esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000400d5340 uart_hal_set_baudrate + *fill* 0x00000000400d53ae 0x2 + .text.uart_hal_get_baudrate + 0x00000000400d53b0 0x44 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000400d53b0 uart_hal_get_baudrate + .text.spi_flash_hal_init + 0x00000000400d53f4 0xbe esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0xc2 (size before relaxing) + 0x00000000400d53f4 spi_flash_hal_init + *fill* 0x00000000400d54b2 0x2 + .text.spi_flash_hal_supports_direct_write + 0x00000000400d54b4 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000400d54b4 spi_flash_hal_supports_direct_write + *fill* 0x00000000400d54da 0x2 + .text.spi_flash_hal_supports_direct_read + 0x00000000400d54dc 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x00000000400d54dc spi_flash_hal_supports_direct_read + *fill* 0x00000000400d5502 0x2 + .text.esp_ota_get_running_partition + 0x00000000400d5504 0x7b esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x8f (size before relaxing) + 0x00000000400d5504 esp_ota_get_running_partition + *fill* 0x00000000400d557f 0x1 + .text 0x00000000400d5580 0x38 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x40 (size before relaxing) + 0x00000000400d5580 __assert_func + 0x00000000400d55a8 __assert + .text 0x00000000400d55b8 0xa /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0xd (size before relaxing) + 0x00000000400d55b8 __errno + *fill* 0x00000000400d55c2 0x2 + .text 0x00000000400d55c4 0x54 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + 0x5c (size before relaxing) + 0x00000000400d55c4 _fiprintf_r + 0x00000000400d55e8 fiprintf + .text 0x00000000400d5618 0xd8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0xec (size before relaxing) + 0x00000000400d5618 _fopen_r + 0x00000000400d56dc fopen + .text 0x00000000400d56f0 0x2d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x31 (size before relaxing) + 0x00000000400d56f0 _fseek_r + 0x00000000400d5708 fseek + *fill* 0x00000000400d571d 0x3 + .text 0x00000000400d5720 0x36e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x386 (size before relaxing) + 0x00000000400d5720 _fseeko_r + 0x00000000400d5a78 fseeko + *fill* 0x00000000400d5a8e 0x2 + .text 0x00000000400d5a90 0xde /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0xea (size before relaxing) + 0x00000000400d5a90 _puts_r + 0x00000000400d5b5c puts + *fill* 0x00000000400d5b6e 0x2 + .text 0x00000000400d5b70 0xec /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0xfc (size before relaxing) + 0x00000000400d5b70 cleanup_glue + 0x00000000400d5b88 _reclaim_reent + .text 0x00000000400d5c5c 0xd9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x00000000400d5c5c _snprintf_r + 0x00000000400d5cc4 snprintf + *fill* 0x00000000400d5d35 0x3 + .text 0x00000000400d5d38 0x335a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0x33aa (size before relaxing) + 0x00000000400d61f8 _svfprintf_r + *fill* 0x00000000400d9092 0x2 + .text 0x00000000400d9094 0x26a1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0x26c5 (size before relaxing) + 0x00000000400d9554 __sprint_r + 0x00000000400d95c4 _vfiprintf_r + 0x00000000400db680 vfiprintf + *fill* 0x00000000400db735 0x3 + .text 0x00000000400db738 0x3539 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0x35a9 (size before relaxing) + 0x00000000400dbbf8 _vfprintf_r + 0x00000000400debbc vfprintf + *fill* 0x00000000400dec71 0x3 + .text 0x00000000400dec74 0x5e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x62 (size before relaxing) + 0x00000000400dec74 vprintf + 0x00000000400deca4 _vprintf_r + *fill* 0x00000000400decd2 0x2 + .text 0x00000000400decd4 0xd58 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0xdb4 (size before relaxing) + 0x00000000400dede4 _dtoa_r + .text 0x00000000400dfa2c 0x80 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x00000000400dfa2c __sflags + .text 0x00000000400dfaac 0x3b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x00000000400dfaac __localeconv_l + 0x00000000400dfab8 _localeconv_r + 0x00000000400dfad0 localeconv + *fill* 0x00000000400dfae7 0x1 + .text 0x00000000400dfae8 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x00000000400dfae8 _mbtowc_r + 0x00000000400dfb0c __ascii_mbtowc + .text 0x00000000400dfb30 0x84c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0x850 (size before relaxing) + 0x00000000400dfb30 _Balloc + 0x00000000400dfbac _Bfree + 0x00000000400dfbdc __multadd + 0x00000000400dfc50 __s2b + 0x00000000400dfcd8 __hi0bits + 0x00000000400dfd20 __lo0bits + 0x00000000400dfd90 __i2b + 0x00000000400dfda4 __multiply + 0x00000000400dfeb0 __pow5mult + 0x00000000400dff44 __lshift + 0x00000000400dffe0 __mcmp + 0x00000000400e0018 __mdiff + 0x00000000400e00dc __ulp + 0x00000000400e0124 __b2d + 0x00000000400e01c8 __d2b + 0x00000000400e0268 __ratio + 0x00000000400e02bc _mprec_log10 + 0x00000000400e02f4 __copybits + 0x00000000400e032c __any_on + .text 0x00000000400e037c 0x5c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x00000000400e037c frexp + .text 0x00000000400e03d8 0x256f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0x2577 (size before relaxing) + 0x00000000400e0898 __ssprint_r + 0x00000000400e09a0 _svfiprintf_r + *fill* 0x00000000400e2947 0x0 + *fill* 0x00000000400e2947 0x1 + .text.pthread_include_pthread_impl + 0x00000000400e2948 0x5 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x00000000400e2948 pthread_include_pthread_impl + *fill* 0x00000000400e294d 0x0 + *fill* 0x00000000400e294d 0x0 + *fill* 0x00000000400e294d 0x3 + .text.pthread_include_pthread_local_storage_impl + 0x00000000400e2950 0x5 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x00000000400e2950 pthread_include_pthread_local_storage_impl + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x0 + *fill* 0x00000000400e2955 0x3 + .text.esp_task_wdt_isr_user_handler + 0x00000000400e2958 0x5 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x00000000400e2958 esp_task_wdt_isr_user_handler + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x0 + *fill* 0x00000000400e295d 0x3 + .text.vfs_include_syscalls_impl + 0x00000000400e2960 0x5 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x00000000400e2960 vfs_include_syscalls_impl + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x0 + *fill* 0x00000000400e2965 0x3 + .text.newlib_include_locks_impl + 0x00000000400e2968 0x5 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x00000000400e2968 newlib_include_locks_impl + *fill* 0x00000000400e296d 0x3 + .text.pthread_setcancelstate + 0x00000000400e2970 0x7 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x00000000400e2970 pthread_setcancelstate + *fill* 0x00000000400e2977 0x1 + .text.newlib_include_pthread_impl + 0x00000000400e2978 0x5 esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x00000000400e2978 newlib_include_pthread_impl + *fill* 0x00000000400e297d 0x0 + *fill* 0x00000000400e297d 0x0 + *fill* 0x00000000400e297d 0x3 + .text._system_r + 0x00000000400e2980 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x00000000400e2980 _system_r + *fill* 0x00000000400e298b 0x0 + *fill* 0x00000000400e298b 0x0 + *fill* 0x00000000400e298b 0x1 + .text._getpid_r + 0x00000000400e298c 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x00000000400e298c _getpid_r + *fill* 0x00000000400e2997 0x1 + .text._kill_r 0x00000000400e2998 0xb esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x00000000400e2998 _kill_r + *fill* 0x00000000400e29a3 0x1 + .text.newlib_include_syscalls_impl + 0x00000000400e29a4 0x5 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x00000000400e29a4 newlib_include_syscalls_impl + *fill* 0x00000000400e29a9 0x0 + *fill* 0x00000000400e29a9 0x0 + *fill* 0x00000000400e29a9 0x0 + *fill* 0x00000000400e29a9 0x0 + *fill* 0x00000000400e29a9 0x0 + *fill* 0x00000000400e29a9 0x0 + *fill* 0x00000000400e29a9 0x0 + *fill* 0x00000000400e29a9 0x0 + *fill* 0x00000000400e29a9 0x0 + *fill* 0x00000000400e29a9 0x3 + .text.__cxa_guard_dummy + 0x00000000400e29ac 0x5 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x00000000400e29ac __cxa_guard_dummy + *fill* 0x00000000400e29b1 0x0 + *fill* 0x00000000400e29b1 0x0 + *fill* 0x00000000400e29b1 0x0 + *fill* 0x00000000400e29b1 0x0 + *fill* 0x00000000400e29b1 0x0 + *fill* 0x00000000400e29b1 0x0 + *fill* 0x00000000400e29b1 0x0 + *fill* 0x00000000400e29b1 0x0 + *fill* 0x00000000400e29b1 0x0 + *fill* 0x00000000400e29b1 0x3 + .text.esp_flash_chip_driver_initialized + 0x00000000400e29b4 0x10 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x00000000400e29b4 esp_flash_chip_driver_initialized + *fill* 0x00000000400e29c4 0x0 + *fill* 0x00000000400e29c4 0x0 + *fill* 0x00000000400e29c4 0x0 + *fill* 0x00000000400e29c4 0x0 + *fill* 0x00000000400e29c4 0x0 + *fill* 0x00000000400e29c4 0x0 + *fill* 0x00000000400e29c4 0x0 + .text.heap_caps_match + 0x00000000400e29c4 0x32 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x00000000400e29c4 heap_caps_match + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x0 + *fill* 0x00000000400e29f6 0x2 + .text.esp_pm_impl_waiti + 0x00000000400e29f8 0x8 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + 0x00000000400e29f8 esp_pm_impl_waiti + *fill* 0x00000000400e2a00 0x0 + .text.s_compare_reserved_regions + 0x00000000400e2a00 0xc esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + *fill* 0x00000000400e2a0c 0x0 + *fill* 0x00000000400e2a0c 0x0 + *fill* 0x00000000400e2a0c 0x0 + .text.uart_hal_set_stop_bits + 0x00000000400e2a0c 0x5d esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000400e2a0c uart_hal_set_stop_bits + *fill* 0x00000000400e2a69 0x3 + .text.uart_hal_get_stop_bits + 0x00000000400e2a6c 0x2c esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000400e2a6c uart_hal_get_stop_bits + .text.uart_hal_set_data_bit_num + 0x00000000400e2a98 0x1f esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000400e2a98 uart_hal_set_data_bit_num + *fill* 0x00000000400e2ab7 0x1 + .text.uart_hal_get_data_bit_num + 0x00000000400e2ab8 0x11 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000400e2ab8 uart_hal_get_data_bit_num + *fill* 0x00000000400e2ac9 0x3 + .text.uart_hal_set_parity + 0x00000000400e2acc 0x36 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000400e2acc uart_hal_set_parity + *fill* 0x00000000400e2b02 0x2 + .text.uart_hal_get_parity + 0x00000000400e2b04 0x26 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000400e2b04 uart_hal_get_parity + *fill* 0x00000000400e2b2a 0x2 + .text.uart_hal_get_sclk + 0x00000000400e2b2c 0x16 esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x00000000400e2b2c uart_hal_get_sclk + *fill* 0x00000000400e2b42 0x0 + *fill* 0x00000000400e2b42 0x0 + *fill* 0x00000000400e2b42 0x0 + *fill* 0x00000000400e2b42 0x2 + .text.mpu_hal_set_region_access + 0x00000000400e2b44 0x2f esp-idf/soc/libsoc.a(mpu_hal.c.obj) + 0x00000000400e2b44 mpu_hal_set_region_access + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *fill* 0x00000000400e2b73 0x0 + *libsoc.a:uart_hal_iram.*(.literal .literal.* .text .text.* .wifi0iram .wifi0iram.* .wifirxiram .wifirxiram.*) + *fill* 0x00000000400e2b73 0x1 + .text.uart_hal_rxfifo_rst + 0x00000000400e2b74 0x73 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x00000000400e2b74 uart_hal_rxfifo_rst + *fill* 0x00000000400e2be7 0x0 + *libesp_event.a:esp_event.*(.literal.handler_instances_remove_all .literal.base_node_remove_all_handler .literal.loop_node_remove_all_handler .literal.handler_instances_add .literal.base_node_add_handler .literal.loop_node_add_handler .literal.handler_instances_remove .literal.base_node_remove_handler .literal.loop_node_remove_handler .literal.esp_event_loop_create .literal.esp_event_loop_run .literal.esp_event_loop_run_task .literal.esp_event_loop_delete .literal.esp_event_handler_register_with_internal .literal.esp_event_handler_register_with .literal.esp_event_handler_instance_register_with .literal.esp_event_handler_unregister_with_internal .literal.esp_event_handler_unregister_with .literal.esp_event_handler_instance_unregister_with .literal.esp_event_post_to .text.handler_execute .text.handler_instances_remove_all .text.base_node_remove_all_handler .text.loop_node_remove_all_handler .text.handler_instances_add .text.base_node_add_handler .text.loop_node_add_handler .text.handler_instances_remove .text.base_node_remove_handler .text.loop_node_remove_handler .text.esp_event_loop_create .text.esp_event_loop_run .text.esp_event_loop_run_task .text.esp_event_loop_delete .text.esp_event_handler_register_with_internal .text.esp_event_handler_register_with .text.esp_event_handler_instance_register_with .text.esp_event_handler_unregister_with_internal .text.esp_event_handler_unregister_with .text.esp_event_handler_instance_unregister_with .text.esp_event_post_to .text.esp_event_dump) + *libesp_event.a:default_event_loop.*(.literal.esp_event_handler_register .literal.esp_event_handler_instance_register .literal.esp_event_handler_unregister .literal.esp_event_handler_instance_unregister .literal.esp_event_post .literal.esp_event_loop_create_default .literal.esp_event_loop_delete_default .literal.esp_event_send_to_default_loop .text.esp_event_handler_register .text.esp_event_handler_instance_register .text.esp_event_handler_unregister .text.esp_event_handler_instance_unregister .text.esp_event_post .text.esp_event_loop_create_default .text.esp_event_loop_delete_default .text.esp_event_send_to_default_loop) + *liblog.a:log.*(.literal.heap_bubble_down .literal.esp_log_set_vprintf .literal.esp_log_level_set .literal.esp_log_writev .text.heap_bubble_down .text.esp_log_set_vprintf .text.esp_log_level_set .text.esp_log_writev) + *fill* 0x00000000400e2be7 0x1 + .text.heap_bubble_down + 0x00000000400e2be8 0x5a esp-idf/log/liblog.a(log.c.obj) + *fill* 0x00000000400e2c42 0x2 + .text.esp_log_writev + 0x00000000400e2c44 0x15e esp-idf/log/liblog.a(log.c.obj) + 0x166 (size before relaxing) + 0x00000000400e2c44 esp_log_writev + *fill* 0x00000000400e2da2 0x0 + *fill* 0x00000000400e2da2 0x0 + *liblog.a:log_freertos.*(.literal.esp_log_system_timestamp .text.esp_log_system_timestamp) + *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*) + *(.irom0.text) + *(.fini.literal) + *(.fini) + *fill* 0x00000000400e2da2 0x2 + .fini 0x00000000400e2da4 0x3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + 0x00000000400e2da4 _fini + *(.gnu.version) + 0x00000000400e2da7 _text_end = ABSOLUTE (.) + 0x00000000400e2da7 _etext = . + 0x0000000000000000 _flash_cache_start = ABSOLUTE (0x0) + +.iram0.text_end + 0x000000004008982d 0x3 + 0x0000000040089830 . = ALIGN (0x4) + *fill* 0x000000004008982d 0x3 + 0x0000000040089830 _iram_end = ABSOLUTE (.) + +.dram0.heap_start + 0x000000003ffb2970 0x0 + 0x000000003ffb2970 . = ALIGN (0x8) + 0x000000003ffb2970 _heap_start = ABSOLUTE (.) + 0x0000000000000001 ASSERT (((_iram_text_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.) + 0x000000003ff40000 PROVIDE (UART0 = 0x3ff40000) + 0x000000003ff42000 PROVIDE (SPI1 = 0x3ff42000) + 0x000000003ff43000 PROVIDE (SPI0 = 0x3ff43000) + 0x000000003ff44000 PROVIDE (GPIO = 0x3ff44000) + [!provide] PROVIDE (SIGMADELTA = 0x3ff44f00) + 0x000000003ff48000 PROVIDE (RTCCNTL = 0x3ff48000) + 0x000000003ff48400 PROVIDE (RTCIO = 0x3ff48400) + [!provide] PROVIDE (SENS = 0x3ff48800) + [!provide] PROVIDE (HINF = 0x3ff4b000) + [!provide] PROVIDE (UHCI1 = 0x3ff4c000) + [!provide] PROVIDE (I2S0 = 0x3ff4f000) + 0x000000003ff50000 PROVIDE (UART1 = 0x3ff50000) + [!provide] PROVIDE (I2C0 = 0x3ff53000) + [!provide] PROVIDE (UHCI0 = 0x3ff54000) + [!provide] PROVIDE (HOST = 0x3ff55000) + [!provide] PROVIDE (RMT = 0x3ff56000) + [!provide] PROVIDE (RMTMEM = 0x3ff56800) + [!provide] PROVIDE (PCNT = 0x3ff57000) + [!provide] PROVIDE (SLC = 0x3ff58000) + [!provide] PROVIDE (LEDC = 0x3ff59000) + [!provide] PROVIDE (MCPWM0 = 0x3ff5e000) + 0x000000003ff5f000 PROVIDE (TIMERG0 = 0x3ff5f000) + 0x000000003ff60000 PROVIDE (TIMERG1 = 0x3ff60000) + 0x000000003ff64000 PROVIDE (SPI2 = 0x3ff64000) + 0x000000003ff65000 PROVIDE (SPI3 = 0x3ff65000) + [!provide] PROVIDE (SYSCON = 0x3ff66000) + [!provide] PROVIDE (I2C1 = 0x3ff67000) + [!provide] PROVIDE (SDMMC = 0x3ff68000) + [!provide] PROVIDE (EMAC_DMA = 0x3ff69000) + [!provide] PROVIDE (EMAC_EXT = 0x3ff69800) + [!provide] PROVIDE (EMAC_MAC = 0x3ff6a000) + [!provide] PROVIDE (CAN = 0x3ff6b000) + [!provide] PROVIDE (MCPWM1 = 0x3ff6c000) + [!provide] PROVIDE (I2S1 = 0x3ff6d000) + 0x000000003ff6e000 PROVIDE (UART2 = 0x3ff6e000) +OUTPUT(blink.elf elf32-xtensa-le) + +.xtensa.info 0x0000000000000000 0x38 + .xtensa.info 0x0000000000000000 0x38 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + .xtensa.info 0x0000000000000038 0x0 CMakeFiles/blink.elf.dir/project_elf_src.c.obj + .xtensa.info 0x0000000000000038 0x0 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(panic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(port.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(queue.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/freertos/libfreertos.a(list.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(locks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/newlib/libnewlib.a(time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/main/libmain.a(blink.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/log/liblog.a(log_freertos.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/heap/libheap.a(multi_heap.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(gpio.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(spi_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/driver/libdriver.a(uart.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(hw_random.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/soc/esp32/libsoc_esp32.a(uart_periph.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(gpio_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/esp_common/libesp_common.a(system_api.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + .xtensa.info 0x0000000000000038 0x0 esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + .xtensa.info 0x0000000000000038 0x0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtn.o + +.comment 0x0000000000000000 0x65 + .comment 0x0000000000000000 0x25 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o + 0x26 (size before relaxing) + .comment 0x0000000000000025 0x26 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/pthread/libpthread.a(pthread.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(panic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(port.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(queue.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(timers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/freertos/libfreertos.a(list.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/vfs/libvfs.a(vfs.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(heap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(locks.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/newlib/libnewlib.a(time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .comment 0x0000000000000025 0x26 esp-idf/main/libmain.a(blink.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/log/liblog.a(log.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/log/liblog.a(log_freertos.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_caps.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/heap/libheap.a(multi_heap.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(gpio.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/driver/libdriver.a(uart.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .comment 0x0000000000000025 0x26 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .comment 0x0000000000000025 0x40 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + 0x41 (size before relaxing) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + .comment 0x0000000000000065 0x26 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + +.debug_frame 0x0000000000000000 0x7060 + .debug_frame 0x0000000000000000 0x40 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_frame 0x0000000000000040 0x3e8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_frame 0x0000000000000428 0xe8 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_frame 0x0000000000000510 0xd0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_frame 0x00000000000005e0 0x88 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_frame 0x0000000000000668 0x100 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_frame 0x0000000000000768 0x58 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_frame 0x00000000000007c0 0x238 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_frame 0x00000000000009f8 0x250 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_frame 0x0000000000000c48 0x40 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_frame 0x0000000000000c88 0x118 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_frame 0x0000000000000da0 0x40 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_frame 0x0000000000000de0 0xd0 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_frame 0x0000000000000eb0 0x40 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_frame 0x0000000000000ef0 0x40 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_frame 0x0000000000000f30 0x100 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_frame 0x0000000000001030 0x88 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_frame 0x00000000000010b8 0x1f0 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_frame 0x00000000000012a8 0x130 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_frame 0x00000000000013d8 0x178 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_frame 0x0000000000001550 0x40 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_frame 0x0000000000001590 0x58 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_frame 0x00000000000015e8 0x310 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_frame 0x00000000000018f8 0x658 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_frame 0x0000000000001f50 0x208 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_frame 0x0000000000002158 0x88 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_frame 0x00000000000021e0 0x4d8 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_frame 0x00000000000026b8 0x2b0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_frame 0x0000000000002968 0x178 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_frame 0x0000000000002ae0 0x148 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_frame 0x0000000000002c28 0x88 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_frame 0x0000000000002cb0 0x40 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_frame 0x0000000000002cf0 0x40 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_frame 0x0000000000002d30 0x100 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_frame 0x0000000000002e30 0x250 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_frame 0x0000000000003080 0x88 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_frame 0x0000000000003108 0xb8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_frame 0x00000000000031c0 0x28 esp-idf/main/libmain.a(blink.c.obj) + .debug_frame 0x00000000000031e8 0x40 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_frame 0x0000000000003228 0xa0 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_frame 0x00000000000032c8 0x88 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_frame 0x0000000000003350 0x40 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_frame 0x0000000000003390 0x58 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_frame 0x00000000000033e8 0x2e0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_frame 0x00000000000036c8 0x58 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_frame 0x0000000000003720 0xb8 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_frame 0x00000000000037d8 0x130 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_frame 0x0000000000003908 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_frame 0x0000000000003930 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_frame 0x00000000000039b8 0x130 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_frame 0x0000000000003ae8 0x130 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_frame 0x0000000000003c18 0x118 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_frame 0x0000000000003d30 0x298 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_frame 0x0000000000003fc8 0x88 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_frame 0x0000000000004050 0xd0 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_frame 0x0000000000004120 0x70 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_frame 0x0000000000004190 0x1c0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_frame 0x0000000000004350 0x280 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_frame 0x00000000000045d0 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_frame 0x0000000000004628 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_frame 0x0000000000004680 0x100 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_frame 0x0000000000004780 0x148 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_frame 0x00000000000048c8 0x88 esp-idf/log/liblog.a(log.c.obj) + .debug_frame 0x0000000000004950 0xa0 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_frame 0x00000000000049f0 0x2b0 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_frame 0x0000000000004ca0 0x88 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_frame 0x0000000000004d28 0x250 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_frame 0x0000000000004f78 0x388 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_frame 0x0000000000005300 0x58 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_frame 0x0000000000005358 0x1d8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_frame 0x0000000000005530 0x70 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_frame 0x00000000000055a0 0x610 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_frame 0x0000000000005bb0 0x130 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_frame 0x0000000000005ce0 0x88 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_frame 0x0000000000005d68 0x268 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_frame 0x0000000000005fd0 0x88 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_frame 0x0000000000006058 0x58 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_frame 0x00000000000060b0 0x118 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_frame 0x00000000000061c8 0x28 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_frame 0x00000000000061f0 0x268 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_frame 0x0000000000006458 0x3e8 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_frame 0x0000000000006840 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_frame 0x0000000000006868 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_frame 0x0000000000006890 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_frame 0x00000000000068b8 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_frame 0x00000000000068e0 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_frame 0x0000000000006920 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_frame 0x0000000000006948 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_frame 0x0000000000006988 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_frame 0x00000000000069c8 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_frame 0x0000000000006a08 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_frame 0x0000000000006a48 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_frame 0x0000000000006a88 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_frame 0x0000000000006ac8 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_frame 0x0000000000006b08 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_frame 0x0000000000006b48 0x88 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_frame 0x0000000000006bd0 0x70 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_frame 0x0000000000006c40 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_frame 0x0000000000006c80 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_frame 0x0000000000006cc0 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_frame 0x0000000000006ce8 0x88 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_frame 0x0000000000006d70 0x58 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_frame 0x0000000000006dc8 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_frame 0x0000000000006e08 0x1d8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_frame 0x0000000000006fe0 0x28 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_frame 0x0000000000007008 0x58 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + +.debug_info 0x0000000000000000 0x1362ea + .debug_info 0x0000000000000000 0x10f7 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_info 0x00000000000010f7 0x3200 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_info 0x00000000000042f7 0x1aba esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_info 0x0000000000005db1 0x85f1 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_info 0x000000000000e3a2 0x6513 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_info 0x00000000000148b5 0x57fa esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_info 0x000000000001a0af 0x26 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .debug_info 0x000000000001a0d5 0x22f9 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_info 0x000000000001c3ce 0x2acc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_info 0x000000000001ee9a 0x8d05 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_info 0x0000000000027b9f 0xaba9 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_info 0x0000000000032748 0x301c esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_info 0x0000000000035764 0x14b8 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_info 0x0000000000036c1c 0xa197 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_info 0x0000000000040db3 0x42a0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_info 0x0000000000045053 0x558b esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_info 0x000000000004a5de 0x465e esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_info 0x000000000004ec3c 0x19fe esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_info 0x000000000005063a 0x2096 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_info 0x00000000000526d0 0x4a04 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_info 0x00000000000570d4 0x2365 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_info 0x0000000000059439 0x26 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_info 0x000000000005945f 0x26 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_info 0x0000000000059485 0x11ef esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_info 0x000000000005a674 0x26 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .debug_info 0x000000000005a69a 0x1691 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_info 0x000000000005bd2b 0x22 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_info 0x000000000005bd4d 0x1276 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_info 0x000000000005cfc3 0x39d5 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_info 0x0000000000060998 0x8028 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_info 0x00000000000689c0 0x2806 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_info 0x000000000006b1c6 0x26 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_info 0x000000000006b1ec 0x14b9 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_info 0x000000000006c6a5 0x61f4 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_info 0x0000000000072899 0x560d esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_info 0x0000000000077ea6 0xdda esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_info 0x0000000000078c80 0x1a3b esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_info 0x000000000007a6bb 0xc4d esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_info 0x000000000007b308 0xafc esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_info 0x000000000007be04 0x1b3c esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_info 0x000000000007d940 0xcb6 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_info 0x000000000007e5f6 0x4c8d esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_info 0x0000000000083283 0x1684 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_info 0x0000000000084907 0x26df esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_info 0x0000000000086fe6 0x1d05 esp-idf/main/libmain.a(blink.c.obj) + .debug_info 0x0000000000088ceb 0x1689 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_info 0x000000000008a374 0x40f8 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_info 0x000000000008e46c 0x1508 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_info 0x000000000008f974 0x12ba esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_info 0x0000000000090c2e 0x1f71 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_info 0x0000000000092b9f 0x7b0f esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_info 0x000000000009a6ae 0x4be4 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_info 0x000000000009f292 0x44af esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_info 0x00000000000a3741 0x3ba5 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_info 0x00000000000a72e6 0x127d esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_info 0x00000000000a8563 0x17ba esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_info 0x00000000000a9d1d 0x3704 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_info 0x00000000000ad421 0x2109 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_info 0x00000000000af52a 0x1ff2 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_info 0x00000000000b151c 0x50bf esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_info 0x00000000000b65db 0x5010 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_info 0x00000000000bb5eb 0x1232 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_info 0x00000000000bc81d 0x19d2 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_info 0x00000000000be1ef 0x23cd esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_info 0x00000000000c05bc 0x113a esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_info 0x00000000000c16f6 0x21b6 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_info 0x00000000000c38ac 0x12b7 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_info 0x00000000000c4b63 0x12d1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_info 0x00000000000c5e34 0x3c28 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_info 0x00000000000c9a5c 0x268b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_info 0x00000000000cc0e7 0x1269 esp-idf/log/liblog.a(log.c.obj) + .debug_info 0x00000000000cd350 0x17e5 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_info 0x00000000000ceb35 0x2ada esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_info 0x00000000000d160f 0x1cab esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_info 0x00000000000d32ba 0x4488 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_info 0x00000000000d7742 0x80a7 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_info 0x00000000000df7e9 0x1bf4 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_info 0x00000000000e13dd 0x67ed esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_info 0x00000000000e7bca 0x5955 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_info 0x00000000000ed51f 0xa136 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_info 0x00000000000f7655 0x69b2 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_info 0x00000000000fe007 0x129e esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_info 0x00000000000ff2a5 0xefd esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_info 0x00000000001001a2 0x3225 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_info 0x00000000001033c7 0x23c1 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_info 0x0000000000105788 0x3a22 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_info 0x00000000001091aa 0x49be esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_info 0x000000000010db68 0xab4 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_info 0x000000000010e61c 0xb6c esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_info 0x000000000010f188 0x3863 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_info 0x00000000001129eb 0x4994 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_info 0x000000000011737f 0x5d /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_info 0x00000000001173dc 0x78 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_info 0x0000000000117454 0x55 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_info 0x00000000001174a9 0x7a /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_info 0x0000000000117523 0x7a /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_info 0x000000000011759d 0x114b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_info 0x00000000001186e8 0x11ac /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_info 0x0000000000119894 0x10fd /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_info 0x000000000011a991 0x1175 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_info 0x000000000011bb06 0xa3e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_info 0x000000000011c544 0x977 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_info 0x000000000011cebb 0xa93 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_info 0x000000000011d94e 0xe40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_info 0x000000000011e78e 0xce9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_info 0x000000000011f477 0x11f0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_info 0x0000000000120667 0xde8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_info 0x000000000012144f 0xb1e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_info 0x0000000000121f6d 0xd51 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_info 0x0000000000122cbe 0x2c10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_info 0x00000000001258ce 0x285f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_info 0x000000000012812d 0x2f2f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_info 0x000000000012b05c 0xca7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_info 0x000000000012bd03 0x1a1b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_info 0x000000000012d71e 0x9fd /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_info 0x000000000012e11b 0x115a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_info 0x000000000012f275 0x1022 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_info 0x0000000000130297 0x105f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_info 0x00000000001312f6 0x1ff0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_info 0x00000000001332e6 0xa9d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_info 0x0000000000133d83 0x2567 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + +.debug_abbrev 0x0000000000000000 0x17e6b + .debug_abbrev 0x0000000000000000 0x2a6 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_abbrev 0x00000000000002a6 0x55e esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_abbrev 0x0000000000000804 0x31a esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_abbrev 0x0000000000000b1e 0x4f1 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_abbrev 0x000000000000100f 0x3f8 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_abbrev 0x0000000000001407 0x4c3 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_abbrev 0x00000000000018ca 0x14 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .debug_abbrev 0x00000000000018de 0x34a esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_abbrev 0x0000000000001c28 0x4d8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_abbrev 0x0000000000002100 0x630 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_abbrev 0x0000000000002730 0x4c6 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_abbrev 0x0000000000002bf6 0x43b esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_abbrev 0x0000000000003031 0x2d0 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_abbrev 0x0000000000003301 0x4a7 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_abbrev 0x00000000000037a8 0x37c esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_abbrev 0x0000000000003b24 0x38d esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_abbrev 0x0000000000003eb1 0x3c1 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_abbrev 0x0000000000004272 0x352 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_abbrev 0x00000000000045c4 0x421 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_abbrev 0x00000000000049e5 0x46d esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_abbrev 0x0000000000004e52 0x4dc esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_abbrev 0x000000000000532e 0x14 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_abbrev 0x0000000000005342 0x14 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_abbrev 0x0000000000005356 0x1ea esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_abbrev 0x0000000000005540 0x14 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .debug_abbrev 0x0000000000005554 0x2b9 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_abbrev 0x000000000000580d 0x12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_abbrev 0x000000000000581f 0x18b esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_abbrev 0x00000000000059aa 0x3b2 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_abbrev 0x0000000000005d5c 0x4a4 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_abbrev 0x0000000000006200 0x3c0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_abbrev 0x00000000000065c0 0x14 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_abbrev 0x00000000000065d4 0x209 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_abbrev 0x00000000000067dd 0x5d2 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_abbrev 0x0000000000006daf 0x550 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_abbrev 0x00000000000072ff 0x2a0 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_abbrev 0x000000000000759f 0x322 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_abbrev 0x00000000000078c1 0x296 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_abbrev 0x0000000000007b57 0x249 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_abbrev 0x0000000000007da0 0x233 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_abbrev 0x0000000000007fd3 0x2c8 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_abbrev 0x000000000000829b 0x4eb esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_abbrev 0x0000000000008786 0x45f esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_abbrev 0x0000000000008be5 0x5ce esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_abbrev 0x00000000000091b3 0x25a esp-idf/main/libmain.a(blink.c.obj) + .debug_abbrev 0x000000000000940d 0x2f5 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_abbrev 0x0000000000009702 0x398 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_abbrev 0x0000000000009a9a 0x2f9 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_abbrev 0x0000000000009d93 0x218 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_abbrev 0x0000000000009fab 0x1cb esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_abbrev 0x000000000000a176 0x4b0 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_abbrev 0x000000000000a626 0x33f esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_abbrev 0x000000000000a965 0x385 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_abbrev 0x000000000000acea 0x30c esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_abbrev 0x000000000000aff6 0x294 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_abbrev 0x000000000000b28a 0x2c5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_abbrev 0x000000000000b54f 0x418 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_abbrev 0x000000000000b967 0x3f3 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_abbrev 0x000000000000bd5a 0x48e esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_abbrev 0x000000000000c1e8 0x53a esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_abbrev 0x000000000000c722 0x390 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_abbrev 0x000000000000cab2 0x2a6 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_abbrev 0x000000000000cd58 0x2fb esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_abbrev 0x000000000000d053 0x439 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_abbrev 0x000000000000d48c 0x1b4 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_abbrev 0x000000000000d640 0x42e esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_abbrev 0x000000000000da6e 0x284 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_abbrev 0x000000000000dcf2 0x298 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_abbrev 0x000000000000df8a 0x392 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_abbrev 0x000000000000e31c 0x477 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_abbrev 0x000000000000e793 0x464 esp-idf/log/liblog.a(log.c.obj) + .debug_abbrev 0x000000000000ebf7 0x2f8 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_abbrev 0x000000000000eeef 0x483 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_abbrev 0x000000000000f372 0x3b8 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_abbrev 0x000000000000f72a 0x4a7 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_abbrev 0x000000000000fbd1 0x5bc esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_abbrev 0x000000000001018d 0x2bd esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_abbrev 0x000000000001044a 0x3a6 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_abbrev 0x00000000000107f0 0x346 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_abbrev 0x0000000000010b36 0x583 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_abbrev 0x00000000000110b9 0x4db esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_abbrev 0x0000000000011594 0x1cd esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_abbrev 0x0000000000011761 0x33c esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_abbrev 0x0000000000011a9d 0x42f esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_abbrev 0x0000000000011ecc 0x3ee esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_abbrev 0x00000000000122ba 0x38e esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_abbrev 0x0000000000012648 0x49f esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_abbrev 0x0000000000012ae7 0x269 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_abbrev 0x0000000000012d50 0x198 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_abbrev 0x0000000000012ee8 0x46f esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_abbrev 0x0000000000013357 0x3cd esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_abbrev 0x0000000000013724 0x14 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_abbrev 0x0000000000013738 0x14 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_abbrev 0x000000000001374c 0x43 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_abbrev 0x000000000001378f 0x14 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_abbrev 0x00000000000137a3 0x14 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_abbrev 0x00000000000137b7 0x28e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_abbrev 0x0000000000013a45 0x29b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_abbrev 0x0000000000013ce0 0x27a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_abbrev 0x0000000000013f5a 0x294 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_abbrev 0x00000000000141ee 0x210 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_abbrev 0x00000000000143fe 0x1b8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_abbrev 0x00000000000145b6 0x224 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_abbrev 0x00000000000147da 0x2bf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_abbrev 0x0000000000014a99 0x28d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_abbrev 0x0000000000014d26 0x2eb /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_abbrev 0x0000000000015011 0x2a4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_abbrev 0x00000000000152b5 0x24f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_abbrev 0x0000000000015504 0x2a0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_abbrev 0x00000000000157a4 0x462 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_abbrev 0x0000000000015c06 0x480 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_abbrev 0x0000000000016086 0x4b8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_abbrev 0x000000000001653e 0x28b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_abbrev 0x00000000000167c9 0x31e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_abbrev 0x0000000000016ae7 0x1f8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_abbrev 0x0000000000016cdf 0x2c3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_abbrev 0x0000000000016fa2 0x27a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_abbrev 0x000000000001721c 0x264 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_abbrev 0x0000000000017480 0x38a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_abbrev 0x000000000001780a 0x262 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_abbrev 0x0000000000017a6c 0x3ff /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + +.debug_loc 0x0000000000000000 0x3abe4 + .debug_loc 0x0000000000000000 0x12c esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_loc 0x000000000000012c 0x11b8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_loc 0x00000000000012e4 0x494 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_loc 0x0000000000001778 0x220 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_loc 0x0000000000001998 0x11c esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_loc 0x0000000000001ab4 0x223 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_loc 0x0000000000001cd7 0x1d5 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_loc 0x0000000000001eac 0x13e8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_loc 0x0000000000003294 0x802 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_loc 0x0000000000003a96 0x2ae esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_loc 0x0000000000003d44 0x5eb esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_loc 0x000000000000432f 0xc7 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_loc 0x00000000000043f6 0x270 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_loc 0x0000000000004666 0x37 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_loc 0x000000000000469d 0xc7 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_loc 0x0000000000004764 0x343 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_loc 0x0000000000004aa7 0x1d1 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_loc 0x0000000000004c78 0x725 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_loc 0x000000000000539d 0x34e esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_loc 0x00000000000056eb 0x719 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_loc 0x0000000000005e04 0x1fe esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_loc 0x0000000000006002 0x16d2 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_loc 0x00000000000076d4 0x316b esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_loc 0x000000000000a83f 0x802 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_loc 0x000000000000b041 0xd0 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_loc 0x000000000000b111 0x4296 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_loc 0x000000000000f3a7 0x13bd esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_loc 0x0000000000010764 0x1c1 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_loc 0x0000000000010925 0x279 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_loc 0x0000000000010b9e 0x94 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_loc 0x0000000000010c32 0x162 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_loc 0x0000000000010d94 0xce esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_loc 0x0000000000010e62 0x63e esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_loc 0x00000000000114a0 0x2e2 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_loc 0x0000000000011782 0x4a4 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_loc 0x0000000000011c26 0x8f esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_loc 0x0000000000011cb5 0x243 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_loc 0x0000000000011ef8 0x94 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_loc 0x0000000000011f8c 0x4a esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_loc 0x0000000000011fd6 0xb52 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_loc 0x0000000000012b28 0x275 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_loc 0x0000000000012d9d 0x2aa esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_loc 0x0000000000013047 0x39d esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_loc 0x00000000000133e4 0x23 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_loc 0x0000000000013407 0x1f4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_loc 0x00000000000135fb 0x2c4 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_loc 0x00000000000138bf 0x420 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_loc 0x0000000000013cdf 0x35b esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_loc 0x000000000001403a 0x109c esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_loc 0x00000000000150d6 0x256 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_loc 0x000000000001532c 0x220 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_loc 0x000000000001554c 0x13d esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_loc 0x0000000000015689 0xb72 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_loc 0x00000000000161fb 0xb39 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_loc 0x0000000000016d34 0x133 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_loc 0x0000000000016e67 0x17c esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_loc 0x0000000000016fe3 0x1d5 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_loc 0x00000000000171b8 0xd8b esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_loc 0x0000000000017f43 0x47f esp-idf/log/liblog.a(log.c.obj) + .debug_loc 0x00000000000183c2 0xcf esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_loc 0x0000000000018491 0xddb esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_loc 0x000000000001926c 0x6d9 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_loc 0x0000000000019945 0x2aa4 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_loc 0x000000000001c3e9 0x1c1f esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_loc 0x000000000001e008 0x438 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_loc 0x000000000001e440 0xbce esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_loc 0x000000000001f00e 0x336 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_loc 0x000000000001f344 0x2e20 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_loc 0x0000000000022164 0x722 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_loc 0x0000000000022886 0x33b esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_loc 0x0000000000022bc1 0xcea esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_loc 0x00000000000238ab 0x390 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_loc 0x0000000000023c3b 0x2e7 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_loc 0x0000000000023f22 0xd84 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_loc 0x0000000000024ca6 0xed esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_loc 0x0000000000024d93 0xfa0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_loc 0x0000000000025d33 0x1e57 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_loc 0x0000000000027b8a 0xac9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_loc 0x0000000000028653 0x7e1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_loc 0x0000000000028e34 0xa12 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_loc 0x0000000000029846 0x94c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_loc 0x000000000002a192 0x25 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_loc 0x000000000002a1b7 0x74 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_loc 0x000000000002a22b 0xea /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_loc 0x000000000002a315 0x9e /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_loc 0x000000000002a3b3 0x3af /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_loc 0x000000000002a762 0xfe /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_loc 0x000000000002a860 0x44 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_loc 0x000000000002a8a4 0x147 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_loc 0x000000000002a9eb 0x3e12 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_loc 0x000000000002e7fd 0x270a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_loc 0x0000000000030f07 0x3ee7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_loc 0x0000000000034dee 0x5f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_loc 0x0000000000034e4d 0x190a /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_loc 0x0000000000036757 0x10c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_loc 0x0000000000036863 0xb1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_loc 0x0000000000036914 0xc9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_loc 0x00000000000369dd 0xea /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_loc 0x0000000000036ac7 0x17ae /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_loc 0x0000000000038275 0xe2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_loc 0x0000000000038357 0x288d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + +.debug_aranges 0x0000000000000000 0x2dd0 + .debug_aranges + 0x0000000000000000 0x28 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_aranges + 0x0000000000000028 0x160 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_aranges + 0x0000000000000188 0x60 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_aranges + 0x00000000000001e8 0x58 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_aranges + 0x0000000000000240 0x40 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_aranges + 0x0000000000000280 0x68 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_aranges + 0x00000000000002e8 0x20 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .debug_aranges + 0x0000000000000308 0x30 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_aranges + 0x0000000000000338 0xd0 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_aranges + 0x0000000000000408 0xd8 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_aranges + 0x00000000000004e0 0x28 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_aranges + 0x0000000000000508 0x70 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_aranges + 0x0000000000000578 0x28 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_aranges + 0x00000000000005a0 0x58 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_aranges + 0x00000000000005f8 0x28 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_aranges + 0x0000000000000620 0x28 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_aranges + 0x0000000000000648 0x68 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_aranges + 0x00000000000006b0 0x40 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_aranges + 0x00000000000006f0 0xb8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_aranges + 0x00000000000007a8 0x78 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_aranges + 0x0000000000000820 0x90 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_aranges + 0x00000000000008b0 0x20 esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_aranges + 0x00000000000008d0 0x20 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_aranges + 0x00000000000008f0 0x28 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_aranges + 0x0000000000000918 0x20 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .debug_aranges + 0x0000000000000938 0x30 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_aranges + 0x0000000000000968 0x70 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_aranges + 0x00000000000009d8 0x18 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_aranges + 0x00000000000009f0 0x118 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_aranges + 0x0000000000000b08 0x230 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_aranges + 0x0000000000000d38 0xc0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_aranges + 0x0000000000000df8 0x20 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_aranges + 0x0000000000000e18 0x40 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_aranges + 0x0000000000000e58 0x1b0 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_aranges + 0x0000000000001008 0xf8 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_aranges + 0x0000000000001100 0x90 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_aranges + 0x0000000000001190 0x80 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_aranges + 0x0000000000001210 0x40 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_aranges + 0x0000000000001250 0x28 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_aranges + 0x0000000000001278 0x28 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_aranges + 0x00000000000012a0 0x68 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_aranges + 0x0000000000001308 0xd8 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_aranges + 0x00000000000013e0 0x40 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_aranges + 0x0000000000001420 0x50 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_aranges + 0x0000000000001470 0x20 esp-idf/main/libmain.a(blink.c.obj) + .debug_aranges + 0x0000000000001490 0x28 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_aranges + 0x00000000000014b8 0x48 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_aranges + 0x0000000000001500 0x40 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_aranges + 0x0000000000001540 0x28 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_aranges + 0x0000000000001568 0x30 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_aranges + 0x0000000000001598 0x108 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_aranges + 0x00000000000016a0 0x30 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_aranges + 0x00000000000016d0 0x50 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_aranges + 0x0000000000001720 0x78 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_aranges + 0x0000000000001798 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_aranges + 0x00000000000017b8 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_aranges + 0x00000000000017f8 0x78 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_aranges + 0x0000000000001870 0x78 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_aranges + 0x00000000000018e8 0x70 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_aranges + 0x0000000000001958 0xf0 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_aranges + 0x0000000000001a48 0x40 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_aranges + 0x0000000000001a88 0x58 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_aranges + 0x0000000000001ae0 0x38 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_aranges + 0x0000000000001b18 0xa8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_aranges + 0x0000000000001bc0 0x18 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_aranges + 0x0000000000001bd8 0xe8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_aranges + 0x0000000000001cc0 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_aranges + 0x0000000000001cf0 0x30 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_aranges + 0x0000000000001d20 0x68 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_aranges + 0x0000000000001d88 0x80 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_aranges + 0x0000000000001e08 0x40 esp-idf/log/liblog.a(log.c.obj) + .debug_aranges + 0x0000000000001e48 0x48 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_aranges + 0x0000000000001e90 0xf8 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_aranges + 0x0000000000001f88 0x40 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_aranges + 0x0000000000001fc8 0xd8 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_aranges + 0x00000000000020a0 0x140 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_aranges + 0x00000000000021e0 0x30 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_aranges + 0x0000000000002210 0xb0 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_aranges + 0x00000000000022c0 0x38 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_aranges + 0x00000000000022f8 0x218 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_aranges + 0x0000000000002510 0x78 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_aranges + 0x0000000000002588 0x18 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_aranges + 0x00000000000025a0 0x40 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_aranges + 0x00000000000025e0 0xe0 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_aranges + 0x00000000000026c0 0x40 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_aranges + 0x0000000000002700 0x30 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_aranges + 0x0000000000002730 0x70 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_aranges + 0x00000000000027a0 0x20 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_aranges + 0x00000000000027c0 0x18 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_aranges + 0x00000000000027d8 0xe0 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_aranges + 0x00000000000028b8 0x160 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_aranges + 0x0000000000002a18 0x20 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_aranges + 0x0000000000002a38 0x20 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_aranges + 0x0000000000002a58 0x18 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_aranges + 0x0000000000002a70 0x20 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_aranges + 0x0000000000002a90 0x20 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_aranges + 0x0000000000002ab0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_aranges + 0x0000000000002ad0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_aranges + 0x0000000000002af0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_aranges + 0x0000000000002b10 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_aranges + 0x0000000000002b30 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_aranges + 0x0000000000002b50 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_aranges + 0x0000000000002b70 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_aranges + 0x0000000000002b90 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_aranges + 0x0000000000002bb0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_aranges + 0x0000000000002bd0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_aranges + 0x0000000000002bf0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_aranges + 0x0000000000002c10 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_aranges + 0x0000000000002c30 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_aranges + 0x0000000000002c50 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_aranges + 0x0000000000002c70 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_aranges + 0x0000000000002c90 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_aranges + 0x0000000000002cb0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_aranges + 0x0000000000002cd0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_aranges + 0x0000000000002cf0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_aranges + 0x0000000000002d10 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_aranges + 0x0000000000002d30 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_aranges + 0x0000000000002d50 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_aranges + 0x0000000000002d70 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_aranges + 0x0000000000002d90 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_aranges + 0x0000000000002db0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + +.debug_ranges 0x0000000000000000 0x4758 + .debug_ranges 0x0000000000000000 0x18 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_ranges 0x0000000000000018 0x1a8 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_ranges 0x00000000000001c0 0x50 esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_ranges 0x0000000000000210 0x48 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_ranges 0x0000000000000258 0x78 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_ranges 0x00000000000002d0 0xb8 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_ranges 0x0000000000000388 0x68 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_ranges 0x00000000000003f0 0x1c8 esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_ranges 0x00000000000005b8 0x1b8 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_ranges 0x0000000000000770 0x30 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_ranges 0x00000000000007a0 0x78 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_ranges 0x0000000000000818 0x30 esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_ranges 0x0000000000000848 0x48 esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_ranges 0x0000000000000890 0x30 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_ranges 0x00000000000008c0 0x18 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_ranges 0x00000000000008d8 0xd0 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_ranges 0x00000000000009a8 0x48 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_ranges 0x00000000000009f0 0xa8 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_ranges 0x0000000000000a98 0x68 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_ranges 0x0000000000000b00 0xf8 esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_ranges 0x0000000000000bf8 0x18 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_ranges 0x0000000000000c10 0x68 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_ranges 0x0000000000000c78 0x68 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_ranges 0x0000000000000ce0 0x1c8 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_ranges 0x0000000000000ea8 0x10f8 esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_ranges 0x0000000000001fa0 0xe0 esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_ranges 0x0000000000002080 0x30 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_ranges 0x00000000000020b0 0x230 esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_ranges 0x00000000000022e0 0x1d0 esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_ranges 0x00000000000024b0 0x80 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_ranges 0x0000000000002530 0x70 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_ranges 0x00000000000025a0 0x30 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_ranges 0x00000000000025d0 0x48 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_ranges 0x0000000000002618 0x18 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_ranges 0x0000000000002630 0x58 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_ranges 0x0000000000002688 0xe0 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_ranges 0x0000000000002768 0x30 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_ranges 0x0000000000002798 0x40 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_ranges 0x00000000000027d8 0x10 esp-idf/main/libmain.a(blink.c.obj) + .debug_ranges 0x00000000000027e8 0x48 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_ranges 0x0000000000002830 0x50 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_ranges 0x0000000000002880 0x48 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_ranges 0x00000000000028c8 0x68 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_ranges 0x0000000000002930 0x20 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_ranges 0x0000000000002950 0x110 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_ranges 0x0000000000002a60 0x20 esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_ranges 0x0000000000002a80 0x40 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_ranges 0x0000000000002ac0 0x68 esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_ranges 0x0000000000002b28 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_ranges 0x0000000000002b38 0x120 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_ranges 0x0000000000002c58 0x80 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_ranges 0x0000000000002cd8 0x110 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_ranges 0x0000000000002de8 0x78 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_ranges 0x0000000000002e60 0x100 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_ranges 0x0000000000002f60 0x30 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_ranges 0x0000000000002f90 0x48 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_ranges 0x0000000000002fd8 0x28 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_ranges 0x0000000000003000 0xb8 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_ranges 0x00000000000030b8 0xd8 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_ranges 0x0000000000003190 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_ranges 0x00000000000031b0 0x20 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_ranges 0x00000000000031d0 0x58 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_ranges 0x0000000000003228 0xf0 esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_ranges 0x0000000000003318 0x30 esp-idf/log/liblog.a(log.c.obj) + .debug_ranges 0x0000000000003348 0x50 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_ranges 0x0000000000003398 0x208 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_ranges 0x00000000000035a0 0x90 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_ranges 0x0000000000003630 0x150 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_ranges 0x0000000000003780 0x218 esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_ranges 0x0000000000003998 0x20 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_ranges 0x00000000000039b8 0xe8 esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_ranges 0x0000000000003aa0 0x28 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_ranges 0x0000000000003ac8 0x208 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_ranges 0x0000000000003cd0 0xe0 esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_ranges 0x0000000000003db0 0x58 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_ranges 0x0000000000003e08 0x120 esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_ranges 0x0000000000003f28 0x30 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_ranges 0x0000000000003f58 0x20 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_ranges 0x0000000000003f78 0x60 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_ranges 0x0000000000003fd8 0x10 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_ranges 0x0000000000003fe8 0x168 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_ranges 0x0000000000004150 0x180 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_ranges 0x00000000000042d0 0xa0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_ranges 0x0000000000004370 0x40 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_ranges 0x00000000000043b0 0xa0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_ranges 0x0000000000004450 0x58 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_ranges 0x00000000000044a8 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_ranges 0x00000000000044c0 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_ranges 0x00000000000044e0 0x18 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_ranges 0x00000000000044f8 0x70 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_ranges 0x0000000000004568 0x88 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_ranges 0x00000000000045f0 0xb8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_ranges 0x00000000000046a8 0x20 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_ranges 0x00000000000046c8 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_ranges 0x0000000000004710 0x48 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + +.debug_line 0x0000000000000000 0x87313 + .debug_line 0x0000000000000000 0x55d esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + .debug_line 0x000000000000055d 0x2379 esp-idf/pthread/libpthread.a(pthread.c.obj) + .debug_line 0x00000000000028d6 0xb7b esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + .debug_line 0x0000000000003451 0x13b8 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + .debug_line 0x0000000000004809 0x8b5 esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + .debug_line 0x00000000000050be 0xc56 esp-idf/esp32/libesp32.a(dport_access.c.obj) + .debug_line 0x0000000000005d14 0x266 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + .debug_line 0x0000000000005f7a 0xa85 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + .debug_line 0x00000000000069ff 0x254f esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + .debug_line 0x0000000000008f4e 0x1da1 esp-idf/esp32/libesp32.a(panic.c.obj) + .debug_line 0x000000000000acef 0xf23 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + .debug_line 0x000000000000bc12 0x179a esp-idf/esp32/libesp32.a(task_wdt.c.obj) + .debug_line 0x000000000000d3ac 0x66d esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + .debug_line 0x000000000000da19 0xbcf esp-idf/esp32/libesp32.a(clk.c.obj) + .debug_line 0x000000000000e5e8 0x68c esp-idf/esp_common/libesp_common.a(brownout.c.obj) + .debug_line 0x000000000000ec74 0x916 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + .debug_line 0x000000000000f58a 0xc14 esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + .debug_line 0x000000000001019e 0x869 esp-idf/esp_common/libesp_common.a(ipc.c.obj) + .debug_line 0x0000000000010a07 0x1464 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + .debug_line 0x0000000000011e6b 0x1119 esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + .debug_line 0x0000000000012f84 0x103c esp-idf/freertos/libfreertos.a(port.c.obj) + .debug_line 0x0000000000013fc0 0x43b esp-idf/freertos/libfreertos.a(portasm.S.obj) + .debug_line 0x00000000000143fb 0x364 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + .debug_line 0x000000000001475f 0x437 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + .debug_line 0x0000000000014b96 0xe3 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + .debug_line 0x0000000000014c79 0x749 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + .debug_line 0x00000000000153c2 0xa03 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + .debug_line 0x0000000000015dc5 0x37e esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + .debug_line 0x0000000000016143 0x29d2 esp-idf/freertos/libfreertos.a(queue.c.obj) + .debug_line 0x0000000000018b15 0x7bce esp-idf/freertos/libfreertos.a(tasks.c.obj) + .debug_line 0x00000000000206e3 0x150f esp-idf/freertos/libfreertos.a(timers.c.obj) + .debug_line 0x0000000000021bf2 0xcb esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + .debug_line 0x0000000000021cbd 0x7a0 esp-idf/freertos/libfreertos.a(list.c.obj) + .debug_line 0x000000000002245d 0x55ca esp-idf/vfs/libvfs.a(vfs.c.obj) + .debug_line 0x0000000000027a27 0x29ce esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + .debug_line 0x000000000002a3f5 0x570 esp-idf/newlib/libnewlib.a(heap.c.obj) + .debug_line 0x000000000002a965 0xa94 esp-idf/newlib/libnewlib.a(locks.c.obj) + .debug_line 0x000000000002b3f9 0x3f4 esp-idf/newlib/libnewlib.a(pthread.c.obj) + .debug_line 0x000000000002b7ed 0x5fc esp-idf/newlib/libnewlib.a(reent_init.c.obj) + .debug_line 0x000000000002bde9 0x4a5 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + .debug_line 0x000000000002c28e 0x471 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + .debug_line 0x000000000002c6ff 0x13e2 esp-idf/newlib/libnewlib.a(time.c.obj) + .debug_line 0x000000000002dae1 0x4c1 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + .debug_line 0x000000000002dfa2 0xda8 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + .debug_line 0x000000000002ed4a 0x54b esp-idf/main/libmain.a(blink.c.obj) + .debug_line 0x000000000002f295 0x90a esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + .debug_line 0x000000000002fb9f 0x647 esp-idf/soc/libsoc.a(cpu_util.c.obj) + .debug_line 0x00000000000301e6 0x6e0 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + .debug_line 0x00000000000308c6 0x673 esp-idf/soc/libsoc.a(soc_hal.c.obj) + .debug_line 0x0000000000030f39 0x2e4 esp-idf/soc/libsoc.a(brownout_hal.c.obj) + .debug_line 0x000000000003121d 0x2900 esp-idf/soc/libsoc.a(rtc_clk.c.obj) + .debug_line 0x0000000000033b1d 0x184c esp-idf/soc/libsoc.a(rtc_init.c.obj) + .debug_line 0x0000000000035369 0xf85 esp-idf/soc/libsoc.a(rtc_time.c.obj) + .debug_line 0x00000000000362ee 0xdfa esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + .debug_line 0x00000000000370e8 0x437 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + .debug_line 0x000000000003751f 0x1238 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + .debug_line 0x0000000000038757 0xbe2 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + .debug_line 0x0000000000039339 0xf31 esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + .debug_line 0x000000000003a26a 0xb17 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + .debug_line 0x000000000003ad81 0x2739 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + .debug_line 0x000000000003d4ba 0xcf2 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + .debug_line 0x000000000003e1ac 0x6d8 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + .debug_line 0x000000000003e884 0x664 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + .debug_line 0x000000000003eee8 0x17e0 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + .debug_line 0x00000000000406c8 0x3a1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + .debug_line 0x0000000000040a69 0x182b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + .debug_line 0x0000000000042294 0x4b1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + .debug_line 0x0000000000042745 0x50b esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + .debug_line 0x0000000000042c50 0xa1f esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + .debug_line 0x000000000004366f 0x1ace esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + .debug_line 0x000000000004513d 0xa32 esp-idf/log/liblog.a(log.c.obj) + .debug_line 0x0000000000045b6f 0x8c1 esp-idf/log/liblog.a(log_freertos.c.obj) + .debug_line 0x0000000000046430 0x1b74 esp-idf/heap/libheap.a(heap_caps.c.obj) + .debug_line 0x0000000000047fa4 0xf01 esp-idf/heap/libheap.a(heap_caps_init.c.obj) + .debug_line 0x0000000000048ea5 0x3650 esp-idf/heap/libheap.a(multi_heap.c.obj) + .debug_line 0x000000000004c4f5 0x373a esp-idf/driver/libdriver.a(gpio.c.obj) + .debug_line 0x000000000004fc2f 0x1634 esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + .debug_line 0x0000000000051263 0x1fef esp-idf/driver/libdriver.a(rtc_io.c.obj) + .debug_line 0x0000000000053252 0x903 esp-idf/driver/libdriver.a(rtc_module.c.obj) + .debug_line 0x0000000000053b55 0x78e5 esp-idf/driver/libdriver.a(uart.c.obj) + .debug_line 0x000000000005b43a 0x135b esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + .debug_line 0x000000000005c795 0x30f esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + .debug_line 0x000000000005caa4 0x90a esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + .debug_line 0x000000000005d3ae 0x14fe esp-idf/soc/libsoc.a(uart_hal.c.obj) + .debug_line 0x000000000005e8ac 0x7d4 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + .debug_line 0x000000000005f080 0x77a esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + .debug_line 0x000000000005f7fa 0x1731 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + .debug_line 0x0000000000060f2b 0x3c8 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + .debug_line 0x00000000000612f3 0x2cc esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + .debug_line 0x00000000000615bf 0x256e esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + .debug_line 0x0000000000063b2d 0x41dc esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + .debug_line 0x0000000000067d09 0x2ef /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + .debug_line 0x0000000000067ff8 0x6a /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + .debug_line 0x0000000000068062 0x50 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + .debug_line 0x00000000000680b2 0x66 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + .debug_line 0x0000000000068118 0x66 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + .debug_line 0x000000000006817e 0xaf6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + .debug_line 0x0000000000068c74 0xb63 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + .debug_line 0x00000000000697d7 0xa2b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + .debug_line 0x000000000006a202 0xae0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + .debug_line 0x000000000006ace2 0x2a2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + .debug_line 0x000000000006af84 0x203 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + .debug_line 0x000000000006b187 0x31c /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + .debug_line 0x000000000006b4a3 0x4b8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + .debug_line 0x000000000006b95b 0x2ee /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + .debug_line 0x000000000006bc49 0xcd8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + .debug_line 0x000000000006c921 0x500 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + .debug_line 0x000000000006ce21 0x4fc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + .debug_line 0x000000000006d31d 0x5d6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + .debug_line 0x000000000006d8f3 0x5893 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + .debug_line 0x0000000000073186 0x4191 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + .debug_line 0x0000000000077317 0x5c34 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + .debug_line 0x000000000007cf4b 0x346 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + .debug_line 0x000000000007d291 0x2683 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + .debug_line 0x000000000007f914 0x3c5 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + .debug_line 0x000000000007fcd9 0x455 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + .debug_line 0x000000000008012e 0x3b8 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + .debug_line 0x00000000000804e6 0x3d1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + .debug_line 0x00000000000808b7 0x25cd /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + .debug_line 0x0000000000082e84 0x4b1 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + .debug_line 0x0000000000083335 0x3fde /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + +.debug_str 0x0000000000000000 0x181c3 + .debug_str 0x0000000000000000 0x7ea esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + 0xa40 (size before relaxing) + .debug_str 0x00000000000007ea 0x15d3 esp-idf/pthread/libpthread.a(pthread.c.obj) + 0x1cf0 (size before relaxing) + .debug_str 0x0000000000001dbd 0x1ad esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + 0x14f1 (size before relaxing) + .debug_str 0x0000000000001f6a 0x30c0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) + 0x49f6 (size before relaxing) + .debug_str 0x000000000000502a 0x13a esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + 0x3954 (size before relaxing) + .debug_str 0x0000000000005164 0x16e7 esp-idf/esp32/libesp32.a(dport_access.c.obj) + 0x3734 (size before relaxing) + .debug_str 0x000000000000684b 0x52 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + 0x8c (size before relaxing) + .debug_str 0x000000000000689d 0x217 esp-idf/esp32/libesp32.a(int_wdt.c.obj) + 0x1a65 (size before relaxing) + .debug_str 0x0000000000006ab4 0x48f esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + 0x180d (size before relaxing) + .debug_str 0x0000000000006f43 0x712 esp-idf/esp32/libesp32.a(panic.c.obj) + 0x483d (size before relaxing) + .debug_str 0x0000000000007655 0xceb esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + 0x6213 (size before relaxing) + .debug_str 0x0000000000008340 0x1db esp-idf/esp32/libesp32.a(task_wdt.c.obj) + 0x1df7 (size before relaxing) + .debug_str 0x000000000000851b 0x4c esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + 0x1286 (size before relaxing) + .debug_str 0x0000000000008567 0xde8 esp-idf/esp32/libesp32.a(clk.c.obj) + 0x5d00 (size before relaxing) + .debug_str 0x000000000000934f 0xf0 esp-idf/esp_common/libesp_common.a(brownout.c.obj) + 0x2c1a (size before relaxing) + .debug_str 0x000000000000943f 0x1a0 esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) + 0x3e7d (size before relaxing) + .debug_str 0x00000000000095df 0x1bb esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + 0x2c86 (size before relaxing) + .debug_str 0x000000000000979a 0x18d esp-idf/esp_common/libesp_common.a(ipc.c.obj) + 0x148b (size before relaxing) + .debug_str 0x0000000000009927 0x328 esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + 0x1745 (size before relaxing) + .debug_str 0x0000000000009c4f 0x18b esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + 0x30b2 (size before relaxing) + .debug_str 0x0000000000009dda 0x3dc esp-idf/freertos/libfreertos.a(port.c.obj) + 0x1884 (size before relaxing) + .debug_str 0x000000000000a1b6 0x3e esp-idf/freertos/libfreertos.a(portasm.S.obj) + 0x86 (size before relaxing) + .debug_str 0x000000000000a1f4 0x45 esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + 0x8d (size before relaxing) + .debug_str 0x000000000000a239 0x50 esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + 0x1154 (size before relaxing) + .debug_str 0x000000000000a289 0x46 esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + 0x8e (size before relaxing) + .debug_str 0x000000000000a2cf 0xa0 esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + 0x12ed (size before relaxing) + .debug_str 0x000000000000a36f 0x45 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + 0x8d (size before relaxing) + .debug_str 0x000000000000a3b4 0x52 esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) + 0x11de (size before relaxing) + .debug_str 0x000000000000a406 0x62c esp-idf/freertos/libfreertos.a(queue.c.obj) + 0x1a8f (size before relaxing) + .debug_str 0x000000000000aa32 0xb84 esp-idf/freertos/libfreertos.a(tasks.c.obj) + 0x2500 (size before relaxing) + .debug_str 0x000000000000b5b6 0x4b9 esp-idf/freertos/libfreertos.a(timers.c.obj) + 0x19ba (size before relaxing) + .debug_str 0x000000000000ba6f 0x4d esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + 0x95 (size before relaxing) + .debug_str 0x000000000000babc 0x75 esp-idf/freertos/libfreertos.a(list.c.obj) + 0x12ff (size before relaxing) + .debug_str 0x000000000000bb31 0x8a7 esp-idf/vfs/libvfs.a(vfs.c.obj) + 0x1e4b (size before relaxing) + .debug_str 0x000000000000c3d8 0x6ac esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + 0x2c19 (size before relaxing) + .debug_str 0x000000000000ca84 0x224 esp-idf/newlib/libnewlib.a(heap.c.obj) + 0x75b (size before relaxing) + .debug_str 0x000000000000cca8 0x138 esp-idf/newlib/libnewlib.a(locks.c.obj) + 0x14b1 (size before relaxing) + .debug_str 0x000000000000cde0 0xdf esp-idf/newlib/libnewlib.a(pthread.c.obj) + 0x741 (size before relaxing) + .debug_str 0x000000000000cebf 0x59 esp-idf/newlib/libnewlib.a(reent_init.c.obj) + 0x5f3 (size before relaxing) + .debug_str 0x000000000000cf18 0x178 esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + 0x161d (size before relaxing) + .debug_str 0x000000000000d090 0x69 esp-idf/newlib/libnewlib.a(syscalls.c.obj) + 0x6c1 (size before relaxing) + .debug_str 0x000000000000d0f9 0x2c7 esp-idf/newlib/libnewlib.a(time.c.obj) + 0x2f82 (size before relaxing) + .debug_str 0x000000000000d3c0 0x825 esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + 0xdb4 (size before relaxing) + .debug_str 0x000000000000dbe5 0x305 esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + 0x1c85 (size before relaxing) + .debug_str 0x000000000000deea 0x67 esp-idf/main/libmain.a(blink.c.obj) + 0x153c (size before relaxing) + .debug_str 0x000000000000df51 0x71 esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + 0x12d7 (size before relaxing) + .debug_str 0x000000000000dfc2 0x13a esp-idf/soc/libsoc.a(cpu_util.c.obj) + 0x2a91 (size before relaxing) + .debug_str 0x000000000000e0fc 0xf2 esp-idf/soc/libsoc.a(cpu_hal.c.obj) + 0x126f (size before relaxing) + .debug_str 0x000000000000e1ee 0x98 esp-idf/soc/libsoc.a(soc_hal.c.obj) + 0x116a (size before relaxing) + .debug_str 0x000000000000e286 0x4f esp-idf/soc/libsoc.a(brownout_hal.c.obj) + 0x14cb (size before relaxing) + .debug_str 0x000000000000e2d5 0xdca esp-idf/soc/libsoc.a(rtc_clk.c.obj) + 0x4812 (size before relaxing) + .debug_str 0x000000000000f09f 0xbd esp-idf/soc/libsoc.a(rtc_init.c.obj) + 0x2c34 (size before relaxing) + .debug_str 0x000000000000f15c 0x12b esp-idf/soc/libsoc.a(rtc_time.c.obj) + 0x2348 (size before relaxing) + .debug_str 0x000000000000f287 0xed esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + 0x2155 (size before relaxing) + .debug_str 0x000000000000f374 0xed esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + 0x11b5 (size before relaxing) + .debug_str 0x000000000000f461 0x1cc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + 0xbbe (size before relaxing) + .debug_str 0x000000000000f62d 0x277 esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + 0x1ff5 (size before relaxing) + .debug_str 0x000000000000f8a4 0x2fb esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + 0x1779 (size before relaxing) + .debug_str 0x000000000000fb9f 0x2e9 esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + 0x197a (size before relaxing) + .debug_str 0x000000000000fe88 0x4e3 esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + 0x2a7a (size before relaxing) + .debug_str 0x000000000001036b 0x2b2 esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + 0x359f (size before relaxing) + .debug_str 0x000000000001061d 0x13e esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + 0xb97 (size before relaxing) + .debug_str 0x000000000001075b 0x47 esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + 0x1536 (size before relaxing) + .debug_str 0x00000000000107a2 0x84a esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + 0x14de (size before relaxing) + .debug_str 0x0000000000010fec 0x9d esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_drivers.c.obj) + 0xa2a (size before relaxing) + .debug_str 0x0000000000011089 0x505 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + 0xffa (size before relaxing) + .debug_str 0x000000000001158e 0xc2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) + 0xafb (size before relaxing) + .debug_str 0x0000000000011650 0xa1 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + 0xacc (size before relaxing) + .debug_str 0x00000000000116f1 0x144 esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + 0x2634 (size before relaxing) + .debug_str 0x0000000000011835 0x24a esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + 0x188c (size before relaxing) + .debug_str 0x0000000000011a7f 0x24d esp-idf/log/liblog.a(log.c.obj) + 0x91b (size before relaxing) + .debug_str 0x0000000000011ccc 0xd0 esp-idf/log/liblog.a(log_freertos.c.obj) + 0x1494 (size before relaxing) + .debug_str 0x0000000000011d9c 0x526 esp-idf/heap/libheap.a(heap_caps.c.obj) + 0x187f (size before relaxing) + .debug_str 0x00000000000122c2 0x13b esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 0x1528 (size before relaxing) + .debug_str 0x00000000000123fd 0x37b esp-idf/heap/libheap.a(multi_heap.c.obj) + 0x1771 (size before relaxing) + .debug_str 0x0000000000012778 0xaf8 esp-idf/driver/libdriver.a(gpio.c.obj) + 0x3a81 (size before relaxing) + .debug_str 0x0000000000013270 0x12d esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + 0x1657 (size before relaxing) + .debug_str 0x000000000001339d 0x3f4 esp-idf/driver/libdriver.a(rtc_io.c.obj) + 0x34fa (size before relaxing) + .debug_str 0x0000000000013791 0x316 esp-idf/driver/libdriver.a(rtc_module.c.obj) + 0x391d (size before relaxing) + .debug_str 0x0000000000013aa7 0x118a esp-idf/driver/libdriver.a(uart.c.obj) + 0x36d6 (size before relaxing) + .debug_str 0x0000000000014c31 0x42a esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + 0x3e5a (size before relaxing) + .debug_str 0x000000000001505b 0x40 esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + 0x866 (size before relaxing) + .debug_str 0x000000000001509b 0x142 esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + 0x8a1 (size before relaxing) + .debug_str 0x00000000000151dd 0x40c esp-idf/soc/libsoc.a(uart_hal.c.obj) + 0x18a0 (size before relaxing) + .debug_str 0x00000000000155e9 0x104 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + 0x10ad (size before relaxing) + .debug_str 0x00000000000156ed 0x135 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 0x252a (size before relaxing) + .debug_str 0x0000000000015822 0x3ea esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 0x2713 (size before relaxing) + .debug_str 0x0000000000015c0c 0x98 esp-idf/soc/libsoc.a(mpu_hal.c.obj) + 0x65d (size before relaxing) + .debug_str 0x0000000000015ca4 0x131 esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + 0x789 (size before relaxing) + .debug_str 0x0000000000015dd5 0x6a6 esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + 0x2640 (size before relaxing) + .debug_str 0x000000000001647b 0x6d2 esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + 0x1bfb (size before relaxing) + .debug_str 0x0000000000016b4d 0x58 /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + 0x82 (size before relaxing) + .debug_str 0x0000000000016ba5 0x227 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + 0x758 (size before relaxing) + .debug_str 0x0000000000016dcc 0x9 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + 0x758 (size before relaxing) + .debug_str 0x0000000000016dd5 0xa /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + 0x759 (size before relaxing) + .debug_str 0x0000000000016ddf 0xa /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + 0x759 (size before relaxing) + .debug_str 0x0000000000016de9 0x116 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + 0x5fe (size before relaxing) + .debug_str 0x0000000000016eff 0xc3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + 0x5d0 (size before relaxing) + .debug_str 0x0000000000016fc2 0xdf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + 0x61b (size before relaxing) + .debug_str 0x00000000000170a1 0x1b0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + 0x80a (size before relaxing) + .debug_str 0x0000000000017251 0x67 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + 0x74b (size before relaxing) + .debug_str 0x00000000000172b8 0xb4 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + 0x953 (size before relaxing) + .debug_str 0x000000000001736c 0xa6 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + 0x7e4 (size before relaxing) + .debug_str 0x0000000000017412 0xe0 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + 0x5f4 (size before relaxing) + .debug_str 0x00000000000174f2 0x72 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + 0x795 (size before relaxing) + .debug_str 0x0000000000017564 0x5ba /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + 0xf03 (size before relaxing) + .debug_str 0x0000000000017b1e 0x36 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + 0xf33 (size before relaxing) + .debug_str 0x0000000000017b54 0x15 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + 0xfdf (size before relaxing) + .debug_str 0x0000000000017b69 0x63 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + 0x777 (size before relaxing) + .debug_str 0x0000000000017bcc 0x17f /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + 0xab7 (size before relaxing) + .debug_str 0x0000000000017d4b 0x5b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + 0x5ec (size before relaxing) + .debug_str 0x0000000000017da6 0x167 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + 0x9b8 (size before relaxing) + .debug_str 0x0000000000017f0d 0x85 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + 0x950 (size before relaxing) + .debug_str 0x0000000000017f92 0x73 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + 0x961 (size before relaxing) + .debug_str 0x0000000000018005 0xa7 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + 0xa60 (size before relaxing) + .debug_str 0x00000000000180ac 0xfa /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + 0x666 (size before relaxing) + .debug_str 0x00000000000181a6 0x1d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + 0xe7a (size before relaxing) + +Cross Reference Table + +Symbol File +Cache_Flush_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +Cache_Read_Disable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) +Cache_Read_Enable_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ESP_EFUSE_ABS_DONE_0 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_AND_SDIO_DREF 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_VER_DIS_APP_CPU esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_DIS_BT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_CHIP_VER_PKG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_VER_REV1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +ESP_EFUSE_CHIP_VER_REV2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.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_EFUSE_DISABLE_DL_CACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_DECRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_DL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_DISABLE_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ENCRYPT_CONFIG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_ENCRYPT_FLASH_KEY 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_EFUSE_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CUSTOM_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_CUSTOM_VER esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_FACTORY esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_MAC_FACTORY_CRC esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_RD_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_RD_DIS_BLK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_RD_DIS_BLK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_SDIO_FORCE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SDIO_TIEH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) +ESP_EFUSE_SECURE_BOOT_KEY 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_WR_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_BLK2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_BLK3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +ESP_EFUSE_WR_DIS_FLASH_CRYPT_CNT 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) +FATAL_EXCEPTION esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +GPIO esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +GPIO_HOLD_MASK esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +GPIO_PIN_MUX_REG esp-idf/soc/soc/esp32/libsoc_esp32.a(gpio_periph.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +MD5Final esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +MD5Init esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +MD5Update esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) +RTCCNTL esp-idf/soc/libsoc.a(brownout_hal.c.obj) +RTCIO esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +SPI0 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) +SPI1 esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +SPI2 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) +SPI3 esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/soc/soc/esp32/libsoc_esp32.a(spi_periph.c.obj) +TIMERG0 esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +TIMERG1 esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) +UART0 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +UART1 esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +UART2 esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +Xthal_intlevel /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(interrupts--intlevel.o) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) +_Balloc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +_Bfree /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +_DebugExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_DoubleExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_ITM_deregisterTMCloneTable /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +_ITM_registerTMCloneTable /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +_KernelExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level2Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level3Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level4Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_Level5Vector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_NMIExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_PathLocale /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +_UserExceptionVector esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow4 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowOverflow8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow12 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow4 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_WindowUnderflow8 esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_ZSt18uncaught_exceptionv esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__DTOR_END__ /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__TMC_END__ /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtend.o + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__action_table /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__adddf3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__any_on /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__ascii_mbtowc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +__ascii_wctomb /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +__assert /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) +__assert_func /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.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/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.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_fields.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +__b2d /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__bswapsi2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_bswapsi2.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +__chclass /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__copybits /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__cxa_allocate_dependent_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_allocate_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_begin_catch esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_call_terminate esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_end_catch esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_free_dependent_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_free_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_get_exception_ptr esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.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) +__cxa_rethrow esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxa_throw esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception_bool esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception_int esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception_message esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__cxx_fatal_exception_message_va esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +__d2b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__deregister_frame_info /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__divdf3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdf3.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__divdi3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_divdi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__dso_handle /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__env_lock /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) +__env_unlock /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) +__eqdf2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__errno /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +__fixdfsi /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_fixdfsi.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__floatsidf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__floatunsidf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_floatsidf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__fp_lock_all /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__fp_unlock_all /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__fputwc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) +__gedf2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__getreent esp-idf/freertos/libfreertos.a(tasks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-errno.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +__gettzinfo /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gettzinfo.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__global_locale /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) +__gtdf2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__hi0bits /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__i2b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__init_array_end esp-idf/esp32/libesp32.a(cpu_start.c.obj) +__init_array_start esp-idf/esp32/libesp32.a(cpu_start.c.obj) +__ledf2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__lo0bits /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__locale_ctype_ptr /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +__locale_ctype_ptr_l /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) +__locale_mb_cur_max /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) +__localeconv_l /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) +__lshift /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__ltdf2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__mcmp /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__mdiff /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__moddi3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_moddi3.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__month_lengths /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-month_lengths.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__mprec_bigtens /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__mprec_tens /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__mprec_tinytens /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__muldf3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_muldf3.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__multadd /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__multiply /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__nedf2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__popcountsi2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_popcountsi2.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +__pow5mult /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) +__ratio /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__register_frame_info /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crtbegin.o +__s2b /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__sccl /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sccl.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +__sclose /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__seofread /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) +__sf_fake_stderr /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +__sf_fake_stdin /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +__sf_fake_stdout /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +__sflags /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-flags.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +__sflush_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) +__sfmoreglue /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__sfp /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +__sfp_lock_acquire /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +__sfp_lock_release /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +__sfvwrite_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +__sinit /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +__sinit_lock_acquire /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__sinit_lock_release /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__smakebuf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +__sprint_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) +__sread /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__srefill_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +__sseek /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__ssprint_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__ssrefill_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +__ssvfiscanf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) +__state_table /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__subdf3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_addsubdf3.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +__submore /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +__swbuf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) +__swbuf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) +__swhatbuf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) +__swrite /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +__swsetup_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) +__tz_lock /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__tz_unlock /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__tzcalc_limits /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzcalc_limits.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +__udivdi3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_udivdi3.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +__ulp /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +__umoddi3 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_umoddi3.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + esp-idf/newlib/libnewlib.a(time.c.obj) +__unorddf2 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/libgcc.a(_cmpdf2.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +_bss_end esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_bss_start esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_calloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_cleanup /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_cleanup_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) +_close_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) +_ctype_ /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ctype_.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +_data_start esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +_daylight /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +_dtoa_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +_esp_error_check_failed esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_esp_error_check_failed_without_abort esp-idf/esp32/libesp32.a(panic.c.obj) +_exit esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fclose_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_fcntl_r esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) +_fflush_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wbuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +_findenv_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) +_fini /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o +_fiprintf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) +_fopen_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +_fputs_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) +_fputwc_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) +_free_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wsetup.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_frxt_dispatch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_int_enter esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_frxt_int_exit esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_frxt_setup_switch esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) +_frxt_task_coproc_state esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_frxt_tick_timer_init esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_frxt_timer_int esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_fseek_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +_fseeko_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) +_fstat_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +_fwalk /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_fwalk_reent /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fwalk.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) +_getenv_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_getpid_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_gettimeofday_r esp-idf/newlib/libnewlib.a(time.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_global_impure_ptr /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-impure.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_heap_start esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +_init /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/no-rtti/crti.o +_init_start esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_iram_end esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +_iram_start esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +_isatty_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(isatty.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) +_kill_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_link_r esp-idf/vfs/libvfs.a(vfs.c.obj) +_localeconv_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +_lock_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +_lock_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +_lock_close esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_close_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_init esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_init_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_release esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzlock.o) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +_lock_release_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-envlock.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +_lock_try_acquire esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lock_try_acquire_recursive esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_lseek_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) +_malloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-makebuf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_mbrtowc_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +_mbtowc_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbtowc_r.o) +_mprec_log10 /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) +_open_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) +_printf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) +_putc_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) +_putchar_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) +_puts_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) +_raise_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_read_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) +_realloc_r esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_reclaim_reent /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +_rename_r esp-idf/vfs/libvfs.a(vfs.c.obj) +_rodata_start esp-idf/freertos/libfreertos.a(port.c.obj) +_rtc_bss_end esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_rtc_bss_start esp-idf/esp32/libesp32.a(cpu_start.c.obj) +_sbrk_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +_setlocale_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +_sfread_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +_siscanf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) +_snprintf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) +_start /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +_stat_r esp-idf/vfs/libvfs.a(vfs.c.obj) +_strerror_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) +_strtol_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +_strtoll_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +_strtoul_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +_strtoull_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +_sungetc_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +_svfiprintf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) +_svfprintf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) +_system_r esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.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(syscall_table.c.obj) +_timezone /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_tzname /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzvars.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_tzset_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +_tzset_unlocked /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +_tzset_unlocked_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) +_ungetc_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) +_unlink_r esp-idf/vfs/libvfs.a(vfs.c.obj) +_user_strerror /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-u_strerr.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) +_vfiprintf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) +_vfprintf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) +_vprintf_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) +_wcrtomb_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) +_wctomb_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wctomb_r.o) +_write_r esp-idf/vfs/libvfs.a(vfs.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-stdio.o) +_xt_alloca_exc esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_context_restore esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +_xt_context_save esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +_xt_coproc_init esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_owner_sa esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_xt_coproc_release esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xt_coproc_restorecs esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_coproc_sa_offset esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +_xt_coproc_savecs esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +_xt_exception_table esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) +_xt_interrupt_table esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +_xt_medint2_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_medint3_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +_xt_nmi esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) +_xt_panic esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) +_xt_tick_divisor esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.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.c.obj) +_xt_user_exit esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +_xtos_set_intlevel esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) +abort esp-idf/esp32/libesp32.a(panic.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/heap/libheap.a(multi_heap.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/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) + esp-idf/newlib/libnewlib.a(syscalls.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +access esp-idf/vfs/libvfs.a(vfs.c.obj) +adjtime esp-idf/newlib/libnewlib.a(time.c.obj) +app_main esp-idf/main/libmain.a(blink.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +bootloader_clock_get_rated_freq_mhz esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) +bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.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_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.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_revision esp-idf/bootloader_support/libbootloader_support.a(bootloader_efuse_esp32.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_get_sha256_of_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +bootloader_common_label_search esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.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.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.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.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_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_enable_qio_mode esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +bootloader_fill_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.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/esp32/libesp32.a(cpu_start.c.obj) +bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.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_gpio_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.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_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) + esp-idf/esp32/libesp32.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(bootloader_utility.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) +bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) +bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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) +bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.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.c.obj) +bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_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(bootloader_utility.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) +bootloader_sha256_finish 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(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.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) +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/soc/libsoc.a(brownout_hal.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) +brownout_hal_intr_clear esp-idf/soc/libsoc.a(brownout_hal.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) +brownout_hal_intr_enable esp-idf/soc/libsoc.a(brownout_hal.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) +bzero /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + esp-idf/newlib/libnewlib.a(heap.c.obj) +cache_flash_mmu_set_rom esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) +call_start_cpu0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) +call_user_start esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +calloc esp-idf/newlib/libnewlib.a(heap.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +cfree esp-idf/newlib/libnewlib.a(heap.c.obj) +cleanup_glue /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-reent.o) +clock_getres esp-idf/newlib/libnewlib.a(time.c.obj) +clock_gettime esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +clock_settime esp-idf/newlib/libnewlib.a(time.c.obj) +closedir esp-idf/vfs/libvfs.a(vfs.c.obj) +cpu_hal_clear_breakpoint esp-idf/soc/libsoc.a(cpu_hal.c.obj) +cpu_hal_clear_watchpoint esp-idf/soc/libsoc.a(cpu_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) +cpu_hal_set_breakpoint esp-idf/soc/libsoc.a(cpu_hal.c.obj) +cpu_hal_set_vecbase esp-idf/soc/libsoc.a(cpu_hal.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +cpu_hal_set_watchpoint esp-idf/soc/libsoc.a(cpu_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) +crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +dport_access_end esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +dport_access_start esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +eTaskGetState esp-idf/freertos/libfreertos.a(tasks.c.obj) +environ /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-environ.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_app_desc esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) +esp_backtrace_get_next_frame esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_backtrace_get_start esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) + esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) +esp_backtrace_print esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) +esp_brownout_init esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_cache_err_get_cpuid esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_cache_err_int_init esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_chip_info esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) +esp_clear_watchpoint esp-idf/soc/libsoc.a(cpu_util.c.obj) +esp_clk_apb_freq esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_cpu_freq esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) +esp_clk_init esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_clk_rtc_time esp-idf/newlib/libnewlib.a(time.c.obj) +esp_clk_slowclk_cal_get esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_clk_slowclk_cal_set esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +esp_clk_xtal_freq esp-idf/esp32/libesp32.a(clk.c.obj) +esp_cpu_in_ocd_debug_mode esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_cpu_reset esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) +esp_cpu_stall esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_cpu_unstall esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_crosscore_int_init esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_crosscore_int_send_freq_switch esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_crosscore_int_send_yield esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_deregister_freertos_idle_hook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_deregister_freertos_idle_hook_for_cpu esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_deregister_freertos_tick_hook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_deregister_freertos_tick_hook_for_cpu esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_dport_access_int_abort esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_dport_access_int_init esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_dport_access_int_pause esp-idf/esp32/libesp32.a(dport_access.c.obj) +esp_dport_access_int_resume esp-idf/esp32/libesp32.a(dport_access.c.obj) +esp_dport_access_read_buffer esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_dport_access_reg_read esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_dport_access_sequence_reg_read esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +esp_dport_access_stall_other_cpu_end esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_dport_access_stall_other_cpu_start esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_batch_write_commit 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_get_chip_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) +esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api.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_fields.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_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.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_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_apply_34_encoding esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.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_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) +esp_efuse_utility_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_api.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_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.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_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_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) +esp_efuse_write_random_key esp-idf/efuse/libefuse.a(esp_efuse_fields.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/esp32/libesp32.a(panic.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/esp32/libesp32.a(hw_random.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_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_flash_app_init esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_flash_app_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-idf/spi_flash/libspi_flash.a(esp_flash_api.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_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(esp_flash_api.c.obj) +esp_flash_erase_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_erase_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_flash_get_chip_write_protect esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_io_mode esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protectable_regions esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_protected_region esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_get_size esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_init esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_init_default_chip esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_flash_init_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_noos_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +esp_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_flash_read_chip_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_read_id esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_flash_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-idf/spi_flash/libspi_flash.a(flash_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_spi1_default_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_flash_spi23_default_os_functions esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) +esp_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +esp_get_free_heap_size esp-idf/esp_common/libesp_common.a(system_api.c.obj) +esp_get_idf_version esp-idf/esp_common/libesp_common.a(system_api.c.obj) +esp_get_minimum_free_heap_size esp-idf/esp_common/libesp_common.a(system_api.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-idf/bootloader_support/libbootloader_support.a(bootloader_common.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/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_int_wdt_init esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_intr_alloc esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) +esp_intr_alloc_intrstatus esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_intr_disable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_enable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_intr_free esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_intr_get_cpu esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +esp_intr_get_intno esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_intr_mark_shared esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_intr_noniram_disable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_noniram_enable esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_intr_reserve esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_intr_set_in_iram esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +esp_ipc_call esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +esp_ipc_call_blocking esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.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_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/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(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.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/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(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_qio_mode.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_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.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/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(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.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/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.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_utility.c.obj) + esp-idf/newlib/libnewlib.a(pthread.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_log_writev esp-idf/log/liblog.a(log.c.obj) +esp_ota_begin esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_check_rollback_is_possible esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_end esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_erase_last_boot_app_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_app_description esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_ota_get_app_elf_sha256 esp-idf/app_update/libapp_update.a(esp_app_desc.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_ota_get_boot_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_last_invalid_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_next_update_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_partition_description esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_get_running_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_ota_get_state_partition esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_ota_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_partition_check_identity esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_deregister_external esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_erase_range esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_find_first esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_get_sha256 esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_iterator_release esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_main_flash_region_safe esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_partition_mmap esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_next esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_read esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_register_external esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +esp_partition_verify esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_partition_write esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_perip_clk_init esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_pm_configure esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_dump_locks esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) +esp_pm_impl_get_mode esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_idle_hook esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_init esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_isr_hook esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_switch_mode esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_impl_waiti esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_pm_lock_acquire esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_lock_create esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +esp_pm_lock_delete esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) +esp_pm_lock_release esp-idf/esp_common/libesp_common.a(pm_locks.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.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/esp32/libesp32.a(cpu_start.c.obj) +esp_pthread_set_cfg esp-idf/pthread/libpthread.a(pthread.c.obj) +esp_random esp-idf/esp32/libesp32.a(hw_random.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/esp32/libesp32.a(cpu_start.c.obj) +esp_register_freertos_idle_hook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_register_freertos_idle_hook_for_cpu esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_register_freertos_tick_hook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) +esp_register_freertos_tick_hook_for_cpu esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) +esp_register_shutdown_handler esp-idf/esp_common/libesp_common.a(system_api.c.obj) +esp_reset_reason_get_hint esp-idf/esp32/libesp32.a(panic.c.obj) +esp_reset_reason_set_hint esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_restart esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) +esp_restart_noos esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +esp_rom_spiflash_config_readmode esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_erase_area esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_erase_block esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_erase_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_erase_sector esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_lock esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_prepare_encrypted_data esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read_status esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read_statushigh esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_read_user_cmd esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_select_qio_pins esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_unlock esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_wait_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) +esp_rom_spiflash_write esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_write_encrypted esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +esp_rom_spiflash_write_encrypted_disable esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_write_encrypted_enable esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_rom_spiflash_write_status esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +esp_set_breakpoint_if_jtag esp-idf/esp32/libesp32.a(panic.c.obj) +esp_set_time_from_rtc esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_set_watchpoint esp-idf/soc/libsoc.a(cpu_util.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) +esp_setup_syscall_table esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_sha_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.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_sha256.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_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_sha256.c.obj) +esp_sha_unlock_memory_block esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sha_wait_idle esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) +esp_sync_counters_rtc_and_frc esp-idf/newlib/libnewlib.a(time.c.obj) +esp_task_wdt_add esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_task_wdt_deinit esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_task_wdt_delete esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_task_wdt_init esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +esp_task_wdt_isr_user_handler esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_task_wdt_reset esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_task_wdt_status esp-idf/esp32/libesp32.a(task_wdt.c.obj) +esp_timer_create esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_deinit esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_delete esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_dump esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_next_alarm esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/newlib/libnewlib.a(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-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_alarm_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_counter_reg esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_impl_get_min_period_us esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_get_time esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_init esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +esp_timer_impl_lock 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_lac.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_lac.c.obj) +esp_timer_impl_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_init esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.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_lac.c.obj) +esp_timer_private_unlock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +esp_timer_private_update_apb_freq esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.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_common/libesp_common.a(system_api.c.obj) +esp_vApplicationIdleHook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_vApplicationTickHook esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +esp_vfs_close esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_dev_uart_register esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.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_fstat esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_link esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_lseek esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_open esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_poll 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-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_register esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +esp_vfs_register_fd esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_fd_range esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_register_with_id esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_rename esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.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-idf/newlib/libnewlib.a(syscall_table.c.obj) +esp_vfs_unlink esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.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_utime esp-idf/vfs/libvfs.a(vfs.c.obj) +esp_vfs_write esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +ets_delay_us esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_noos.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ets_efuse_get_spiconfig esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +ets_install_uart_printf esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ets_isr_mask esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +ets_isr_unmask esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +ets_printf esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + 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) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/xtensa/libxtensa.a(debug_helpers.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ets_set_appcpu_boot_addr esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ets_update_cpu_frequency esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) +fclose /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) +fcntl esp-idf/newlib/libnewlib.a(syscalls.c.obj) +fflush /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-refill.o) +fiprintf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-assert.o) +fopen /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +fputs /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +fputwc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) +free esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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(uart.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/log/liblog.a(log.c.obj) + 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(esp_flash_spi_init.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +frexp /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-s_frexp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) +fseek /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseek.o) +fseeko /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) +fsync esp-idf/vfs/libvfs.a(vfs.c.obj) +g_flash_guard_default_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_os_func_app.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +g_flash_guard_no_os_ops esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +g_rom_flashchip esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.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_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +g_rom_spiflash_chip esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) +g_rom_spiflash_dummy_len_plus esp-idf/spi_flash/libspi_flash.a(spi_flash_rom_patch.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(flash_qio_mode.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +g_ticks_per_us_app esp-idf/esp32/libesp32.a(clk.c.obj) +g_ticks_per_us_pro esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +gettimeofday /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-sysgettod.o) + esp-idf/log/liblog.a(log_freertos.c.obj) +gmtime_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-gmtime_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) +gpio_config esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_deep_sleep_hold_dis esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_deep_sleep_hold_en esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_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/soc/libsoc.a(gpio_hal.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_hal_intr_enable_on_core esp-idf/soc/libsoc.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_input_get esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +gpio_input_get_high esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.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/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) +gpio_iomux_out esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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_matrix_in esp-idf/driver/libdriver.a(uart.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/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +gpio_matrix_out esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32.c.obj) +gpio_output_set_high esp-idf/soc/libsoc.a(rtc_clk.c.obj) +gpio_pad_pullup esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +gpio_pad_select_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/main/libmain.a(blink.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(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/main/libmain.a(blink.c.obj) +gpio_set_drive_capability esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_set_intr_type esp-idf/driver/libdriver.a(gpio.c.obj) +gpio_set_level esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/main/libmain.a(blink.c.obj) +gpio_set_pull_mode esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/driver/libdriver.a(uart.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) +heap_caps_aligned_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_aligned_free esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_calloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +heap_caps_calloc_prefer esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_addr esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_check_integrity_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_dump_all esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_enable_nonos_stack_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +heap_caps_free esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(heap.c.obj) +heap_caps_get_allocated_size esp-idf/heap/libheap.a(heap_caps.c.obj) +heap_caps_get_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_common/libesp_common.a(system_api.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(esp_flash_api.c.obj) +heap_caps_get_minimum_free_size esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/esp_common/libesp_common.a(system_api.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/esp32/libesp32.a(cpu_start.c.obj) +heap_caps_malloc esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.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(esp_flash_api.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.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) +int_wdt_app_cpu_ticked esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +intr_matrix_set esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +ioctl esp-idf/vfs/libvfs.a(vfs.c.obj) +iswspace /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-iswspace.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) +ld_include_panic_highint_hdl esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +localeconv /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-localeconv.o) +localtime_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-lcltime_r.o) + esp-idf/log/liblog.a(log_freertos.c.obj) +main /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/crt0.o +mallinfo esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/newlib/libnewlib.a(syscall_table.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +malloc_stats esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_trim esp-idf/newlib/libnewlib.a(heap.c.obj) +malloc_usable_size esp-idf/newlib/libnewlib.a(heap.c.obj) +mallopt esp-idf/newlib/libnewlib.a(heap.c.obj) +mbedtls_internal_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_clone esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_finish esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_finish_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_free esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_init esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_process esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_starts esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_starts_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbedtls_sha256_update esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) +mbedtls_sha256_update_ret esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj) +mbrtowc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mbrtowc.o) +md5_vector esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) +memalign esp-idf/newlib/libnewlib.a(heap.c.obj) +memalign_function_was_linked_but_unsupported_in_esp_idf esp-idf/newlib/libnewlib.a(heap.c.obj) +memchr /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memchr.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) +memcmp /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcmp.o) + esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +memcpy /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memcpy.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-mprec.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-dtoa.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(esp_sha256.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.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(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/esp32/libesp32.a(hw_random.c.obj) + esp-idf/driver/libdriver.a(uart.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/spi_flash/libspi_flash.a(memspi_host_driver.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/bootloader_support/libbootloader_support.a(bootloader_mem.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(queue.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +memmove /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memmove.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fvwrite.o) + esp-idf/heap/libheap.a(multi_heap.c.obj) +memset /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-memset.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-bzero.o) + esp-idf/wpa_supplicant/libwpa_supplicant.a(md5-internal.c.obj) + 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(bootloader_utility.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) + esp-idf/newlib/libnewlib.a(reent_init.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.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) + esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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_id_hs 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_read_status_hs 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_set_write_protect esp-idf/spi_flash/libspi_flash.a(memspi_host_driver.c.obj) +mkdir esp-idf/vfs/libvfs.a(vfs.c.obj) +mpu_hal_set_region_access esp-idf/soc/libsoc.a(mpu_hal.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.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_free esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_aligned_free_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_check esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_dump esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_allocated_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_allocated_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_address_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_block_owner esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_first_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_info esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_get_info_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_get_next_block esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_lock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_internal_unlock esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_is_free esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_malloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_malloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_minimum_free_size esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_minimum_free_size_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_realloc esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +multi_heap_realloc_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_register esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +multi_heap_register_impl esp-idf/heap/libheap.a(multi_heap.c.obj) +multi_heap_set_lock esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +newlib_include_heap_impl esp-idf/newlib/libnewlib.a(heap.c.obj) +newlib_include_locks_impl esp-idf/newlib/libnewlib.a(locks.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/esp32/libesp32.a(panic.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) +pcTaskGetTaskName esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pcTimerGetTimerName esp-idf/freertos/libfreertos.a(timers.c.obj) +periph_module_disable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) +periph_module_enable esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) +periph_module_reset esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj) +port_IntStack esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_IntStackTop esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_interruptNesting esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_switch_flag esp-idf/freertos/libfreertos.a(portasm.S.obj) +port_uxCriticalNesting esp-idf/freertos/libfreertos.a(port.c.obj) +port_uxOldInterruptState esp-idf/freertos/libfreertos.a(port.c.obj) +port_xSchedulerRunning esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +printf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-printf.o) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/cxx/libcxx.a(cxx_exception_stubs.cpp.obj) +pthread_attr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_getstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setdetachstate esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_attr_setstacksize esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_cancel esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_condattr_setclock esp-idf/newlib/libnewlib.a(pthread.c.obj) +pthread_create esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_detach esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_equal esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_exit esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_getspecific esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_impl esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_include_pthread_local_storage_impl esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +pthread_internal_local_storage_destructor_callback esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_join esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_create esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_key_delete esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_lock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_timedlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_trylock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutex_unlock esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_destroy esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_gettype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_init esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_mutexattr_settype esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_once esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_self esp-idf/pthread/libpthread.a(pthread.c.obj) +pthread_setcancelstate esp-idf/newlib/libnewlib.a(pthread.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputwc.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fflush.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fclose.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fseeko.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fopen.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-findfp.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) +putc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putc.o) +putchar /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-putchar.o) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +puts /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + esp-idf/heap/libheap.a(heap_caps.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/main/libmain.a(blink.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) +pvTimerGetTimerID esp-idf/freertos/libfreertos.a(timers.c.obj) +pvalloc esp-idf/newlib/libnewlib.a(heap.c.obj) +pxCurrentTCB esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +pxPortInitialiseStack esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +pxTaskGetStackStart esp-idf/freertos/libfreertos.a(tasks.c.obj) +qsort /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-qsort.o) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) +raise esp-idf/newlib/libnewlib.a(syscalls.c.obj) +range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) + esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) +readdir esp-idf/vfs/libvfs.a(vfs.c.obj) +readdir_r esp-idf/vfs/libvfs.a(vfs.c.obj) +realloc esp-idf/newlib/libnewlib.a(heap.c.obj) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiscanf.o) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +registered_heaps esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/heap/libheap.a(heap_caps.c.obj) +rewinddir esp-idf/vfs/libvfs.a(vfs.c.obj) +rmdir esp-idf/vfs/libvfs.a(vfs.c.obj) +rom_i2c_readReg_Mask esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rom_i2c_writeReg esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rom_i2c_writeReg_Mask esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_32k_bootstrap esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_32k_enable esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_32k_enable_external esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_32k_enabled esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_8m_enable esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_8m_enabled esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_8md256_enabled esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_apb_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_apb_freq_update esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_apll_enable esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_bbpll_configure esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_cal esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_cal_ratio esp-idf/soc/libsoc.a(rtc_time.c.obj) +rtc_clk_cpu_freq_get_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_cpu_freq_mhz_to_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_cpu_freq_set_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_cpu_freq_set_config_fast esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +rtc_clk_cpu_freq_set_xtal esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_clk_cpu_freq_to_config esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_cpu_freq_to_xtal esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_fast_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_fast_freq_set esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_select_rtc_slow_clk esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_slow_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_slow_freq_get_hz esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_clk_slow_freq_set esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_wait_for_slow_cycle esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_clk_xtal_freq_get esp-idf/soc/libsoc.a(rtc_clk.c.obj) + esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_clk_xtal_freq_update esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +rtc_get_xtal esp-idf/soc/libsoc.a(rtc_clk.c.obj) +rtc_gpio_deinit esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_force_hold_dis_all esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +rtc_gpio_force_hold_en_all esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_get_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_get_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_hold_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_hold_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_init esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_isolate esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_pulldown_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pulldown_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pullup_dis esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_pullup_en esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_set_direction esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_direction_in_sleep esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_set_drive_capability esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_set_level esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_gpio_wakeup_disable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_gpio_wakeup_enable esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_init esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_io_desc esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_io_num_map esp-idf/soc/soc/esp32/libsoc_esp32.a(rtc_io_periph.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) +rtc_isr_deregister esp-idf/driver/libdriver.a(rtc_module.c.obj) +rtc_isr_register esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/esp_common/libesp_common.a(brownout.c.obj) +rtc_spinlock esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtc_time_get esp-idf/soc/libsoc.a(rtc_time.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) +rtc_time_slowclk_to_us esp-idf/soc/libsoc.a(rtc_time.c.obj) +rtc_time_us_to_slowclk esp-idf/soc/libsoc.a(rtc_time.c.obj) +rtc_vddsdio_get_config esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_vddsdio_set_config esp-idf/soc/libsoc.a(rtc_init.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +rtc_wdt_disable esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +rtc_wdt_enable esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_feed esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) +rtc_wdt_flashboot_mode_enable esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) +rtc_wdt_get_protect_status esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_wdt_get_timeout esp-idf/soc/libsoc.a(rtc_wdt.c.obj) +rtc_wdt_is_on esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_protect_off esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_protect_on esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_set_length_of_reset_signal esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_set_stage esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtc_wdt_set_time esp-idf/soc/libsoc.a(rtc_wdt.c.obj) + esp-idf/esp32/libesp32.a(clk.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +rtcio_hal_isolate esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +rtcio_hal_set_direction_in_sleep esp-idf/soc/libsoc.a(rtc_io_hal.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) +s_cpu_freq_by_mode esp-idf/esp32/libesp32.a(pm_esp32.c.obj) +s_keys esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +s_microseconds_offset esp-idf/newlib/libnewlib.a(time.c.obj) +s_rtc_isr_handler_list_lock esp-idf/driver/libdriver.a(rtc_module.c.obj) +s_time_update_lock esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) +sched_yield esp-idf/pthread/libpthread.a(pthread.c.obj) +seekdir esp-idf/vfs/libvfs.a(vfs.c.obj) +setlocale /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) +settimeofday esp-idf/newlib/libnewlib.a(time.c.obj) +sigfillset esp-idf/newlib/libnewlib.a(pthread.c.obj) +siscanf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +sleep esp-idf/newlib/libnewlib.a(time.c.obj) +snprintf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-snprintf.o) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +soc_get_available_memory_region_max_count esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_get_available_memory_regions esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_hal_stall_core esp-idf/soc/libsoc.a(soc_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) +soc_hal_unstall_core esp-idf/soc/libsoc.a(soc_hal.c.obj) + esp-idf/soc/libsoc.a(cpu_util.c.obj) +soc_memory_region_count esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_regions esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_memory_type_count esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) +soc_memory_types esp-idf/soc/libsoc.a(soc_memory_layout.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) +soc_reserved_memory_region_end esp-idf/soc/libsoc.a(memory_layout_utils.c.obj) +soc_reserved_memory_region_start esp-idf/soc/libsoc.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_remove_flash_device esp-idf/spi_flash/libspi_flash.a(esp_flash_spi_init.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/esp32/libesp32.a(panic.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) + esp-idf/spi_flash/libspi_flash.a(flash_ops.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) +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_gd.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_gd.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_gd.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_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_get_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.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_gd.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_gd.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_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_chip_generic_reset esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.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) +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_gd.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_gd.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_gd.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_gd.c.obj) + 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) +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) +spi_flash_common_read_status_16b_rdsr_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_read_status_8b_rdsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_read_status_8b_rdsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_set_io_mode esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_16b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_common_write_status_8b_wrsr esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_issi.c.obj) +spi_flash_common_write_status_8b_wrsr2 esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) + esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_gd.c.obj) +spi_flash_disable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.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/esp32/libesp32.a(panic.c.obj) +spi_flash_enable_interrupts_caches_and_other_cpu esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_mmap.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_erase_range 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/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_erase_sector esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_generic_wait_host_idle esp-idf/spi_flash/libspi_flash.a(spi_flash_chip_generic.c.obj) +spi_flash_get_chip_size esp-idf/spi_flash/libspi_flash.a(flash_ops.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/esp32/libesp32.a(cpu_start.c.obj) +spi_flash_hal_common_command esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_configure_host_io_mode esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_device_config esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_erase_block esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_erase_chip esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_erase_sector esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_host_idle esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_init esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 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) +spi_flash_hal_poll_cmd_done esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_program_page esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_read esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_set_write_protect esp-idf/soc/libsoc.a(spi_flash_hal_iram.c.obj) + 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) +spi_flash_hal_supports_direct_read esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 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) +spi_flash_hal_supports_direct_write esp-idf/soc/libsoc.a(spi_flash_hal.c.obj) + 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) +spi_flash_init esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/esp32/libesp32.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(flash_ops.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/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_mmap_dump esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_mmap_get_free_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_mmap_pages esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_munmap esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) + esp-idf/app_update/libapp_update.a(esp_ota_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_op_block_func esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) +spi_flash_op_lock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_op_unlock esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) +spi_flash_phys2cache esp-idf/spi_flash/libspi_flash.a(flash_mmap.c.obj) +spi_flash_read esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_read_encrypted esp-idf/spi_flash/libspi_flash.a(flash_ops.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) + esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) +spi_flash_write esp-idf/spi_flash/libspi_flash.a(esp_flash_api.c.obj) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj) +spi_flash_write_encrypted esp-idf/spi_flash/libspi_flash.a(flash_ops.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) +spi_periph_signal esp-idf/soc/soc/esp32/libsoc_esp32.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_claim esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dma_chan_free esp-idf/driver/libdriver.a(spi_common.c.obj) +spicommon_dma_chan_in_use 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) +start_cpu0 esp-idf/esp32/libesp32.a(cpu_start.c.obj) +start_cpu0_default esp-idf/esp32/libesp32.a(cpu_start.c.obj) +start_cpu1 esp-idf/esp32/libesp32.a(cpu_start.c.obj) +start_cpu1_default esp-idf/esp32/libesp32.a(cpu_start.c.obj) +strcmp /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcmp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-locale.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +strcpy /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcpy.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strcspn /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strcspn.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strerror /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) +strerror_l /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror.o) +strerror_r /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlcpy /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlcpy.o) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) + esp-idf/esp_common/libesp_common.a(esp_err_to_name.c.obj) +strlen /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strlen.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-siscanf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strerror_r.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-puts.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-fputs.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/log/liblog.a(log.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncmp /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncmp.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-getenv_r.o) + esp-idf/vfs/libvfs.a(vfs.c.obj) +strncpy /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strncpy.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-svfprintf.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) + esp-idf/spi_flash/libspi_flash.a(partition.c.obj) +strstr /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strstr.o) + esp-idf/bootloader_support/libbootloader_support.a(bootloader_common.c.obj) +strtol /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) +strtol_l /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtol.o) +strtoll /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) +strtoll_l /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoll.o) +strtoul /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) + /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset_r.o) +strtoul_l /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoul.o) +strtoull /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) +strtoull_l /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-strtoull.o) +syscall_table_ptr_app esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +syscall_table_ptr_pro esp-idf/newlib/libnewlib.a(syscall_table.c.obj) +system esp-idf/newlib/libnewlib.a(syscalls.c.obj) +system_get_current_time esp-idf/newlib/libnewlib.a(time.c.obj) +system_get_rtc_time esp-idf/newlib/libnewlib.a(time.c.obj) +system_get_time esp-idf/newlib/libnewlib.a(time.c.obj) +system_relative_time esp-idf/newlib/libnewlib.a(time.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) +truncate esp-idf/vfs/libvfs.a(vfs.c.obj) +tzset /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-tzset.o) +uartAttach esp-idf/esp32/libesp32.a(cpu_start.c.obj) +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/esp32/libesp32.a(cpu_start.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_pattern_det_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_rx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_enable_tx_intr esp-idf/driver/libdriver.a(uart.c.obj) +uart_flush esp-idf/driver/libdriver.a(uart.c.obj) +uart_flush_input esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_baudrate esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_buffered_data_len esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_collision_flag esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_hw_flow_ctrl esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_parity esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_selectlock esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_stop_bits esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_get_wakeup_threshold esp-idf/driver/libdriver.a(uart.c.obj) +uart_get_word_length esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_hal_get_baudrate esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_data_bit_num esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_hw_flow_ctrl esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_parity esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_sclk esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_stop_bits esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_get_wakeup_thrd esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_init esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_inverse_signal esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_is_hw_rts_en esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_read_rxfifo esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_rxfifo_rst esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_at_cmd_char esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_baudrate esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_data_bit_num esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_dtr esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_hw_flow_ctrl esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_loop_back esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_mode esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_parity esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_rx_timeout esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_rxfifo_full_thr esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_stop_bits esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_sw_flow_ctrl esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_tx_idle_num esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_txfifo_empty_thr esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_set_wakeup_thrd esp-idf/soc/libsoc.a(uart_hal.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_tx_break esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_hal_txfifo_rst esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) +uart_hal_write_txfifo esp-idf/soc/libsoc.a(uart_hal_iram.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uart_intr_config esp-idf/driver/libdriver.a(uart.c.obj) +uart_is_driver_installed esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_isr_free esp-idf/driver/libdriver.a(uart.c.obj) +uart_isr_register esp-idf/driver/libdriver.a(uart.c.obj) +uart_param_config esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_get_pos esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_pop_pos esp-idf/driver/libdriver.a(uart.c.obj) +uart_pattern_queue_reset esp-idf/driver/libdriver.a(uart.c.obj) +uart_periph_signal esp-idf/soc/soc/esp32/libsoc_esp32.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_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_tx_switch esp-idf/esp32/libesp32.a(cpu_start.c.obj) +uart_wait_tx_done esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_wait_tx_idle_polling esp-idf/driver/libdriver.a(uart.c.obj) +uart_write_bytes esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) +uart_write_bytes_with_break esp-idf/driver/libdriver.a(uart.c.obj) +ulTaskNotifyTake esp-idf/freertos/libfreertos.a(tasks.c.obj) +ungetc /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-ungetc.o) +usleep esp-idf/newlib/libnewlib.a(time.c.obj) +uxListRemove esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(timers.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) +uxQueueMessagesWaitingFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +uxQueueSpacesAvailable esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +uxTaskGetNumberOfTasks esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetSnapshotAll esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskGetStackHighWaterMark esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskPriorityGet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) +uxTaskPriorityGetFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTaskResetEventItemValue esp-idf/freertos/libfreertos.a(tasks.c.obj) +uxTopUsedPriority esp-idf/freertos/libfreertos.a(FreeRTOS-openocd.c.obj) +vApplicationStackOverflowHook esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInitialise esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(timers.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(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsert esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vListInsertEnd esp-idf/freertos/libfreertos.a(list.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortAssertIfInISR esp-idf/freertos/libfreertos.a(port.c.obj) +vPortEndScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortEnterCritical esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.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/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/driver/libdriver.a(spi_common.c.obj) + esp-idf/driver/libdriver.a(rtc_module.c.obj) + esp-idf/driver/libdriver.a(rtc_io.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/driver/libdriver.a(gpio.c.obj) + esp-idf/heap/libheap.a(multi_heap.c.obj) + esp-idf/heap/libheap.a(heap_caps_init.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs_uart.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(freertos_hooks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(crosscore_int.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vPortReleaseTaskMPUSettings esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortSetStackWatchpoint esp-idf/freertos/libfreertos.a(port.c.obj) +vPortStoreTaskMPUSettings esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vPortYield esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldFromInt esp-idf/freertos/libfreertos.a(portasm.S.obj) +vPortYieldOtherCore esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +vQueueDelete esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vQueueWaitForMessageRestricted esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +vRingbufferDelete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vRingbufferGetInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +vRingbufferReturnItem esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vRingbufferReturnItemFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +vTaskAllocateMPURegions esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskDelay esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/main/libmain.a(blink.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/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +vTaskEndScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskMissedYield esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskNotifyGiveFromISR 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) +vTaskPriorityInherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskPrioritySet esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) +vTaskResume esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointer esp-idf/freertos/libfreertos.a(tasks.c.obj) +vTaskSetThreadLocalStoragePointerAndDelCallback esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread_local_storage.c.obj) +vTaskSetTimeOutState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +vTaskStartScheduler esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.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/esp_common/libesp_common.a(system_api.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +vTaskSwitchContext esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) +vTimerSetTimerID esp-idf/freertos/libfreertos.a(timers.c.obj) +valloc esp-idf/newlib/libnewlib.a(heap.c.obj) +vfiprintf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfiprintf.o) +vfprintf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vfprintf.o) +vfs_include_syscalls_impl esp-idf/vfs/libvfs.a(vfs.c.obj) +vprintf /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-vprintf.o) + esp-idf/log/liblog.a(log.c.obj) +wcrtomb /home/xy/.espressif/tools/xtensa-esp32-elf/esp-2019r2-8.2.0/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/8.2.0/../../../../xtensa-esp32-elf/lib/no-rtti/libc.a(lib_a-wcrtomb.o) +xPortGetTickRateHz esp-idf/freertos/libfreertos.a(port.c.obj) +xPortInIsrContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(pm_esp32.c.obj) + esp-idf/driver/libdriver.a(periph_ctrl.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer_impl_lac.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +xPortInterruptedFromISRContext esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/esp32/libesp32.a(panic.c.obj) +xPortStartScheduler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +xPortSysTickHandler esp-idf/freertos/libfreertos.a(port.c.obj) + esp-idf/freertos/libfreertos.a(portasm.S.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/esp_timer/libesp_timer.a(esp_timer.c.obj) +xQueueCreateMutex esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueCreateSet esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueGenericCreate esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(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.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) +xQueueGenericReceive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a(sha.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/pthread/libpthread.a(pthread.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_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.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) + esp-idf/freertos/libfreertos.a(timers.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) +xQueueGiveFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/vfs/libvfs.a(vfs.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) +xQueueGiveMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xQueueIsQueueEmptyFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueueIsQueueFullFromISR esp-idf/freertos/libfreertos.a(queue.c.obj) +xQueuePeekFromISR 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) +xQueueTakeMutexRecursive esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xRingbufferAddToQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCanRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferCreate esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferCreateNoSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferGetCurFreeSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferGetMaxItemSize esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferPrintInfo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceive esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferReceiveSplit esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveSplitFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveUpTo esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferReceiveUpToFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferRemoveFromQueueSetRead esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSend esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xRingbufferSendAcquire esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendComplete esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) +xRingbufferSendFromISR esp-idf/esp_ringbuf/libesp_ringbuf.a(ringbuf.c.obj) + esp-idf/driver/libdriver.a(uart.c.obj) +xTaskCheckForTimeOut esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskCreatePinnedToCore esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/esp_timer/libesp_timer.a(esp_timer.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskCreateRestricted esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetAffinity esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +xTaskGetCurrentTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskGetCurrentTaskHandleForCPU esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) +xTaskGetIdleTaskHandle esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskGetIdleTaskHandleForCPU esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/esp32/libesp32.a(task_wdt.c.obj) + esp-idf/esp32/libesp32.a(cpu_start.c.obj) +xTaskGetSchedulerState esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/log/liblog.a(log_freertos.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/cxx/libcxx.a(cxx_guards.cpp.obj) + esp-idf/newlib/libnewlib.a(locks.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) + esp-idf/esp_common/libesp_common.a(ipc.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/log/liblog.a(log_freertos.c.obj) + esp-idf/newlib/libnewlib.a(time.c.obj) + esp-idf/freertos/libfreertos.a(timers.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.c.obj) +xTaskNotify esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskNotifyFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskNotifyWait esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/pthread/libpthread.a(pthread.c.obj) +xTaskPriorityDisinherit esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/freertos/libfreertos.a(queue.c.obj) +xTaskRemoveFromUnorderedEventList esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTaskResumeAll esp-idf/freertos/libfreertos.a(tasks.c.obj) + esp-idf/spi_flash/libspi_flash.a(cache_utils.c.obj) + esp-idf/freertos/libfreertos.a(timers.c.obj) +xTaskResumeFromISR esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerCreate esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerCreateTimerTask esp-idf/freertos/libfreertos.a(timers.c.obj) + esp-idf/freertos/libfreertos.a(tasks.c.obj) +xTimerGenericCommand esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerGetExpiryTime esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerGetPeriod esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerIsTimerActive esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerMux esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerPendFunctionCall esp-idf/freertos/libfreertos.a(timers.c.obj) +xTimerPendFunctionCallFromISR esp-idf/freertos/libfreertos.a(timers.c.obj) +xt_clock_freq esp-idf/freertos/libfreertos.a(xtensa_init.c.obj) +xt_debugexception esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_highint4 esp-idf/esp32/libesp32.a(dport_panic_highint_hdl.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_highint5 esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_ints_off esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(system_api_esp32.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) +xt_ints_on esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/freertos/libfreertos.a(portasm.S.obj) + esp-idf/esp32/libesp32.a(cache_err_int.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) + esp-idf/esp32/libesp32.a(int_wdt.c.obj) + esp-idf/esp32/libesp32.a(dport_access.c.obj) +xt_nmi esp-idf/freertos/libfreertos.a(xtensa_vector_defaults.S.obj) + esp-idf/freertos/libfreertos.a(xtensa_vectors.S.obj) +xt_set_exception_handler esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) +xt_set_interrupt_handler esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +xt_unhandled_exception esp-idf/esp32/libesp32.a(panic.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) +xt_unhandled_interrupt esp-idf/freertos/libfreertos.a(xtensa_intr.c.obj) + esp-idf/freertos/libfreertos.a(xtensa_intr_asm.S.obj) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +xthal_restore_extra_nw /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--restore_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +xthal_save_extra_nw /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(state_asm--save_extra_nw.o) + esp-idf/freertos/libfreertos.a(xtensa_context.S.obj) +xthal_set_intclear /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(int_asm--set_intclear.o) + esp-idf/esp32/libesp32.a(intr_alloc.c.obj) +xthal_spill_registers_into_stack_nw /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) +xthal_window_spill /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + esp-idf/xtensa/libxtensa.a(debug_helpers_asm.S.obj) +xthal_window_spill_nw /home/xy/esp/esp-idf/components/xtensa/esp32/libhal.a(windowspill_asm.o) + esp-idf/freertos/libfreertos.a(portasm.S.obj) diff --git a/tools/test_idf_size/expected_output b/tools/test_idf_size/expected_output index d9dfe2e4c..ab0feeea5 100644 --- a/tools/test_idf_size/expected_output +++ b/tools/test_idf_size/expected_output @@ -396,17 +396,2640 @@ get_clk_en_mask(211) get_rst_en_mask(157) timer_group_intr_enable(112) rtc_isr(8 Section total: 961 Symbols from section: .iram0.text - Section total: 0 Symbols from section: .iram0.vectors - Section total: 0 Symbols from section: .noinit - Section total: 0 +*** +Running idf_size.py diff with bootloader... + MAP file: app.map + MAP file: bootloader.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 4 +9320 + DRAM .bss size: 8296 bytes 48 +8248 + DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) + Flash code: 146944 bytes 0 +146944 + Flash rodata: 39580 bytes 0 +39580 +Total image size:~ 243076 bytes (.bin may be padded larger) 11657 +231419 + +*** +Running idf_size.py diff with itself... + MAP file: app.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 9324 + DRAM .bss size: 8296 bytes 8296 +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 17620 ( +0 available, +0 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38932 ( +0 available, +0 total) + Flash code: 146944 bytes 146944 + Flash rodata: 39580 bytes 39580 +Total image size:~ 243076 bytes (.bin may be padded larger) 243076 + +*** +Running idf_size.py diff with another app... + MAP file: app.map + MAP file: app2.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 8580 +744 + DRAM .bss size: 8296 bytes 2024 +6272 +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) + Flash code: 146944 bytes 77191 +69753 + Flash rodata: 39580 bytes 22360 +17220 +Total image size:~ 243076 bytes (.bin may be padded larger) 149111 +93965 + +*** +Running idf_size.py diff with app in reverse order... + MAP file: app2.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 8580 bytes 9324 -744 + DRAM .bss size: 2024 bytes 8296 -6272 +Used static DRAM: 10604 bytes ( 170132 available, 5.9% used) 17620 -7016 ( +7016 available, +0 total) +Used static IRAM: 38956 bytes ( 92116 available, 29.7% used) 38932 +24 ( -24 available, +0 total) + Flash code: 77191 bytes 146944 -69753 + Flash rodata: 22360 bytes 39580 -17220 +Total image size:~ 149111 bytes (.bin may be padded larger) 243076 -93965 + +*** +Running idf_size.py diff --archives with bootloader... + MAP file: app.map + MAP file: bootloader.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 4 +9320 + DRAM .bss size: 8296 bytes 48 +8248 + DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) + Flash code: 146944 bytes 0 +146944 + Flash rodata: 39580 bytes 0 +39580 +Total image size:~ 243076 bytes (.bin may be padded larger) 11657 +231419 +Per-archive contributions to ELF file: + Archive File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + libc.a| | | | | | | | | | | | | | | | 55583| | +55583| 3889| | +3889| 59472| | +59472 + libspi_flash.a| 36| | +36| 359| | +359| | | | 7004| | +7004| | | | 886| | +886| 1624| | +1624| 9909| | +9909 + libsoc.a| 660| | +660| 8| 4| +4| | | | 3887| | +3887| | | | | | | 3456| | +3456| 8011| 4| +8007 + libgcc.a| 4| | +4| 20| | +20| | | | 104| | +104| | | | 5488| | +5488| 888| | +888| 6504| | +6504 + liblog.a| 8| | +8| 268| | +268| | | | 456| | +456| | | | 396| | +396| 166| | +166| 1294| | +1294 + libmain.a| | | | | | | | | | | | | | | | 53| | +53| 10| | +10| 63| | +63 + libbootloader_support.a| | 4| -4| | 38| -38| | | | | | | | | | | | | | | | | 42| -42 +The following entries are present in only: + Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + liblwip.a 14 3751 0 0 0 66978 13936 84679 + libesp32.a 2635 2375 0 7758 0 4814 8133 25715 + libfreertos.a 4156 832 0 12853 0 0 1545 19386 + libheap.a 1331 4 0 4376 0 1218 980 7909 + libvfs.a 232 103 0 0 0 3770 403 4508 + libunity.a 0 121 0 0 0 2316 830 3267 + libstdc++.a 8 16 0 0 0 1827 1062 2913 + libnewlib.a 152 272 0 853 0 803 86 2166 + libpthread.a 16 12 0 174 0 774 638 1614 + libdriver.a 40 20 0 0 0 961 537 1558 + libapp_update.a 0 0 0 0 0 123 717 840 + libtcpip_adapter.a 0 81 0 0 0 180 359 620 + libhal.a 0 0 0 515 0 0 32 547 + libm.a 0 0 0 92 0 0 0 92 + libcxx.a 0 0 0 0 0 11 0 11 +libxtensa-debug-module.a 0 0 0 8 0 0 0 8 + libcoexist.a 0 0 0 0 0 0 0 0 + libcore.a 0 0 0 0 0 0 0 0 + libethernet.a 0 0 0 0 0 0 0 0 + libmbedtls.a 0 0 0 0 0 0 0 0 + libmesh.a 0 0 0 0 0 0 0 0 + libnet80211.a 0 0 0 0 0 0 0 0 + libnvs_flash.a 0 0 0 0 0 0 0 0 + libphy.a 0 0 0 0 0 0 0 0 + libpp.a 0 0 0 0 0 0 0 0 + librtc.a 0 0 0 0 0 0 0 0 + libsmartconfig_ack.a 0 0 0 0 0 0 0 0 + libwpa.a 0 0 0 0 0 0 0 0 + libwpa2.a 0 0 0 0 0 0 0 0 + libwpa_supplicant.a 0 0 0 0 0 0 0 0 + libwps.a 0 0 0 0 0 0 0 0 +The following entries are present in only: + Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + (exe) 0 0 0 0 0 0 0 0 + libsoc_esp32.a 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --archives with itself... + MAP file: app.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 9324 + DRAM .bss size: 8296 bytes 8296 +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 17620 ( +0 available, +0 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38932 ( +0 available, +0 total) + Flash code: 146944 bytes 146944 + Flash rodata: 39580 bytes 39580 +Total image size:~ 243076 bytes (.bin may be padded larger) 243076 +Per-archive contributions to ELF file: + Archive File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + liblwip.a| 14| 14| | 3751| 3751| | | | | | | | | | | 66978| 66978| | 13936| 13936| | 84679| 84679| + libc.a| | | | | | | | | | | | | | | | 55583| 55583| | 3889| 3889| | 59472| 59472| + libesp32.a| 2635| 2635| | 2375| 2375| | | | | 7758| 7758| | | | | 4814| 4814| | 8133| 8133| | 25715| 25715| + libfreertos.a| 4156| 4156| | 832| 832| | | | | 12853| 12853| | | | | | | | 1545| 1545| | 19386| 19386| + libspi_flash.a| 36| 36| | 359| 359| | | | | 7004| 7004| | | | | 886| 886| | 1624| 1624| | 9909| 9909| + libsoc.a| 660| 660| | 8| 8| | | | | 3887| 3887| | | | | | | | 3456| 3456| | 8011| 8011| + libheap.a| 1331| 1331| | 4| 4| | | | | 4376| 4376| | | | | 1218| 1218| | 980| 980| | 7909| 7909| + libgcc.a| 4| 4| | 20| 20| | | | | 104| 104| | | | | 5488| 5488| | 888| 888| | 6504| 6504| + libvfs.a| 232| 232| | 103| 103| | | | | | | | | | | 3770| 3770| | 403| 403| | 4508| 4508| + libunity.a| | | | 121| 121| | | | | | | | | | | 2316| 2316| | 830| 830| | 3267| 3267| + libstdc++.a| 8| 8| | 16| 16| | | | | | | | | | | 1827| 1827| | 1062| 1062| | 2913| 2913| + libnewlib.a| 152| 152| | 272| 272| | | | | 853| 853| | | | | 803| 803| | 86| 86| | 2166| 2166| + libpthread.a| 16| 16| | 12| 12| | | | | 174| 174| | | | | 774| 774| | 638| 638| | 1614| 1614| + libdriver.a| 40| 40| | 20| 20| | | | | | | | | | | 961| 961| | 537| 537| | 1558| 1558| + liblog.a| 8| 8| | 268| 268| | | | | 456| 456| | | | | 396| 396| | 166| 166| | 1294| 1294| + libapp_update.a| | | | | | | | | | | | | | | | 123| 123| | 717| 717| | 840| 840| + libtcpip_adapter.a| | | | 81| 81| | | | | | | | | | | 180| 180| | 359| 359| | 620| 620| + libhal.a| | | | | | | | | | 515| 515| | | | | | | | 32| 32| | 547| 547| + libm.a| | | | | | | | | | 92| 92| | | | | | | | | | | 92| 92| + libmain.a| | | | | | | | | | | | | | | | 53| 53| | 10| 10| | 63| 63| + libcxx.a| | | | | | | | | | | | | | | | 11| 11| | | | | 11| 11| +libxtensa-debug-module.a| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| + libbootloader_support.a| | | | | | | | | | | | | | | | | | | | | | | | + libcoexist.a| | | | | | | | | | | | | | | | | | | | | | | | + libcore.a| | | | | | | | | | | | | | | | | | | | | | | | + libethernet.a| | | | | | | | | | | | | | | | | | | | | | | | + libmbedtls.a| | | | | | | | | | | | | | | | | | | | | | | | + libmesh.a| | | | | | | | | | | | | | | | | | | | | | | | + libnet80211.a| | | | | | | | | | | | | | | | | | | | | | | | + libnvs_flash.a| | | | | | | | | | | | | | | | | | | | | | | | + libphy.a| | | | | | | | | | | | | | | | | | | | | | | | + libpp.a| | | | | | | | | | | | | | | | | | | | | | | | + librtc.a| | | | | | | | | | | | | | | | | | | | | | | | + libsmartconfig_ack.a| | | | | | | | | | | | | | | | | | | | | | | | + libwpa.a| | | | | | | | | | | | | | | | | | | | | | | | + libwpa2.a| | | | | | | | | | | | | | | | | | | | | | | | + libwpa_supplicant.a| | | | | | | | | | | | | | | | | | | | | | | | + libwps.a| | | | | | | | | | | | | | | | | | | | | | | | + +*** +Running idf_size.py diff --archives with another app... + MAP file: app.map + MAP file: app2.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 8580 +744 + DRAM .bss size: 8296 bytes 2024 +6272 +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) + Flash code: 146944 bytes 77191 +69753 + Flash rodata: 39580 bytes 22360 +17220 +Total image size:~ 243076 bytes (.bin may be padded larger) 149111 +93965 +Per-archive contributions to ELF file: + Archive File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + libc.a| | 364| -364| | | | | | | | | | | | | 55583| 54704| +879| 3889| 3883| +6| 59472| 58951| +521 + libesp32.a| 2635| 2118| +517| 2375| 81| +2294| | | | 7758| 5462| +2296| | | | 4814| 4511| +303| 8133| 2751| +5382| 25715| 14923| +10792 + libfreertos.a| 4156| 4140| +16| 832| 792| +40| | | | 12853| 12884| -31| | | | | | | 1545| 1721| -176| 19386| 19537| -151 + libspi_flash.a| 36| 779| -743| 359| 294| +65| | | | 7004| 4896| +2108| | | | 886| 1135| -249| 1624| 1412| +212| 9909| 8516| +1393 + libsoc.a| 660| 208| +452| 8| 4| +4| | | | 3887| 6790| -2903| | | | | 1763| -1763| 3456| 1956| +1500| 8011| 10721| -2710 + libheap.a| 1331| 304| +1027| 4| 4| | | | | 4376| 3129| +1247| | | | 1218| 884| +334| 980| 741| +239| 7909| 5062| +2847 + libgcc.a| 4| | +4| 20| | +20| | | | 104| | +104| | | | 5488| | +5488| 888| 160| +728| 6504| 160| +6344 + libvfs.a| 232| 308| -76| 103| 48| +55| | | | | | | | | | 3770| 5650| -1880| 403| 915| -512| 4508| 6921| -2413 + libnewlib.a| 152| 152| | 272| 272| | | | | 853| 820| +33| | | | 803| 868| -65| 86| 84| +2| 2166| 2196| -30 + libpthread.a| 16| 8| +8| 12| 12| | | | | 174| | +174| | | | 774| 264| +510| 638| | +638| 1614| 284| +1330 + libdriver.a| 40| 112| -72| 20| 20| | | | | | | | | | | 961| 4272| -3311| 537| 1910| -1373| 1558| 6314| -4756 + liblog.a| 8| 8| | 268| 272| -4| | | | 456| 222| +234| | | | 396| 484| -88| 166| 147| +19| 1294| 1133| +161 + libapp_update.a| | | | | 4| -4| | | | | 109| -109| | | | 123| 159| -36| 717| 470| +247| 840| 742| +98 + libhal.a| | | | | | | | | | 515| 447| +68| | | | | | | 32| 32| | 547| 479| +68 + libmain.a| | | | | | | | | | | | | | | | 53| 72| -19| 10| 39| -29| 63| 111| -48 + libcxx.a| | | | | | | | | | | | | | | | 11| 11| | | | | 11| 11| + libbootloader_support.a| | | | | | | | | | | 1028| -1028| | | | | 565| -565| | 20| -20| | 1613| -1613 + libwpa_supplicant.a| | | | | | | | | | | | | | | | | | | | | | | | +The following entries are present in only: + Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + liblwip.a 14 3751 0 0 0 66978 13936 84679 + libunity.a 0 121 0 0 0 2316 830 3267 + libstdc++.a 8 16 0 0 0 1827 1062 2913 + libtcpip_adapter.a 0 81 0 0 0 180 359 620 + libm.a 0 0 0 92 0 0 0 92 +libxtensa-debug-module.a 0 0 0 8 0 0 0 8 + libcoexist.a 0 0 0 0 0 0 0 0 + libcore.a 0 0 0 0 0 0 0 0 + libethernet.a 0 0 0 0 0 0 0 0 + libmbedtls.a 0 0 0 0 0 0 0 0 + libmesh.a 0 0 0 0 0 0 0 0 + libnet80211.a 0 0 0 0 0 0 0 0 + libnvs_flash.a 0 0 0 0 0 0 0 0 + libphy.a 0 0 0 0 0 0 0 0 + libpp.a 0 0 0 0 0 0 0 0 + librtc.a 0 0 0 0 0 0 0 0 + libsmartconfig_ack.a 0 0 0 0 0 0 0 0 + libwpa.a 0 0 0 0 0 0 0 0 + libwpa2.a 0 0 0 0 0 0 0 0 + libwps.a 0 0 0 0 0 0 0 0 +The following entries are present in only: + Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + libesp_common.a 8 184 0 239 0 783 5421 6635 + libesp_timer.a 16 20 0 794 0 723 507 2060 + libesp_ringbuf.a 0 0 0 858 0 0 150 1008 + libxtensa.a 0 0 0 217 0 0 0 217 + libsoc_esp32.a 0 0 0 0 0 0 160 160 + (exe) 0 0 0 3 0 3 12 18 + libefuse.a 0 0 0 0 0 0 0 0 + libmbedcrypto.a 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --archives with app in reverse order... + MAP file: app2.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 8580 bytes 9324 -744 + DRAM .bss size: 2024 bytes 8296 -6272 +Used static DRAM: 10604 bytes ( 170132 available, 5.9% used) 17620 -7016 ( +7016 available, +0 total) +Used static IRAM: 38956 bytes ( 92116 available, 29.7% used) 38932 +24 ( -24 available, +0 total) + Flash code: 77191 bytes 146944 -69753 + Flash rodata: 22360 bytes 39580 -17220 +Total image size:~ 149111 bytes (.bin may be padded larger) 243076 -93965 +Per-archive contributions to ELF file: + Archive File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + libc.a| 364| | +364| | | | | | | | | | | | | 54704| 55583| -879| 3883| 3889| -6| 58951| 59472| -521 + libfreertos.a| 4140| 4156| -16| 792| 832| -40| | | | 12884| 12853| +31| | | | | | | 1721| 1545| +176| 19537| 19386| +151 + libesp32.a| 2118| 2635| -517| 81| 2375| -2294| | | | 5462| 7758| -2296| | | | 4511| 4814| -303| 2751| 8133| -5382| 14923| 25715| -10792 + libsoc.a| 208| 660| -452| 4| 8| -4| | | | 6790| 3887| +2903| | | | 1763| | +1763| 1956| 3456| -1500| 10721| 8011| +2710 + libspi_flash.a| 779| 36| +743| 294| 359| -65| | | | 4896| 7004| -2108| | | | 1135| 886| +249| 1412| 1624| -212| 8516| 9909| -1393 + libvfs.a| 308| 232| +76| 48| 103| -55| | | | | | | | | | 5650| 3770| +1880| 915| 403| +512| 6921| 4508| +2413 + libdriver.a| 112| 40| +72| 20| 20| | | | | | | | | | | 4272| 961| +3311| 1910| 537| +1373| 6314| 1558| +4756 + libheap.a| 304| 1331| -1027| 4| 4| | | | | 3129| 4376| -1247| | | | 884| 1218| -334| 741| 980| -239| 5062| 7909| -2847 + libnewlib.a| 152| 152| | 272| 272| | | | | 820| 853| -33| | | | 868| 803| +65| 84| 86| -2| 2196| 2166| +30 + libbootloader_support.a| | | | | | | | | | 1028| | +1028| | | | 565| | +565| 20| | +20| 1613| | +1613 + liblog.a| 8| 8| | 272| 268| +4| | | | 222| 456| -234| | | | 484| 396| +88| 147| 166| -19| 1133| 1294| -161 + libapp_update.a| | | | 4| | +4| | | | 109| | +109| | | | 159| 123| +36| 470| 717| -247| 742| 840| -98 + libhal.a| | | | | | | | | | 447| 515| -68| | | | | | | 32| 32| | 479| 547| -68 + libpthread.a| 8| 16| -8| 12| 12| | | | | | 174| -174| | | | 264| 774| -510| | 638| -638| 284| 1614| -1330 + libgcc.a| | 4| -4| | 20| -20| | | | | 104| -104| | | | | 5488| -5488| 160| 888| -728| 160| 6504| -6344 + libmain.a| | | | | | | | | | | | | | | | 72| 53| +19| 39| 10| +29| 111| 63| +48 + libcxx.a| | | | | | | | | | | | | | | | 11| 11| | | | | 11| 11| + libwpa_supplicant.a| | | | | | | | | | | | | | | | | | | | | | | | +The following entries are present in only: + Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + libesp_common.a 8 184 0 239 0 783 5421 6635 + libesp_timer.a 16 20 0 794 0 723 507 2060 + libesp_ringbuf.a 0 0 0 858 0 0 150 1008 + libxtensa.a 0 0 0 217 0 0 0 217 + libsoc_esp32.a 0 0 0 0 0 0 160 160 + (exe) 0 0 0 3 0 3 12 18 + libefuse.a 0 0 0 0 0 0 0 0 + libmbedcrypto.a 0 0 0 0 0 0 0 0 +The following entries are present in only: + Archive File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + liblwip.a 14 3751 0 0 0 66978 13936 84679 + libunity.a 0 121 0 0 0 2316 830 3267 + libstdc++.a 8 16 0 0 0 1827 1062 2913 + libtcpip_adapter.a 0 81 0 0 0 180 359 620 + libm.a 0 0 0 92 0 0 0 92 +libxtensa-debug-module.a 0 0 0 8 0 0 0 8 + libcoexist.a 0 0 0 0 0 0 0 0 + libcore.a 0 0 0 0 0 0 0 0 + libethernet.a 0 0 0 0 0 0 0 0 + libmbedtls.a 0 0 0 0 0 0 0 0 + libmesh.a 0 0 0 0 0 0 0 0 + libnet80211.a 0 0 0 0 0 0 0 0 + libnvs_flash.a 0 0 0 0 0 0 0 0 + libphy.a 0 0 0 0 0 0 0 0 + libpp.a 0 0 0 0 0 0 0 0 + librtc.a 0 0 0 0 0 0 0 0 + libsmartconfig_ack.a 0 0 0 0 0 0 0 0 + libwpa.a 0 0 0 0 0 0 0 0 + libwpa2.a 0 0 0 0 0 0 0 0 + libwps.a 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --files with bootloader... + MAP file: app.map + MAP file: bootloader.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 4 +9320 + DRAM .bss size: 8296 bytes 48 +8248 + DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) + Flash code: 146944 bytes 0 +146944 + Flash rodata: 39580 bytes 0 +39580 +Total image size:~ 243076 bytes (.bin may be padded larger) 11657 +231419 +Per-file contributions to ELF file: + Object File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| | +40| 40| | +40 +The following entries are present in only: + Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + lib_a-vfprintf.o 0 0 0 0 0 14193 756 14949 + lib_a-svfprintf.o 0 0 0 0 0 13834 756 14590 + lib_a-svfiprintf.o 0 0 0 0 0 9642 1210 10852 + lib_a-vfiprintf.o 0 0 0 0 0 9933 738 10671 + nd6.o 8 1027 0 0 0 8427 136 9598 + tcp_in.o 0 54 0 0 0 8127 916 9097 + tasks.o 20 700 0 5667 0 0 503 6890 + tcp_out.o 0 0 0 0 0 5060 1124 6184 + sockets.o 0 728 0 0 0 4627 824 6179 + tcp.o 4 23 0 0 0 4290 1384 5701 + api_msg.o 0 0 0 0 0 3763 1366 5129 + dhcp.o 0 8 0 0 0 3456 1401 4865 + panic.o 2579 5 0 2145 0 0 0 4729 + esp_err_to_name.o 0 0 0 0 0 50 4091 4141 + unwind-dw2-fde.o 4 20 0 0 0 3316 404 3744 + pbuf.o 0 1 0 0 0 2453 1161 3615 + portasm.o 3084 0 0 480 0 0 0 3564 + lib_a-dtoa.o 0 0 0 0 0 3522 13 3535 + etharp.o 0 241 0 0 0 2618 658 3517 + ip6.o 0 0 0 0 0 3212 124 3336 + dns.o 0 1292 0 0 0 1809 206 3307 + spi_flash_rom_patch.o 0 0 0 2518 0 0 766 3284 + udp.o 2 4 0 0 0 3020 216 3242 + intr_alloc.o 8 22 0 726 0 1749 710 3215 + multi_heap.o 857 0 0 2217 0 0 0 3074 + queue.o 8 56 0 2569 0 0 369 3002 + flash_ops.o 32 41 0 2352 0 99 0 2524 + unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 + rtc_clk.o 660 8 0 1794 0 0 0 2462 + lib_a-mprec.o 0 0 0 0 0 2134 296 2430 + vfs.o 192 40 0 0 0 1995 132 2359 + ip6_frag.o 0 6 0 0 0 1905 442 2353 + api_lib.o 0 0 0 0 0 1425 919 2344 + igmp.o 0 12 0 0 0 1604 707 2323 + dbg_stubs.o 0 2072 0 32 0 100 0 2204 + vfs_uart.o 40 63 0 0 0 1775 271 2149 + unity_platform.o 0 13 0 0 0 1511 600 2124 + esp_timer_esp32.o 8 26 0 1295 0 254 526 2109 + rtc_periph.o 0 0 0 0 0 0 2080 2080 + flash_mmap.o 0 296 0 1298 0 124 327 2045 + heap_caps.o 4 0 0 1195 0 188 593 1980 + eh_personality.o 0 0 0 0 0 1561 384 1945 + ip4.o 0 6 0 0 0 1664 139 1809 + netif.o 0 241 0 0 0 1239 287 1767 + xtensa_vectors.o 8 0 0 1697 0 0 36 1741 + cpu_start.o 0 1 0 806 0 277 486 1570 + clk.o 0 0 0 67 0 581 893 1541 + timers.o 8 56 0 1149 0 0 233 1446 + sys_arch.o 0 8 0 0 0 1216 222 1446 + multi_heap_poisoning.o 470 0 0 964 0 0 0 1434 + heap_caps_init.o 0 4 0 0 0 1030 387 1421 + mld6.o 0 4 0 0 0 1334 0 1338 + cache_utils.o 4 14 0 836 0 81 390 1325 + raw.o 0 4 0 0 0 1087 223 1314 + esp_timer.o 8 20 0 702 0 429 142 1301 + log.o 8 268 0 456 0 396 166 1294 + system_api.o 0 8 0 589 0 0 662 1259 + soc_memory_layout.o 0 0 0 0 0 0 1239 1239 + icmp.o 0 0 0 0 0 769 371 1140 + xtensa_intr_asm.o 1024 0 0 51 0 0 0 1075 + port.o 0 16 0 617 0 0 369 1002 + pthread.o 8 8 0 174 0 298 512 1000 + icmp6.o 0 0 0 0 0 863 127 990 + rtc_init.o 0 0 0 980 0 0 0 980 + unity.o 0 108 0 0 0 767 90 965 + rtc_time.o 0 0 0 803 0 0 137 940 + dport_access.o 8 40 0 539 0 189 129 905 + lib_a-fseeko.o 0 0 0 0 0 862 0 862 + time.o 0 32 0 139 0 691 0 862 + tcpip.o 0 16 0 0 0 644 191 851 + esp_ota_ops.o 0 0 0 0 0 123 717 840 + periph_ctrl.o 8 0 0 0 0 520 256 784 + timers.o 0 12 0 0 0 638 131 781 + partition.o 0 8 0 0 0 582 141 731 + locks.o 8 0 0 552 0 0 84 644 + ipc.o 0 36 0 159 0 329 104 628 + tcpip_adapter_lwip.o 0 81 0 0 0 180 359 620 + pthread_local_storage.o 8 4 0 0 0 476 126 614 + inet_chksum.o 0 0 0 0 0 580 0 580 + crosscore_int.o 8 8 0 204 0 126 148 494 + netbuf.o 0 0 0 0 0 154 326 480 + vfs_lwip.o 0 0 0 0 0 307 155 462 + syscall_table.o 144 240 0 0 0 67 0 451 + timer.o 16 0 0 0 0 112 281 409 + int_wdt.o 0 1 0 87 0 301 0 389 + eh_globals.o 0 16 0 0 0 149 193 358 + brownout.o 0 0 0 0 0 145 191 336 + freertos_hooks.o 8 128 0 43 0 137 0 316 + windowspill_asm.o 0 0 0 311 0 0 0 311 + cpu_util.o 0 0 0 310 0 0 0 310 + rtc_module.o 8 8 0 0 0 291 0 307 + xtensa_context.o 0 0 0 299 0 0 0 299 + eh_terminate.o 0 0 0 0 0 117 141 258 + ethernet.o 0 0 0 0 0 244 12 256 + lib_a-puts.o 0 0 0 0 0 182 60 242 +dport_panic_highint_hdl. 8 0 0 234 0 0 0 242 + lib_a-reent.o 0 0 0 0 0 232 0 232 + lib_a-fopen.o 0 0 0 0 0 228 0 228 + dhcpserver.o 0 4 0 0 0 203 0 207 + test_utils.o 0 0 0 0 0 38 140 178 + lib_a-sprintf.o 0 0 0 0 0 167 0 167 + cache_err_int.o 0 0 0 56 0 98 0 154 + list.o 0 0 0 142 0 0 0 142 + xtensa_intr.o 0 0 0 104 0 0 35 139 + syscalls.o 0 0 0 94 0 45 0 139 + si_class_type_info.o 0 0 0 0 0 0 136 136 + lib_a-assert.o 0 0 0 0 0 68 60 128 + lib_a-flags.o 0 0 0 0 0 127 0 127 + lib_a-printf.o 0 0 0 0 0 116 0 116 + ip4_addr.o 0 0 0 0 0 72 40 112 + class_type_info.o 0 0 0 0 0 0 112 112 + lib_a-s_frexp.o 0 0 0 0 0 110 0 110 + ip.o 0 60 0 0 0 50 0 110 + memp.o 0 0 0 0 0 0 108 108 + lib2funcs.o 0 0 0 104 0 0 0 104 + lib_a-vprintf.o 0 0 0 0 0 94 0 94 + lib_a-s_fpclassify.o 0 0 0 92 0 0 0 92 + def.o 0 0 0 0 0 91 0 91 + lib_a-fiprintf.o 0 0 0 0 0 84 0 84 + hw_random.o 0 4 0 74 0 0 0 78 + stack_check.o 0 4 0 0 0 32 42 78 + clock.o 0 0 0 72 0 0 0 72 + reent_init.o 0 0 0 68 0 0 2 70 + app_main.o 0 0 0 0 0 53 10 63 +state_asm--restore_extra 0 0 0 62 0 0 0 62 +state_asm--save_extra_nw 0 0 0 62 0 0 0 62 + uart.o 8 12 0 0 0 38 0 58 + new_opv.o 0 0 0 0 0 0 56 56 +xtensa_vector_defaults.o 0 0 0 46 0 0 0 46 + lib_a-fseek.o 0 0 0 0 0 45 0 45 + _divdi3.o 0 0 0 0 0 0 40 40 + _moddi3.o 0 0 0 0 0 0 40 40 + _umoddi3.o 0 0 0 0 0 0 40 40 + new_op.o 0 0 0 0 0 0 40 40 + xtensa_init.o 0 4 0 32 0 0 0 36 + interrupts--intlevel.o 0 0 0 0 0 0 32 32 + init.o 0 0 0 0 0 27 0 27 + wifi_init.o 0 0 0 0 0 17 9 26 + ip6_addr.o 0 0 0 0 0 0 20 20 + lib_a-errno.o 0 0 0 0 0 10 0 10 + int_asm--set_intclear.o 0 0 0 8 0 0 0 8 + eri.o 0 0 0 8 0 0 0 8 + cxx_exception_stubs.o 0 0 0 0 0 6 0 6 + cxx_guards.o 0 0 0 0 0 5 0 5 + FreeRTOS-openocd.o 4 0 0 0 0 0 0 4 + eh_term_handler.o 4 0 0 0 0 0 0 4 + eh_unex_handler.o 4 0 0 0 0 0 0 4 + bootloader_flash.o 0 0 0 0 0 0 0 0 + bootloader_sha.o 0 0 0 0 0 0 0 0 + esp_image_format.o 0 0 0 0 0 0 0 0 + lib_a-fputs.o 0 0 0 0 0 0 0 0 + lib_a-snprintf.o 0 0 0 0 0 0 0 0 + lib_a-strerror.o 0 0 0 0 0 0 0 0 + lib_a-sysgettod.o 0 0 0 0 0 0 0 0 + lib_a-u_strerr.o 0 0 0 0 0 0 0 0 + lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 + lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 + coexist_api.o 0 0 0 0 0 0 0 0 + coexist_arbit.o 0 0 0 0 0 0 0 0 + coexist_core.o 0 0 0 0 0 0 0 0 + coexist_dbg.o 0 0 0 0 0 0 0 0 + coexist_hw.o 0 0 0 0 0 0 0 0 + coexist_param.o 0 0 0 0 0 0 0 0 + coexist_timer.o 0 0 0 0 0 0 0 0 + misc_nvs.o 0 0 0 0 0 0 0 0 + gpio.o 0 0 0 0 0 0 0 0 + ets_timer_legacy.o 0 0 0 0 0 0 0 0 +event_default_handlers.o 0 0 0 0 0 0 0 0 + event_loop.o 0 0 0 0 0 0 0 0 + lib_printf.o 0 0 0 0 0 0 0 0 + phy_init.o 0 0 0 0 0 0 0 0 + sha.o 0 0 0 0 0 0 0 0 + wifi_os_adapter.o 0 0 0 0 0 0 0 0 + emac_dev.o 0 0 0 0 0 0 0 0 + emac_main.o 0 0 0 0 0 0 0 0 + event_groups.o 0 0 0 0 0 0 0 0 + ringbuf.o 0 0 0 0 0 0 0 0 + _addsubdf3.o 0 0 0 0 0 0 0 0 + _cmpdf2.o 0 0 0 0 0 0 0 0 + _divdf3.o 0 0 0 0 0 0 0 0 + _divsf3.o 0 0 0 0 0 0 0 0 + _extendsfdf2.o 0 0 0 0 0 0 0 0 + _fixdfsi.o 0 0 0 0 0 0 0 0 + _floatdidf.o 0 0 0 0 0 0 0 0 + _floatdisf.o 0 0 0 0 0 0 0 0 + _floatsidf.o 0 0 0 0 0 0 0 0 + _muldf3.o 0 0 0 0 0 0 0 0 + _popcountsi2.o 0 0 0 0 0 0 0 0 + ethernetif.o 0 0 0 0 0 0 0 0 + ethip6.o 0 0 0 0 0 0 0 0 + wlanif.o 0 0 0 0 0 0 0 0 + esp_sha256.o 0 0 0 0 0 0 0 0 + mesh.o 0 0 0 0 0 0 0 0 + mesh_common.o 0 0 0 0 0 0 0 0 + mesh_config.o 0 0 0 0 0 0 0 0 + mesh_main.o 0 0 0 0 0 0 0 0 + mesh_parent.o 0 0 0 0 0 0 0 0 + mesh_route.o 0 0 0 0 0 0 0 0 + mesh_schedule.o 0 0 0 0 0 0 0 0 + mesh_timer.o 0 0 0 0 0 0 0 0 + mesh_utilities.o 0 0 0 0 0 0 0 0 + mesh_wifi.o 0 0 0 0 0 0 0 0 + ieee80211.o 0 0 0 0 0 0 0 0 + ieee80211_action.o 0 0 0 0 0 0 0 0 +ieee80211_action_vendor. 0 0 0 0 0 0 0 0 + ieee80211_api.o 0 0 0 0 0 0 0 0 + ieee80211_crypto.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 + ieee80211_debug.o 0 0 0 0 0 0 0 0 + ieee80211_ets.o 0 0 0 0 0 0 0 0 + ieee80211_hostap.o 0 0 0 0 0 0 0 0 + ieee80211_ht.o 0 0 0 0 0 0 0 0 + ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 + ieee80211_input.o 0 0 0 0 0 0 0 0 + ieee80211_ioctl.o 0 0 0 0 0 0 0 0 + ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 + ieee80211_misc.o 0 0 0 0 0 0 0 0 + ieee80211_nvs.o 0 0 0 0 0 0 0 0 + ieee80211_output.o 0 0 0 0 0 0 0 0 + ieee80211_phy.o 0 0 0 0 0 0 0 0 + ieee80211_power.o 0 0 0 0 0 0 0 0 + ieee80211_proto.o 0 0 0 0 0 0 0 0 + ieee80211_regdomain.o 0 0 0 0 0 0 0 0 + ieee80211_rfid.o 0 0 0 0 0 0 0 0 + ieee80211_scan.o 0 0 0 0 0 0 0 0 + ieee80211_sta.o 0 0 0 0 0 0 0 0 + ieee80211_timer.o 0 0 0 0 0 0 0 0 + wl_chm.o 0 0 0 0 0 0 0 0 + wl_cnx.o 0 0 0 0 0 0 0 0 + nvs_api.o 0 0 0 0 0 0 0 0 + nvs_item_hash_list.o 0 0 0 0 0 0 0 0 + nvs_page.o 0 0 0 0 0 0 0 0 + nvs_pagemanager.o 0 0 0 0 0 0 0 0 + nvs_storage.o 0 0 0 0 0 0 0 0 + nvs_types.o 0 0 0 0 0 0 0 0 + phy.o 0 0 0 0 0 0 0 0 + phy_chip_v7.o 0 0 0 0 0 0 0 0 + phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 + phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 + esf_buf.o 0 0 0 0 0 0 0 0 + if_hwctrl.o 0 0 0 0 0 0 0 0 + lmac.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 + pp.o 0 0 0 0 0 0 0 0 + pp_debug.o 0 0 0 0 0 0 0 0 + pp_timer.o 0 0 0 0 0 0 0 0 + rate_control.o 0 0 0 0 0 0 0 0 + trc.o 0 0 0 0 0 0 0 0 + wdev.o 0 0 0 0 0 0 0 0 + bt_bb.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + rtc.o 0 0 0 0 0 0 0 0 + rtc_analog.o 0 0 0 0 0 0 0 0 + smartconfig_ack.o 0 0 0 0 0 0 0 0 + gpio_periph.o 0 0 0 0 0 0 0 0 + rtc_sleep.o 0 0 0 0 0 0 0 0 + bad_alloc.o 0 0 0 0 0 0 0 0 + del_op.o 0 0 0 0 0 0 0 0 + del_opv.o 0 0 0 0 0 0 0 0 + eh_exception.o 0 0 0 0 0 0 0 0 + new_handler.o 0 0 0 0 0 0 0 0 + pure.o 0 0 0 0 0 0 0 0 + tinfo.o 0 0 0 0 0 0 0 0 + ap_config.o 0 0 0 0 0 0 0 0 + common.o 0 0 0 0 0 0 0 0 + wpa.o 0 0 0 0 0 0 0 0 + wpa_auth.o 0 0 0 0 0 0 0 0 + wpa_auth_ie.o 0 0 0 0 0 0 0 0 + wpa_common.o 0 0 0 0 0 0 0 0 + wpa_debug.o 0 0 0 0 0 0 0 0 + wpa_ie.o 0 0 0 0 0 0 0 0 + wpa_main.o 0 0 0 0 0 0 0 0 + wpabuf.o 0 0 0 0 0 0 0 0 + wpas_glue.o 0 0 0 0 0 0 0 0 + wpa2_internal.o 0 0 0 0 0 0 0 0 + os_xtensa.o 0 0 0 0 0 0 0 0 + wps_internal.o 0 0 0 0 0 0 0 0 +The following entries are present in only: + Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + bootloader_init.c.o 0 24 0 0 0 0 0 24 + esp_image_format.c.o 0 8 0 0 0 0 0 8 + bootloader_flash.c.o 4 1 0 0 0 0 0 5 + bootloader_sha.c.o 0 4 0 0 0 0 0 4 + rtc_clk.c.o 0 4 0 0 0 0 0 4 + bootloader_utility.c.o 0 1 0 0 0 0 0 1 + crt0.o 0 0 0 0 0 0 0 0 + crtbegin.o 0 0 0 0 0 0 0 0 + crtend.o 0 0 0 0 0 0 0 0 + crti.o 0 0 0 0 0 0 0 0 + crtn.o 0 0 0 0 0 0 0 0 + project_elf_src.c.o 0 0 0 0 0 0 0 0 + bootloader_clock.c.o 0 0 0 0 0 0 0 0 + bootloader_common.c.o 0 0 0 0 0 0 0 0 +bootloader_efuse_esp32.c 0 0 0 0 0 0 0 0 + bootloader_esp32.c.o 0 0 0 0 0 0 0 0 +bootloader_flash_config_ 0 0 0 0 0 0 0 0 + bootloader_random.c.o 0 0 0 0 0 0 0 0 + flash_partitions.c.o 0 0 0 0 0 0 0 0 + flash_qio_mode.c.o 0 0 0 0 0 0 0 0 + lib_a-impure.o 0 0 0 0 0 0 0 0 + lib_a-memcmp.o 0 0 0 0 0 0 0 0 + lib_a-memcpy.o 0 0 0 0 0 0 0 0 + lib_a-memset.o 0 0 0 0 0 0 0 0 + lib_a-strcspn.o 0 0 0 0 0 0 0 0 + lib_a-strlen.o 0 0 0 0 0 0 0 0 + lib_a-strncpy.o 0 0 0 0 0 0 0 0 + lib_a-strstr.o 0 0 0 0 0 0 0 0 + _bswapsi2.o 0 0 0 0 0 0 0 0 + log_noos.c.o 0 0 0 0 0 0 0 0 + bootloader_start.c.o 0 0 0 0 0 0 0 0 + cpu_util.c.o 0 0 0 0 0 0 0 0 + rtc_clk_init.c.o 0 0 0 0 0 0 0 0 + rtc_init.c.o 0 0 0 0 0 0 0 0 + rtc_time.c.o 0 0 0 0 0 0 0 0 + rtc_wdt.c.o 0 0 0 0 0 0 0 0 + gpio_periph.c.o 0 0 0 0 0 0 0 0 + spi_flash_rom_patch.c.o 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --files with itself... + MAP file: app.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 9324 + DRAM .bss size: 8296 bytes 8296 +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 17620 ( +0 available, +0 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38932 ( +0 available, +0 total) + Flash code: 146944 bytes 146944 + Flash rodata: 39580 bytes 39580 +Total image size:~ 243076 bytes (.bin may be padded larger) 243076 +Per-file contributions to ELF file: + Object File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + lib_a-vfprintf.o| | | | | | | | | | | | | | | | 14193| 14193| | 756| 756| | 14949| 14949| + lib_a-svfprintf.o| | | | | | | | | | | | | | | | 13834| 13834| | 756| 756| | 14590| 14590| + lib_a-svfiprintf.o| | | | | | | | | | | | | | | | 9642| 9642| | 1210| 1210| | 10852| 10852| + lib_a-vfiprintf.o| | | | | | | | | | | | | | | | 9933| 9933| | 738| 738| | 10671| 10671| + nd6.o| 8| 8| | 1027| 1027| | | | | | | | | | | 8427| 8427| | 136| 136| | 9598| 9598| + tcp_in.o| | | | 54| 54| | | | | | | | | | | 8127| 8127| | 916| 916| | 9097| 9097| + tasks.o| 20| 20| | 700| 700| | | | | 5667| 5667| | | | | | | | 503| 503| | 6890| 6890| + tcp_out.o| | | | | | | | | | | | | | | | 5060| 5060| | 1124| 1124| | 6184| 6184| + sockets.o| | | | 728| 728| | | | | | | | | | | 4627| 4627| | 824| 824| | 6179| 6179| + tcp.o| 4| 4| | 23| 23| | | | | | | | | | | 4290| 4290| | 1384| 1384| | 5701| 5701| + api_msg.o| | | | | | | | | | | | | | | | 3763| 3763| | 1366| 1366| | 5129| 5129| + dhcp.o| | | | 8| 8| | | | | | | | | | | 3456| 3456| | 1401| 1401| | 4865| 4865| + panic.o| 2579| 2579| | 5| 5| | | | | 2145| 2145| | | | | | | | | | | 4729| 4729| + esp_err_to_name.o| | | | | | | | | | | | | | | | 50| 50| | 4091| 4091| | 4141| 4141| + unwind-dw2-fde.o| 4| 4| | 20| 20| | | | | | | | | | | 3316| 3316| | 404| 404| | 3744| 3744| + pbuf.o| | | | 1| 1| | | | | | | | | | | 2453| 2453| | 1161| 1161| | 3615| 3615| + portasm.o| 3084| 3084| | | | | | | | 480| 480| | | | | | | | | | | 3564| 3564| + lib_a-dtoa.o| | | | | | | | | | | | | | | | 3522| 3522| | 13| 13| | 3535| 3535| + etharp.o| | | | 241| 241| | | | | | | | | | | 2618| 2618| | 658| 658| | 3517| 3517| + ip6.o| | | | | | | | | | | | | | | | 3212| 3212| | 124| 124| | 3336| 3336| + dns.o| | | | 1292| 1292| | | | | | | | | | | 1809| 1809| | 206| 206| | 3307| 3307| + spi_flash_rom_patch.o| | | | | | | | | | 2518| 2518| | | | | | | | 766| 766| | 3284| 3284| + udp.o| 2| 2| | 4| 4| | | | | | | | | | | 3020| 3020| | 216| 216| | 3242| 3242| + intr_alloc.o| 8| 8| | 22| 22| | | | | 726| 726| | | | | 1749| 1749| | 710| 710| | 3215| 3215| + multi_heap.o| 857| 857| | | | | | | | 2217| 2217| | | | | | | | | | | 3074| 3074| + queue.o| 8| 8| | 56| 56| | | | | 2569| 2569| | | | | | | | 369| 369| | 3002| 3002| + flash_ops.o| 32| 32| | 41| 41| | | | | 2352| 2352| | | | | 99| 99| | | | | 2524| 2524| + unwind-dw2-xtensa.o| | | | | | | | | | | | | | | | 2172| 2172| | 324| 324| | 2496| 2496| + rtc_clk.o| 660| 660| | 8| 8| | | | | 1794| 1794| | | | | | | | | | | 2462| 2462| + lib_a-mprec.o| | | | | | | | | | | | | | | | 2134| 2134| | 296| 296| | 2430| 2430| + vfs.o| 192| 192| | 40| 40| | | | | | | | | | | 1995| 1995| | 132| 132| | 2359| 2359| + ip6_frag.o| | | | 6| 6| | | | | | | | | | | 1905| 1905| | 442| 442| | 2353| 2353| + api_lib.o| | | | | | | | | | | | | | | | 1425| 1425| | 919| 919| | 2344| 2344| + igmp.o| | | | 12| 12| | | | | | | | | | | 1604| 1604| | 707| 707| | 2323| 2323| + dbg_stubs.o| | | | 2072| 2072| | | | | 32| 32| | | | | 100| 100| | | | | 2204| 2204| + vfs_uart.o| 40| 40| | 63| 63| | | | | | | | | | | 1775| 1775| | 271| 271| | 2149| 2149| + unity_platform.o| | | | 13| 13| | | | | | | | | | | 1511| 1511| | 600| 600| | 2124| 2124| + esp_timer_esp32.o| 8| 8| | 26| 26| | | | | 1295| 1295| | | | | 254| 254| | 526| 526| | 2109| 2109| + rtc_periph.o| | | | | | | | | | | | | | | | | | | 2080| 2080| | 2080| 2080| + flash_mmap.o| | | | 296| 296| | | | | 1298| 1298| | | | | 124| 124| | 327| 327| | 2045| 2045| + heap_caps.o| 4| 4| | | | | | | | 1195| 1195| | | | | 188| 188| | 593| 593| | 1980| 1980| + eh_personality.o| | | | | | | | | | | | | | | | 1561| 1561| | 384| 384| | 1945| 1945| + ip4.o| | | | 6| 6| | | | | | | | | | | 1664| 1664| | 139| 139| | 1809| 1809| + netif.o| | | | 241| 241| | | | | | | | | | | 1239| 1239| | 287| 287| | 1767| 1767| + xtensa_vectors.o| 8| 8| | | | | | | | 1697| 1697| | | | | | | | 36| 36| | 1741| 1741| + cpu_start.o| | | | 1| 1| | | | | 806| 806| | | | | 277| 277| | 486| 486| | 1570| 1570| + clk.o| | | | | | | | | | 67| 67| | | | | 581| 581| | 893| 893| | 1541| 1541| + timers.o| 8| 8| | 56| 56| | | | | 1149| 1149| | | | | | | | 233| 233| | 1446| 1446| + sys_arch.o| | | | 8| 8| | | | | | | | | | | 1216| 1216| | 222| 222| | 1446| 1446| + multi_heap_poisoning.o| 470| 470| | | | | | | | 964| 964| | | | | | | | | | | 1434| 1434| + heap_caps_init.o| | | | 4| 4| | | | | | | | | | | 1030| 1030| | 387| 387| | 1421| 1421| + mld6.o| | | | 4| 4| | | | | | | | | | | 1334| 1334| | | | | 1338| 1338| + cache_utils.o| 4| 4| | 14| 14| | | | | 836| 836| | | | | 81| 81| | 390| 390| | 1325| 1325| + raw.o| | | | 4| 4| | | | | | | | | | | 1087| 1087| | 223| 223| | 1314| 1314| + esp_timer.o| 8| 8| | 20| 20| | | | | 702| 702| | | | | 429| 429| | 142| 142| | 1301| 1301| + log.o| 8| 8| | 268| 268| | | | | 456| 456| | | | | 396| 396| | 166| 166| | 1294| 1294| + system_api.o| | | | 8| 8| | | | | 589| 589| | | | | | | | 662| 662| | 1259| 1259| + soc_memory_layout.o| | | | | | | | | | | | | | | | | | | 1239| 1239| | 1239| 1239| + icmp.o| | | | | | | | | | | | | | | | 769| 769| | 371| 371| | 1140| 1140| + xtensa_intr_asm.o| 1024| 1024| | | | | | | | 51| 51| | | | | | | | | | | 1075| 1075| + port.o| | | | 16| 16| | | | | 617| 617| | | | | | | | 369| 369| | 1002| 1002| + pthread.o| 8| 8| | 8| 8| | | | | 174| 174| | | | | 298| 298| | 512| 512| | 1000| 1000| + icmp6.o| | | | | | | | | | | | | | | | 863| 863| | 127| 127| | 990| 990| + rtc_init.o| | | | | | | | | | 980| 980| | | | | | | | | | | 980| 980| + unity.o| | | | 108| 108| | | | | | | | | | | 767| 767| | 90| 90| | 965| 965| + rtc_time.o| | | | | | | | | | 803| 803| | | | | | | | 137| 137| | 940| 940| + dport_access.o| 8| 8| | 40| 40| | | | | 539| 539| | | | | 189| 189| | 129| 129| | 905| 905| + lib_a-fseeko.o| | | | | | | | | | | | | | | | 862| 862| | | | | 862| 862| + time.o| | | | 32| 32| | | | | 139| 139| | | | | 691| 691| | | | | 862| 862| + tcpip.o| | | | 16| 16| | | | | | | | | | | 644| 644| | 191| 191| | 851| 851| + esp_ota_ops.o| | | | | | | | | | | | | | | | 123| 123| | 717| 717| | 840| 840| + periph_ctrl.o| 8| 8| | | | | | | | | | | | | | 520| 520| | 256| 256| | 784| 784| + timers.o| | | | 12| 12| | | | | | | | | | | 638| 638| | 131| 131| | 781| 781| + partition.o| | | | 8| 8| | | | | | | | | | | 582| 582| | 141| 141| | 731| 731| + locks.o| 8| 8| | | | | | | | 552| 552| | | | | | | | 84| 84| | 644| 644| + ipc.o| | | | 36| 36| | | | | 159| 159| | | | | 329| 329| | 104| 104| | 628| 628| + tcpip_adapter_lwip.o| | | | 81| 81| | | | | | | | | | | 180| 180| | 359| 359| | 620| 620| + pthread_local_storage.o| 8| 8| | 4| 4| | | | | | | | | | | 476| 476| | 126| 126| | 614| 614| + inet_chksum.o| | | | | | | | | | | | | | | | 580| 580| | | | | 580| 580| + crosscore_int.o| 8| 8| | 8| 8| | | | | 204| 204| | | | | 126| 126| | 148| 148| | 494| 494| + netbuf.o| | | | | | | | | | | | | | | | 154| 154| | 326| 326| | 480| 480| + vfs_lwip.o| | | | | | | | | | | | | | | | 307| 307| | 155| 155| | 462| 462| + syscall_table.o| 144| 144| | 240| 240| | | | | | | | | | | 67| 67| | | | | 451| 451| + timer.o| 16| 16| | | | | | | | | | | | | | 112| 112| | 281| 281| | 409| 409| + int_wdt.o| | | | 1| 1| | | | | 87| 87| | | | | 301| 301| | | | | 389| 389| + eh_globals.o| | | | 16| 16| | | | | | | | | | | 149| 149| | 193| 193| | 358| 358| + brownout.o| | | | | | | | | | | | | | | | 145| 145| | 191| 191| | 336| 336| + freertos_hooks.o| 8| 8| | 128| 128| | | | | 43| 43| | | | | 137| 137| | | | | 316| 316| + windowspill_asm.o| | | | | | | | | | 311| 311| | | | | | | | | | | 311| 311| + cpu_util.o| | | | | | | | | | 310| 310| | | | | | | | | | | 310| 310| + rtc_module.o| 8| 8| | 8| 8| | | | | | | | | | | 291| 291| | | | | 307| 307| + xtensa_context.o| | | | | | | | | | 299| 299| | | | | | | | | | | 299| 299| + eh_terminate.o| | | | | | | | | | | | | | | | 117| 117| | 141| 141| | 258| 258| + ethernet.o| | | | | | | | | | | | | | | | 244| 244| | 12| 12| | 256| 256| + lib_a-puts.o| | | | | | | | | | | | | | | | 182| 182| | 60| 60| | 242| 242| +dport_panic_highint_hdl.| 8| 8| | | | | | | | 234| 234| | | | | | | | | | | 242| 242| + lib_a-reent.o| | | | | | | | | | | | | | | | 232| 232| | | | | 232| 232| + lib_a-fopen.o| | | | | | | | | | | | | | | | 228| 228| | | | | 228| 228| + dhcpserver.o| | | | 4| 4| | | | | | | | | | | 203| 203| | | | | 207| 207| + test_utils.o| | | | | | | | | | | | | | | | 38| 38| | 140| 140| | 178| 178| + lib_a-sprintf.o| | | | | | | | | | | | | | | | 167| 167| | | | | 167| 167| + cache_err_int.o| | | | | | | | | | 56| 56| | | | | 98| 98| | | | | 154| 154| + list.o| | | | | | | | | | 142| 142| | | | | | | | | | | 142| 142| + xtensa_intr.o| | | | | | | | | | 104| 104| | | | | | | | 35| 35| | 139| 139| + syscalls.o| | | | | | | | | | 94| 94| | | | | 45| 45| | | | | 139| 139| + si_class_type_info.o| | | | | | | | | | | | | | | | | | | 136| 136| | 136| 136| + lib_a-assert.o| | | | | | | | | | | | | | | | 68| 68| | 60| 60| | 128| 128| + lib_a-flags.o| | | | | | | | | | | | | | | | 127| 127| | | | | 127| 127| + lib_a-printf.o| | | | | | | | | | | | | | | | 116| 116| | | | | 116| 116| + ip4_addr.o| | | | | | | | | | | | | | | | 72| 72| | 40| 40| | 112| 112| + class_type_info.o| | | | | | | | | | | | | | | | | | | 112| 112| | 112| 112| + lib_a-s_frexp.o| | | | | | | | | | | | | | | | 110| 110| | | | | 110| 110| + ip.o| | | | 60| 60| | | | | | | | | | | 50| 50| | | | | 110| 110| + memp.o| | | | | | | | | | | | | | | | | | | 108| 108| | 108| 108| + lib2funcs.o| | | | | | | | | | 104| 104| | | | | | | | | | | 104| 104| + lib_a-vprintf.o| | | | | | | | | | | | | | | | 94| 94| | | | | 94| 94| + lib_a-s_fpclassify.o| | | | | | | | | | 92| 92| | | | | | | | | | | 92| 92| + def.o| | | | | | | | | | | | | | | | 91| 91| | | | | 91| 91| + lib_a-fiprintf.o| | | | | | | | | | | | | | | | 84| 84| | | | | 84| 84| + hw_random.o| | | | 4| 4| | | | | 74| 74| | | | | | | | | | | 78| 78| + stack_check.o| | | | 4| 4| | | | | | | | | | | 32| 32| | 42| 42| | 78| 78| + clock.o| | | | | | | | | | 72| 72| | | | | | | | | | | 72| 72| + reent_init.o| | | | | | | | | | 68| 68| | | | | | | | 2| 2| | 70| 70| + app_main.o| | | | | | | | | | | | | | | | 53| 53| | 10| 10| | 63| 63| +state_asm--restore_extra| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| +state_asm--save_extra_nw| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| + uart.o| 8| 8| | 12| 12| | | | | | | | | | | 38| 38| | | | | 58| 58| + new_opv.o| | | | | | | | | | | | | | | | | | | 56| 56| | 56| 56| +xtensa_vector_defaults.o| | | | | | | | | | 46| 46| | | | | | | | | | | 46| 46| + lib_a-fseek.o| | | | | | | | | | | | | | | | 45| 45| | | | | 45| 45| + _divdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _moddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _umoddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + new_op.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + xtensa_init.o| | | | 4| 4| | | | | 32| 32| | | | | | | | | | | 36| 36| + interrupts--intlevel.o| | | | | | | | | | | | | | | | | | | 32| 32| | 32| 32| + init.o| | | | | | | | | | | | | | | | 27| 27| | | | | 27| 27| + wifi_init.o| | | | | | | | | | | | | | | | 17| 17| | 9| 9| | 26| 26| + ip6_addr.o| | | | | | | | | | | | | | | | | | | 20| 20| | 20| 20| + lib_a-errno.o| | | | | | | | | | | | | | | | 10| 10| | | | | 10| 10| + int_asm--set_intclear.o| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| + eri.o| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| + cxx_exception_stubs.o| | | | | | | | | | | | | | | | 6| 6| | | | | 6| 6| + cxx_guards.o| | | | | | | | | | | | | | | | 5| 5| | | | | 5| 5| + FreeRTOS-openocd.o| 4| 4| | | | | | | | | | | | | | | | | | | | 4| 4| + eh_term_handler.o| 4| 4| | | | | | | | | | | | | | | | | | | | 4| 4| + eh_unex_handler.o| 4| 4| | | | | | | | | | | | | | | | | | | | 4| 4| + bootloader_flash.o| | | | | | | | | | | | | | | | | | | | | | | | + bootloader_sha.o| | | | | | | | | | | | | | | | | | | | | | | | + esp_image_format.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-fputs.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-snprintf.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-strerror.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-sysgettod.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-u_strerr.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-vsnprintf.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-xpg_strerror_r.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_api.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_arbit.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_core.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_dbg.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_hw.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_param.o| | | | | | | | | | | | | | | | | | | | | | | | + coexist_timer.o| | | | | | | | | | | | | | | | | | | | | | | | + misc_nvs.o| | | | | | | | | | | | | | | | | | | | | | | | + gpio.o| | | | | | | | | | | | | | | | | | | | | | | | + ets_timer_legacy.o| | | | | | | | | | | | | | | | | | | | | | | | +event_default_handlers.o| | | | | | | | | | | | | | | | | | | | | | | | + event_loop.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_printf.o| | | | | | | | | | | | | | | | | | | | | | | | + phy_init.o| | | | | | | | | | | | | | | | | | | | | | | | + sha.o| | | | | | | | | | | | | | | | | | | | | | | | + wifi_os_adapter.o| | | | | | | | | | | | | | | | | | | | | | | | + emac_dev.o| | | | | | | | | | | | | | | | | | | | | | | | + emac_main.o| | | | | | | | | | | | | | | | | | | | | | | | + event_groups.o| | | | | | | | | | | | | | | | | | | | | | | | + ringbuf.o| | | | | | | | | | | | | | | | | | | | | | | | + _addsubdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _cmpdf2.o| | | | | | | | | | | | | | | | | | | | | | | | + _divdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _divsf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _extendsfdf2.o| | | | | | | | | | | | | | | | | | | | | | | | + _fixdfsi.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatdidf.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatdisf.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatsidf.o| | | | | | | | | | | | | | | | | | | | | | | | + _muldf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | + ethernetif.o| | | | | | | | | | | | | | | | | | | | | | | | + ethip6.o| | | | | | | | | | | | | | | | | | | | | | | | + wlanif.o| | | | | | | | | | | | | | | | | | | | | | | | + esp_sha256.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_common.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_config.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_main.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_parent.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_route.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_schedule.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_timer.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_utilities.o| | | | | | | | | | | | | | | | | | | | | | | | + mesh_wifi.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_action.o| | | | | | | | | | | | | | | | | | | | | | | | +ieee80211_action_vendor.| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_api.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_crypto.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_crypto_ccmp.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_crypto_tkip.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_crypto_wep.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_debug.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_ets.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_hostap.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_ht.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_ie_vendor.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_input.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_ioctl.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_mesh_quick.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_misc.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_nvs.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_output.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_phy.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_power.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_proto.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_regdomain.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_rfid.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_scan.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_sta.o| | | | | | | | | | | | | | | | | | | | | | | | + ieee80211_timer.o| | | | | | | | | | | | | | | | | | | | | | | | + wl_chm.o| | | | | | | | | | | | | | | | | | | | | | | | + wl_cnx.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_api.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_item_hash_list.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_page.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_pagemanager.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_storage.o| | | | | | | | | | | | | | | | | | | | | | | | + nvs_types.o| | | | | | | | | | | | | | | | | | | | | | | | + phy.o| | | | | | | | | | | | | | | | | | | | | | | | + phy_chip_v7.o| | | | | | | | | | | | | | | | | | | | | | | | + phy_chip_v7_ana.o| | | | | | | | | | | | | | | | | | | | | | | | + phy_chip_v7_cal.o| | | | | | | | | | | | | | | | | | | | | | | | + esf_buf.o| | | | | | | | | | | | | | | | | | | | | | | | + if_hwctrl.o| | | | | | | | | | | | | | | | | | | | | | | | + lmac.o| | | | | | | | | | | | | | | | | | | | | | | | + pm.o| | | | | | | | | | | | | | | | | | | | | | | | + pm_for_bcn_only_mode.o| | | | | | | | | | | | | | | | | | | | | | | | + pp.o| | | | | | | | | | | | | | | | | | | | | | | | + pp_debug.o| | | | | | | | | | | | | | | | | | | | | | | | + pp_timer.o| | | | | | | | | | | | | | | | | | | | | | | | + rate_control.o| | | | | | | | | | | | | | | | | | | | | | | | + trc.o| | | | | | | | | | | | | | | | | | | | | | | | + wdev.o| | | | | | | | | | | | | | | | | | | | | | | | + bt_bb.o| | | | | | | | | | | | | | | | | | | | | | | | + pm.o| | | | | | | | | | | | | | | | | | | | | | | | + rtc.o| | | | | | | | | | | | | | | | | | | | | | | | + rtc_analog.o| | | | | | | | | | | | | | | | | | | | | | | | + smartconfig_ack.o| | | | | | | | | | | | | | | | | | | | | | | | + gpio_periph.o| | | | | | | | | | | | | | | | | | | | | | | | + rtc_sleep.o| | | | | | | | | | | | | | | | | | | | | | | | + bad_alloc.o| | | | | | | | | | | | | | | | | | | | | | | | + del_op.o| | | | | | | | | | | | | | | | | | | | | | | | + del_opv.o| | | | | | | | | | | | | | | | | | | | | | | | + eh_exception.o| | | | | | | | | | | | | | | | | | | | | | | | + new_handler.o| | | | | | | | | | | | | | | | | | | | | | | | + pure.o| | | | | | | | | | | | | | | | | | | | | | | | + tinfo.o| | | | | | | | | | | | | | | | | | | | | | | | + ap_config.o| | | | | | | | | | | | | | | | | | | | | | | | + common.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_auth.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_auth_ie.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_common.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_debug.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_ie.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa_main.o| | | | | | | | | | | | | | | | | | | | | | | | + wpabuf.o| | | | | | | | | | | | | | | | | | | | | | | | + wpas_glue.o| | | | | | | | | | | | | | | | | | | | | | | | + wpa2_internal.o| | | | | | | | | | | | | | | | | | | | | | | | + os_xtensa.o| | | | | | | | | | | | | | | | | | | | | | | | + wps_internal.o| | | | | | | | | | | | | | | | | | | | | | | | + +*** +Running idf_size.py diff --files with another app... + MAP file: app.map + MAP file: app2.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 8580 +744 + DRAM .bss size: 8296 bytes 2024 +6272 +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) + Flash code: 146944 bytes 77191 +69753 + Flash rodata: 39580 bytes 22360 +17220 +Total image size:~ 243076 bytes (.bin may be padded larger) 149111 +93965 +Per-file contributions to ELF file: + Object File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + lib_a-vfprintf.o| | | | | | | | | | | | | | | | 14193| 13681| +512| 756| 752| +4| 14949| 14433| +516 + lib_a-svfprintf.o| | | | | | | | | | | | | | | | 13834| 13290| +544| 756| 752| +4| 14590| 14042| +548 + lib_a-svfiprintf.o| | | | | | | | | | | | | | | | 9642| 9623| +19| 1210| 1206| +4| 10852| 10829| +23 + lib_a-vfiprintf.o| | | | | | | | | | | | | | | | 9933| 9933| | 738| 734| +4| 10671| 10667| +4 + lib_a-dtoa.o| | | | | | | | | | | | | | | | 3522| 3524| -2| 13| 13| | 3535| 3537| -2 + lib_a-mprec.o| | | | | | | | | | | | | | | | 2134| 2140| -6| 296| 296| | 2430| 2436| -6 + lib_a-fseeko.o| | | | | | | | | | | | | | | | 862| 918| -56| | | | 862| 918| -56 + windowspill_asm.o| | | | | | | | | | 311| 315| -4| | | | | | | | | | 311| 315| -4 + lib_a-puts.o| | | | | | | | | | | | | | | | 182| 234| -52| 60| 60| | 242| 294| -52 + lib_a-reent.o| | | | | | | | | | | | | | | | 232| 236| -4| | | | 232| 236| -4 + lib_a-fopen.o| | | | | | | | | | | | | | | | 228| 244| -16| | | | 228| 244| -16 + lib_a-assert.o| | | | | | | | | | | | | | | | 68| 68| | 60| 60| | 128| 128| + lib_a-flags.o| | | | | | | | | | | | | | | | 127| 128| -1| | | | 127| 128| -1 + lib_a-printf.o| | | | | | | | | | | | | | | | 116| | +116| | | | 116| | +116 + lib_a-s_frexp.o| | | | | | | | | | | | | | | | 110| 100| +10| | | | 110| 100| +10 + lib_a-vprintf.o| | | | | | | | | | | | | | | | 94| 94| | | | | 94| 94| + lib_a-fiprintf.o| | | | | | | | | | | | | | | | 84| 84| | | | | 84| 84| +state_asm--restore_extra| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| +state_asm--save_extra_nw| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| + lib_a-fseek.o| | | | | | | | | | | | | | | | 45| 45| | | | | 45| 45| + _divdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _moddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _umoddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + interrupts--intlevel.o| | | | | | | | | | | | | | | | | | | 32| 32| | 32| 32| + lib_a-errno.o| | | | | | | | | | | | | | | | 10| 10| | | | | 10| 10| + int_asm--set_intclear.o| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| + lib_a-fputs.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-snprintf.o| | | | | | | | | | | | | | | | | 217| -217| | | | | 217| -217 + lib_a-strerror.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-sysgettod.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-u_strerr.o| | | | | | | | | | | | | | | | | | | | | | | | + _addsubdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _cmpdf2.o| | | | | | | | | | | | | | | | | | | | | | | | + _divdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _fixdfsi.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatsidf.o| | | | | | | | | | | | | | | | | | | | | | | | + _muldf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | +The following entries are present in only: + Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + nd6.o 8 1027 0 0 0 8427 136 9598 + tcp_in.o 0 54 0 0 0 8127 916 9097 + tasks.o 20 700 0 5667 0 0 503 6890 + tcp_out.o 0 0 0 0 0 5060 1124 6184 + sockets.o 0 728 0 0 0 4627 824 6179 + tcp.o 4 23 0 0 0 4290 1384 5701 + api_msg.o 0 0 0 0 0 3763 1366 5129 + dhcp.o 0 8 0 0 0 3456 1401 4865 + panic.o 2579 5 0 2145 0 0 0 4729 + esp_err_to_name.o 0 0 0 0 0 50 4091 4141 + unwind-dw2-fde.o 4 20 0 0 0 3316 404 3744 + pbuf.o 0 1 0 0 0 2453 1161 3615 + portasm.o 3084 0 0 480 0 0 0 3564 + etharp.o 0 241 0 0 0 2618 658 3517 + ip6.o 0 0 0 0 0 3212 124 3336 + dns.o 0 1292 0 0 0 1809 206 3307 + spi_flash_rom_patch.o 0 0 0 2518 0 0 766 3284 + udp.o 2 4 0 0 0 3020 216 3242 + intr_alloc.o 8 22 0 726 0 1749 710 3215 + multi_heap.o 857 0 0 2217 0 0 0 3074 + queue.o 8 56 0 2569 0 0 369 3002 + flash_ops.o 32 41 0 2352 0 99 0 2524 + unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 + rtc_clk.o 660 8 0 1794 0 0 0 2462 + vfs.o 192 40 0 0 0 1995 132 2359 + ip6_frag.o 0 6 0 0 0 1905 442 2353 + api_lib.o 0 0 0 0 0 1425 919 2344 + igmp.o 0 12 0 0 0 1604 707 2323 + dbg_stubs.o 0 2072 0 32 0 100 0 2204 + vfs_uart.o 40 63 0 0 0 1775 271 2149 + unity_platform.o 0 13 0 0 0 1511 600 2124 + esp_timer_esp32.o 8 26 0 1295 0 254 526 2109 + rtc_periph.o 0 0 0 0 0 0 2080 2080 + flash_mmap.o 0 296 0 1298 0 124 327 2045 + heap_caps.o 4 0 0 1195 0 188 593 1980 + eh_personality.o 0 0 0 0 0 1561 384 1945 + ip4.o 0 6 0 0 0 1664 139 1809 + netif.o 0 241 0 0 0 1239 287 1767 + xtensa_vectors.o 8 0 0 1697 0 0 36 1741 + cpu_start.o 0 1 0 806 0 277 486 1570 + clk.o 0 0 0 67 0 581 893 1541 + timers.o 8 56 0 1149 0 0 233 1446 + sys_arch.o 0 8 0 0 0 1216 222 1446 + multi_heap_poisoning.o 470 0 0 964 0 0 0 1434 + heap_caps_init.o 0 4 0 0 0 1030 387 1421 + mld6.o 0 4 0 0 0 1334 0 1338 + cache_utils.o 4 14 0 836 0 81 390 1325 + raw.o 0 4 0 0 0 1087 223 1314 + esp_timer.o 8 20 0 702 0 429 142 1301 + log.o 8 268 0 456 0 396 166 1294 + system_api.o 0 8 0 589 0 0 662 1259 + soc_memory_layout.o 0 0 0 0 0 0 1239 1239 + icmp.o 0 0 0 0 0 769 371 1140 + xtensa_intr_asm.o 1024 0 0 51 0 0 0 1075 + port.o 0 16 0 617 0 0 369 1002 + pthread.o 8 8 0 174 0 298 512 1000 + icmp6.o 0 0 0 0 0 863 127 990 + rtc_init.o 0 0 0 980 0 0 0 980 + unity.o 0 108 0 0 0 767 90 965 + rtc_time.o 0 0 0 803 0 0 137 940 + dport_access.o 8 40 0 539 0 189 129 905 + time.o 0 32 0 139 0 691 0 862 + tcpip.o 0 16 0 0 0 644 191 851 + esp_ota_ops.o 0 0 0 0 0 123 717 840 + periph_ctrl.o 8 0 0 0 0 520 256 784 + timers.o 0 12 0 0 0 638 131 781 + partition.o 0 8 0 0 0 582 141 731 + locks.o 8 0 0 552 0 0 84 644 + ipc.o 0 36 0 159 0 329 104 628 + tcpip_adapter_lwip.o 0 81 0 0 0 180 359 620 + pthread_local_storage.o 8 4 0 0 0 476 126 614 + inet_chksum.o 0 0 0 0 0 580 0 580 + crosscore_int.o 8 8 0 204 0 126 148 494 + netbuf.o 0 0 0 0 0 154 326 480 + vfs_lwip.o 0 0 0 0 0 307 155 462 + syscall_table.o 144 240 0 0 0 67 0 451 + timer.o 16 0 0 0 0 112 281 409 + int_wdt.o 0 1 0 87 0 301 0 389 + eh_globals.o 0 16 0 0 0 149 193 358 + brownout.o 0 0 0 0 0 145 191 336 + freertos_hooks.o 8 128 0 43 0 137 0 316 + cpu_util.o 0 0 0 310 0 0 0 310 + rtc_module.o 8 8 0 0 0 291 0 307 + xtensa_context.o 0 0 0 299 0 0 0 299 + eh_terminate.o 0 0 0 0 0 117 141 258 + ethernet.o 0 0 0 0 0 244 12 256 +dport_panic_highint_hdl. 8 0 0 234 0 0 0 242 + dhcpserver.o 0 4 0 0 0 203 0 207 + test_utils.o 0 0 0 0 0 38 140 178 + lib_a-sprintf.o 0 0 0 0 0 167 0 167 + cache_err_int.o 0 0 0 56 0 98 0 154 + list.o 0 0 0 142 0 0 0 142 + xtensa_intr.o 0 0 0 104 0 0 35 139 + syscalls.o 0 0 0 94 0 45 0 139 + si_class_type_info.o 0 0 0 0 0 0 136 136 + ip4_addr.o 0 0 0 0 0 72 40 112 + class_type_info.o 0 0 0 0 0 0 112 112 + ip.o 0 60 0 0 0 50 0 110 + memp.o 0 0 0 0 0 0 108 108 + lib2funcs.o 0 0 0 104 0 0 0 104 + lib_a-s_fpclassify.o 0 0 0 92 0 0 0 92 + def.o 0 0 0 0 0 91 0 91 + hw_random.o 0 4 0 74 0 0 0 78 + stack_check.o 0 4 0 0 0 32 42 78 + clock.o 0 0 0 72 0 0 0 72 + reent_init.o 0 0 0 68 0 0 2 70 + app_main.o 0 0 0 0 0 53 10 63 + uart.o 8 12 0 0 0 38 0 58 + new_opv.o 0 0 0 0 0 0 56 56 +xtensa_vector_defaults.o 0 0 0 46 0 0 0 46 + new_op.o 0 0 0 0 0 0 40 40 + xtensa_init.o 0 4 0 32 0 0 0 36 + init.o 0 0 0 0 0 27 0 27 + wifi_init.o 0 0 0 0 0 17 9 26 + ip6_addr.o 0 0 0 0 0 0 20 20 + eri.o 0 0 0 8 0 0 0 8 + cxx_exception_stubs.o 0 0 0 0 0 6 0 6 + cxx_guards.o 0 0 0 0 0 5 0 5 + FreeRTOS-openocd.o 4 0 0 0 0 0 0 4 + eh_term_handler.o 4 0 0 0 0 0 0 4 + eh_unex_handler.o 4 0 0 0 0 0 0 4 + bootloader_flash.o 0 0 0 0 0 0 0 0 + bootloader_sha.o 0 0 0 0 0 0 0 0 + esp_image_format.o 0 0 0 0 0 0 0 0 + lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 + lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 + coexist_api.o 0 0 0 0 0 0 0 0 + coexist_arbit.o 0 0 0 0 0 0 0 0 + coexist_core.o 0 0 0 0 0 0 0 0 + coexist_dbg.o 0 0 0 0 0 0 0 0 + coexist_hw.o 0 0 0 0 0 0 0 0 + coexist_param.o 0 0 0 0 0 0 0 0 + coexist_timer.o 0 0 0 0 0 0 0 0 + misc_nvs.o 0 0 0 0 0 0 0 0 + gpio.o 0 0 0 0 0 0 0 0 + ets_timer_legacy.o 0 0 0 0 0 0 0 0 +event_default_handlers.o 0 0 0 0 0 0 0 0 + event_loop.o 0 0 0 0 0 0 0 0 + lib_printf.o 0 0 0 0 0 0 0 0 + phy_init.o 0 0 0 0 0 0 0 0 + sha.o 0 0 0 0 0 0 0 0 + wifi_os_adapter.o 0 0 0 0 0 0 0 0 + emac_dev.o 0 0 0 0 0 0 0 0 + emac_main.o 0 0 0 0 0 0 0 0 + event_groups.o 0 0 0 0 0 0 0 0 + ringbuf.o 0 0 0 0 0 0 0 0 + _divsf3.o 0 0 0 0 0 0 0 0 + _extendsfdf2.o 0 0 0 0 0 0 0 0 + _floatdidf.o 0 0 0 0 0 0 0 0 + _floatdisf.o 0 0 0 0 0 0 0 0 + ethernetif.o 0 0 0 0 0 0 0 0 + ethip6.o 0 0 0 0 0 0 0 0 + wlanif.o 0 0 0 0 0 0 0 0 + esp_sha256.o 0 0 0 0 0 0 0 0 + mesh.o 0 0 0 0 0 0 0 0 + mesh_common.o 0 0 0 0 0 0 0 0 + mesh_config.o 0 0 0 0 0 0 0 0 + mesh_main.o 0 0 0 0 0 0 0 0 + mesh_parent.o 0 0 0 0 0 0 0 0 + mesh_route.o 0 0 0 0 0 0 0 0 + mesh_schedule.o 0 0 0 0 0 0 0 0 + mesh_timer.o 0 0 0 0 0 0 0 0 + mesh_utilities.o 0 0 0 0 0 0 0 0 + mesh_wifi.o 0 0 0 0 0 0 0 0 + ieee80211.o 0 0 0 0 0 0 0 0 + ieee80211_action.o 0 0 0 0 0 0 0 0 +ieee80211_action_vendor. 0 0 0 0 0 0 0 0 + ieee80211_api.o 0 0 0 0 0 0 0 0 + ieee80211_crypto.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 + ieee80211_debug.o 0 0 0 0 0 0 0 0 + ieee80211_ets.o 0 0 0 0 0 0 0 0 + ieee80211_hostap.o 0 0 0 0 0 0 0 0 + ieee80211_ht.o 0 0 0 0 0 0 0 0 + ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 + ieee80211_input.o 0 0 0 0 0 0 0 0 + ieee80211_ioctl.o 0 0 0 0 0 0 0 0 + ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 + ieee80211_misc.o 0 0 0 0 0 0 0 0 + ieee80211_nvs.o 0 0 0 0 0 0 0 0 + ieee80211_output.o 0 0 0 0 0 0 0 0 + ieee80211_phy.o 0 0 0 0 0 0 0 0 + ieee80211_power.o 0 0 0 0 0 0 0 0 + ieee80211_proto.o 0 0 0 0 0 0 0 0 + ieee80211_regdomain.o 0 0 0 0 0 0 0 0 + ieee80211_rfid.o 0 0 0 0 0 0 0 0 + ieee80211_scan.o 0 0 0 0 0 0 0 0 + ieee80211_sta.o 0 0 0 0 0 0 0 0 + ieee80211_timer.o 0 0 0 0 0 0 0 0 + wl_chm.o 0 0 0 0 0 0 0 0 + wl_cnx.o 0 0 0 0 0 0 0 0 + nvs_api.o 0 0 0 0 0 0 0 0 + nvs_item_hash_list.o 0 0 0 0 0 0 0 0 + nvs_page.o 0 0 0 0 0 0 0 0 + nvs_pagemanager.o 0 0 0 0 0 0 0 0 + nvs_storage.o 0 0 0 0 0 0 0 0 + nvs_types.o 0 0 0 0 0 0 0 0 + phy.o 0 0 0 0 0 0 0 0 + phy_chip_v7.o 0 0 0 0 0 0 0 0 + phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 + phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 + esf_buf.o 0 0 0 0 0 0 0 0 + if_hwctrl.o 0 0 0 0 0 0 0 0 + lmac.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 + pp.o 0 0 0 0 0 0 0 0 + pp_debug.o 0 0 0 0 0 0 0 0 + pp_timer.o 0 0 0 0 0 0 0 0 + rate_control.o 0 0 0 0 0 0 0 0 + trc.o 0 0 0 0 0 0 0 0 + wdev.o 0 0 0 0 0 0 0 0 + bt_bb.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + rtc.o 0 0 0 0 0 0 0 0 + rtc_analog.o 0 0 0 0 0 0 0 0 + smartconfig_ack.o 0 0 0 0 0 0 0 0 + gpio_periph.o 0 0 0 0 0 0 0 0 + rtc_sleep.o 0 0 0 0 0 0 0 0 + bad_alloc.o 0 0 0 0 0 0 0 0 + del_op.o 0 0 0 0 0 0 0 0 + del_opv.o 0 0 0 0 0 0 0 0 + eh_exception.o 0 0 0 0 0 0 0 0 + new_handler.o 0 0 0 0 0 0 0 0 + pure.o 0 0 0 0 0 0 0 0 + tinfo.o 0 0 0 0 0 0 0 0 + ap_config.o 0 0 0 0 0 0 0 0 + common.o 0 0 0 0 0 0 0 0 + wpa.o 0 0 0 0 0 0 0 0 + wpa_auth.o 0 0 0 0 0 0 0 0 + wpa_auth_ie.o 0 0 0 0 0 0 0 0 + wpa_common.o 0 0 0 0 0 0 0 0 + wpa_debug.o 0 0 0 0 0 0 0 0 + wpa_ie.o 0 0 0 0 0 0 0 0 + wpa_main.o 0 0 0 0 0 0 0 0 + wpabuf.o 0 0 0 0 0 0 0 0 + wpas_glue.o 0 0 0 0 0 0 0 0 + wpa2_internal.o 0 0 0 0 0 0 0 0 + os_xtensa.o 0 0 0 0 0 0 0 0 + wps_internal.o 0 0 0 0 0 0 0 0 +The following entries are present in only: + Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + tasks.c.o 12 700 0 5737 0 0 663 7112 + esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 + vfs_uart.c.o 116 8 0 0 0 3758 783 4665 + panic.c.o 2029 5 0 2223 0 0 0 4257 + portasm.S.o 3084 0 0 476 0 0 0 3560 + intr_alloc.c.o 8 22 0 656 0 1681 704 3071 + queue.c.o 0 0 0 2411 0 0 424 2835 + uart.c.o 56 12 0 0 0 2099 452 2619 + multi_heap.c.o 300 0 0 2245 0 0 0 2545 + cpu_start.c.o 0 1 0 1067 0 255 1073 2396 + rtc_clk.c.o 160 4 0 2104 0 0 0 2268 + vfs.c.o 192 40 0 0 0 1892 132 2256 + gpio.c.o 32 0 0 0 0 1193 970 2195 + flash_mmap.c.o 0 264 0 1320 0 125 296 2005 + spi_flash_hal_iram.c.o 24 0 0 1798 0 0 0 1822 + xtensa_vectors.S.o 8 0 0 1769 0 0 36 1813 + task_wdt.c.o 53 4 0 0 0 1223 494 1774 +spi_flash_chip_generic.c 340 0 0 1423 0 0 0 1763 + cache_utils.c.o 4 14 0 833 0 81 430 1362 + heap_caps.c.o 4 0 0 884 0 50 362 1300 + timers.c.o 8 56 0 1007 0 0 223 1294 + esp_timer_impl_lac.c.o 8 8 0 514 0 322 389 1241 + heap_caps_init.c.o 0 4 0 0 0 834 379 1217 + soc_memory_layout.c.o 0 0 0 0 0 0 1197 1197 + periph_ctrl.c.o 8 0 0 0 0 696 488 1192 + port.c.o 0 32 0 737 0 0 340 1109 + xtensa_intr_asm.S.o 1024 0 0 51 0 0 0 1075 +bootloader_flash_config_ 0 0 0 1028 0 17 0 1045 + rtc_time.c.o 0 0 0 819 0 0 194 1013 + ringbuf.c.o 0 0 0 858 0 0 150 1008 + rtc_init.c.o 0 0 0 956 0 0 0 956 + log.c.o 8 264 0 34 0 484 147 937 + time.c.o 0 32 0 123 0 719 0 874 + esp_flash_api.c.o 0 0 0 600 0 16 244 860 + partition.c.o 0 8 0 0 0 668 181 857 + clk.c.o 0 0 0 64 0 582 208 854 + esp_timer.c.o 8 12 0 280 0 401 118 819 + memory_layout_utils.c.o 0 0 0 0 0 505 295 800 + rtc_wdt.c.o 0 0 0 796 0 0 0 796 + dport_access.c.o 8 40 0 422 0 189 126 785 + ipc.c.o 0 56 0 192 0 367 117 732 + locks.c.o 8 0 0 487 0 5 84 584 + esp_flash_spi_init.c.o 120 4 0 0 0 191 261 576 + uart_hal.c.o 0 0 0 0 0 493 0 493 + crosscore_int.c.o 8 8 0 195 0 134 146 491 + flash_qio_mode.c.o 0 0 0 0 0 490 0 490 + syscall_table.c.o 144 240 0 0 0 82 0 466 + int_wdt.c.o 0 1 0 94 0 341 0 436 + system_api_esp32.c.o 0 0 0 435 0 0 0 435 + freertos_hooks.c.o 8 128 0 47 0 243 0 426 + esp_app_desc.c.o 0 0 0 109 0 12 256 377 + lib_a-locale.o 364 0 0 0 0 0 10 374 + uart_hal_iram.c.o 0 0 0 0 0 147 222 369 + xtensa_context.S.o 0 0 0 367 0 0 0 367 + esp_ota_ops.c.o 0 4 0 0 0 147 214 365 + spi_flash_hal.c.o 0 0 0 0 0 302 48 350 + brownout.c.o 0 0 0 0 0 120 203 323 + spi_flash_chip_gd.c.o 95 0 0 181 0 0 0 276 + brownout_hal.c.o 0 0 0 0 0 269 0 269 +dport_panic_highint_hdl. 12 0 0 250 0 0 0 262 + soc_hal.c.o 24 0 0 234 0 0 0 258 + rtc_module.c.o 16 8 0 0 0 231 0 255 + memspi_host_driver.c.o 43 0 0 206 0 0 0 249 + debug_helpers.c.o 0 0 0 217 0 0 0 217 + spi_flash_chip_issi.c.o 97 0 0 101 0 0 0 198 + log_freertos.c.o 0 8 0 188 0 0 0 196 +pthread_local_storage.c. 8 4 0 0 0 183 0 195 + gpio_periph.c.o 0 0 0 0 0 0 160 160 + cache_err_int.c.o 0 0 0 56 0 98 0 154 + heap.c.o 0 0 0 151 0 0 0 151 + xtensa_intr.c.o 0 0 0 113 0 0 35 148 +spi_flash_os_func_noos.c 16 0 0 127 0 0 0 143 +spi_flash_os_func_app.c. 24 0 0 91 0 25 0 140 + list.c.o 0 0 0 138 0 0 0 138 + blink.c.o 0 0 0 0 0 72 39 111 + pthread.c.o 0 8 0 0 0 81 0 89 + bootloader_mem.c.o 0 0 0 0 0 58 20 78 + cpu_util.c.o 0 0 0 75 0 0 0 75 + lib_a-mbtowc_r.o 0 0 0 0 0 72 0 72 + flash_ops.c.o 20 4 0 14 0 29 0 67 + lib_a-localeconv.o 0 0 0 0 0 63 0 63 + reent_init.c.o 0 0 0 59 0 0 0 59 + rtc_io.c.o 0 0 0 0 0 53 0 53 + syscalls.c.o 0 0 0 0 0 50 0 50 + mpu_hal.c.o 0 0 0 0 0 47 0 47 +xtensa_vector_defaults.S 0 0 0 46 0 0 0 46 + xtensa_init.c.o 0 4 0 32 0 0 0 36 +spi_flash_chip_drivers.c 20 0 0 0 0 0 0 20 + pthread.c.o 0 0 0 0 0 12 0 12 + crtend.o 0 0 0 0 0 0 8 8 + pm_esp32.c.o 0 0 0 0 0 8 0 8 + cpu_hal.c.o 0 0 0 8 0 0 0 8 + crti.o 0 0 0 3 0 3 0 6 +cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 + cxx_guards.cpp.o 0 0 0 0 0 5 0 5 + crtbegin.o 0 0 0 0 0 0 4 4 + FreeRTOS-openocd.c.o 4 0 0 0 0 0 0 4 + crt0.o 0 0 0 0 0 0 0 0 + crtn.o 0 0 0 0 0 0 0 0 + project_elf_src.c.o 0 0 0 0 0 0 0 0 + bootloader_common.c.o 0 0 0 0 0 0 0 0 +bootloader_efuse_esp32.c 0 0 0 0 0 0 0 0 + bootloader_flash.c.o 0 0 0 0 0 0 0 0 + bootloader_random.c.o 0 0 0 0 0 0 0 0 + bootloader_sha.c.o 0 0 0 0 0 0 0 0 + bootloader_utility.c.o 0 0 0 0 0 0 0 0 + esp_image_format.c.o 0 0 0 0 0 0 0 0 + flash_partitions.c.o 0 0 0 0 0 0 0 0 + isatty.o 0 0 0 0 0 0 0 0 + lib_a-bzero.o 0 0 0 0 0 0 0 0 + lib_a-ctype_.o 0 0 0 0 0 0 0 0 + lib_a-environ.o 0 0 0 0 0 0 0 0 + lib_a-envlock.o 0 0 0 0 0 0 0 0 + lib_a-fclose.o 0 0 0 0 0 0 0 0 + lib_a-fflush.o 0 0 0 0 0 0 0 0 + lib_a-findfp.o 0 0 0 0 0 0 0 0 + lib_a-fputwc.o 0 0 0 0 0 0 0 0 + lib_a-fvwrite.o 0 0 0 0 0 0 0 0 + lib_a-fwalk.o 0 0 0 0 0 0 0 0 + lib_a-getenv_r.o 0 0 0 0 0 0 0 0 + lib_a-gettzinfo.o 0 0 0 0 0 0 0 0 + lib_a-gmtime_r.o 0 0 0 0 0 0 0 0 + lib_a-impure.o 0 0 0 0 0 0 0 0 + lib_a-iswspace.o 0 0 0 0 0 0 0 0 + lib_a-lcltime_r.o 0 0 0 0 0 0 0 0 + lib_a-makebuf.o 0 0 0 0 0 0 0 0 + lib_a-mbrtowc.o 0 0 0 0 0 0 0 0 + lib_a-memchr.o 0 0 0 0 0 0 0 0 + lib_a-memcmp.o 0 0 0 0 0 0 0 0 + lib_a-memcpy.o 0 0 0 0 0 0 0 0 + lib_a-memmove.o 0 0 0 0 0 0 0 0 + lib_a-memset.o 0 0 0 0 0 0 0 0 + lib_a-month_lengths.o 0 0 0 0 0 0 0 0 + lib_a-putc.o 0 0 0 0 0 0 0 0 + lib_a-putchar.o 0 0 0 0 0 0 0 0 + lib_a-qsort.o 0 0 0 0 0 0 0 0 + lib_a-refill.o 0 0 0 0 0 0 0 0 + lib_a-sccl.o 0 0 0 0 0 0 0 0 + lib_a-siscanf.o 0 0 0 0 0 0 0 0 + lib_a-stdio.o 0 0 0 0 0 0 0 0 + lib_a-strcmp.o 0 0 0 0 0 0 0 0 + lib_a-strcpy.o 0 0 0 0 0 0 0 0 + lib_a-strcspn.o 0 0 0 0 0 0 0 0 + lib_a-strerror_r.o 0 0 0 0 0 0 0 0 + lib_a-strlcpy.o 0 0 0 0 0 0 0 0 + lib_a-strlen.o 0 0 0 0 0 0 0 0 + lib_a-strncmp.o 0 0 0 0 0 0 0 0 + lib_a-strncpy.o 0 0 0 0 0 0 0 0 + lib_a-strstr.o 0 0 0 0 0 0 0 0 + lib_a-strtol.o 0 0 0 0 0 0 0 0 + lib_a-strtoll.o 0 0 0 0 0 0 0 0 + lib_a-strtoul.o 0 0 0 0 0 0 0 0 + lib_a-strtoull.o 0 0 0 0 0 0 0 0 + lib_a-svfiscanf.o 0 0 0 0 0 0 0 0 + lib_a-tzcalc_limits.o 0 0 0 0 0 0 0 0 + lib_a-tzlock.o 0 0 0 0 0 0 0 0 + lib_a-tzset.o 0 0 0 0 0 0 0 0 + lib_a-tzset_r.o 0 0 0 0 0 0 0 0 + lib_a-tzvars.o 0 0 0 0 0 0 0 0 + lib_a-ungetc.o 0 0 0 0 0 0 0 0 + lib_a-wbuf.o 0 0 0 0 0 0 0 0 + lib_a-wcrtomb.o 0 0 0 0 0 0 0 0 + lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 + lib_a-wsetup.o 0 0 0 0 0 0 0 0 + spi_common.c.o 0 0 0 0 0 0 0 0 + esp_efuse_api.c.o 0 0 0 0 0 0 0 0 + esp_efuse_fields.c.o 0 0 0 0 0 0 0 0 + esp_efuse_table.c.o 0 0 0 0 0 0 0 0 + esp_efuse_utility.c.o 0 0 0 0 0 0 0 0 + hw_random.c.o 0 0 0 0 0 0 0 0 + pm_locks.c.o 0 0 0 0 0 0 0 0 + system_api.c.o 0 0 0 0 0 0 0 0 + _bswapsi2.o 0 0 0 0 0 0 0 0 + esp_sha256.c.o 0 0 0 0 0 0 0 0 + sha.c.o 0 0 0 0 0 0 0 0 + gpio_hal.c.o 0 0 0 0 0 0 0 0 + rtc_io_hal.c.o 0 0 0 0 0 0 0 0 + rtc_io_periph.c.o 0 0 0 0 0 0 0 0 + spi_periph.c.o 0 0 0 0 0 0 0 0 + uart_periph.c.o 0 0 0 0 0 0 0 0 + spi_flash_rom_patch.c.o 0 0 0 0 0 0 0 0 + md5-internal.c.o 0 0 0 0 0 0 0 0 + debug_helpers_asm.S.o 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --files with app in reverse order... + MAP file: app2.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 8580 bytes 9324 -744 + DRAM .bss size: 2024 bytes 8296 -6272 +Used static DRAM: 10604 bytes ( 170132 available, 5.9% used) 17620 -7016 ( +7016 available, +0 total) +Used static IRAM: 38956 bytes ( 92116 available, 29.7% used) 38932 +24 ( -24 available, +0 total) + Flash code: 77191 bytes 146944 -69753 + Flash rodata: 22360 bytes 39580 -17220 +Total image size:~ 149111 bytes (.bin may be padded larger) 243076 -93965 +Per-file contributions to ELF file: + Object File DRAM .data DRAM .bss DRAM other IRAM D/IRAM Flash code Flash rodata Total + | | |-| | |-| | |-| | |-| | |-| | |-| | |-| | |- + ----------------------- ----------------------- ----------------------- ----------------------- + lib_a-vfprintf.o| | | | | | | | | | | | | | | | 13681| 14193| -512| 752| 756| -4| 14433| 14949| -516 + lib_a-svfprintf.o| | | | | | | | | | | | | | | | 13290| 13834| -544| 752| 756| -4| 14042| 14590| -548 + lib_a-svfiprintf.o| | | | | | | | | | | | | | | | 9623| 9642| -19| 1206| 1210| -4| 10829| 10852| -23 + lib_a-vfiprintf.o| | | | | | | | | | | | | | | | 9933| 9933| | 734| 738| -4| 10667| 10671| -4 + lib_a-dtoa.o| | | | | | | | | | | | | | | | 3524| 3522| +2| 13| 13| | 3537| 3535| +2 + lib_a-mprec.o| | | | | | | | | | | | | | | | 2140| 2134| +6| 296| 296| | 2436| 2430| +6 + lib_a-fseeko.o| | | | | | | | | | | | | | | | 918| 862| +56| | | | 918| 862| +56 + windowspill_asm.o| | | | | | | | | | 315| 311| +4| | | | | | | | | | 315| 311| +4 + lib_a-puts.o| | | | | | | | | | | | | | | | 234| 182| +52| 60| 60| | 294| 242| +52 + lib_a-fopen.o| | | | | | | | | | | | | | | | 244| 228| +16| | | | 244| 228| +16 + lib_a-reent.o| | | | | | | | | | | | | | | | 236| 232| +4| | | | 236| 232| +4 + lib_a-snprintf.o| | | | | | | | | | | | | | | | 217| | +217| | | | 217| | +217 + lib_a-assert.o| | | | | | | | | | | | | | | | 68| 68| | 60| 60| | 128| 128| + lib_a-flags.o| | | | | | | | | | | | | | | | 128| 127| +1| | | | 128| 127| +1 + lib_a-s_frexp.o| | | | | | | | | | | | | | | | 100| 110| -10| | | | 100| 110| -10 + lib_a-vprintf.o| | | | | | | | | | | | | | | | 94| 94| | | | | 94| 94| + lib_a-fiprintf.o| | | | | | | | | | | | | | | | 84| 84| | | | | 84| 84| +state_asm--restore_extra| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| +state_asm--save_extra_nw| | | | | | | | | | 62| 62| | | | | | | | | | | 62| 62| + lib_a-fseek.o| | | | | | | | | | | | | | | | 45| 45| | | | | 45| 45| + _divdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _moddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _udivdi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + _umoddi3.o| | | | | | | | | | | | | | | | | | | 40| 40| | 40| 40| + interrupts--intlevel.o| | | | | | | | | | | | | | | | | | | 32| 32| | 32| 32| + lib_a-errno.o| | | | | | | | | | | | | | | | 10| 10| | | | | 10| 10| + int_asm--set_intclear.o| | | | | | | | | | 8| 8| | | | | | | | | | | 8| 8| + lib_a-fputs.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-printf.o| | | | | | | | | | | | | | | | | 116| -116| | | | | 116| -116 + lib_a-strerror.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-sysgettod.o| | | | | | | | | | | | | | | | | | | | | | | | + lib_a-u_strerr.o| | | | | | | | | | | | | | | | | | | | | | | | + _addsubdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _cmpdf2.o| | | | | | | | | | | | | | | | | | | | | | | | + _divdf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _fixdfsi.o| | | | | | | | | | | | | | | | | | | | | | | | + _floatsidf.o| | | | | | | | | | | | | | | | | | | | | | | | + _muldf3.o| | | | | | | | | | | | | | | | | | | | | | | | + _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | +The following entries are present in only: + Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + tasks.c.o 12 700 0 5737 0 0 663 7112 + esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 + vfs_uart.c.o 116 8 0 0 0 3758 783 4665 + panic.c.o 2029 5 0 2223 0 0 0 4257 + portasm.S.o 3084 0 0 476 0 0 0 3560 + intr_alloc.c.o 8 22 0 656 0 1681 704 3071 + queue.c.o 0 0 0 2411 0 0 424 2835 + uart.c.o 56 12 0 0 0 2099 452 2619 + multi_heap.c.o 300 0 0 2245 0 0 0 2545 + cpu_start.c.o 0 1 0 1067 0 255 1073 2396 + rtc_clk.c.o 160 4 0 2104 0 0 0 2268 + vfs.c.o 192 40 0 0 0 1892 132 2256 + gpio.c.o 32 0 0 0 0 1193 970 2195 + flash_mmap.c.o 0 264 0 1320 0 125 296 2005 + spi_flash_hal_iram.c.o 24 0 0 1798 0 0 0 1822 + xtensa_vectors.S.o 8 0 0 1769 0 0 36 1813 + task_wdt.c.o 53 4 0 0 0 1223 494 1774 +spi_flash_chip_generic.c 340 0 0 1423 0 0 0 1763 + cache_utils.c.o 4 14 0 833 0 81 430 1362 + heap_caps.c.o 4 0 0 884 0 50 362 1300 + timers.c.o 8 56 0 1007 0 0 223 1294 + esp_timer_impl_lac.c.o 8 8 0 514 0 322 389 1241 + heap_caps_init.c.o 0 4 0 0 0 834 379 1217 + soc_memory_layout.c.o 0 0 0 0 0 0 1197 1197 + periph_ctrl.c.o 8 0 0 0 0 696 488 1192 + port.c.o 0 32 0 737 0 0 340 1109 + xtensa_intr_asm.S.o 1024 0 0 51 0 0 0 1075 +bootloader_flash_config_ 0 0 0 1028 0 17 0 1045 + rtc_time.c.o 0 0 0 819 0 0 194 1013 + ringbuf.c.o 0 0 0 858 0 0 150 1008 + rtc_init.c.o 0 0 0 956 0 0 0 956 + log.c.o 8 264 0 34 0 484 147 937 + time.c.o 0 32 0 123 0 719 0 874 + esp_flash_api.c.o 0 0 0 600 0 16 244 860 + partition.c.o 0 8 0 0 0 668 181 857 + clk.c.o 0 0 0 64 0 582 208 854 + esp_timer.c.o 8 12 0 280 0 401 118 819 + memory_layout_utils.c.o 0 0 0 0 0 505 295 800 + rtc_wdt.c.o 0 0 0 796 0 0 0 796 + dport_access.c.o 8 40 0 422 0 189 126 785 + ipc.c.o 0 56 0 192 0 367 117 732 + locks.c.o 8 0 0 487 0 5 84 584 + esp_flash_spi_init.c.o 120 4 0 0 0 191 261 576 + uart_hal.c.o 0 0 0 0 0 493 0 493 + crosscore_int.c.o 8 8 0 195 0 134 146 491 + flash_qio_mode.c.o 0 0 0 0 0 490 0 490 + syscall_table.c.o 144 240 0 0 0 82 0 466 + int_wdt.c.o 0 1 0 94 0 341 0 436 + system_api_esp32.c.o 0 0 0 435 0 0 0 435 + freertos_hooks.c.o 8 128 0 47 0 243 0 426 + esp_app_desc.c.o 0 0 0 109 0 12 256 377 + lib_a-locale.o 364 0 0 0 0 0 10 374 + uart_hal_iram.c.o 0 0 0 0 0 147 222 369 + xtensa_context.S.o 0 0 0 367 0 0 0 367 + esp_ota_ops.c.o 0 4 0 0 0 147 214 365 + spi_flash_hal.c.o 0 0 0 0 0 302 48 350 + brownout.c.o 0 0 0 0 0 120 203 323 + spi_flash_chip_gd.c.o 95 0 0 181 0 0 0 276 + brownout_hal.c.o 0 0 0 0 0 269 0 269 +dport_panic_highint_hdl. 12 0 0 250 0 0 0 262 + soc_hal.c.o 24 0 0 234 0 0 0 258 + rtc_module.c.o 16 8 0 0 0 231 0 255 + memspi_host_driver.c.o 43 0 0 206 0 0 0 249 + debug_helpers.c.o 0 0 0 217 0 0 0 217 + spi_flash_chip_issi.c.o 97 0 0 101 0 0 0 198 + log_freertos.c.o 0 8 0 188 0 0 0 196 +pthread_local_storage.c. 8 4 0 0 0 183 0 195 + gpio_periph.c.o 0 0 0 0 0 0 160 160 + cache_err_int.c.o 0 0 0 56 0 98 0 154 + heap.c.o 0 0 0 151 0 0 0 151 + xtensa_intr.c.o 0 0 0 113 0 0 35 148 +spi_flash_os_func_noos.c 16 0 0 127 0 0 0 143 +spi_flash_os_func_app.c. 24 0 0 91 0 25 0 140 + list.c.o 0 0 0 138 0 0 0 138 + blink.c.o 0 0 0 0 0 72 39 111 + pthread.c.o 0 8 0 0 0 81 0 89 + bootloader_mem.c.o 0 0 0 0 0 58 20 78 + cpu_util.c.o 0 0 0 75 0 0 0 75 + lib_a-mbtowc_r.o 0 0 0 0 0 72 0 72 + flash_ops.c.o 20 4 0 14 0 29 0 67 + lib_a-localeconv.o 0 0 0 0 0 63 0 63 + reent_init.c.o 0 0 0 59 0 0 0 59 + rtc_io.c.o 0 0 0 0 0 53 0 53 + syscalls.c.o 0 0 0 0 0 50 0 50 + mpu_hal.c.o 0 0 0 0 0 47 0 47 +xtensa_vector_defaults.S 0 0 0 46 0 0 0 46 + xtensa_init.c.o 0 4 0 32 0 0 0 36 +spi_flash_chip_drivers.c 20 0 0 0 0 0 0 20 + pthread.c.o 0 0 0 0 0 12 0 12 + crtend.o 0 0 0 0 0 0 8 8 + pm_esp32.c.o 0 0 0 0 0 8 0 8 + cpu_hal.c.o 0 0 0 8 0 0 0 8 + crti.o 0 0 0 3 0 3 0 6 +cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 + cxx_guards.cpp.o 0 0 0 0 0 5 0 5 + crtbegin.o 0 0 0 0 0 0 4 4 + FreeRTOS-openocd.c.o 4 0 0 0 0 0 0 4 + crt0.o 0 0 0 0 0 0 0 0 + crtn.o 0 0 0 0 0 0 0 0 + project_elf_src.c.o 0 0 0 0 0 0 0 0 + bootloader_common.c.o 0 0 0 0 0 0 0 0 +bootloader_efuse_esp32.c 0 0 0 0 0 0 0 0 + bootloader_flash.c.o 0 0 0 0 0 0 0 0 + bootloader_random.c.o 0 0 0 0 0 0 0 0 + bootloader_sha.c.o 0 0 0 0 0 0 0 0 + bootloader_utility.c.o 0 0 0 0 0 0 0 0 + esp_image_format.c.o 0 0 0 0 0 0 0 0 + flash_partitions.c.o 0 0 0 0 0 0 0 0 + isatty.o 0 0 0 0 0 0 0 0 + lib_a-bzero.o 0 0 0 0 0 0 0 0 + lib_a-ctype_.o 0 0 0 0 0 0 0 0 + lib_a-environ.o 0 0 0 0 0 0 0 0 + lib_a-envlock.o 0 0 0 0 0 0 0 0 + lib_a-fclose.o 0 0 0 0 0 0 0 0 + lib_a-fflush.o 0 0 0 0 0 0 0 0 + lib_a-findfp.o 0 0 0 0 0 0 0 0 + lib_a-fputwc.o 0 0 0 0 0 0 0 0 + lib_a-fvwrite.o 0 0 0 0 0 0 0 0 + lib_a-fwalk.o 0 0 0 0 0 0 0 0 + lib_a-getenv_r.o 0 0 0 0 0 0 0 0 + lib_a-gettzinfo.o 0 0 0 0 0 0 0 0 + lib_a-gmtime_r.o 0 0 0 0 0 0 0 0 + lib_a-impure.o 0 0 0 0 0 0 0 0 + lib_a-iswspace.o 0 0 0 0 0 0 0 0 + lib_a-lcltime_r.o 0 0 0 0 0 0 0 0 + lib_a-makebuf.o 0 0 0 0 0 0 0 0 + lib_a-mbrtowc.o 0 0 0 0 0 0 0 0 + lib_a-memchr.o 0 0 0 0 0 0 0 0 + lib_a-memcmp.o 0 0 0 0 0 0 0 0 + lib_a-memcpy.o 0 0 0 0 0 0 0 0 + lib_a-memmove.o 0 0 0 0 0 0 0 0 + lib_a-memset.o 0 0 0 0 0 0 0 0 + lib_a-month_lengths.o 0 0 0 0 0 0 0 0 + lib_a-putc.o 0 0 0 0 0 0 0 0 + lib_a-putchar.o 0 0 0 0 0 0 0 0 + lib_a-qsort.o 0 0 0 0 0 0 0 0 + lib_a-refill.o 0 0 0 0 0 0 0 0 + lib_a-sccl.o 0 0 0 0 0 0 0 0 + lib_a-siscanf.o 0 0 0 0 0 0 0 0 + lib_a-stdio.o 0 0 0 0 0 0 0 0 + lib_a-strcmp.o 0 0 0 0 0 0 0 0 + lib_a-strcpy.o 0 0 0 0 0 0 0 0 + lib_a-strcspn.o 0 0 0 0 0 0 0 0 + lib_a-strerror_r.o 0 0 0 0 0 0 0 0 + lib_a-strlcpy.o 0 0 0 0 0 0 0 0 + lib_a-strlen.o 0 0 0 0 0 0 0 0 + lib_a-strncmp.o 0 0 0 0 0 0 0 0 + lib_a-strncpy.o 0 0 0 0 0 0 0 0 + lib_a-strstr.o 0 0 0 0 0 0 0 0 + lib_a-strtol.o 0 0 0 0 0 0 0 0 + lib_a-strtoll.o 0 0 0 0 0 0 0 0 + lib_a-strtoul.o 0 0 0 0 0 0 0 0 + lib_a-strtoull.o 0 0 0 0 0 0 0 0 + lib_a-svfiscanf.o 0 0 0 0 0 0 0 0 + lib_a-tzcalc_limits.o 0 0 0 0 0 0 0 0 + lib_a-tzlock.o 0 0 0 0 0 0 0 0 + lib_a-tzset.o 0 0 0 0 0 0 0 0 + lib_a-tzset_r.o 0 0 0 0 0 0 0 0 + lib_a-tzvars.o 0 0 0 0 0 0 0 0 + lib_a-ungetc.o 0 0 0 0 0 0 0 0 + lib_a-wbuf.o 0 0 0 0 0 0 0 0 + lib_a-wcrtomb.o 0 0 0 0 0 0 0 0 + lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 + lib_a-wsetup.o 0 0 0 0 0 0 0 0 + spi_common.c.o 0 0 0 0 0 0 0 0 + esp_efuse_api.c.o 0 0 0 0 0 0 0 0 + esp_efuse_fields.c.o 0 0 0 0 0 0 0 0 + esp_efuse_table.c.o 0 0 0 0 0 0 0 0 + esp_efuse_utility.c.o 0 0 0 0 0 0 0 0 + hw_random.c.o 0 0 0 0 0 0 0 0 + pm_locks.c.o 0 0 0 0 0 0 0 0 + system_api.c.o 0 0 0 0 0 0 0 0 + _bswapsi2.o 0 0 0 0 0 0 0 0 + esp_sha256.c.o 0 0 0 0 0 0 0 0 + sha.c.o 0 0 0 0 0 0 0 0 + gpio_hal.c.o 0 0 0 0 0 0 0 0 + rtc_io_hal.c.o 0 0 0 0 0 0 0 0 + rtc_io_periph.c.o 0 0 0 0 0 0 0 0 + spi_periph.c.o 0 0 0 0 0 0 0 0 + uart_periph.c.o 0 0 0 0 0 0 0 0 + spi_flash_rom_patch.c.o 0 0 0 0 0 0 0 0 + md5-internal.c.o 0 0 0 0 0 0 0 0 + debug_helpers_asm.S.o 0 0 0 0 0 0 0 0 +The following entries are present in only: + Object File DRAM .data & .bss & other IRAM D/IRAM Flash code & rodata Total + nd6.o 8 1027 0 0 0 8427 136 9598 + tcp_in.o 0 54 0 0 0 8127 916 9097 + tasks.o 20 700 0 5667 0 0 503 6890 + tcp_out.o 0 0 0 0 0 5060 1124 6184 + sockets.o 0 728 0 0 0 4627 824 6179 + tcp.o 4 23 0 0 0 4290 1384 5701 + api_msg.o 0 0 0 0 0 3763 1366 5129 + dhcp.o 0 8 0 0 0 3456 1401 4865 + panic.o 2579 5 0 2145 0 0 0 4729 + esp_err_to_name.o 0 0 0 0 0 50 4091 4141 + unwind-dw2-fde.o 4 20 0 0 0 3316 404 3744 + pbuf.o 0 1 0 0 0 2453 1161 3615 + portasm.o 3084 0 0 480 0 0 0 3564 + etharp.o 0 241 0 0 0 2618 658 3517 + ip6.o 0 0 0 0 0 3212 124 3336 + dns.o 0 1292 0 0 0 1809 206 3307 + spi_flash_rom_patch.o 0 0 0 2518 0 0 766 3284 + udp.o 2 4 0 0 0 3020 216 3242 + intr_alloc.o 8 22 0 726 0 1749 710 3215 + multi_heap.o 857 0 0 2217 0 0 0 3074 + queue.o 8 56 0 2569 0 0 369 3002 + flash_ops.o 32 41 0 2352 0 99 0 2524 + unwind-dw2-xtensa.o 0 0 0 0 0 2172 324 2496 + rtc_clk.o 660 8 0 1794 0 0 0 2462 + vfs.o 192 40 0 0 0 1995 132 2359 + ip6_frag.o 0 6 0 0 0 1905 442 2353 + api_lib.o 0 0 0 0 0 1425 919 2344 + igmp.o 0 12 0 0 0 1604 707 2323 + dbg_stubs.o 0 2072 0 32 0 100 0 2204 + vfs_uart.o 40 63 0 0 0 1775 271 2149 + unity_platform.o 0 13 0 0 0 1511 600 2124 + esp_timer_esp32.o 8 26 0 1295 0 254 526 2109 + rtc_periph.o 0 0 0 0 0 0 2080 2080 + flash_mmap.o 0 296 0 1298 0 124 327 2045 + heap_caps.o 4 0 0 1195 0 188 593 1980 + eh_personality.o 0 0 0 0 0 1561 384 1945 + ip4.o 0 6 0 0 0 1664 139 1809 + netif.o 0 241 0 0 0 1239 287 1767 + xtensa_vectors.o 8 0 0 1697 0 0 36 1741 + cpu_start.o 0 1 0 806 0 277 486 1570 + clk.o 0 0 0 67 0 581 893 1541 + timers.o 8 56 0 1149 0 0 233 1446 + sys_arch.o 0 8 0 0 0 1216 222 1446 + multi_heap_poisoning.o 470 0 0 964 0 0 0 1434 + heap_caps_init.o 0 4 0 0 0 1030 387 1421 + mld6.o 0 4 0 0 0 1334 0 1338 + cache_utils.o 4 14 0 836 0 81 390 1325 + raw.o 0 4 0 0 0 1087 223 1314 + esp_timer.o 8 20 0 702 0 429 142 1301 + log.o 8 268 0 456 0 396 166 1294 + system_api.o 0 8 0 589 0 0 662 1259 + soc_memory_layout.o 0 0 0 0 0 0 1239 1239 + icmp.o 0 0 0 0 0 769 371 1140 + xtensa_intr_asm.o 1024 0 0 51 0 0 0 1075 + port.o 0 16 0 617 0 0 369 1002 + pthread.o 8 8 0 174 0 298 512 1000 + icmp6.o 0 0 0 0 0 863 127 990 + rtc_init.o 0 0 0 980 0 0 0 980 + unity.o 0 108 0 0 0 767 90 965 + rtc_time.o 0 0 0 803 0 0 137 940 + dport_access.o 8 40 0 539 0 189 129 905 + time.o 0 32 0 139 0 691 0 862 + tcpip.o 0 16 0 0 0 644 191 851 + esp_ota_ops.o 0 0 0 0 0 123 717 840 + periph_ctrl.o 8 0 0 0 0 520 256 784 + timers.o 0 12 0 0 0 638 131 781 + partition.o 0 8 0 0 0 582 141 731 + locks.o 8 0 0 552 0 0 84 644 + ipc.o 0 36 0 159 0 329 104 628 + tcpip_adapter_lwip.o 0 81 0 0 0 180 359 620 + pthread_local_storage.o 8 4 0 0 0 476 126 614 + inet_chksum.o 0 0 0 0 0 580 0 580 + crosscore_int.o 8 8 0 204 0 126 148 494 + netbuf.o 0 0 0 0 0 154 326 480 + vfs_lwip.o 0 0 0 0 0 307 155 462 + syscall_table.o 144 240 0 0 0 67 0 451 + timer.o 16 0 0 0 0 112 281 409 + int_wdt.o 0 1 0 87 0 301 0 389 + eh_globals.o 0 16 0 0 0 149 193 358 + brownout.o 0 0 0 0 0 145 191 336 + freertos_hooks.o 8 128 0 43 0 137 0 316 + cpu_util.o 0 0 0 310 0 0 0 310 + rtc_module.o 8 8 0 0 0 291 0 307 + xtensa_context.o 0 0 0 299 0 0 0 299 + eh_terminate.o 0 0 0 0 0 117 141 258 + ethernet.o 0 0 0 0 0 244 12 256 +dport_panic_highint_hdl. 8 0 0 234 0 0 0 242 + dhcpserver.o 0 4 0 0 0 203 0 207 + test_utils.o 0 0 0 0 0 38 140 178 + lib_a-sprintf.o 0 0 0 0 0 167 0 167 + cache_err_int.o 0 0 0 56 0 98 0 154 + list.o 0 0 0 142 0 0 0 142 + xtensa_intr.o 0 0 0 104 0 0 35 139 + syscalls.o 0 0 0 94 0 45 0 139 + si_class_type_info.o 0 0 0 0 0 0 136 136 + ip4_addr.o 0 0 0 0 0 72 40 112 + class_type_info.o 0 0 0 0 0 0 112 112 + ip.o 0 60 0 0 0 50 0 110 + memp.o 0 0 0 0 0 0 108 108 + lib2funcs.o 0 0 0 104 0 0 0 104 + lib_a-s_fpclassify.o 0 0 0 92 0 0 0 92 + def.o 0 0 0 0 0 91 0 91 + hw_random.o 0 4 0 74 0 0 0 78 + stack_check.o 0 4 0 0 0 32 42 78 + clock.o 0 0 0 72 0 0 0 72 + reent_init.o 0 0 0 68 0 0 2 70 + app_main.o 0 0 0 0 0 53 10 63 + uart.o 8 12 0 0 0 38 0 58 + new_opv.o 0 0 0 0 0 0 56 56 +xtensa_vector_defaults.o 0 0 0 46 0 0 0 46 + new_op.o 0 0 0 0 0 0 40 40 + xtensa_init.o 0 4 0 32 0 0 0 36 + init.o 0 0 0 0 0 27 0 27 + wifi_init.o 0 0 0 0 0 17 9 26 + ip6_addr.o 0 0 0 0 0 0 20 20 + eri.o 0 0 0 8 0 0 0 8 + cxx_exception_stubs.o 0 0 0 0 0 6 0 6 + cxx_guards.o 0 0 0 0 0 5 0 5 + FreeRTOS-openocd.o 4 0 0 0 0 0 0 4 + eh_term_handler.o 4 0 0 0 0 0 0 4 + eh_unex_handler.o 4 0 0 0 0 0 0 4 + bootloader_flash.o 0 0 0 0 0 0 0 0 + bootloader_sha.o 0 0 0 0 0 0 0 0 + esp_image_format.o 0 0 0 0 0 0 0 0 + lib_a-vsnprintf.o 0 0 0 0 0 0 0 0 + lib_a-xpg_strerror_r.o 0 0 0 0 0 0 0 0 + coexist_api.o 0 0 0 0 0 0 0 0 + coexist_arbit.o 0 0 0 0 0 0 0 0 + coexist_core.o 0 0 0 0 0 0 0 0 + coexist_dbg.o 0 0 0 0 0 0 0 0 + coexist_hw.o 0 0 0 0 0 0 0 0 + coexist_param.o 0 0 0 0 0 0 0 0 + coexist_timer.o 0 0 0 0 0 0 0 0 + misc_nvs.o 0 0 0 0 0 0 0 0 + gpio.o 0 0 0 0 0 0 0 0 + ets_timer_legacy.o 0 0 0 0 0 0 0 0 +event_default_handlers.o 0 0 0 0 0 0 0 0 + event_loop.o 0 0 0 0 0 0 0 0 + lib_printf.o 0 0 0 0 0 0 0 0 + phy_init.o 0 0 0 0 0 0 0 0 + sha.o 0 0 0 0 0 0 0 0 + wifi_os_adapter.o 0 0 0 0 0 0 0 0 + emac_dev.o 0 0 0 0 0 0 0 0 + emac_main.o 0 0 0 0 0 0 0 0 + event_groups.o 0 0 0 0 0 0 0 0 + ringbuf.o 0 0 0 0 0 0 0 0 + _divsf3.o 0 0 0 0 0 0 0 0 + _extendsfdf2.o 0 0 0 0 0 0 0 0 + _floatdidf.o 0 0 0 0 0 0 0 0 + _floatdisf.o 0 0 0 0 0 0 0 0 + ethernetif.o 0 0 0 0 0 0 0 0 + ethip6.o 0 0 0 0 0 0 0 0 + wlanif.o 0 0 0 0 0 0 0 0 + esp_sha256.o 0 0 0 0 0 0 0 0 + mesh.o 0 0 0 0 0 0 0 0 + mesh_common.o 0 0 0 0 0 0 0 0 + mesh_config.o 0 0 0 0 0 0 0 0 + mesh_main.o 0 0 0 0 0 0 0 0 + mesh_parent.o 0 0 0 0 0 0 0 0 + mesh_route.o 0 0 0 0 0 0 0 0 + mesh_schedule.o 0 0 0 0 0 0 0 0 + mesh_timer.o 0 0 0 0 0 0 0 0 + mesh_utilities.o 0 0 0 0 0 0 0 0 + mesh_wifi.o 0 0 0 0 0 0 0 0 + ieee80211.o 0 0 0 0 0 0 0 0 + ieee80211_action.o 0 0 0 0 0 0 0 0 +ieee80211_action_vendor. 0 0 0 0 0 0 0 0 + ieee80211_api.o 0 0 0 0 0 0 0 0 + ieee80211_crypto.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_ccmp.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_tkip.o 0 0 0 0 0 0 0 0 + ieee80211_crypto_wep.o 0 0 0 0 0 0 0 0 + ieee80211_debug.o 0 0 0 0 0 0 0 0 + ieee80211_ets.o 0 0 0 0 0 0 0 0 + ieee80211_hostap.o 0 0 0 0 0 0 0 0 + ieee80211_ht.o 0 0 0 0 0 0 0 0 + ieee80211_ie_vendor.o 0 0 0 0 0 0 0 0 + ieee80211_input.o 0 0 0 0 0 0 0 0 + ieee80211_ioctl.o 0 0 0 0 0 0 0 0 + ieee80211_mesh_quick.o 0 0 0 0 0 0 0 0 + ieee80211_misc.o 0 0 0 0 0 0 0 0 + ieee80211_nvs.o 0 0 0 0 0 0 0 0 + ieee80211_output.o 0 0 0 0 0 0 0 0 + ieee80211_phy.o 0 0 0 0 0 0 0 0 + ieee80211_power.o 0 0 0 0 0 0 0 0 + ieee80211_proto.o 0 0 0 0 0 0 0 0 + ieee80211_regdomain.o 0 0 0 0 0 0 0 0 + ieee80211_rfid.o 0 0 0 0 0 0 0 0 + ieee80211_scan.o 0 0 0 0 0 0 0 0 + ieee80211_sta.o 0 0 0 0 0 0 0 0 + ieee80211_timer.o 0 0 0 0 0 0 0 0 + wl_chm.o 0 0 0 0 0 0 0 0 + wl_cnx.o 0 0 0 0 0 0 0 0 + nvs_api.o 0 0 0 0 0 0 0 0 + nvs_item_hash_list.o 0 0 0 0 0 0 0 0 + nvs_page.o 0 0 0 0 0 0 0 0 + nvs_pagemanager.o 0 0 0 0 0 0 0 0 + nvs_storage.o 0 0 0 0 0 0 0 0 + nvs_types.o 0 0 0 0 0 0 0 0 + phy.o 0 0 0 0 0 0 0 0 + phy_chip_v7.o 0 0 0 0 0 0 0 0 + phy_chip_v7_ana.o 0 0 0 0 0 0 0 0 + phy_chip_v7_cal.o 0 0 0 0 0 0 0 0 + esf_buf.o 0 0 0 0 0 0 0 0 + if_hwctrl.o 0 0 0 0 0 0 0 0 + lmac.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + pm_for_bcn_only_mode.o 0 0 0 0 0 0 0 0 + pp.o 0 0 0 0 0 0 0 0 + pp_debug.o 0 0 0 0 0 0 0 0 + pp_timer.o 0 0 0 0 0 0 0 0 + rate_control.o 0 0 0 0 0 0 0 0 + trc.o 0 0 0 0 0 0 0 0 + wdev.o 0 0 0 0 0 0 0 0 + bt_bb.o 0 0 0 0 0 0 0 0 + pm.o 0 0 0 0 0 0 0 0 + rtc.o 0 0 0 0 0 0 0 0 + rtc_analog.o 0 0 0 0 0 0 0 0 + smartconfig_ack.o 0 0 0 0 0 0 0 0 + gpio_periph.o 0 0 0 0 0 0 0 0 + rtc_sleep.o 0 0 0 0 0 0 0 0 + bad_alloc.o 0 0 0 0 0 0 0 0 + del_op.o 0 0 0 0 0 0 0 0 + del_opv.o 0 0 0 0 0 0 0 0 + eh_exception.o 0 0 0 0 0 0 0 0 + new_handler.o 0 0 0 0 0 0 0 0 + pure.o 0 0 0 0 0 0 0 0 + tinfo.o 0 0 0 0 0 0 0 0 + ap_config.o 0 0 0 0 0 0 0 0 + common.o 0 0 0 0 0 0 0 0 + wpa.o 0 0 0 0 0 0 0 0 + wpa_auth.o 0 0 0 0 0 0 0 0 + wpa_auth_ie.o 0 0 0 0 0 0 0 0 + wpa_common.o 0 0 0 0 0 0 0 0 + wpa_debug.o 0 0 0 0 0 0 0 0 + wpa_ie.o 0 0 0 0 0 0 0 0 + wpa_main.o 0 0 0 0 0 0 0 0 + wpabuf.o 0 0 0 0 0 0 0 0 + wpas_glue.o 0 0 0 0 0 0 0 0 + wpa2_internal.o 0 0 0 0 0 0 0 0 + os_xtensa.o 0 0 0 0 0 0 0 0 + wps_internal.o 0 0 0 0 0 0 0 0 + +*** +Running idf_size.py diff --archive_details with bootloader... + MAP file: app.map + MAP file: bootloader.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 4 +9320 + DRAM .bss size: 8296 bytes 48 +8248 + DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) + Flash code: 146944 bytes 0 +146944 + Flash rodata: 39580 bytes 0 +39580 +Total image size:~ 243076 bytes (.bin may be padded larger) 11657 +231419 +Symbols within the archive: libdriver.a (Not all symbols may be reported) + +.dram0.bss - + p_uart_obj 12 0 +12 + s_rtc_isr_handle 4 0 +4 + s_rtc_isr_handler_list 4 0 +4 +Section total: 20 0 +20 + +.dram0.data - + periph_spinlock 8 0 +8 + s_rtc_isr_handler_list_lock 8 0 +8 + timer_spinlock 16 0 +16 + uart_selectlock 8 0 +8 +Section total: 40 0 +40 + +.flash.rodata - + TG 8 0 +8 + __FUNCTION__$5441 24 0 +24 + get_clk_en_mask 128 0 +128 + get_rst_en_mask 128 0 +128 + str1.4 249 0 +249 +Section total: 537 0 +537 + +.flash.text - + get_clk_en_mask 211 0 +211 + get_clk_en_reg 21 0 +21 + get_rst_en_mask 157 0 +157 + get_rst_en_reg 25 0 +25 + is_wifi_clk_peripheral 28 0 +28 + periph_module_enable 78 0 +78 + rtc_gpio_force_hold_dis_all 65 0 +65 + rtc_isr 86 0 +86 + rtc_isr_ensure_installed 75 0 +75 + rtc_isr_register 65 0 +65 + timer_group_intr_enable 112 0 +112 + uart_get_selectlock 12 0 +12 + uart_set_select_notif_callback 26 0 +26 +Section total: 961 0 +961 + +.iram0.text - +Section total: 0 0 + +.iram0.vectors - +Section total: 0 0 + +.noinit - +Section total: 0 0 + +*** +Running idf_size.py diff --archive_details with bootloader... + MAP file: app.map + MAP file: bootloader.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 4 +9320 + DRAM .bss size: 8296 bytes 48 +8248 + DRAM other size: 0 bytes (.noinit) 7160 -7160 (+.noinit, -.dram0.rodata) +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 7212 +10408 (+104792 available, +115200 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 4445 +34487 ( -695 available, +33792 total) + Flash code: 146944 bytes 0 +146944 + Flash rodata: 39580 bytes 0 +39580 +Total image size:~ 243076 bytes (.bin may be padded larger) 11657 +231419 +Symbols within the archive: libc.a (Not all symbols may be reported) + +.dram0.bss - +Section total: 0 0 + +.dram0.data - +Section total: 0 0 + +.flash.rodata - + .rodata 3584 0 +3584 + str1.1 305 0 +305 +Section total: 3889 0 +3889 + +.flash.text - + .literal 548 0 +548 + .text 55035 0 +55035 +Section total: 55583 0 +55583 + +.iram0.text - +Section total: 0 0 + +.iram0.vectors - +Section total: 0 0 + +.noinit - +Section total: 0 0 + +*** +Running idf_size.py diff --archive_details with itself... + MAP file: app.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 9324 + DRAM .bss size: 8296 bytes 8296 +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 17620 ( +0 available, +0 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38932 ( +0 available, +0 total) + Flash code: 146944 bytes 146944 + Flash rodata: 39580 bytes 39580 +Total image size:~ 243076 bytes (.bin may be padded larger) 243076 +Symbols within the archive: libdriver.a (Not all symbols may be reported) + +.dram0.bss - + p_uart_obj 12 12 + s_rtc_isr_handle 4 4 + s_rtc_isr_handler_list 4 4 +Section total: 20 20 + +.dram0.data - + periph_spinlock 8 8 + s_rtc_isr_handler_list_lock 8 8 + timer_spinlock 16 16 + uart_selectlock 8 8 +Section total: 40 40 + +.flash.rodata - + TG 8 8 + __FUNCTION__$5441 24 24 + get_clk_en_mask 128 128 + get_rst_en_mask 128 128 + str1.4 249 249 +Section total: 537 537 + +.flash.text - + get_clk_en_mask 211 211 + get_clk_en_reg 21 21 + get_rst_en_mask 157 157 + get_rst_en_reg 25 25 + is_wifi_clk_peripheral 28 28 + periph_module_enable 78 78 + rtc_gpio_force_hold_dis_all 65 65 + rtc_isr 86 86 + rtc_isr_ensure_installed 75 75 + rtc_isr_register 65 65 + timer_group_intr_enable 112 112 + uart_get_selectlock 12 12 + uart_set_select_notif_callback 26 26 +Section total: 961 961 + +.iram0.text - +Section total: 0 0 + +.iram0.vectors - +Section total: 0 0 + +.noinit - +Section total: 0 0 + +*** +Running idf_size.py diff --archive_details with another app... + MAP file: app.map + MAP file: app2.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 8580 +744 + DRAM .bss size: 8296 bytes 2024 +6272 +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) + Flash code: 146944 bytes 77191 +69753 + Flash rodata: 39580 bytes 22360 +17220 +Total image size:~ 243076 bytes (.bin may be padded larger) 149111 +93965 +Symbols within the archive: libdriver.a (Not all symbols may be reported) + +.dram0.bss - + p_uart_obj 12 12 + s_rtc_isr_handle 4 4 + s_rtc_isr_handler_list 4 4 +Section total: 20 20 + +.dram0.data - + _gpio_hal 0 8 -8 + gpio_context 0 24 -24 + periph_spinlock 8 8 + rtc_spinlock 0 8 -8 + s_rtc_isr_handler_list_lock 8 8 + timer_spinlock 16 0 +16 + uart_context 0 48 -48 + uart_selectlock 8 8 +Section total: 40 112 -72 + +.flash.rodata - + TG 8 0 +8 + __FUNCTION__$5441 24 0 +24 + __FUNCTION__$6237 0 19 -19 + __FUNCTION__$6241 0 18 -18 + __FUNCTION__$6245 0 20 -20 + __FUNCTION__$6249 0 19 -19 + __FUNCTION__$6253 0 16 -16 + __FUNCTION__$6257 0 15 -15 + __FUNCTION__$6262 0 15 -15 + __FUNCTION__$6282 0 19 -19 + __FUNCTION__$6912 0 21 -21 + __FUNCTION__$6917 0 21 -21 + __FUNCTION__$6922 0 19 -19 + __FUNCTION__$6927 0 19 -19 + __FUNCTION__$6932 0 16 -16 + __FUNCTION__$6937 0 16 -16 + __FUNCTION__$6942 0 18 -18 + __FUNCTION__$6948 0 18 -18 + __FUNCTION__$6982 0 22 -22 + __FUNCTION__$6987 0 23 -23 + __FUNCTION__$7173 0 18 -18 + __FUNCTION__$7238 0 27 -27 + __FUNCTION__$7244 0 17 -17 + __func__$6052 0 22 -22 + __func__$6060 0 21 -21 + __func__$6068 0 23 -23 + get_clk_en_mask 128 0 +128 + get_rst_en_mask 128 0 +128 + gpio_input_disable.str1.4 0 188 -188 + gpio_input_enable.str1.4 0 243 -243 + gpio_od_enable.str1.4 0 62 -62 + gpio_output_disable.str1.4 0 192 -192 + gpio_output_enable.str1.4 0 27 -27 + gpio_set_direction.str1.4 0 51 -51 + periph_module_enable 0 488 -488 + str1.4 249 0 +249 + uart_flush_input.str1.4 0 45 -45 + uart_pattern_enqueue.str1.4 0 88 -88 + uart_pattern_pop_pos.str1.4 0 18 -18 + uart_set_stop_bits.str1.4 0 15 -15 + uart_set_word_length.str1.4 0 31 -31 +Section total: 537 1910 -1373 + +.flash.text - + get_clk_en_mask 211 0 +211 + get_clk_en_reg 21 0 +21 + get_rst_en_mask 157 0 +157 + get_rst_en_reg 25 0 +25 + gpio_input_disable 0 132 -132 + gpio_input_enable 0 140 -140 + gpio_od_disable 0 98 -98 + gpio_od_enable 0 118 -118 + gpio_output_disable 0 184 -184 + gpio_output_enable 0 153 -153 + gpio_set_direction 0 172 -172 + gpio_set_level 0 196 -196 + is_wifi_clk_peripheral 28 0 +28 + periph_module_enable 78 696 -618 + rtc_gpio_force_hold_dis_all 65 53 +12 + rtc_isr 86 90 -4 + rtc_isr_ensure_installed 75 79 -4 + rtc_isr_register 65 62 +3 + timer_group_intr_enable 112 0 +112 + uart_disable_intr_mask 0 96 -96 + uart_disable_rx_intr 0 18 -18 + uart_enable_intr_mask 0 98 -98 + uart_enable_rx_intr 0 18 -18 + uart_flush_input 0 457 -457 + uart_get_baudrate 0 82 -82 + uart_get_bufferedlen 0 109 -109 + uart_get_parity 0 69 -69 + uart_get_selectlock 12 12 + uart_get_stop_bits 0 69 -69 + uart_get_word_length 0 69 -69 + uart_is_driver_installed 0 30 -30 + uart_pattern_queue_update 0 74 -74 + uart_set_baudrate 0 96 -96 + uart_set_parity 0 82 -82 + uart_set_select_notif_callback 26 23 +3 + uart_set_stop_bits 0 128 -128 + uart_set_word_length 0 144 -144 + uart_wait_tx_done 0 425 -425 +Section total: 961 4272 -3311 + +.iram0.text - +Section total: 0 0 + +.iram0.vectors - +Section total: 0 0 + +.noinit - +Section total: 0 0 + +*** +Running idf_size.py diff --archive_details with app in reverse order... + MAP file: app2.map + MAP file: app.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 8580 bytes 9324 -744 + DRAM .bss size: 2024 bytes 8296 -6272 +Used static DRAM: 10604 bytes ( 170132 available, 5.9% used) 17620 -7016 ( +7016 available, +0 total) +Used static IRAM: 38956 bytes ( 92116 available, 29.7% used) 38932 +24 ( -24 available, +0 total) + Flash code: 77191 bytes 146944 -69753 + Flash rodata: 22360 bytes 39580 -17220 +Total image size:~ 149111 bytes (.bin may be padded larger) 243076 -93965 +Symbols within the archive: libdriver.a (Not all symbols may be reported) + +.dram0.bss - + p_uart_obj 12 12 + s_rtc_isr_handle 4 4 + s_rtc_isr_handler_list 4 4 +Section total: 20 20 + +.dram0.data - + _gpio_hal 8 0 +8 + gpio_context 24 0 +24 + periph_spinlock 8 8 + rtc_spinlock 8 0 +8 + s_rtc_isr_handler_list_lock 8 8 + timer_spinlock 0 16 -16 + uart_context 48 0 +48 + uart_selectlock 8 8 +Section total: 112 40 +72 + +.flash.rodata - + TG 0 8 -8 + __FUNCTION__$5441 0 24 -24 + __FUNCTION__$6237 19 0 +19 + __FUNCTION__$6241 18 0 +18 + __FUNCTION__$6245 20 0 +20 + __FUNCTION__$6249 19 0 +19 + __FUNCTION__$6253 16 0 +16 + __FUNCTION__$6257 15 0 +15 + __FUNCTION__$6262 15 0 +15 + __FUNCTION__$6282 19 0 +19 + __FUNCTION__$6912 21 0 +21 + __FUNCTION__$6917 21 0 +21 + __FUNCTION__$6922 19 0 +19 + __FUNCTION__$6927 19 0 +19 + __FUNCTION__$6932 16 0 +16 + __FUNCTION__$6937 16 0 +16 + __FUNCTION__$6942 18 0 +18 + __FUNCTION__$6948 18 0 +18 + __FUNCTION__$6982 22 0 +22 + __FUNCTION__$6987 23 0 +23 + __FUNCTION__$7173 18 0 +18 + __FUNCTION__$7238 27 0 +27 + __FUNCTION__$7244 17 0 +17 + __func__$6052 22 0 +22 + __func__$6060 21 0 +21 + __func__$6068 23 0 +23 + get_clk_en_mask 0 128 -128 + get_rst_en_mask 0 128 -128 + gpio_input_disable.str1.4 188 0 +188 + gpio_input_enable.str1.4 243 0 +243 + gpio_od_enable.str1.4 62 0 +62 + gpio_output_disable.str1.4 192 0 +192 + gpio_output_enable.str1.4 27 0 +27 + gpio_set_direction.str1.4 51 0 +51 + periph_module_enable 488 0 +488 + str1.4 0 249 -249 + uart_flush_input.str1.4 45 0 +45 + uart_pattern_enqueue.str1.4 88 0 +88 + uart_pattern_pop_pos.str1.4 18 0 +18 + uart_set_stop_bits.str1.4 15 0 +15 + uart_set_word_length.str1.4 31 0 +31 +Section total: 1910 537 +1373 + +.flash.text - + get_clk_en_mask 0 211 -211 + get_clk_en_reg 0 21 -21 + get_rst_en_mask 0 157 -157 + get_rst_en_reg 0 25 -25 + gpio_input_disable 132 0 +132 + gpio_input_enable 140 0 +140 + gpio_od_disable 98 0 +98 + gpio_od_enable 118 0 +118 + gpio_output_disable 184 0 +184 + gpio_output_enable 153 0 +153 + gpio_set_direction 172 0 +172 + gpio_set_level 196 0 +196 + is_wifi_clk_peripheral 0 28 -28 + periph_module_enable 696 78 +618 + rtc_gpio_force_hold_dis_all 53 65 -12 + rtc_isr 90 86 +4 + rtc_isr_ensure_installed 79 75 +4 + rtc_isr_register 62 65 -3 + timer_group_intr_enable 0 112 -112 + uart_disable_intr_mask 96 0 +96 + uart_disable_rx_intr 18 0 +18 + uart_enable_intr_mask 98 0 +98 + uart_enable_rx_intr 18 0 +18 + uart_flush_input 457 0 +457 + uart_get_baudrate 82 0 +82 + uart_get_bufferedlen 109 0 +109 + uart_get_parity 69 0 +69 + uart_get_selectlock 12 12 + uart_get_stop_bits 69 0 +69 + uart_get_word_length 69 0 +69 + uart_is_driver_installed 30 0 +30 + uart_pattern_queue_update 74 0 +74 + uart_set_baudrate 96 0 +96 + uart_set_parity 82 0 +82 + uart_set_select_notif_callback 23 26 -3 + uart_set_stop_bits 128 0 +128 + uart_set_word_length 144 0 +144 + uart_wait_tx_done 425 0 +425 +Section total: 4272 961 +3311 + +.iram0.text - +Section total: 0 0 + +.iram0.vectors - +Section total: 0 0 + +.noinit - +Section total: 0 0 + +*** +Running idf_size.py diff --archive_details with another app... + MAP file: app.map + MAP file: app2.map +Difference is counted as - , i.e. a positive number means that is larger. +Total sizes of : Difference + DRAM .data size: 9324 bytes 8580 +744 + DRAM .bss size: 8296 bytes 2024 +6272 +Used static DRAM: 17620 bytes ( 163116 available, 9.7% used) 10604 +7016 ( -7016 available, +0 total) +Used static IRAM: 38932 bytes ( 92140 available, 29.7% used) 38956 -24 ( +24 available, +0 total) + Flash code: 146944 bytes 77191 +69753 + Flash rodata: 39580 bytes 22360 +17220 +Total image size:~ 243076 bytes (.bin may be padded larger) 149111 +93965 +Symbols within the archive: libfreertos.a (Not all symbols may be reported) + +.dram0.bss - + COMMON 56 0 +56 + _xt_tick_divisor 4 4 + port_interruptNesting 8 8 + port_uxCriticalNesting 0 8 -8 + port_uxOldInterruptState 0 8 -8 + port_xSchedulerRunning 8 8 + pxCurrentTCB 8 8 + pxCurrentTimerList 4 4 + pxDelayedTaskList 4 4 + pxOverflowDelayedTaskList 4 4 + pxOverflowTimerList 4 4 + pxReadyTasksLists 500 500 + uxCurrentNumberOfTasks 4 4 + uxPendedTicks 4 4 + uxSchedulerSuspended 8 8 + uxTaskNumber 4 4 + uxTasksDeleted 4 4 + uxTopReadyPriority 4 4 + xActiveTimerList1 20 20 + xActiveTimerList2 20 20 + xDelayedTaskList1 20 20 + xDelayedTaskList2 20 20 + xIdleTaskHandle 8 8 + xLastTime$4994 0 4 -4 + xLastTime$5362 4 0 +4 + xNumOfOverflows 4 4 + xPendingReadyList 40 40 + xSchedulerRunning 4 4 + xSuspendedTaskList 20 20 + xSwitchingContext 8 8 + xTasksWaitingTermination 20 20 + xTickCount 4 4 + xTimerQueue 4 4 + xYieldPending 8 8 +Section total: 832 792 +40 + +.dram0.data - + .data 4116 4116 + .dram1 4 0 +4 + .dram1.21 0 4 -4 + queue_registry_spinlock 8 0 +8 + xNextTaskUnblockTime 4 4 + xTaskQueueMutex 8 8 + xTickCountMutex 8 0 +8 + xTimerMux 8 8 +Section total: 4156 4140 +16 + +.flash.rodata - + .rodata 36 36 + __FUNCTION__$4925 0 22 -22 + __FUNCTION__$4973 0 23 -23 + __FUNCTION__$5011 0 27 -27 + __FUNCTION__$5035 0 20 -20 + __FUNCTION__$5042 0 29 -29 + __FUNCTION__$5088 0 19 -19 + __FUNCTION__$5097 0 20 -20 + __FUNCTION__$5124 0 25 -25 + __FUNCTION__$5131 0 25 -25 + __FUNCTION__$5137 0 30 -30 + __FUNCTION__$5148 0 18 -18 + __FUNCTION__$5159 0 25 -25 + __FUNCTION__$5167 0 18 -18 + __FUNCTION__$5178 0 21 -21 + __FUNCTION__$5188 0 21 -21 + __FUNCTION__$5220 0 13 -13 + __FUNCTION__$5243 0 25 -25 + __FUNCTION__$5250 0 12 -12 + __FUNCTION__$5265 0 11 -11 + __FUNCTION__$5282 22 0 +22 + __FUNCTION__$5286 0 27 -27 + __FUNCTION__$5293 0 17 -17 + __FUNCTION__$5328 0 20 -20 + __FUNCTION__$5341 23 0 +23 + __FUNCTION__$5347 0 15 -15 + __FUNCTION__$5367 0 18 -18 + __FUNCTION__$5376 0 29 -29 + __FUNCTION__$5377 19 0 +19 + __FUNCTION__$5379 27 0 +27 + __FUNCTION__$5385 0 19 -19 + __FUNCTION__$5396 20 0 +20 + __FUNCTION__$5403 20 0 +20 + __FUNCTION__$5410 29 0 +29 + __FUNCTION__$5421 0 22 -22 + __FUNCTION__$5430 25 0 +25 + __FUNCTION__$5434 0 32 -32 + __FUNCTION__$5437 25 0 +25 + __FUNCTION__$5443 0 25 -25 + __FUNCTION__$5450 30 0 +30 + __FUNCTION__$5457 0 21 -21 + __FUNCTION__$5461 18 0 +18 + __FUNCTION__$5463 0 21 -21 + __FUNCTION__$5472 25 0 +25 + __FUNCTION__$5480 18 0 +18 + __FUNCTION__$5491 21 0 +21 + __FUNCTION__$5501 21 0 +21 + __FUNCTION__$5516 23 0 +23 + __FUNCTION__$5533 13 0 +13 + __FUNCTION__$5552 0 13 -13 + __FUNCTION__$5556 0 13 -13 + __FUNCTION__$5560 25 0 +25 + __FUNCTION__$5567 12 0 +12 + __FUNCTION__$5582 11 0 +11 + __FUNCTION__$5588 0 24 -24 + __FUNCTION__$5610 17 0 +17 + __FUNCTION__$5632 27 0 +27 + __FUNCTION__$5644 20 0 +20 + __FUNCTION__$5662 15 0 +15 + __FUNCTION__$5684 18 0 +18 + __FUNCTION__$5711 19 0 +19 + __FUNCTION__$5747 22 0 +22 + __FUNCTION__$5760 32 0 +32 + __FUNCTION__$5769 25 0 +25 + __FUNCTION__$5783 21 0 +21 + __FUNCTION__$5789 21 0 +21 + __FUNCTION__$5897 13 0 +13 + __FUNCTION__$5901 13 0 +13 + __FUNCTION__$5933 24 0 +24 + __func__$4306 0 20 -20 + __func__$4322 0 17 -17 + __func__$4326 0 17 -17 + __func__$4335 0 17 -17 + __func__$4339 0 17 -17 + __func__$5316 41 0 +41 + __func__$5321 41 0 +41 + __func__$5971 41 0 +41 + __func__$5976 41 0 +41 + prvCheckForValidListAndQueue.str1.4 0 54 -54 + prvDeleteTLS.str1.4 0 53 -53 + prvNotifyQueueSetContainer.str1.4 0 84 -84 + prvProcessReceivedCommands 40 40 + str1.4 571 0 +571 + ucExpectedStackBytes$5392 0 20 -20 + ucExpectedStackBytes$5719 20 0 +20 + vPortEnterCritical.str1.4 0 175 -175 + vPortExitCritical.str1.4 0 44 -44 + vPortTaskWrapper.str1.4 0 87 -87 + vTaskStartScheduler.str1.4 0 7 -7 + vTaskSwitchCostr1.4 0 212 -212 + xQueueGenericReset.str1.4 0 58 -58 + xTimerCreateTimerTask.str1.4 0 8 -8 + xt_unhandled_interrupt.str1.4 0 35 -35 +Section total: 1545 1721 -176 + +.flash.text - +Section total: 0 0 + +.iram0.text - + .iram1 1276 1322 -46 + .iram1.22 0 30 -30 + .iram1.22.literal 0 4 -4 + .iram1.literal 72 68 +4 + .literal 16 16 + .text 814 878 -64 + __getreent 27 21 +6 + _xt_tick_divisor_init 32 32 + pcTaskGetTaskName 50 50 + prvAddCurrentTaskToDelayedList 106 110 -4 + prvAddNewTaskToReadyList 368 380 -12 + prvCheckForValidListAndQueue 142 138 +4 + prvCheckTasksWaitingTermination 198 222 -24 + prvCopyDataFromQueue 36 36 + prvCopyDataToQueue 158 162 -4 + prvDeleteTCB 94 82 +12 + prvDeleteTLS 80 84 -4 + prvGetNextExpireTime 36 36 + prvIdleTask 15 12 +3 + prvInitialiseMutex 34 54 -20 + prvInitialiseNewQueue 34 31 +3 + prvInitialiseNewTask 204 194 +10 + prvInitialiseTaskLists 122 122 + prvInsertTimerInActiveList 84 86 -2 + prvIsQueueEmpty 18 20 -2 + prvIsQueueFull 42 42 + prvNotifyQueueSetContainer 139 139 + prvProcessExpiredTimer 87 87 + prvProcessReceivedCommands 260 218 +42 + prvProcessTimerOrBlockTask 123 90 +33 + prvResetNextTaskUnblockTime 60 60 + prvSampleTimeNow 47 47 + prvSwitchTimerLists 122 122 + prvTimerTask 33 21 +12 + pvTaskGetThreadLocalStoragePointer 30 0 +30 + pvTaskIncrementMutexHeldCount 80 86 -6 + pxPortInitialiseStack 150 154 -4 + taskYIELD_OTHER_CORE 83 84 -1 + uxListRemove 38 36 +2 + uxQueueMessagesWaiting 52 0 +52 + uxTaskPriorityGet 28 28 + vListInitialise 21 21 + vListInitialiseItem 9 9 + vListInsert 47 47 + vListInsertEnd 27 25 +2 + vPortCPUAcquireMutex 157 0 +157 + vPortCPUInitializeMutex 18 0 +18 + vPortCPUReleaseMutex 105 0 +105 + vPortEnterCritical 0 223 -223 + vPortExitCritical 0 150 -150 + vPortReleaseTaskMPUSettings 10 10 + vPortSetStackWatchpoint 30 0 +30 + vPortStoreTaskMPUSettings 19 19 + vPortTaskWrapper 0 46 -46 + vPortYieldOtherCore 10 10 + vQueueAddToRegistry 61 0 +61 + vQueueDelete 54 41 +13 + vQueueUnregisterQueue 55 0 +55 + vQueueWaitForMessageRestricted 35 35 + vTaskDelay 116 108 +8 + vTaskDelete 274 266 +8 + vTaskEnterCritical 192 0 +192 + vTaskExitCritical 147 0 +147 + vTaskPlaceOnEventList 136 155 -19 + vTaskPlaceOnEventListRestricted 99 119 -20 + vTaskPriorityInherit 196 216 -20 + vTaskPrioritySet 305 313 -8 + vTaskSetThreadLocalStoragePointerAnd 46 0 +46 + vTaskSetTimeOutState 64 60 +4 + vTaskStartScheduler 123 144 -21 + vTaskSuspendAll 42 44 -2 + vTaskSwitchContext 680 978 -298 + xPortInIsrContext 38 40 -2 + xPortStartScheduler 34 35 -1 + xPortSysTickHandler 16 16 + xQueueCreateCountingSemaphore 106 106 + xQueueCreateMutex 22 22 + xQueueGenericCreate 82 73 +9 + xQueueGenericReceive 362 328 +34 + xQueueGenericReset 138 182 -44 + xQueueGenericSend 382 384 -2 + xQueueGenericSendFromISR 218 218 + xQueueGetMutexHolder 36 35 +1 + xQueueGiveFromISR 186 186 + xQueueGiveMutexRecursive 76 78 -2 + xQueueReceiveFromISR 158 154 +4 + xQueueTakeMutexRecursive 85 85 + xTaskCheckForTimeOut 151 151 + xTaskCreatePinnedToCore 110 105 +5 + xTaskGetAffinity 0 16 -16 + xTaskGetCurrentTaskHandle 31 34 -3 + xTaskGetCurrentTaskHandleForCPU 24 26 -2 + xTaskGetIdleTaskHandleForCPU 0 54 -54 + xTaskGetSchedulerState 59 58 +1 + xTaskGetTickCount 32 13 +19 + xTaskGetTickCountFromISR 0 13 -13 + xTaskIncrementTick 446 446 + xTaskPriorityDisinherit 159 160 -1 + xTaskRemoveFromEventList 311 328 -17 + xTaskResumeAll 379 395 -16 + xTimerCreateTimerTask 88 73 +15 + xTimerGenericCommand 127 89 +38 + xt_set_interrupt_handler 78 87 -9 + xt_unhandled_interrupt 26 26 +Section total: 12428 12459 -31 + +.iram0.vectors - + .DebugExceptionVector.text 6 6 + .DoubleExceptionVector.text 15 15 + .KernelExceptionVector.text 6 6 + .Level2InterruptVector.text 6 6 + .Level3InterruptVector.text 6 6 + .Level4InterruptVector.text 6 6 + .Level5InterruptVector.text 6 6 + .NMIExceptionVector.text 6 6 + .UserExceptionVector.text 6 6 + .WindowVectors.text 362 362 +Section total: 425 425 + +.noinit - +Section total: 0 0 + *** Running idf_size.py for esp32s2... Total sizes: @@ -727,19 +3350,15 @@ uart_flush_input(453) uart_wait_tx_done(417) get_clk_en_mask(267) get_rst_en_mas Section total: 3216 Symbols from section: .iram0.text - Section total: 0 Symbols from section: .iram0.vectors - Section total: 0 Symbols from section: .noinit - Section total: 0 Symbols from section: .rtc.text - Section total: 0 *** diff --git a/tools/test_idf_size/test.sh b/tools/test_idf_size/test.sh index ce17868cb..3cebff122 100755 --- a/tools/test_idf_size/test.sh +++ b/tools/test_idf_size/test.sh @@ -12,6 +12,42 @@ && coverage run -a $IDF_PATH/tools/idf_size.py --files app.map &>> output \ && echo -e "\n***\nRunning idf_size.py --archive_details..." &>> output \ && coverage run -a $IDF_PATH/tools/idf_size.py --archive_details libdriver.a app.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff with bootloader..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --diff bootloader.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff with itself..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --diff app.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff with another app..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --diff app2.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff with app in reverse order..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app2.map --diff app.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archives with bootloader..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --archives --diff bootloader.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archives with itself..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --archives --diff app.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archives with another app..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --archives --diff app2.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archives with app in reverse order..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app2.map --archives --diff app.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --files with bootloader..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --files --diff bootloader.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --files with itself..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --files --diff app.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --files with another app..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --files --diff app2.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --files with app in reverse order..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app2.map --files --diff app.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archive_details with bootloader..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --archive_details libdriver.a --diff bootloader.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archive_details with bootloader..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --archive_details libc.a --diff bootloader.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archive_details with itself..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --archive_details libdriver.a --diff app.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archive_details with another app..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --archive_details libdriver.a --diff app2.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archive_details with app in reverse order..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app2.map --archive_details libdriver.a --diff app.map &>> output \ + && echo -e "\n***\nRunning idf_size.py diff --archive_details with another app..." &>> output \ + && coverage run -a $IDF_PATH/tools/idf_size.py app.map --archive_details libfreertos.a --diff app2.map &>> output \ && echo -e "\n***\nRunning idf_size.py for esp32s2..." &>> output \ && coverage run -a $IDF_PATH/tools/idf_size.py --target esp32s2 app_esp32s2.map &>> output \ && echo -e "\n***\nRunning idf_size.py on bootloader for esp32s2..." &>> output \ diff --git a/tools/test_idf_size/test_idf_size.py b/tools/test_idf_size/test_idf_size.py index bad012f65..a3bfc7828 100644 --- a/tools/test_idf_size/test_idf_size.py +++ b/tools/test_idf_size/test_idf_size.py @@ -44,5 +44,6 @@ if __name__ == "__main__": MemRegNames = collections.namedtuple('MemRegNames', ['iram_names', 'dram_names', 'diram_names', 'used_iram_names', 'used_dram_names', 'used_diram_names']) mem_reg = MemRegNames(set(), set(), set(), set(), set(), set()) - print(idf_size.get_summary(mem_reg, {"iram0_0_seg": {"origin":0,"length":0}, "dram0_0_seg": + + print(idf_size.get_summary('a.map', mem_reg, {"iram0_0_seg": {"origin":0,"length":0}, "dram0_0_seg": {"origin":0, "length":0}}, {}), end="")