From 68a8a7de0d4cfd1b07e547e8d2b56747f314cbc2 Mon Sep 17 00:00:00 2001 From: Roland Dobai Date: Tue, 1 Mar 2022 17:01:26 +0100 Subject: [PATCH] tools/idf_size.py: Identify objects without extension in MAP files --- tools/idf_size.py | 7 +- tools/test_idf_size/expected_output | 2744 +++++++++++++-------------- 2 files changed, 1377 insertions(+), 1374 deletions(-) diff --git a/tools/idf_size.py b/tools/idf_size.py index 8e1e976527..be7b572940 100755 --- a/tools/idf_size.py +++ b/tools/idf_size.py @@ -316,7 +316,10 @@ def load_sections(map_file: TextIO) -> Dict: RE_FULL_LINE = re.compile(r'\s*(?P\S*) +0x(?P
[\da-f]+) +0x(?P[\da-f]+)\s*(?P.*)$') # Extract archive and object_file from the file_info field - RE_FILE = re.compile(r'((?P[^ ]+\.a)?\(?(?P[^ ]+\.(o|obj))\)?)') + # The object file extention (.obj or .o) is optional including the dot. This is necessary for some third-party + # libraries. Since the dot is optional and the search gready the parsing of the object name must stop at ). Hence + # the [^ )] part of the regex. + RE_FILE = re.compile(r'((?P[^ ]+\.a)?\(?(?P[^ )]+(\.(o|obj))?)\)?)') def dump_src_line(src: Dict) -> str: return '%s(%s) addr: 0x%08x, size: 0x%x+%d' % (src['sym_name'], src['file'], src['address'], src['size'], src['fill']) @@ -387,7 +390,7 @@ def load_sections(map_file: TextIO) -> Dict: # Extract archive and file information match_arch_and_file = RE_FILE.match(match_line.group('file')) - assert match_arch_and_file + assert match_arch_and_file, 'Archive and file information not found for "{}"'.format(match_line.group('file')) archive = match_arch_and_file.group('archive') if archive is None: diff --git a/tools/test_idf_size/expected_output b/tools/test_idf_size/expected_output index 4944e1932e..c4f212318d 100644 --- a/tools/test_idf_size/expected_output +++ b/tools/test_idf_size/expected_output @@ -1133,34 +1133,34 @@ ieee80211_action_vendor. 0 0 0 0 0 wps_internal.o 0 0 0 0 0 0 0 0 0 0 0 The following entries are present in only: Object File DRAM .data & 0.bss & 0.rodata IRAM .text & 0.text & 0.vectors & _loader.text ram_st_total Flash .text & .rodata flash_total - bootloader_utility.c.o 0 1 1607 0 0 0 2216 3824 0 0 3823 - esp_image_format.c.o 0 8 1291 0 0 0 2316 3615 0 0 3607 - bootloader_esp32.c.o 0 0 891 1610 0 0 26 2527 0 0 2527 - rtc_clk.c.o 0 4 160 0 0 0 2217 2381 0 0 2377 - spi_flash_rom_patch.c.o 0 0 0 0 0 0 2110 2110 0 0 2110 - bootloader_flash.c.o 4 1 649 0 0 0 898 1552 0 0 1551 - rtc_clk_init.c.o 0 0 559 773 0 0 0 1332 0 0 1332 - bootloader_random.c.o 0 0 118 0 0 0 1057 1175 0 0 1175 - bootloader_common.c.o 0 0 506 0 0 0 493 999 0 0 999 +bootloader_utility.c.obj 0 1 1607 0 0 0 2216 3824 0 0 3823 + esp_image_format.c.obj 0 8 1291 0 0 0 2316 3615 0 0 3607 + bootloader_esp32.c.obj 0 0 891 1610 0 0 26 2527 0 0 2527 + rtc_clk.c.obj 0 4 160 0 0 0 2217 2381 0 0 2377 +spi_flash_rom_patch.c.ob 0 0 0 0 0 0 2110 2110 0 0 2110 + bootloader_flash.c.obj 4 1 649 0 0 0 898 1552 0 0 1551 + rtc_clk_init.c.obj 0 0 559 773 0 0 0 1332 0 0 1332 + bootloader_random.c.obj 0 0 118 0 0 0 1057 1175 0 0 1175 + bootloader_common.c.obj 0 0 506 0 0 0 493 999 0 0 999 bootloader_flash_config_ 0 0 0 13 0 0 970 983 0 0 983 - rtc_time.c.o 0 0 197 705 0 0 0 902 0 0 902 - bootloader_sha.c.o 0 4 322 0 0 0 479 805 0 0 801 - flash_partitions.c.o 0 0 355 0 0 0 365 720 0 0 720 - rtc_wdt.c.o 0 0 0 0 0 0 710 710 0 0 710 - bootloader_init.c.o 0 24 348 352 0 0 0 724 0 0 700 - flash_qio_mode.c.o 0 0 0 502 0 0 0 502 0 0 502 - rtc_init.c.o 0 0 0 301 0 0 0 301 0 0 301 - bootloader_start.c.o 0 0 59 143 0 0 0 202 0 0 202 - bootloader_clock.c.o 0 0 8 0 0 0 170 178 0 0 178 + rtc_time.c.obj 0 0 197 705 0 0 0 902 0 0 902 + bootloader_sha.c.obj 0 4 322 0 0 0 479 805 0 0 801 + flash_partitions.c.obj 0 0 355 0 0 0 365 720 0 0 720 + rtc_wdt.c.obj 0 0 0 0 0 0 710 710 0 0 710 + bootloader_init.c.obj 0 24 348 352 0 0 0 724 0 0 700 + flash_qio_mode.c.obj 0 0 0 502 0 0 0 502 0 0 502 + rtc_init.c.obj 0 0 0 301 0 0 0 301 0 0 301 + bootloader_start.c.obj 0 0 59 143 0 0 0 202 0 0 202 + bootloader_clock.c.obj 0 0 8 0 0 0 170 178 0 0 178 bootloader_efuse_esp32.c 0 0 0 0 0 0 130 130 0 0 130 - log_noos.c.o 0 0 0 0 0 0 34 34 0 0 34 - cpu_util.c.o 0 0 0 0 0 0 18 18 0 0 18 + log_noos.c.obj 0 0 0 0 0 0 34 34 0 0 34 + cpu_util.c.obj 0 0 0 0 0 0 18 18 0 0 18 crtbegin.o 0 0 8 0 0 0 0 8 0 0 8 crtend.o 0 0 8 0 0 0 0 8 0 0 8 crti.o 0 0 0 3 0 0 3 6 0 0 6 crt0.o 0 0 0 0 0 0 0 0 0 0 0 crtn.o 0 0 0 0 0 0 0 0 0 0 0 - project_elf_src.c.o 0 0 0 0 0 0 0 0 0 0 0 + project_elf_src.c.obj 0 0 0 0 0 0 0 0 0 0 0 lib_a-impure.o 0 0 0 0 0 0 0 0 0 0 0 lib_a-memcmp.o 0 0 0 0 0 0 0 0 0 0 0 lib_a-memcpy.o 0 0 0 0 0 0 0 0 0 0 0 @@ -1170,7 +1170,7 @@ bootloader_efuse_esp32.c 0 0 0 0 0 lib_a-strncpy.o 0 0 0 0 0 0 0 0 0 0 0 lib_a-strstr.o 0 0 0 0 0 0 0 0 0 0 0 _bswapsi2.o 0 0 0 0 0 0 0 0 0 0 0 - gpio_periph.c.o 0 0 0 0 0 0 0 0 0 0 0 + gpio_periph.c.obj 0 0 0 0 0 0 0 0 0 0 0 *** Running idf_size.py diff --files with itself... @@ -1779,114 +1779,114 @@ ieee80211_action_vendor. 0 0 0 0 0 wps_internal.o 0 0 0 0 0 0 0 0 The following entries are present in only: Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total - tasks.c.o 12 700 5737 0 6449 0 451 6200 - esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 - vfs_uart.c.o 116 8 0 0 124 3758 783 4657 - panic.c.o 2029 5 2223 0 4257 0 0 4252 - portasm.S.o 3084 0 476 0 3560 0 0 3560 - intr_alloc.c.o 8 22 656 0 686 1681 704 3049 - queue.c.o 0 0 2411 0 2411 0 366 2777 - uart.c.o 56 12 0 0 68 2099 452 2607 - multi_heap.c.o 300 0 2245 0 2545 0 0 2545 - cpu_start.c.o 0 1 1067 0 1068 255 1073 2395 - rtc_clk.c.o 160 4 2104 0 2268 0 0 2264 - vfs.c.o 192 40 0 0 232 1892 132 2216 - gpio.c.o 32 0 0 0 32 1193 970 2195 - spi_flash_hal_iram.c.o 24 0 1798 0 1822 0 0 1822 - xtensa_vectors.S.o 8 0 1344 425 1777 0 36 1813 - task_wdt.c.o 53 4 0 0 57 1223 494 1770 + tasks.c.obj 12 700 5737 0 6449 0 451 6200 + esp_err_to_name.c.obj 0 0 0 0 0 53 5101 5154 + vfs_uart.c.obj 116 8 0 0 124 3758 783 4657 + panic.c.obj 2029 5 2223 0 4257 0 0 4252 + portasm.S.obj 3084 0 476 0 3560 0 0 3560 + intr_alloc.c.obj 8 22 656 0 686 1681 704 3049 + queue.c.obj 0 0 2411 0 2411 0 366 2777 + uart.c.obj 56 12 0 0 68 2099 452 2607 + multi_heap.c.obj 300 0 2245 0 2545 0 0 2545 + cpu_start.c.obj 0 1 1067 0 1068 255 1073 2395 + rtc_clk.c.obj 160 4 2104 0 2268 0 0 2264 + vfs.c.obj 192 40 0 0 232 1892 132 2216 + gpio.c.obj 32 0 0 0 32 1193 970 2195 +spi_flash_hal_iram.c.obj 24 0 1798 0 1822 0 0 1822 + xtensa_vectors.S.obj 8 0 1344 425 1777 0 36 1813 + task_wdt.c.obj 53 4 0 0 57 1223 494 1770 spi_flash_chip_generic.c 340 0 1423 0 1763 0 0 1763 - flash_mmap.c.o 0 264 1320 0 1584 125 296 1741 - cache_utils.c.o 4 14 833 0 851 81 430 1348 - heap_caps.c.o 4 0 884 0 888 50 362 1300 - timers.c.o 8 56 1007 0 1071 0 223 1238 - esp_timer_impl_lac.c.o 8 8 514 0 530 322 389 1233 - heap_caps_init.c.o 0 4 0 0 4 834 379 1213 - soc_memory_layout.c.o 0 0 0 0 0 0 1197 1197 - periph_ctrl.c.o 8 0 0 0 8 696 488 1192 - port.c.o 0 32 737 0 769 0 340 1077 - xtensa_intr_asm.S.o 1024 0 51 0 1075 0 0 1075 + flash_mmap.c.obj 0 264 1320 0 1584 125 296 1741 + cache_utils.c.obj 4 14 833 0 851 81 430 1348 + heap_caps.c.obj 4 0 884 0 888 50 362 1300 + timers.c.obj 8 56 1007 0 1071 0 223 1238 +esp_timer_impl_lac.c.obj 8 8 514 0 530 322 389 1233 + heap_caps_init.c.obj 0 4 0 0 4 834 379 1213 + soc_memory_layout.c.obj 0 0 0 0 0 0 1197 1197 + periph_ctrl.c.obj 8 0 0 0 8 696 488 1192 + port.c.obj 0 32 737 0 769 0 340 1077 + xtensa_intr_asm.S.obj 1024 0 51 0 1075 0 0 1075 bootloader_flash_config_ 0 0 1028 0 1028 17 0 1045 - rtc_time.c.o 0 0 819 0 819 0 194 1013 - ringbuf.c.o 0 0 858 0 858 0 150 1008 - rtc_init.c.o 0 0 956 0 956 0 0 956 - esp_flash_api.c.o 0 0 600 0 600 16 244 860 - clk.c.o 0 0 64 0 64 582 208 854 - partition.c.o 0 8 0 0 8 668 181 849 - time.c.o 0 32 123 0 155 719 0 842 - memory_layout_utils.c.o 0 0 0 0 0 505 295 800 - rtc_wdt.c.o 0 0 796 0 796 0 0 796 - esp_timer.c.o 8 12 280 0 300 401 104 793 - dport_access.c.o 8 40 422 0 470 189 126 745 - ipc.c.o 0 56 192 0 248 367 117 676 - log.c.o 8 264 34 0 306 484 147 673 - locks.c.o 8 0 487 0 495 5 84 584 - esp_flash_spi_init.c.o 120 4 0 0 124 191 261 572 - uart_hal.c.o 0 0 0 0 0 493 0 493 - flash_qio_mode.c.o 0 0 0 0 0 490 0 490 - crosscore_int.c.o 8 8 195 0 211 134 146 483 - int_wdt.c.o 0 1 94 0 95 341 0 435 - system_api_esp32.c.o 0 0 435 0 435 0 0 435 - esp_app_desc.c.o 0 0 109 0 109 12 256 377 + rtc_time.c.obj 0 0 819 0 819 0 194 1013 + ringbuf.c.obj 0 0 858 0 858 0 150 1008 + rtc_init.c.obj 0 0 956 0 956 0 0 956 + esp_flash_api.c.obj 0 0 600 0 600 16 244 860 + clk.c.obj 0 0 64 0 64 582 208 854 + partition.c.obj 0 8 0 0 8 668 181 849 + time.c.obj 0 32 123 0 155 719 0 842 +memory_layout_utils.c.ob 0 0 0 0 0 505 295 800 + rtc_wdt.c.obj 0 0 796 0 796 0 0 796 + esp_timer.c.obj 8 12 280 0 300 401 104 793 + dport_access.c.obj 8 40 422 0 470 189 126 745 + ipc.c.obj 0 56 192 0 248 367 117 676 + log.c.obj 8 264 34 0 306 484 147 673 + locks.c.obj 8 0 487 0 495 5 84 584 +esp_flash_spi_init.c.obj 120 4 0 0 124 191 261 572 + uart_hal.c.obj 0 0 0 0 0 493 0 493 + flash_qio_mode.c.obj 0 0 0 0 0 490 0 490 + crosscore_int.c.obj 8 8 195 0 211 134 146 483 + int_wdt.c.obj 0 1 94 0 95 341 0 435 + system_api_esp32.c.obj 0 0 435 0 435 0 0 435 + esp_app_desc.c.obj 0 0 109 0 109 12 256 377 lib_a-locale.o 364 0 0 0 364 0 10 374 - uart_hal_iram.c.o 0 0 0 0 0 147 222 369 - xtensa_context.S.o 0 0 367 0 367 0 0 367 - esp_ota_ops.c.o 0 4 0 0 4 147 214 361 - spi_flash_hal.c.o 0 0 0 0 0 302 48 350 - brownout.c.o 0 0 0 0 0 120 203 323 - freertos_hooks.c.o 8 128 47 0 183 243 0 298 - spi_flash_chip_gd.c.o 95 0 181 0 276 0 0 276 - brownout_hal.c.o 0 0 0 0 0 269 0 269 + uart_hal_iram.c.obj 0 0 0 0 0 147 222 369 + xtensa_context.S.obj 0 0 367 0 367 0 0 367 + esp_ota_ops.c.obj 0 4 0 0 4 147 214 361 + spi_flash_hal.c.obj 0 0 0 0 0 302 48 350 + brownout.c.obj 0 0 0 0 0 120 203 323 + freertos_hooks.c.obj 8 128 47 0 183 243 0 298 + spi_flash_chip_gd.c.obj 95 0 181 0 276 0 0 276 + brownout_hal.c.obj 0 0 0 0 0 269 0 269 dport_panic_highint_hdl. 12 0 250 0 262 0 0 262 - soc_hal.c.o 24 0 234 0 258 0 0 258 - memspi_host_driver.c.o 43 0 206 0 249 0 0 249 - rtc_module.c.o 16 8 0 0 24 231 0 247 - syscall_table.c.o 144 240 0 0 384 82 0 226 - debug_helpers.c.o 0 0 217 0 217 0 0 217 - spi_flash_chip_issi.c.o 97 0 101 0 198 0 0 198 + soc_hal.c.obj 24 0 234 0 258 0 0 258 +memspi_host_driver.c.obj 43 0 206 0 249 0 0 249 + rtc_module.c.obj 16 8 0 0 24 231 0 247 + syscall_table.c.obj 144 240 0 0 384 82 0 226 + debug_helpers.c.obj 0 0 217 0 217 0 0 217 +spi_flash_chip_issi.c.ob 97 0 101 0 198 0 0 198 pthread_local_storage.c. 8 4 0 0 12 183 0 191 - log_freertos.c.o 0 8 188 0 196 0 0 188 - gpio_periph.c.o 0 0 0 0 0 0 160 160 - cache_err_int.c.o 0 0 56 0 56 98 0 154 - heap.c.o 0 0 151 0 151 0 0 151 - xtensa_intr.c.o 0 0 113 0 113 0 35 148 + log_freertos.c.obj 0 8 188 0 196 0 0 188 + gpio_periph.c.obj 0 0 0 0 0 0 160 160 + cache_err_int.c.obj 0 0 56 0 56 98 0 154 + heap.c.obj 0 0 151 0 151 0 0 151 + xtensa_intr.c.obj 0 0 113 0 113 0 35 148 spi_flash_os_func_noos.c 16 0 127 0 143 0 0 143 spi_flash_os_func_app.c. 24 0 91 0 115 25 0 140 - list.c.o 0 0 138 0 138 0 0 138 - blink.c.o 0 0 0 0 0 72 39 111 - pthread.c.o 0 8 0 0 8 81 0 81 - bootloader_mem.c.o 0 0 0 0 0 58 20 78 - cpu_util.c.o 0 0 75 0 75 0 0 75 + list.c.obj 0 0 138 0 138 0 0 138 + blink.c.obj 0 0 0 0 0 72 39 111 + pthread.c.obj 0 8 0 0 8 81 0 81 + bootloader_mem.c.obj 0 0 0 0 0 58 20 78 + cpu_util.c.obj 0 0 75 0 75 0 0 75 lib_a-mbtowc_r.o 0 0 0 0 0 72 0 72 lib_a-localeconv.o 0 0 0 0 0 63 0 63 - flash_ops.c.o 20 4 14 0 38 29 0 63 - reent_init.c.o 0 0 59 0 59 0 0 59 - rtc_io.c.o 0 0 0 0 0 53 0 53 - syscalls.c.o 0 0 0 0 0 50 0 50 - mpu_hal.c.o 0 0 0 0 0 47 0 47 + flash_ops.c.obj 20 4 14 0 38 29 0 63 + reent_init.c.obj 0 0 59 0 59 0 0 59 + rtc_io.c.obj 0 0 0 0 0 53 0 53 + syscalls.c.obj 0 0 0 0 0 50 0 50 + mpu_hal.c.obj 0 0 0 0 0 47 0 47 xtensa_vector_defaults.S 0 0 46 0 46 0 0 46 - xtensa_init.c.o 0 4 32 0 36 0 0 32 + xtensa_init.c.obj 0 4 32 0 36 0 0 32 spi_flash_chip_drivers.c 20 0 0 0 20 0 0 20 - pthread.c.o 0 0 0 0 0 12 0 12 + pthread.c.obj 0 0 0 0 0 12 0 12 crtend.o 0 0 0 0 0 0 8 8 - pm_esp32.c.o 0 0 0 0 0 8 0 8 - cpu_hal.c.o 0 0 8 0 8 0 0 8 + pm_esp32.c.obj 0 0 0 0 0 8 0 8 + cpu_hal.c.obj 0 0 8 0 8 0 0 8 crti.o 0 0 0 3 3 3 0 6 cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 - cxx_guards.cpp.o 0 0 0 0 0 5 0 5 + cxx_guards.cpp.obj 0 0 0 0 0 5 0 5 crtbegin.o 0 0 0 0 0 0 4 4 - FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 4 + FreeRTOS-openocd.c.obj 4 0 0 0 4 0 0 4 crt0.o 0 0 0 0 0 0 0 0 crtn.o 0 0 0 0 0 0 0 0 - project_elf_src.c.o 0 0 0 0 0 0 0 0 - bootloader_common.c.o 0 0 0 0 0 0 0 0 + project_elf_src.c.obj 0 0 0 0 0 0 0 0 + bootloader_common.c.obj 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 + bootloader_flash.c.obj 0 0 0 0 0 0 0 0 + bootloader_random.c.obj 0 0 0 0 0 0 0 0 + bootloader_sha.c.obj 0 0 0 0 0 0 0 0 +bootloader_utility.c.obj 0 0 0 0 0 0 0 0 + esp_image_format.c.obj 0 0 0 0 0 0 0 0 + flash_partitions.c.obj 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 @@ -1943,25 +1943,25 @@ bootloader_efuse_esp32.c 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 + spi_common.c.obj 0 0 0 0 0 0 0 0 + esp_efuse_api.c.obj 0 0 0 0 0 0 0 0 + esp_efuse_fields.c.obj 0 0 0 0 0 0 0 0 + esp_efuse_table.c.obj 0 0 0 0 0 0 0 0 + esp_efuse_utility.c.obj 0 0 0 0 0 0 0 0 + hw_random.c.obj 0 0 0 0 0 0 0 0 + pm_locks.c.obj 0 0 0 0 0 0 0 0 + system_api.c.obj 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 + esp_sha256.c.obj 0 0 0 0 0 0 0 0 + sha.c.obj 0 0 0 0 0 0 0 0 + gpio_hal.c.obj 0 0 0 0 0 0 0 0 + rtc_io_hal.c.obj 0 0 0 0 0 0 0 0 + rtc_io_periph.c.obj 0 0 0 0 0 0 0 0 + spi_periph.c.obj 0 0 0 0 0 0 0 0 + uart_periph.c.obj 0 0 0 0 0 0 0 0 +spi_flash_rom_patch.c.ob 0 0 0 0 0 0 0 0 + md5-internal.c.obj 0 0 0 0 0 0 0 0 + debug_helpers_asm.S.obj 0 0 0 0 0 0 0 0 *** Running idf_size.py diff --files with app in reverse order... @@ -2024,114 +2024,114 @@ state_asm--save_extra_nw| | | | | | | 62 _popcountsi2.o| | | | | | | | | | | | | | | | | | | | | | | | The following entries are present in only: Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total - tasks.c.o 12 700 5737 0 6449 0 451 6200 - esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 - vfs_uart.c.o 116 8 0 0 124 3758 783 4657 - panic.c.o 2029 5 2223 0 4257 0 0 4252 - portasm.S.o 3084 0 476 0 3560 0 0 3560 - intr_alloc.c.o 8 22 656 0 686 1681 704 3049 - queue.c.o 0 0 2411 0 2411 0 366 2777 - uart.c.o 56 12 0 0 68 2099 452 2607 - multi_heap.c.o 300 0 2245 0 2545 0 0 2545 - cpu_start.c.o 0 1 1067 0 1068 255 1073 2395 - rtc_clk.c.o 160 4 2104 0 2268 0 0 2264 - vfs.c.o 192 40 0 0 232 1892 132 2216 - gpio.c.o 32 0 0 0 32 1193 970 2195 - spi_flash_hal_iram.c.o 24 0 1798 0 1822 0 0 1822 - xtensa_vectors.S.o 8 0 1344 425 1777 0 36 1813 - task_wdt.c.o 53 4 0 0 57 1223 494 1770 + tasks.c.obj 12 700 5737 0 6449 0 451 6200 + esp_err_to_name.c.obj 0 0 0 0 0 53 5101 5154 + vfs_uart.c.obj 116 8 0 0 124 3758 783 4657 + panic.c.obj 2029 5 2223 0 4257 0 0 4252 + portasm.S.obj 3084 0 476 0 3560 0 0 3560 + intr_alloc.c.obj 8 22 656 0 686 1681 704 3049 + queue.c.obj 0 0 2411 0 2411 0 366 2777 + uart.c.obj 56 12 0 0 68 2099 452 2607 + multi_heap.c.obj 300 0 2245 0 2545 0 0 2545 + cpu_start.c.obj 0 1 1067 0 1068 255 1073 2395 + rtc_clk.c.obj 160 4 2104 0 2268 0 0 2264 + vfs.c.obj 192 40 0 0 232 1892 132 2216 + gpio.c.obj 32 0 0 0 32 1193 970 2195 +spi_flash_hal_iram.c.obj 24 0 1798 0 1822 0 0 1822 + xtensa_vectors.S.obj 8 0 1344 425 1777 0 36 1813 + task_wdt.c.obj 53 4 0 0 57 1223 494 1770 spi_flash_chip_generic.c 340 0 1423 0 1763 0 0 1763 - flash_mmap.c.o 0 264 1320 0 1584 125 296 1741 - cache_utils.c.o 4 14 833 0 851 81 430 1348 - heap_caps.c.o 4 0 884 0 888 50 362 1300 - timers.c.o 8 56 1007 0 1071 0 223 1238 - esp_timer_impl_lac.c.o 8 8 514 0 530 322 389 1233 - heap_caps_init.c.o 0 4 0 0 4 834 379 1213 - soc_memory_layout.c.o 0 0 0 0 0 0 1197 1197 - periph_ctrl.c.o 8 0 0 0 8 696 488 1192 - port.c.o 0 32 737 0 769 0 340 1077 - xtensa_intr_asm.S.o 1024 0 51 0 1075 0 0 1075 + flash_mmap.c.obj 0 264 1320 0 1584 125 296 1741 + cache_utils.c.obj 4 14 833 0 851 81 430 1348 + heap_caps.c.obj 4 0 884 0 888 50 362 1300 + timers.c.obj 8 56 1007 0 1071 0 223 1238 +esp_timer_impl_lac.c.obj 8 8 514 0 530 322 389 1233 + heap_caps_init.c.obj 0 4 0 0 4 834 379 1213 + soc_memory_layout.c.obj 0 0 0 0 0 0 1197 1197 + periph_ctrl.c.obj 8 0 0 0 8 696 488 1192 + port.c.obj 0 32 737 0 769 0 340 1077 + xtensa_intr_asm.S.obj 1024 0 51 0 1075 0 0 1075 bootloader_flash_config_ 0 0 1028 0 1028 17 0 1045 - rtc_time.c.o 0 0 819 0 819 0 194 1013 - ringbuf.c.o 0 0 858 0 858 0 150 1008 - rtc_init.c.o 0 0 956 0 956 0 0 956 - esp_flash_api.c.o 0 0 600 0 600 16 244 860 - clk.c.o 0 0 64 0 64 582 208 854 - partition.c.o 0 8 0 0 8 668 181 849 - time.c.o 0 32 123 0 155 719 0 842 - memory_layout_utils.c.o 0 0 0 0 0 505 295 800 - rtc_wdt.c.o 0 0 796 0 796 0 0 796 - esp_timer.c.o 8 12 280 0 300 401 104 793 - dport_access.c.o 8 40 422 0 470 189 126 745 - ipc.c.o 0 56 192 0 248 367 117 676 - log.c.o 8 264 34 0 306 484 147 673 - locks.c.o 8 0 487 0 495 5 84 584 - esp_flash_spi_init.c.o 120 4 0 0 124 191 261 572 - uart_hal.c.o 0 0 0 0 0 493 0 493 - flash_qio_mode.c.o 0 0 0 0 0 490 0 490 - crosscore_int.c.o 8 8 195 0 211 134 146 483 - int_wdt.c.o 0 1 94 0 95 341 0 435 - system_api_esp32.c.o 0 0 435 0 435 0 0 435 - esp_app_desc.c.o 0 0 109 0 109 12 256 377 + rtc_time.c.obj 0 0 819 0 819 0 194 1013 + ringbuf.c.obj 0 0 858 0 858 0 150 1008 + rtc_init.c.obj 0 0 956 0 956 0 0 956 + esp_flash_api.c.obj 0 0 600 0 600 16 244 860 + clk.c.obj 0 0 64 0 64 582 208 854 + partition.c.obj 0 8 0 0 8 668 181 849 + time.c.obj 0 32 123 0 155 719 0 842 +memory_layout_utils.c.ob 0 0 0 0 0 505 295 800 + rtc_wdt.c.obj 0 0 796 0 796 0 0 796 + esp_timer.c.obj 8 12 280 0 300 401 104 793 + dport_access.c.obj 8 40 422 0 470 189 126 745 + ipc.c.obj 0 56 192 0 248 367 117 676 + log.c.obj 8 264 34 0 306 484 147 673 + locks.c.obj 8 0 487 0 495 5 84 584 +esp_flash_spi_init.c.obj 120 4 0 0 124 191 261 572 + uart_hal.c.obj 0 0 0 0 0 493 0 493 + flash_qio_mode.c.obj 0 0 0 0 0 490 0 490 + crosscore_int.c.obj 8 8 195 0 211 134 146 483 + int_wdt.c.obj 0 1 94 0 95 341 0 435 + system_api_esp32.c.obj 0 0 435 0 435 0 0 435 + esp_app_desc.c.obj 0 0 109 0 109 12 256 377 lib_a-locale.o 364 0 0 0 364 0 10 374 - uart_hal_iram.c.o 0 0 0 0 0 147 222 369 - xtensa_context.S.o 0 0 367 0 367 0 0 367 - esp_ota_ops.c.o 0 4 0 0 4 147 214 361 - spi_flash_hal.c.o 0 0 0 0 0 302 48 350 - brownout.c.o 0 0 0 0 0 120 203 323 - freertos_hooks.c.o 8 128 47 0 183 243 0 298 - spi_flash_chip_gd.c.o 95 0 181 0 276 0 0 276 - brownout_hal.c.o 0 0 0 0 0 269 0 269 + uart_hal_iram.c.obj 0 0 0 0 0 147 222 369 + xtensa_context.S.obj 0 0 367 0 367 0 0 367 + esp_ota_ops.c.obj 0 4 0 0 4 147 214 361 + spi_flash_hal.c.obj 0 0 0 0 0 302 48 350 + brownout.c.obj 0 0 0 0 0 120 203 323 + freertos_hooks.c.obj 8 128 47 0 183 243 0 298 + spi_flash_chip_gd.c.obj 95 0 181 0 276 0 0 276 + brownout_hal.c.obj 0 0 0 0 0 269 0 269 dport_panic_highint_hdl. 12 0 250 0 262 0 0 262 - soc_hal.c.o 24 0 234 0 258 0 0 258 - memspi_host_driver.c.o 43 0 206 0 249 0 0 249 - rtc_module.c.o 16 8 0 0 24 231 0 247 - syscall_table.c.o 144 240 0 0 384 82 0 226 - debug_helpers.c.o 0 0 217 0 217 0 0 217 - spi_flash_chip_issi.c.o 97 0 101 0 198 0 0 198 + soc_hal.c.obj 24 0 234 0 258 0 0 258 +memspi_host_driver.c.obj 43 0 206 0 249 0 0 249 + rtc_module.c.obj 16 8 0 0 24 231 0 247 + syscall_table.c.obj 144 240 0 0 384 82 0 226 + debug_helpers.c.obj 0 0 217 0 217 0 0 217 +spi_flash_chip_issi.c.ob 97 0 101 0 198 0 0 198 pthread_local_storage.c. 8 4 0 0 12 183 0 191 - log_freertos.c.o 0 8 188 0 196 0 0 188 - gpio_periph.c.o 0 0 0 0 0 0 160 160 - cache_err_int.c.o 0 0 56 0 56 98 0 154 - heap.c.o 0 0 151 0 151 0 0 151 - xtensa_intr.c.o 0 0 113 0 113 0 35 148 + log_freertos.c.obj 0 8 188 0 196 0 0 188 + gpio_periph.c.obj 0 0 0 0 0 0 160 160 + cache_err_int.c.obj 0 0 56 0 56 98 0 154 + heap.c.obj 0 0 151 0 151 0 0 151 + xtensa_intr.c.obj 0 0 113 0 113 0 35 148 spi_flash_os_func_noos.c 16 0 127 0 143 0 0 143 spi_flash_os_func_app.c. 24 0 91 0 115 25 0 140 - list.c.o 0 0 138 0 138 0 0 138 - blink.c.o 0 0 0 0 0 72 39 111 - pthread.c.o 0 8 0 0 8 81 0 81 - bootloader_mem.c.o 0 0 0 0 0 58 20 78 - cpu_util.c.o 0 0 75 0 75 0 0 75 + list.c.obj 0 0 138 0 138 0 0 138 + blink.c.obj 0 0 0 0 0 72 39 111 + pthread.c.obj 0 8 0 0 8 81 0 81 + bootloader_mem.c.obj 0 0 0 0 0 58 20 78 + cpu_util.c.obj 0 0 75 0 75 0 0 75 lib_a-mbtowc_r.o 0 0 0 0 0 72 0 72 lib_a-localeconv.o 0 0 0 0 0 63 0 63 - flash_ops.c.o 20 4 14 0 38 29 0 63 - reent_init.c.o 0 0 59 0 59 0 0 59 - rtc_io.c.o 0 0 0 0 0 53 0 53 - syscalls.c.o 0 0 0 0 0 50 0 50 - mpu_hal.c.o 0 0 0 0 0 47 0 47 + flash_ops.c.obj 20 4 14 0 38 29 0 63 + reent_init.c.obj 0 0 59 0 59 0 0 59 + rtc_io.c.obj 0 0 0 0 0 53 0 53 + syscalls.c.obj 0 0 0 0 0 50 0 50 + mpu_hal.c.obj 0 0 0 0 0 47 0 47 xtensa_vector_defaults.S 0 0 46 0 46 0 0 46 - xtensa_init.c.o 0 4 32 0 36 0 0 32 + xtensa_init.c.obj 0 4 32 0 36 0 0 32 spi_flash_chip_drivers.c 20 0 0 0 20 0 0 20 - pthread.c.o 0 0 0 0 0 12 0 12 + pthread.c.obj 0 0 0 0 0 12 0 12 crtend.o 0 0 0 0 0 0 8 8 - pm_esp32.c.o 0 0 0 0 0 8 0 8 - cpu_hal.c.o 0 0 8 0 8 0 0 8 + pm_esp32.c.obj 0 0 0 0 0 8 0 8 + cpu_hal.c.obj 0 0 8 0 8 0 0 8 crti.o 0 0 0 3 3 3 0 6 cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 - cxx_guards.cpp.o 0 0 0 0 0 5 0 5 + cxx_guards.cpp.obj 0 0 0 0 0 5 0 5 crtbegin.o 0 0 0 0 0 0 4 4 - FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 4 + FreeRTOS-openocd.c.obj 4 0 0 0 4 0 0 4 crt0.o 0 0 0 0 0 0 0 0 crtn.o 0 0 0 0 0 0 0 0 - project_elf_src.c.o 0 0 0 0 0 0 0 0 - bootloader_common.c.o 0 0 0 0 0 0 0 0 + project_elf_src.c.obj 0 0 0 0 0 0 0 0 + bootloader_common.c.obj 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 + bootloader_flash.c.obj 0 0 0 0 0 0 0 0 + bootloader_random.c.obj 0 0 0 0 0 0 0 0 + bootloader_sha.c.obj 0 0 0 0 0 0 0 0 +bootloader_utility.c.obj 0 0 0 0 0 0 0 0 + esp_image_format.c.obj 0 0 0 0 0 0 0 0 + flash_partitions.c.obj 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 @@ -2188,25 +2188,25 @@ bootloader_efuse_esp32.c 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 + spi_common.c.obj 0 0 0 0 0 0 0 0 + esp_efuse_api.c.obj 0 0 0 0 0 0 0 0 + esp_efuse_fields.c.obj 0 0 0 0 0 0 0 0 + esp_efuse_table.c.obj 0 0 0 0 0 0 0 0 + esp_efuse_utility.c.obj 0 0 0 0 0 0 0 0 + hw_random.c.obj 0 0 0 0 0 0 0 0 + pm_locks.c.obj 0 0 0 0 0 0 0 0 + system_api.c.obj 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 + esp_sha256.c.obj 0 0 0 0 0 0 0 0 + sha.c.obj 0 0 0 0 0 0 0 0 + gpio_hal.c.obj 0 0 0 0 0 0 0 0 + rtc_io_hal.c.obj 0 0 0 0 0 0 0 0 + rtc_io_periph.c.obj 0 0 0 0 0 0 0 0 + spi_periph.c.obj 0 0 0 0 0 0 0 0 + uart_periph.c.obj 0 0 0 0 0 0 0 0 +spi_flash_rom_patch.c.ob 0 0 0 0 0 0 0 0 + md5-internal.c.obj 0 0 0 0 0 0 0 0 + debug_helpers_asm.S.obj 0 0 0 0 0 0 0 0 The following entries are present in only: Object File DRAM .data & 0.bss IRAM0 .text & 0.vectors ram_st_total Flash .text & .rodata flash_total tcp_in.o 0 54 0 0 54 8127 916 9043 @@ -3384,128 +3384,128 @@ Per-file contributions to ELF file: lib_a-svfprintf.o 0 0 0 0 0 13294 752 14046 lib_a-svfiprintf.o 0 0 0 0 0 9623 1172 10795 lib_a-vfiprintf.o 0 0 0 0 0 9933 700 10633 - tasks.c.o 12 660 4954 0 5626 0 406 5372 - esp_err_to_name.c.o 0 0 0 0 0 53 5101 5154 - panic.c.o 2552 1 2321 0 4874 0 0 4873 - vfs_uart.c.o 80 8 0 0 88 3689 423 4192 + tasks.c.obj 12 660 4954 0 5626 0 406 5372 + esp_err_to_name.c.obj 0 0 0 0 0 53 5101 5154 + panic.c.obj 2552 1 2321 0 4874 0 0 4873 + vfs_uart.c.obj 80 8 0 0 88 3689 423 4192 lib_a-dtoa.o 0 0 0 0 0 3524 13 3537 - intr_alloc.c.o 8 13 660 0 681 1682 706 3056 - queue.c.o 0 0 2397 0 2397 0 424 2821 - uart.c.o 40 8 0 0 48 2087 452 2579 - multi_heap.c.o 300 0 2273 0 2573 0 0 2573 + intr_alloc.c.obj 8 13 660 0 681 1682 706 3056 + queue.c.obj 0 0 2397 0 2397 0 424 2821 + uart.c.obj 40 8 0 0 48 2087 452 2579 + multi_heap.c.obj 300 0 2273 0 2573 0 0 2573 lib_a-mprec.o 0 0 0 0 0 2144 296 2440 - rtc_clk.c.o 381 8 1867 0 2256 0 0 2248 - vfs.c.o 192 40 0 0 232 1892 132 2216 - portasm.S.o 1544 0 365 0 1909 0 0 1909 - spi_flash_hal_iram.c.o 24 0 1804 0 1828 0 0 1828 + rtc_clk.c.obj 381 8 1867 0 2256 0 0 2248 + vfs.c.obj 192 40 0 0 232 1892 132 2216 + portasm.S.obj 1544 0 365 0 1909 0 0 1909 +spi_flash_hal_iram.c.obj 24 0 1804 0 1828 0 0 1828 spi_flash_chip_generic.c 340 0 1417 0 1757 0 0 1757 - task_wdt.c.o 53 4 0 0 57 1190 496 1739 - flash_mmap.c.o 0 392 1200 0 1592 124 252 1576 - heap_caps.c.o 4 0 898 0 902 50 362 1314 - xtensa_vectors.S.o 0 0 864 425 1289 0 0 1289 - rtc_init.c.o 0 0 1255 0 1255 0 8 1263 - timers.c.o 8 56 987 0 1051 0 223 1218 - heap_caps_init.c.o 0 4 0 0 4 838 379 1217 - cpu_start.c.o 0 0 536 0 536 152 489 1177 + task_wdt.c.obj 53 4 0 0 57 1190 496 1739 + flash_mmap.c.obj 0 392 1200 0 1592 124 252 1576 + heap_caps.c.obj 4 0 898 0 902 50 362 1314 + xtensa_vectors.S.obj 0 0 864 425 1289 0 0 1289 + rtc_init.c.obj 0 0 1255 0 1255 0 8 1263 + timers.c.obj 8 56 987 0 1051 0 223 1218 + heap_caps_init.c.obj 0 4 0 0 4 838 379 1217 + cpu_start.c.obj 0 0 536 0 536 152 489 1177 esp_timer_impl_systimer. 8 8 388 0 404 252 442 1090 - ringbuf.c.o 0 0 858 0 858 0 150 1008 - periph_ctrl.c.o 8 0 0 0 8 661 272 941 - clk.c.o 0 0 34 0 34 626 281 941 + ringbuf.c.obj 0 0 858 0 858 0 150 1008 + periph_ctrl.c.obj 8 0 0 0 8 661 272 941 + clk.c.obj 0 0 34 0 34 626 281 941 lib_a-fseeko.o 0 0 0 0 0 910 0 910 - partition.c.o 0 8 0 0 8 679 181 860 - esp_flash_api.c.o 0 0 600 0 600 16 240 856 - time.c.o 0 32 115 0 147 719 0 834 - memory_layout_utils.c.o 0 0 0 0 0 509 295 804 - rtc_wdt.c.o 0 0 800 0 800 0 0 800 - esp_timer.c.o 8 12 280 0 300 405 104 797 - log.c.o 8 264 406 0 678 94 147 655 - rtc_time.c.o 0 0 626 0 626 0 0 626 - esp_flash_spi_init.c.o 120 4 0 0 124 215 281 616 - locks.c.o 8 0 487 0 495 5 84 584 - xtensa_intr_asm.S.o 512 0 51 0 563 0 0 563 - port.c.o 0 16 408 0 424 0 87 495 - crosscore_int.c.o 8 4 154 0 166 86 237 485 - soc_memory_layout.c.o 0 0 0 0 0 0 479 479 - rtc_sleep.c.o 0 0 414 0 414 0 0 414 - uart_hal.c.o 0 0 0 0 0 409 0 409 - spi_flash_hal.c.o 0 0 0 0 0 309 96 405 - cache_utils.c.o 0 8 197 0 205 21 176 394 - hello_world_main.c.o 0 0 0 0 0 192 196 388 + partition.c.obj 0 8 0 0 8 679 181 860 + esp_flash_api.c.obj 0 0 600 0 600 16 240 856 + time.c.obj 0 32 115 0 147 719 0 834 +memory_layout_utils.c.ob 0 0 0 0 0 509 295 804 + rtc_wdt.c.obj 0 0 800 0 800 0 0 800 + esp_timer.c.obj 8 12 280 0 300 405 104 797 + log.c.obj 8 264 406 0 678 94 147 655 + rtc_time.c.obj 0 0 626 0 626 0 0 626 +esp_flash_spi_init.c.obj 120 4 0 0 124 215 281 616 + locks.c.obj 8 0 487 0 495 5 84 584 + xtensa_intr_asm.S.obj 512 0 51 0 563 0 0 563 + port.c.obj 0 16 408 0 424 0 87 495 + crosscore_int.c.obj 8 4 154 0 166 86 237 485 + soc_memory_layout.c.obj 0 0 0 0 0 0 479 479 + rtc_sleep.c.obj 0 0 414 0 414 0 0 414 + uart_hal.c.obj 0 0 0 0 0 409 0 409 + spi_flash_hal.c.obj 0 0 0 0 0 309 96 405 + cache_utils.c.obj 0 8 197 0 205 21 176 394 + hello_world_main.c.obj 0 0 0 0 0 192 196 388 lib_a-locale.o 364 0 0 0 364 0 10 374 - timer.c.o 16 16 0 0 32 184 170 370 + timer.c.obj 16 16 0 0 32 184 170 370 lib_a-refill.o 0 0 0 0 0 368 0 368 - esp_ota_ops.c.o 0 4 0 0 4 151 214 365 - int_wdt.c.o 0 0 59 0 59 302 0 361 - system_api_esp32s2.c.o 0 0 323 0 323 27 0 350 - brownout.c.o 0 0 0 0 0 120 203 323 + esp_ota_ops.c.obj 0 4 0 0 4 151 214 365 + int_wdt.c.obj 0 0 59 0 59 302 0 361 +system_api_esp32s2.c.obj 0 0 323 0 323 27 0 350 + brownout.c.obj 0 0 0 0 0 120 203 323 windowspill_asm.o 0 0 315 0 315 0 0 315 - cpu_util.c.o 0 0 309 0 309 0 0 309 - brownout_hal.c.o 0 0 0 0 0 304 0 304 - freertos_hooks.c.o 8 64 47 0 119 243 0 298 - spi_flash_chip_gd.c.o 95 0 181 0 276 0 0 276 - esp_app_desc.c.o 0 0 0 0 0 0 256 256 - memspi_host_driver.c.o 43 0 206 0 249 0 0 249 - rtc_module.c.o 16 8 0 0 24 231 0 247 + cpu_util.c.obj 0 0 309 0 309 0 0 309 + brownout_hal.c.obj 0 0 0 0 0 304 0 304 + freertos_hooks.c.obj 8 64 47 0 119 243 0 298 + spi_flash_chip_gd.c.obj 95 0 181 0 276 0 0 276 + esp_app_desc.c.obj 0 0 0 0 0 0 256 256 +memspi_host_driver.c.obj 43 0 206 0 249 0 0 249 + rtc_module.c.obj 16 8 0 0 24 231 0 247 lib_a-fopen.o 0 0 0 0 0 244 0 244 lib_a-puts.o 0 0 0 0 0 234 2 236 lib_a-reent.o 0 0 0 0 0 236 0 236 lib_a-snprintf.o 0 0 0 0 0 217 0 217 - syscall_table.c.o 144 240 0 0 384 70 0 214 - xtensa_context.S.o 0 0 201 0 201 0 0 201 - spi_flash_chip_issi.c.o 97 0 101 0 198 0 0 198 + syscall_table.c.obj 144 240 0 0 384 70 0 214 + xtensa_context.S.obj 0 0 201 0 201 0 0 201 +spi_flash_chip_issi.c.ob 97 0 101 0 198 0 0 198 pthread_local_storage.c. 8 4 0 0 12 183 0 191 - log_freertos.c.o 0 8 188 0 196 0 0 188 - heap.c.o 0 0 151 0 151 0 0 151 - xtensa_intr.c.o 0 0 112 0 112 0 35 147 + log_freertos.c.obj 0 8 188 0 196 0 0 188 + heap.c.obj 0 0 151 0 151 0 0 151 + xtensa_intr.c.obj 0 0 112 0 112 0 35 147 spi_flash_os_func_app.c. 24 0 95 0 119 25 0 144 - list.c.o 0 0 138 0 138 0 0 138 + list.c.obj 0 0 138 0 138 0 0 138 lib_a-flags.o 0 0 0 0 0 128 0 128 dport_panic_highint_hdl. 0 0 123 0 123 0 0 123 lib_a-printf.o 0 0 0 0 0 116 0 116 spi_flash_os_func_noos.c 16 0 89 0 105 0 0 105 lib_a-s_frexp.o 0 0 0 0 0 100 0 100 - cache_err_int.c.o 0 0 0 0 0 96 0 96 + cache_err_int.c.obj 0 0 0 0 0 96 0 96 lib_a-vprintf.o 0 0 0 0 0 94 0 94 - pthread.c.o 0 8 0 0 8 81 0 81 - flash_ops.c.o 20 4 28 0 52 29 0 77 + pthread.c.obj 0 8 0 0 8 81 0 81 + flash_ops.c.obj 20 4 28 0 52 29 0 77 lib_a-localeconv.o 0 0 0 0 0 63 0 63 - reent_init.c.o 0 0 59 0 59 0 0 59 - rtc_io.c.o 0 0 0 0 0 53 0 53 - syscalls.c.o 0 0 0 0 0 50 0 50 + reent_init.c.obj 0 0 59 0 59 0 0 59 + rtc_io.c.obj 0 0 0 0 0 53 0 53 + syscalls.c.obj 0 0 0 0 0 50 0 50 xtensa_vector_defaults.S 0 0 46 0 46 0 0 46 lib_a-fseek.o 0 0 0 0 0 45 0 45 - uart_hal_iram.c.o 0 0 0 0 0 43 0 43 - system_api.c.o 0 8 40 0 48 0 0 40 + uart_hal_iram.c.obj 0 0 0 0 0 43 0 43 + system_api.c.obj 0 8 40 0 48 0 0 40 _divdi3.o 0 0 0 0 0 0 40 40 _moddi3.o 0 0 0 0 0 0 40 40 _udivdi3.o 0 0 0 0 0 0 40 40 _umoddi3.o 0 0 0 0 0 0 40 40 - xtensa_init.c.o 0 4 32 0 36 0 0 32 + xtensa_init.c.obj 0 4 32 0 36 0 0 32 interrupts--intlevel.o 0 0 0 0 0 0 32 32 spi_flash_chip_drivers.c 20 0 0 0 20 0 0 20 - pthread.c.o 0 0 0 0 0 12 0 12 + pthread.c.obj 0 0 0 0 0 12 0 12 lib_a-errno.o 0 0 0 0 0 10 0 10 crtend.o 0 0 0 0 0 0 8 8 - pm_esp32s2.c.o 0 0 0 0 0 8 0 8 + pm_esp32s2.c.obj 0 0 0 0 0 8 0 8 int_asm--set_intclear.o 0 0 8 0 8 0 0 8 state_asm--restore_extra 0 0 7 0 7 0 0 7 state_asm--save_extra_nw 0 0 7 0 7 0 0 7 crti.o 0 0 0 3 3 3 0 6 cxx_exception_stubs.cpp. 0 0 0 0 0 6 0 6 - cxx_guards.cpp.o 0 0 0 0 0 5 0 5 + cxx_guards.cpp.obj 0 0 0 0 0 5 0 5 crtbegin.o 0 0 0 0 0 0 4 4 - FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 4 + FreeRTOS-openocd.c.obj 4 0 0 0 4 0 0 4 crt0.o 0 0 0 0 0 0 0 0 crtn.o 0 0 0 0 0 0 0 0 - project_elf_src.c.o 0 0 0 0 0 0 0 0 - bootloader_common.c.o 0 0 0 0 0 0 0 0 + project_elf_src.c.obj 0 0 0 0 0 0 0 0 + bootloader_common.c.obj 0 0 0 0 0 0 0 0 bootloader_efuse_esp32s2 0 0 0 0 0 0 0 0 - bootloader_flash.c.o 0 0 0 0 0 0 0 0 - bootloader_random.c.o 0 0 0 0 0 0 0 0 - bootloader_sha.c.o 0 0 0 0 0 0 0 0 - bootloader_utility.c.o 0 0 0 0 0 0 0 0 - esp_image_format.c.o 0 0 0 0 0 0 0 0 - flash_partitions.c.o 0 0 0 0 0 0 0 0 + bootloader_flash.c.obj 0 0 0 0 0 0 0 0 + bootloader_random.c.obj 0 0 0 0 0 0 0 0 + bootloader_sha.c.obj 0 0 0 0 0 0 0 0 +bootloader_utility.c.obj 0 0 0 0 0 0 0 0 + esp_image_format.c.obj 0 0 0 0 0 0 0 0 + flash_partitions.c.obj 0 0 0 0 0 0 0 0 isatty.o 0 0 0 0 0 0 0 0 lib_a-assert.o 0 0 0 0 0 0 0 0 lib_a-bzero.o 0 0 0 0 0 0 0 0 @@ -3568,10 +3568,10 @@ bootloader_efuse_esp32s2 0 0 0 0 0 lib_a-wcrtomb.o 0 0 0 0 0 0 0 0 lib_a-wctomb_r.o 0 0 0 0 0 0 0 0 lib_a-wsetup.o 0 0 0 0 0 0 0 0 - gpio.c.o 0 0 0 0 0 0 0 0 - spi_common.c.o 0 0 0 0 0 0 0 0 - hw_random.c.o 0 0 0 0 0 0 0 0 - pm_locks.c.o 0 0 0 0 0 0 0 0 + gpio.c.obj 0 0 0 0 0 0 0 0 + spi_common.c.obj 0 0 0 0 0 0 0 0 + hw_random.c.obj 0 0 0 0 0 0 0 0 + pm_locks.c.obj 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 @@ -3579,20 +3579,20 @@ bootloader_efuse_esp32s2 0 0 0 0 0 _floatdidf.o 0 0 0 0 0 0 0 0 _floatsidf.o 0 0 0 0 0 0 0 0 _muldf3.o 0 0 0 0 0 0 0 0 - esp_mem.c.o 0 0 0 0 0 0 0 0 - platform.c.o 0 0 0 0 0 0 0 0 - platform_util.c.o 0 0 0 0 0 0 0 0 - sha256.c.o 0 0 0 0 0 0 0 0 - gpio_hal.c.o 0 0 0 0 0 0 0 0 - rtc_io_hal.c.o 0 0 0 0 0 0 0 0 - spi_flash_hal_gpspi.c.o 0 0 0 0 0 0 0 0 - timer_hal.c.o 0 0 0 0 0 0 0 0 - gpio_periph.c.o 0 0 0 0 0 0 0 0 - rtc_io_periph.c.o 0 0 0 0 0 0 0 0 - spi_periph.c.o 0 0 0 0 0 0 0 0 - uart_periph.c.o 0 0 0 0 0 0 0 0 - md5-internal.c.o 0 0 0 0 0 0 0 0 - stdatomic.c.o 0 0 0 0 0 0 0 0 + esp_mem.c.obj 0 0 0 0 0 0 0 0 + platform.c.obj 0 0 0 0 0 0 0 0 + platform_util.c.obj 0 0 0 0 0 0 0 0 + sha256.c.obj 0 0 0 0 0 0 0 0 + gpio_hal.c.obj 0 0 0 0 0 0 0 0 + rtc_io_hal.c.obj 0 0 0 0 0 0 0 0 +spi_flash_hal_gpspi.c.ob 0 0 0 0 0 0 0 0 + timer_hal.c.obj 0 0 0 0 0 0 0 0 + gpio_periph.c.obj 0 0 0 0 0 0 0 0 + rtc_io_periph.c.obj 0 0 0 0 0 0 0 0 + spi_periph.c.obj 0 0 0 0 0 0 0 0 + uart_periph.c.obj 0 0 0 0 0 0 0 0 + md5-internal.c.obj 0 0 0 0 0 0 0 0 + stdatomic.c.obj 0 0 0 0 0 0 0 0 *** Running idf_size.py --archive_details for esp32s2... @@ -3804,143 +3804,143 @@ Per-file contributions to ELF file: lib_a-vfprintf.o 0 0 0 0 0 14720 748 0 15468 lib_a-svfiprintf.o 0 0 0 0 0 9544 1172 0 10716 lib_a-vfiprintf.o 0 0 0 0 0 9756 737 0 10493 - esp_err_to_name.c.o 6 0 0 0 6 56 7065 0 7127 - tasks.c.o 8 0 664 5552 6224 0 1080 0 6640 - heap_tlsf.c.o 1796 0 0 4036 5832 0 0 0 5832 + esp_err_to_name.c.obj 6 0 0 0 6 56 7065 0 7127 + tasks.c.obj 8 0 664 5552 6224 0 1080 0 6640 + heap_tlsf.c.obj 1796 0 0 4036 5832 0 0 0 5832 lib_a-dtoa.o 0 0 0 0 0 5312 233 0 5545 - vfs_uart.c.o 80 0 8 0 88 4402 270 0 4752 - queue.c.o 0 0 0 3180 3180 0 1495 0 4675 + vfs_uart.c.obj 80 0 8 0 88 4402 270 0 4752 + queue.c.obj 0 0 0 3180 3180 0 1495 0 4675 lib_a-mprec.o 0 0 0 0 0 4252 406 0 4658 - memprot.c.o 0 0 0 772 772 2750 800 0 4322 + memprot.c.obj 0 0 0 772 772 2750 800 0 4322 spi_flash_chip_generic.c 554 0 0 2668 3222 0 0 0 3222 - uart.c.o 40 0 8 0 48 2588 511 0 3139 - intr_alloc.c.o 0 0 13 688 701 2128 198 0 3014 - panic_arch.c.o 0 0 0 0 0 1060 1693 0 2753 - vfs.c.o 192 0 40 0 232 2358 108 0 2658 - spi_flash_hal_iram.c.o 0 0 0 2220 2220 0 0 0 2220 - task_wdt.c.o 45 0 12 0 57 1438 478 0 1961 - flash_mmap.c.o 0 0 136 1530 1666 182 240 0 1952 - esp_flash_api.c.o 20 0 0 968 988 80 762 0 1830 - heap_caps.c.o 4 0 4 1122 1130 286 355 0 1767 - ringbuf.c.o 0 0 0 1002 1002 0 512 0 1514 - spi_flash_hal_gpspi.c.o 0 0 0 1484 1484 0 0 0 1484 - esp_efuse_utility.c.o 0 0 4 0 4 996 475 0 1471 - locks.c.o 0 0 168 924 1092 152 344 0 1420 - heap_caps_init.c.o 0 0 4 0 4 1052 338 0 1390 - startup.c.o 12 0 8 26 46 834 497 0 1369 - partition.c.o 0 0 8 0 8 1066 268 0 1334 + uart.c.obj 40 0 8 0 48 2588 511 0 3139 + intr_alloc.c.obj 0 0 13 688 701 2128 198 0 3014 + panic_arch.c.obj 0 0 0 0 0 1060 1693 0 2753 + vfs.c.obj 192 0 40 0 232 2358 108 0 2658 +spi_flash_hal_iram.c.obj 0 0 0 2220 2220 0 0 0 2220 + task_wdt.c.obj 45 0 12 0 57 1438 478 0 1961 + flash_mmap.c.obj 0 0 136 1530 1666 182 240 0 1952 + esp_flash_api.c.obj 20 0 0 968 988 80 762 0 1830 + heap_caps.c.obj 4 0 4 1122 1130 286 355 0 1767 + ringbuf.c.obj 0 0 0 1002 1002 0 512 0 1514 +spi_flash_hal_gpspi.c.ob 0 0 0 1484 1484 0 0 0 1484 + esp_efuse_utility.c.obj 0 0 4 0 4 996 475 0 1471 + locks.c.obj 0 0 168 924 1092 152 344 0 1420 + heap_caps_init.c.obj 0 0 4 0 4 1052 338 0 1390 + startup.c.obj 12 0 8 26 46 834 497 0 1369 + partition.c.obj 0 0 8 0 8 1066 268 0 1334 lib_a-fseeko.o 0 0 0 0 0 1264 0 0 1264 - wdt_hal_iram.c.o 0 0 0 1158 1158 0 0 0 1158 + wdt_hal_iram.c.obj 0 0 0 1158 1158 0 0 0 1158 lib_a-fvwrite.o 0 0 0 0 0 1156 0 0 1156 lib_a-findfp.o 0 0 0 0 0 1040 96 0 1136 - panic.c.o 12 0 5 6 23 958 131 0 1107 - memspi_host_driver.c.o 397 0 0 636 1033 0 0 0 1033 + panic.c.obj 12 0 5 6 23 958 131 0 1107 +memspi_host_driver.c.obj 397 0 0 636 1033 0 0 0 1033 spi_flash_chip_winbond.c 203 0 0 748 951 0 0 0 951 - memory_layout_utils.c.o 0 0 0 0 0 650 283 0 933 - esp_timer.c.o 0 0 8 296 304 514 72 0 882 +memory_layout_utils.c.ob 0 0 0 0 0 650 283 0 933 + esp_timer.c.obj 0 0 8 296 304 514 72 0 882 lib_a-fflush.o 0 0 0 0 0 856 0 0 856 trunctfdf2.o 0 0 0 0 0 848 0 0 848 - port.c.o 4 0 1556 588 2148 66 190 0 848 - multi_heap.c.o 157 0 0 678 835 0 0 0 835 - periph_ctrl.c.o 0 0 27 0 27 738 85 0 823 - systimer_hal.c.o 85 0 0 716 801 0 0 0 801 - time.c.o 0 0 20 180 200 618 0 0 798 - log.c.o 8 0 264 32 304 562 122 0 724 + port.c.obj 4 0 1556 588 2148 66 190 0 848 + multi_heap.c.obj 157 0 0 678 835 0 0 0 835 + periph_ctrl.c.obj 0 0 27 0 27 738 85 0 823 + systimer_hal.c.obj 85 0 0 716 801 0 0 0 801 + time.c.obj 0 0 20 180 200 618 0 0 798 + log.c.obj 8 0 264 32 304 562 122 0 724 esp_timer_impl_systimer. 16 0 12 210 238 296 125 0 647 - cpu_start.c.o 0 0 0 432 432 42 158 0 632 - esp_flash_spi_init.c.o 68 0 4 0 72 268 261 0 597 + cpu_start.c.obj 0 0 0 432 432 42 158 0 632 +esp_flash_spi_init.c.obj 68 0 4 0 72 268 261 0 597 spi_flash_os_func_app.c. 52 0 0 414 466 34 95 0 595 - port_systick.c.o 0 0 8 368 376 0 192 0 560 - vectors.S.o 0 0 0 522 522 0 0 0 522 + port_systick.c.obj 0 0 8 368 376 0 192 0 560 + vectors.S.obj 0 0 0 522 522 0 0 0 522 lib_a-refill.o 0 0 0 0 0 512 0 0 512 lib_a-reent.o 0 0 0 0 0 500 0 0 500 - esp_app_desc.c.o 1 0 8 198 207 32 4 256 491 + esp_app_desc.c.obj 1 0 8 198 207 32 4 256 491 lib_a-ftello.o 0 0 0 0 0 488 0 0 488 - hello_world_main.c.o 0 0 0 0 0 248 232 0 480 + hello_world_main.c.obj 0 0 0 0 0 248 232 0 480 lib_a-fclose.o 0 0 0 0 0 456 0 0 456 lib_a-makebuf.o 0 0 0 0 0 436 0 0 436 - spi_flash_hal.c.o 0 0 0 0 0 332 96 0 428 - port_common.c.o 0 0 0 104 104 128 186 0 418 + spi_flash_hal.c.obj 0 0 0 0 0 332 96 0 428 + port_common.c.obj 0 0 0 104 104 128 186 0 418 lib_a-fopen.o 0 0 0 0 0 416 0 0 416 - crosscore_int.c.o 0 0 4 162 166 106 120 0 388 + crosscore_int.c.obj 0 0 4 162 166 106 120 0 388 lib_a-wsetup.o 0 0 0 0 0 384 0 0 384 lib_a-locale.o 4 0 0 0 4 0 378 0 382 - rtc_clk.c.o 71 0 4 308 383 0 0 0 379 + rtc_clk.c.obj 71 0 4 308 383 0 0 0 379 lib_a-puts.o 0 0 0 0 0 372 0 0 372 - panic_handler.c.o 8 0 4 82 94 266 8 0 364 - esp_time_impl.c.o 0 0 12 0 12 360 0 0 360 + panic_handler.c.obj 8 0 4 82 94 266 8 0 364 + esp_time_impl.c.obj 0 0 12 0 12 360 0 0 360 lib_a-fwalk.o 0 0 0 0 0 340 0 0 340 - bootloader_flash.c.o 0 0 0 340 340 0 0 0 340 - freertos_hooks.c.o 0 0 64 48 112 290 0 0 338 - uart_hal.c.o 0 0 0 0 0 334 0 0 334 + bootloader_flash.c.obj 0 0 0 340 340 0 0 0 340 + freertos_hooks.c.obj 0 0 64 48 112 290 0 0 338 + uart_hal.c.obj 0 0 0 0 0 334 0 0 334 lib_a-stdio.o 0 0 0 0 0 316 0 0 316 - spi_flash_chip_gd.c.o 123 0 0 190 313 0 0 0 313 - esp_ota_ops.c.o 0 0 4 0 4 186 121 0 307 - int_wdt.c.o 0 0 8 74 82 206 0 0 280 - interrupt.c.o 0 0 256 130 386 0 137 0 267 - spi_flash_chip_mxic.c.o 190 0 0 76 266 0 0 0 266 - esp_err.c.o 108 0 0 154 262 0 0 0 262 - system_internal.c.o 0 0 0 260 260 0 0 0 260 - system_time.c.o 0 0 8 38 46 142 80 0 260 + spi_flash_chip_gd.c.obj 123 0 0 190 313 0 0 0 313 + esp_ota_ops.c.obj 0 0 4 0 4 186 121 0 307 + int_wdt.c.obj 0 0 8 74 82 206 0 0 280 + interrupt.c.obj 0 0 256 130 386 0 137 0 267 +spi_flash_chip_mxic.c.ob 190 0 0 76 266 0 0 0 266 + esp_err.c.obj 108 0 0 154 262 0 0 0 262 + system_internal.c.obj 0 0 0 260 260 0 0 0 260 + system_time.c.obj 0 0 8 38 46 142 80 0 260 lib_a-ctype_.o 0 0 0 0 0 0 257 0 257 - cpu_util_esp32h2.c.o 0 0 0 0 0 250 0 0 250 + cpu_util_esp32h2.c.obj 0 0 0 0 0 250 0 0 250 pthread_local_storage.c. 0 0 4 0 4 242 0 0 242 - spi_flash_chip_issi.c.o 125 0 0 112 237 0 0 0 237 - memory_layout.c.o 4 0 0 0 4 0 231 0 235 - log_freertos.c.o 0 0 8 232 240 0 0 0 232 - newlib_init.c.o 156 0 240 0 396 76 0 0 232 +spi_flash_chip_issi.c.ob 125 0 0 112 237 0 0 0 237 + memory_layout.c.obj 4 0 0 0 4 0 231 0 235 + log_freertos.c.obj 0 0 8 232 240 0 0 0 232 + newlib_init.c.obj 156 0 240 0 396 76 0 0 232 lib_a-printf.o 0 0 0 0 0 224 0 0 224 - esp_clk.c.o 0 16 4 30 50 176 0 0 222 - heap.c.o 0 0 0 190 190 0 0 0 190 + esp_clk.c.obj 0 16 4 30 50 176 0 0 222 + heap.c.obj 0 0 0 190 190 0 0 0 190 lib_a-s_frexp.o 0 0 0 0 0 180 8 0 188 lib_a-assert.o 0 0 0 0 0 124 63 0 187 - cache_utils.c.o 0 0 8 144 152 38 0 0 182 - fpga_overrides.c.o 0 0 0 0 0 72 107 0 179 + cache_utils.c.obj 0 0 8 144 152 38 0 0 182 + fpga_overrides.c.obj 0 0 0 0 0 72 107 0 179 lib_a-vprintf.o 0 0 0 0 0 176 0 0 176 - spi_flash_chip_boya.c.o 125 0 0 46 171 0 0 0 171 - esp_system.c.o 0 0 20 90 110 80 0 0 170 +spi_flash_chip_boya.c.ob 125 0 0 46 171 0 0 0 171 + esp_system.c.obj 0 0 20 90 110 80 0 0 170 lib_a-flags.o 0 0 0 0 0 168 0 0 168 - abort.c.o 38 0 0 128 166 0 0 0 166 - brownout_hal.c.o 0 0 0 0 0 160 0 0 160 - esp_efuse_api.c.o 0 0 0 0 0 158 0 0 158 - portasm.S.o 0 0 0 154 154 0 0 0 154 + abort.c.obj 38 0 0 128 166 0 0 0 166 + brownout_hal.c.obj 0 0 0 0 0 160 0 0 160 + esp_efuse_api.c.obj 0 0 0 0 0 158 0 0 158 + portasm.S.obj 0 0 0 154 154 0 0 0 154 lib_a-fiprintf.o 0 0 0 0 0 148 0 0 148 - list.c.o 0 0 0 134 134 0 0 0 134 + list.c.obj 0 0 0 134 134 0 0 0 134 spi_flash_encrypt_hal_ir 0 0 0 132 132 0 0 0 132 - cache_err_int.c.o 0 0 0 4 4 124 0 0 128 + cache_err_int.c.obj 0 0 0 4 4 124 0 0 128 spi_flash_os_func_noos.c 36 0 0 86 122 0 0 0 122 lib_a-mbtowc_r.o 0 0 0 0 0 108 0 0 108 - flash_ops.c.o 24 0 4 40 68 38 0 0 102 - pthread.c.o 0 0 8 0 8 100 0 0 100 - uart_hal_iram.c.o 0 0 0 0 0 88 0 0 88 - apb_backup_dma.c.o 0 0 0 52 52 34 0 0 86 + flash_ops.c.obj 24 0 4 40 68 38 0 0 102 + pthread.c.obj 0 0 8 0 8 100 0 0 100 + uart_hal_iram.c.obj 0 0 0 0 0 88 0 0 88 + apb_backup_dma.c.obj 0 0 0 52 52 34 0 0 86 interrupt_controller_hal 0 0 0 0 0 80 0 0 80 - reent_init.c.o 0 0 0 76 76 0 0 0 76 - regi2c_ctrl.c.o 0 0 0 74 74 0 0 0 74 - instruction_decode.c.o 0 0 0 0 0 74 0 0 74 - chip_info.c.o 0 0 0 0 0 70 0 0 70 + reent_init.c.obj 0 0 0 76 76 0 0 0 76 + regi2c_ctrl.c.obj 0 0 0 74 74 0 0 0 74 +instruction_decode.c.obj 0 0 0 0 0 74 0 0 74 + chip_info.c.obj 0 0 0 0 0 70 0 0 70 lib_a-fseek.o 0 0 0 0 0 68 0 0 68 lib_a-wctomb_r.o 0 0 0 0 0 64 0 0 64 - flash_qio_mode.c.o 0 0 0 0 0 58 0 0 58 + flash_qio_mode.c.obj 0 0 0 0 0 58 0 0 58 lib_a-sysgettod.o 0 0 0 0 0 56 0 0 56 - brownout.c.o 0 0 0 0 0 38 5 0 43 + brownout.c.obj 0 0 0 0 0 38 5 0 43 lib_a-localeconv.o 0 0 0 0 0 40 0 0 40 - syscalls.c.o 0 0 0 0 0 36 0 0 36 - esp_efuse_fields.c.o 0 0 0 0 0 32 0 0 32 - cpu_hal.c.o 0 0 0 32 32 0 0 0 32 + syscalls.c.obj 0 0 0 0 0 36 0 0 36 + esp_efuse_fields.c.obj 0 0 0 0 0 32 0 0 32 + cpu_hal.c.obj 0 0 0 32 32 0 0 0 32 spi_flash_chip_drivers.c 32 0 0 0 32 0 0 0 32 lib_a-errno.o 0 0 0 0 0 28 0 0 28 - cpu_util.c.o 0 0 0 28 28 0 0 0 28 + cpu_util.c.obj 0 0 0 28 28 0 0 0 28 bootloader_flash_config_ 0 0 0 0 0 26 0 0 26 - rtc_time.c.o 0 0 0 20 20 0 0 0 20 - bootloader_mem.c.o 0 0 0 0 0 14 0 0 14 - esp_efuse_table.c.o 12 0 0 0 12 0 0 0 12 - pm_impl.c.o 0 0 0 0 0 6 0 0 6 - pthread.c.o 0 0 0 0 0 6 0 0 6 - spi_bus_lock.c.o 4 0 0 0 4 0 0 0 4 - FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 0 4 - cxx_guards.cpp.o 0 0 0 0 0 2 0 0 2 - ubsan.c.o 0 0 0 2 2 0 0 0 2 + rtc_time.c.obj 0 0 0 20 20 0 0 0 20 + bootloader_mem.c.obj 0 0 0 0 0 14 0 0 14 + esp_efuse_table.c.obj 12 0 0 0 12 0 0 0 12 + pm_impl.c.obj 0 0 0 0 0 6 0 0 6 + pthread.c.obj 0 0 0 0 0 6 0 0 6 + spi_bus_lock.c.obj 4 0 0 0 4 0 0 0 4 + FreeRTOS-openocd.c.obj 4 0 0 0 4 0 0 0 4 + cxx_guards.cpp.obj 0 0 0 0 0 2 0 0 2 + ubsan.c.obj 0 0 0 2 2 0 0 0 2 lib_a-environ.o 0 0 4 0 4 0 0 0 0 _divdi3.o 0 0 0 0 0 0 0 0 0 _moddi3.o 0 0 0 0 0 0 0 0 0 @@ -4138,149 +4138,149 @@ Per-file contributions to ELF file: lib_a-vfprintf.o 0 0 0 0 0 14720 748 0 15468 lib_a-svfiprintf.o 0 0 0 0 0 9544 1172 0 10716 lib_a-vfiprintf.o 0 0 0 0 0 9756 737 0 10493 - esp_err_to_name.c.o 6 0 0 0 6 56 7065 0 7127 - tasks.c.o 8 0 664 5552 6224 0 1080 0 6640 - heap_tlsf.c.o 1796 0 0 4036 5832 0 0 0 5832 + esp_err_to_name.c.obj 6 0 0 0 6 56 7065 0 7127 + tasks.c.obj 8 0 664 5552 6224 0 1080 0 6640 + heap_tlsf.c.obj 1796 0 0 4036 5832 0 0 0 5832 lib_a-dtoa.o 0 0 0 0 0 5312 233 0 5545 - vfs_uart.c.o 80 0 8 0 88 4402 270 0 4752 - queue.c.o 0 0 0 3192 3192 0 1495 0 4687 + vfs_uart.c.obj 80 0 8 0 88 4402 270 0 4752 + queue.c.obj 0 0 0 3192 3192 0 1495 0 4687 lib_a-mprec.o 0 0 0 0 0 4252 406 0 4658 - memprot.c.o 0 0 0 772 772 2762 800 0 4334 + memprot.c.obj 0 0 0 772 772 2762 800 0 4334 spi_flash_chip_generic.c 554 0 0 2684 3238 0 0 0 3238 - uart.c.o 40 0 8 0 48 2588 511 0 3139 - intr_alloc.c.o 0 0 13 688 701 2128 198 0 3014 - panic_arch.c.o 0 0 0 0 0 1060 1693 0 2753 - vfs.c.o 192 0 40 0 232 2360 108 0 2660 - rtc_init.c.o 0 0 0 0 0 2068 500 0 2568 - gpio.c.o 0 0 0 0 0 1856 459 0 2315 - spi_flash_hal_iram.c.o 0 0 0 2220 2220 0 0 0 2220 - task_wdt.c.o 45 0 12 0 57 1438 478 0 1961 - flash_mmap.c.o 0 0 136 1530 1666 182 240 0 1952 - rtc_clk.c.o 171 0 4 1738 1913 0 0 0 1909 - esp_flash_api.c.o 20 0 0 968 988 82 762 0 1832 - heap_caps.c.o 4 0 4 1122 1130 286 355 0 1767 - ringbuf.c.o 0 0 0 1004 1004 0 512 0 1516 - spi_flash_hal_gpspi.c.o 0 0 0 1484 1484 0 0 0 1484 - esp_efuse_utility.c.o 0 0 4 0 4 998 475 0 1473 - locks.c.o 0 0 168 924 1092 152 344 0 1420 - heap_caps_init.c.o 0 0 4 0 4 1052 338 0 1390 - startup.c.o 12 0 8 44 64 834 497 0 1387 - partition.c.o 0 0 8 0 8 1070 268 0 1338 + uart.c.obj 40 0 8 0 48 2588 511 0 3139 + intr_alloc.c.obj 0 0 13 688 701 2128 198 0 3014 + panic_arch.c.obj 0 0 0 0 0 1060 1693 0 2753 + vfs.c.obj 192 0 40 0 232 2360 108 0 2660 + rtc_init.c.obj 0 0 0 0 0 2068 500 0 2568 + gpio.c.obj 0 0 0 0 0 1856 459 0 2315 +spi_flash_hal_iram.c.obj 0 0 0 2220 2220 0 0 0 2220 + task_wdt.c.obj 45 0 12 0 57 1438 478 0 1961 + flash_mmap.c.obj 0 0 136 1530 1666 182 240 0 1952 + rtc_clk.c.obj 171 0 4 1738 1913 0 0 0 1909 + esp_flash_api.c.obj 20 0 0 968 988 82 762 0 1832 + heap_caps.c.obj 4 0 4 1122 1130 286 355 0 1767 + ringbuf.c.obj 0 0 0 1004 1004 0 512 0 1516 +spi_flash_hal_gpspi.c.ob 0 0 0 1484 1484 0 0 0 1484 + esp_efuse_utility.c.obj 0 0 4 0 4 998 475 0 1473 + locks.c.obj 0 0 168 924 1092 152 344 0 1420 + heap_caps_init.c.obj 0 0 4 0 4 1052 338 0 1390 + startup.c.obj 12 0 8 44 64 834 497 0 1387 + partition.c.obj 0 0 8 0 8 1070 268 0 1338 lib_a-fseeko.o 0 0 0 0 0 1264 0 0 1264 - wdt_hal_iram.c.o 0 0 0 1160 1160 0 0 0 1160 + wdt_hal_iram.c.obj 0 0 0 1160 1160 0 0 0 1160 lib_a-fvwrite.o 0 0 0 0 0 1156 0 0 1156 lib_a-findfp.o 0 0 0 0 0 1040 96 0 1136 - panic.c.o 12 0 5 6 23 958 131 0 1107 - clk.c.o 0 0 0 0 0 838 212 0 1050 - memspi_host_driver.c.o 397 0 0 636 1033 0 0 0 1033 + panic.c.obj 12 0 5 6 23 958 131 0 1107 + clk.c.obj 0 0 0 0 0 838 212 0 1050 +memspi_host_driver.c.obj 397 0 0 636 1033 0 0 0 1033 spi_flash_chip_winbond.c 203 0 0 748 951 0 0 0 951 - memory_layout_utils.c.o 0 0 0 0 0 650 283 0 933 - periph_ctrl.c.o 0 0 27 0 27 836 85 0 921 - esp_timer.c.o 0 0 8 296 304 514 72 0 882 +memory_layout_utils.c.ob 0 0 0 0 0 650 283 0 933 + periph_ctrl.c.obj 0 0 27 0 27 836 85 0 921 + esp_timer.c.obj 0 0 8 296 304 514 72 0 882 lib_a-fflush.o 0 0 0 0 0 856 0 0 856 trunctfdf2.o 0 0 0 0 0 848 0 0 848 - port.c.o 4 0 1556 588 2148 66 190 0 848 - systimer_hal.c.o 85 0 0 760 845 0 0 0 845 - multi_heap.c.o 157 0 0 678 835 0 0 0 835 - time.c.o 0 0 20 180 200 620 0 0 800 - log.c.o 8 0 264 32 304 562 122 0 724 - cpu_start.c.o 0 0 0 464 464 42 158 0 664 + port.c.obj 4 0 1556 588 2148 66 190 0 848 + systimer_hal.c.obj 85 0 0 760 845 0 0 0 845 + multi_heap.c.obj 157 0 0 678 835 0 0 0 835 + time.c.obj 0 0 20 180 200 620 0 0 800 + log.c.obj 8 0 264 32 304 562 122 0 724 + cpu_start.c.obj 0 0 0 464 464 42 158 0 664 esp_timer_impl_systimer. 16 0 12 210 238 296 125 0 647 - esp_flash_spi_init.c.o 68 0 4 0 72 272 261 0 601 +esp_flash_spi_init.c.obj 68 0 4 0 72 272 261 0 601 spi_flash_os_func_app.c. 52 0 0 414 466 34 95 0 595 - rtc_time.c.o 0 0 0 590 590 0 0 0 590 - port_systick.c.o 0 0 8 370 378 0 192 0 562 - vectors.S.o 0 0 0 522 522 0 0 0 522 + rtc_time.c.obj 0 0 0 590 590 0 0 0 590 + port_systick.c.obj 0 0 8 370 378 0 192 0 562 + vectors.S.obj 0 0 0 522 522 0 0 0 522 lib_a-refill.o 0 0 0 0 0 512 0 0 512 lib_a-reent.o 0 0 0 0 0 500 0 0 500 - esp_app_desc.c.o 1 0 8 198 207 32 4 256 491 + esp_app_desc.c.obj 1 0 8 198 207 32 4 256 491 lib_a-ftello.o 0 0 0 0 0 488 0 0 488 - hello_world_main.c.o 0 0 0 0 0 248 232 0 480 + hello_world_main.c.obj 0 0 0 0 0 248 232 0 480 lib_a-fclose.o 0 0 0 0 0 456 0 0 456 - spi_flash_hal.c.o 0 0 0 0 0 342 96 0 438 + spi_flash_hal.c.obj 0 0 0 0 0 342 96 0 438 lib_a-makebuf.o 0 0 0 0 0 436 0 0 436 - port_common.c.o 0 0 0 104 104 128 186 0 418 + port_common.c.obj 0 0 0 104 104 128 186 0 418 lib_a-fopen.o 0 0 0 0 0 416 0 0 416 - sleep_modes.c.o 0 0 0 0 0 244 171 0 415 - crosscore_int.c.o 0 0 4 162 166 106 120 0 388 + sleep_modes.c.obj 0 0 0 0 0 244 171 0 415 + crosscore_int.c.obj 0 0 4 162 166 106 120 0 388 lib_a-wsetup.o 0 0 0 0 0 384 0 0 384 lib_a-locale.o 4 0 0 0 4 0 378 0 382 lib_a-puts.o 0 0 0 0 0 372 0 0 372 - uart_hal.c.o 0 0 0 0 0 366 0 0 366 - panic_handler.c.o 8 0 4 82 94 266 8 0 364 - esp_time_impl.c.o 0 0 12 0 12 362 0 0 362 + uart_hal.c.obj 0 0 0 0 0 366 0 0 366 + panic_handler.c.obj 8 0 4 82 94 266 8 0 364 + esp_time_impl.c.obj 0 0 12 0 12 362 0 0 362 lib_a-fwalk.o 0 0 0 0 0 340 0 0 340 - bootloader_flash.c.o 0 0 0 340 340 0 0 0 340 - freertos_hooks.c.o 0 0 64 48 112 290 0 0 338 + bootloader_flash.c.obj 0 0 0 340 340 0 0 0 340 + freertos_hooks.c.obj 0 0 64 48 112 290 0 0 338 lib_a-stdio.o 0 0 0 0 0 316 0 0 316 - spi_flash_chip_gd.c.o 123 0 0 190 313 0 0 0 313 - rtc_sleep.c.o 0 0 0 308 308 0 0 0 308 - esp_ota_ops.c.o 0 0 4 0 4 186 121 0 307 - system_internal.c.o 0 0 0 298 298 0 0 0 298 - int_wdt.c.o 0 0 8 74 82 206 0 0 280 - interrupt.c.o 0 0 256 130 386 0 137 0 267 - spi_flash_chip_mxic.c.o 190 0 0 76 266 0 0 0 266 - esp_err.c.o 108 0 0 154 262 0 0 0 262 - system_time.c.o 0 0 8 38 46 142 80 0 260 + spi_flash_chip_gd.c.obj 123 0 0 190 313 0 0 0 313 + rtc_sleep.c.obj 0 0 0 308 308 0 0 0 308 + esp_ota_ops.c.obj 0 0 4 0 4 186 121 0 307 + system_internal.c.obj 0 0 0 298 298 0 0 0 298 + int_wdt.c.obj 0 0 8 74 82 206 0 0 280 + interrupt.c.obj 0 0 256 130 386 0 137 0 267 +spi_flash_chip_mxic.c.ob 190 0 0 76 266 0 0 0 266 + esp_err.c.obj 108 0 0 154 262 0 0 0 262 + system_time.c.obj 0 0 8 38 46 142 80 0 260 lib_a-ctype_.o 0 0 0 0 0 0 257 0 257 - cpu_util_esp32c3.c.o 0 0 0 0 0 250 0 0 250 - esp_clk.c.o 0 16 4 30 50 200 0 0 246 + cpu_util_esp32c3.c.obj 0 0 0 0 0 250 0 0 250 + esp_clk.c.obj 0 16 4 30 50 200 0 0 246 pthread_local_storage.c. 0 0 4 0 4 242 0 0 242 - spi_flash_chip_issi.c.o 125 0 0 112 237 0 0 0 237 - memory_layout.c.o 4 0 0 0 4 0 231 0 235 - log_freertos.c.o 0 0 8 232 240 0 0 0 232 - newlib_init.c.o 156 0 240 0 396 76 0 0 232 +spi_flash_chip_issi.c.ob 125 0 0 112 237 0 0 0 237 + memory_layout.c.obj 4 0 0 0 4 0 231 0 235 + log_freertos.c.obj 0 0 8 232 240 0 0 0 232 + newlib_init.c.obj 156 0 240 0 396 76 0 0 232 lib_a-printf.o 0 0 0 0 0 224 0 0 224 - regi2c_ctrl.c.o 0 0 0 202 202 0 0 0 202 - heap.c.o 0 0 0 190 190 0 0 0 190 + regi2c_ctrl.c.obj 0 0 0 202 202 0 0 0 202 + heap.c.obj 0 0 0 190 190 0 0 0 190 lib_a-s_frexp.o 0 0 0 0 0 180 8 0 188 lib_a-assert.o 0 0 0 0 0 124 63 0 187 - cache_utils.c.o 0 0 8 144 152 38 0 0 182 + cache_utils.c.obj 0 0 8 144 152 38 0 0 182 lib_a-vprintf.o 0 0 0 0 0 176 0 0 176 - spi_flash_chip_boya.c.o 125 0 0 46 171 0 0 0 171 - esp_system.c.o 0 0 20 90 110 80 0 0 170 +spi_flash_chip_boya.c.ob 125 0 0 46 171 0 0 0 171 + esp_system.c.obj 0 0 20 90 110 80 0 0 170 lib_a-flags.o 0 0 0 0 0 168 0 0 168 - abort.c.o 38 0 0 128 166 0 0 0 166 - brownout_hal.c.o 0 0 0 0 0 160 0 0 160 - esp_efuse_api.c.o 0 0 0 0 0 158 0 0 158 - portasm.S.o 0 0 0 154 154 0 0 0 154 + abort.c.obj 38 0 0 128 166 0 0 0 166 + brownout_hal.c.obj 0 0 0 0 0 160 0 0 160 + esp_efuse_api.c.obj 0 0 0 0 0 158 0 0 158 + portasm.S.obj 0 0 0 154 154 0 0 0 154 lib_a-fiprintf.o 0 0 0 0 0 148 0 0 148 - list.c.o 0 0 0 134 134 0 0 0 134 + list.c.obj 0 0 0 134 134 0 0 0 134 spi_flash_encrypt_hal_ir 0 0 0 132 132 0 0 0 132 - cache_err_int.c.o 0 0 0 4 4 124 0 0 128 + cache_err_int.c.obj 0 0 0 4 4 124 0 0 128 spi_flash_os_func_noos.c 36 0 0 86 122 0 0 0 122 lib_a-mbtowc_r.o 0 0 0 0 0 108 0 0 108 - flash_ops.c.o 24 0 4 40 68 38 0 0 102 - pthread.c.o 0 0 8 0 8 100 0 0 100 - esp_efuse_table.c.o 96 0 0 0 96 0 0 0 96 - uart_hal_iram.c.o 0 0 0 0 0 88 0 0 88 - gpio_periph.c.o 0 0 0 0 0 0 88 0 88 - apb_backup_dma.c.o 0 0 0 52 52 34 0 0 86 + flash_ops.c.obj 24 0 4 40 68 38 0 0 102 + pthread.c.obj 0 0 8 0 8 100 0 0 100 + esp_efuse_table.c.obj 96 0 0 0 96 0 0 0 96 + uart_hal_iram.c.obj 0 0 0 0 0 88 0 0 88 + gpio_periph.c.obj 0 0 0 0 0 0 88 0 88 + apb_backup_dma.c.obj 0 0 0 52 52 34 0 0 86 interrupt_controller_hal 0 0 0 0 0 80 0 0 80 - reent_init.c.o 0 0 0 76 76 0 0 0 76 - instruction_decode.c.o 0 0 0 0 0 74 0 0 74 - chip_info.c.o 0 0 0 0 0 70 0 0 70 + reent_init.c.obj 0 0 0 76 76 0 0 0 76 +instruction_decode.c.obj 0 0 0 0 0 74 0 0 74 + chip_info.c.obj 0 0 0 0 0 70 0 0 70 lib_a-fseek.o 0 0 0 0 0 68 0 0 68 lib_a-wctomb_r.o 0 0 0 0 0 64 0 0 64 - flash_qio_mode.c.o 0 0 0 0 0 58 0 0 58 + flash_qio_mode.c.obj 0 0 0 0 0 58 0 0 58 lib_a-sysgettod.o 0 0 0 0 0 56 0 0 56 - brownout.c.o 0 0 0 0 0 38 5 0 43 + brownout.c.obj 0 0 0 0 0 38 5 0 43 lib_a-localeconv.o 0 0 0 0 0 40 0 0 40 - syscalls.c.o 0 0 0 0 0 36 0 0 36 - esp_efuse_fields.c.o 0 0 0 0 0 32 0 0 32 - cpu_hal.c.o 0 0 0 32 32 0 0 0 32 + syscalls.c.obj 0 0 0 0 0 36 0 0 36 + esp_efuse_fields.c.obj 0 0 0 0 0 32 0 0 32 + cpu_hal.c.obj 0 0 0 32 32 0 0 0 32 spi_flash_chip_drivers.c 32 0 0 0 32 0 0 0 32 lib_a-errno.o 0 0 0 0 0 28 0 0 28 - cpu_util.c.o 0 0 0 28 28 0 0 0 28 - pm_impl.c.o 0 0 0 0 0 28 0 0 28 + cpu_util.c.obj 0 0 0 28 28 0 0 0 28 + pm_impl.c.obj 0 0 0 0 0 28 0 0 28 bootloader_flash_config_ 0 0 0 0 0 26 0 0 26 - esp_rom_uart.c.o 0 0 0 24 24 0 0 0 24 - bootloader_mem.c.o 0 0 0 0 0 14 0 0 14 - pthread.c.o 0 0 0 0 0 6 0 0 6 - spi_bus_lock.c.o 4 0 0 0 4 0 0 0 4 - FreeRTOS-openocd.c.o 4 0 0 0 4 0 0 0 4 - cxx_guards.cpp.o 0 0 0 0 0 2 0 0 2 - ubsan.c.o 0 0 0 2 2 0 0 0 2 + esp_rom_uart.c.obj 0 0 0 24 24 0 0 0 24 + bootloader_mem.c.obj 0 0 0 0 0 14 0 0 14 + pthread.c.obj 0 0 0 0 0 6 0 0 6 + spi_bus_lock.c.obj 4 0 0 0 4 0 0 0 4 + FreeRTOS-openocd.c.obj 4 0 0 0 4 0 0 0 4 + cxx_guards.cpp.obj 0 0 0 0 0 2 0 0 2 + ubsan.c.obj 0 0 0 2 2 0 0 0 2 lib_a-environ.o 0 0 4 0 4 0 0 0 0 _divdi3.o 0 0 0 0 0 0 0 0 0 _moddi3.o 0 0 0 0 0 0 0 0 0 @@ -4520,195 +4520,195 @@ Per-file contributions to ELF file: lib_a-svfprintf.o 0 0 0 0 0 0 13331 752 0 14083 lib_a-svfiprintf.o 0 0 0 0 0 0 9650 1172 0 10822 lib_a-vfiprintf.o 0 0 0 0 0 0 9827 700 0 10527 - tasks.c.o 8 0 704 6792 0 7504 0 1158 0 7958 - esp_err_to_name.c.o 0 0 0 0 0 0 53 7287 0 7340 - heap_tlsf.c.o 1796 0 0 3591 0 5387 0 0 0 5387 - queue.c.o 0 0 0 3038 0 3038 0 1515 0 4553 - vfs_uart.c.o 116 0 8 0 0 124 4051 282 0 4449 + tasks.c.obj 8 0 704 6792 0 7504 0 1158 0 7958 + esp_err_to_name.c.obj 0 0 0 0 0 0 53 7287 0 7340 + heap_tlsf.c.obj 1796 0 0 3591 0 5387 0 0 0 5387 + queue.c.obj 0 0 0 3038 0 3038 0 1515 0 4553 + vfs_uart.c.obj 116 0 8 0 0 124 4051 282 0 4449 lib_a-dtoa.o 0 0 0 0 0 0 3592 165 0 3757 - portasm.S.o 3084 0 0 416 0 3500 0 0 0 3500 + portasm.S.obj 3084 0 0 416 0 3500 0 0 0 3500 spi_flash_chip_generic.c 554 0 0 2529 0 3083 0 0 0 3083 - intr_alloc.c.o 8 0 22 717 0 747 1958 198 0 2881 + intr_alloc.c.obj 8 0 22 717 0 747 1958 198 0 2881 lib_a-mprec.o 0 0 0 0 0 0 2340 409 0 2749 - uart.c.o 56 0 12 0 0 68 2091 511 0 2658 - panic_arch.c.o 0 0 0 0 0 0 715 1538 0 2253 - spi_flash_hal_iram.c.o 0 0 0 2250 0 2250 0 0 0 2250 - vfs.c.o 192 0 40 0 0 232 1935 111 0 2238 - rtc_clk.c.o 171 0 8 2059 0 2238 0 0 0 2230 - xtensa_vectors.S.o 32 0 0 1464 425 1921 0 48 0 1969 - task_wdt.c.o 53 0 12 0 0 65 1319 591 0 1963 - spi_flash_hal_gpspi.c.o 0 0 0 1842 0 1842 0 0 0 1842 - rtc_init.c.o 0 0 0 0 0 0 1703 70 0 1773 - esp_flash_api.c.o 20 0 0 862 0 882 89 762 0 1733 - flash_mmap.c.o 0 0 520 1298 0 1818 166 240 0 1704 - port.c.o 0 0 24 945 0 969 147 541 0 1633 - heap_caps.c.o 4 0 4 1003 0 1011 261 355 0 1623 - wdt_hal_iram.c.o 0 0 0 1493 0 1493 0 0 0 1493 - periph_ctrl.c.o 8 0 37 0 0 45 1377 85 0 1470 - cpu_start.c.o 0 0 5 732 0 737 371 334 0 1437 - ringbuf.c.o 0 0 0 873 0 873 0 512 0 1385 - cache_utils.c.o 4 0 14 685 0 703 92 570 0 1351 - heap_caps_init.c.o 0 0 4 0 0 4 905 430 0 1335 - startup.c.o 8 0 11 69 0 88 748 505 0 1330 - locks.c.o 8 0 168 782 0 958 122 344 0 1256 - partition.c.o 0 0 8 0 0 8 938 268 0 1206 - systimer_hal.c.o 85 0 0 1052 0 1137 0 0 0 1137 - xtensa_intr_asm.S.o 1024 0 0 51 0 1075 0 0 0 1075 - panic.c.o 12 0 5 12 0 29 875 147 0 1046 - memspi_host_driver.c.o 397 0 0 637 0 1034 0 0 0 1034 - clk.c.o 0 0 0 0 0 0 802 212 0 1014 - esp_timer.c.o 8 0 8 282 0 298 505 72 0 867 - memory_layout_utils.c.o 0 0 0 0 0 0 575 283 0 858 - debug_helpers.c.o 0 0 0 747 0 747 0 73 0 820 + uart.c.obj 56 0 12 0 0 68 2091 511 0 2658 + panic_arch.c.obj 0 0 0 0 0 0 715 1538 0 2253 +spi_flash_hal_iram.c.obj 0 0 0 2250 0 2250 0 0 0 2250 + vfs.c.obj 192 0 40 0 0 232 1935 111 0 2238 + rtc_clk.c.obj 171 0 8 2059 0 2238 0 0 0 2230 + xtensa_vectors.S.obj 32 0 0 1464 425 1921 0 48 0 1969 + task_wdt.c.obj 53 0 12 0 0 65 1319 591 0 1963 +spi_flash_hal_gpspi.c.ob 0 0 0 1842 0 1842 0 0 0 1842 + rtc_init.c.obj 0 0 0 0 0 0 1703 70 0 1773 + esp_flash_api.c.obj 20 0 0 862 0 882 89 762 0 1733 + flash_mmap.c.obj 0 0 520 1298 0 1818 166 240 0 1704 + port.c.obj 0 0 24 945 0 969 147 541 0 1633 + heap_caps.c.obj 4 0 4 1003 0 1011 261 355 0 1623 + wdt_hal_iram.c.obj 0 0 0 1493 0 1493 0 0 0 1493 + periph_ctrl.c.obj 8 0 37 0 0 45 1377 85 0 1470 + cpu_start.c.obj 0 0 5 732 0 737 371 334 0 1437 + ringbuf.c.obj 0 0 0 873 0 873 0 512 0 1385 + cache_utils.c.obj 4 0 14 685 0 703 92 570 0 1351 + heap_caps_init.c.obj 0 0 4 0 0 4 905 430 0 1335 + startup.c.obj 8 0 11 69 0 88 748 505 0 1330 + locks.c.obj 8 0 168 782 0 958 122 344 0 1256 + partition.c.obj 0 0 8 0 0 8 938 268 0 1206 + systimer_hal.c.obj 85 0 0 1052 0 1137 0 0 0 1137 + xtensa_intr_asm.S.obj 1024 0 0 51 0 1075 0 0 0 1075 + panic.c.obj 12 0 5 12 0 29 875 147 0 1046 +memspi_host_driver.c.obj 397 0 0 637 0 1034 0 0 0 1034 + clk.c.obj 0 0 0 0 0 0 802 212 0 1014 + esp_timer.c.obj 8 0 8 282 0 298 505 72 0 867 +memory_layout_utils.c.ob 0 0 0 0 0 0 575 283 0 858 + debug_helpers.c.obj 0 0 0 747 0 747 0 73 0 820 lib_a-fseeko.o 0 0 0 0 0 0 818 0 0 818 spi_flash_chip_winbond.c 136 0 0 659 0 795 0 0 0 795 - multi_heap.c.o 157 0 0 601 0 758 0 0 0 758 - esp_ipc.c.o 0 0 56 188 0 244 456 97 0 741 + multi_heap.c.obj 157 0 0 601 0 758 0 0 0 758 + esp_ipc.c.obj 0 0 56 188 0 244 456 97 0 741 lib_a-fvwrite.o 0 0 0 0 0 0 721 0 0 721 - panic_handler.c.o 8 0 8 66 0 82 634 8 0 716 + panic_handler.c.obj 8 0 8 66 0 82 634 8 0 716 lib_a-findfp.o 0 0 0 0 0 0 612 96 0 708 - rtc_time.c.o 0 0 0 675 0 675 0 0 0 675 - log.c.o 8 0 264 42 0 314 499 122 0 671 - time.c.o 0 0 20 127 0 147 509 0 0 636 + rtc_time.c.obj 0 0 0 675 0 675 0 0 0 675 + log.c.obj 8 0 264 42 0 314 499 122 0 671 + time.c.obj 0 0 20 127 0 147 509 0 0 636 esp_timer_impl_systimer. 24 0 12 198 0 234 286 125 0 633 - port_systick.c.o 0 0 12 394 0 406 0 192 0 586 - esp_flash_spi_init.c.o 68 0 4 0 0 72 243 261 0 572 + port_systick.c.obj 0 0 12 394 0 406 0 192 0 586 +esp_flash_spi_init.c.obj 68 0 4 0 0 72 243 261 0 572 lib_a-fflush.o 0 0 0 0 0 0 552 0 0 552 interrupt_descriptor_tab 0 0 0 0 0 0 12 512 0 524 spi_flash_os_func_app.c. 52 0 0 324 0 376 44 95 0 515 - crosscore_int.c.o 8 0 8 229 0 245 142 120 0 499 - system_internal.c.o 0 0 0 475 0 475 0 16 0 491 - esp_app_desc.c.o 1 0 8 194 0 203 31 4 256 486 - rtc_sleep.c.o 0 0 0 476 0 476 0 0 0 476 - hello_world_main.c.o 0 0 0 0 0 0 228 232 0 460 - port_common.c.o 0 0 8 98 0 106 146 214 0 458 - spi_flash_hal.c.o 0 0 0 0 0 0 351 96 0 447 - bootloader_flash.c.o 0 0 0 444 0 444 0 0 0 444 - uart_hal.c.o 0 0 0 0 0 0 432 0 0 432 - xtensa_context.S.o 0 0 0 390 0 390 0 0 0 390 + crosscore_int.c.obj 8 0 8 229 0 245 142 120 0 499 + system_internal.c.obj 0 0 0 475 0 475 0 16 0 491 + esp_app_desc.c.obj 1 0 8 194 0 203 31 4 256 486 + rtc_sleep.c.obj 0 0 0 476 0 476 0 0 0 476 + hello_world_main.c.obj 0 0 0 0 0 0 228 232 0 460 + port_common.c.obj 0 0 8 98 0 106 146 214 0 458 + spi_flash_hal.c.obj 0 0 0 0 0 0 351 96 0 447 + bootloader_flash.c.obj 0 0 0 444 0 444 0 0 0 444 + uart_hal.c.obj 0 0 0 0 0 0 432 0 0 432 + xtensa_context.S.obj 0 0 0 390 0 390 0 0 0 390 lib_a-locale.o 4 0 0 0 0 4 0 374 0 378 - esp_ipc_isr.c.o 4 0 16 19 0 39 187 144 0 354 - spi_flash_chip_gd.c.o 123 0 0 202 0 325 0 0 0 325 - memory_layout.c.o 0 0 0 0 0 0 0 315 0 315 + esp_ipc_isr.c.obj 4 0 16 19 0 39 187 144 0 354 + spi_flash_chip_gd.c.obj 123 0 0 202 0 325 0 0 0 325 + memory_layout.c.obj 0 0 0 0 0 0 0 315 0 315 lib_a-refill.o 0 0 0 0 0 0 312 0 0 312 windowspill_asm.o 0 0 0 311 0 311 0 0 0 311 - freertos_hooks.c.o 8 0 128 47 0 183 247 0 0 302 - esp_time_impl.c.o 0 0 12 0 0 12 281 0 0 281 + freertos_hooks.c.obj 8 0 128 47 0 183 247 0 0 302 + esp_time_impl.c.obj 0 0 12 0 0 12 281 0 0 281 lib_a-ftello.o 0 0 0 0 0 0 278 0 0 278 lib_a-fclose.o 0 0 0 0 0 0 270 0 0 270 - esp_ota_ops.c.o 0 0 4 0 0 4 148 121 0 269 + esp_ota_ops.c.obj 0 0 4 0 0 4 148 121 0 269 lib_a-makebuf.o 0 0 0 0 0 0 263 0 0 263 - spi_flash_chip_mxic.c.o 190 0 0 70 0 260 0 0 0 260 - soc_hal.c.o 24 0 0 234 0 258 0 0 0 258 +spi_flash_chip_mxic.c.ob 190 0 0 70 0 260 0 0 0 260 + soc_hal.c.obj 24 0 0 234 0 258 0 0 0 258 lib_a-ctype_.o 0 0 0 0 0 0 0 257 0 257 lib_a-reent.o 0 0 0 0 0 0 252 0 0 252 - esp_err.c.o 108 0 0 140 0 248 0 0 0 248 - brownout_hal.c.o 0 0 0 0 0 0 244 0 0 244 - int_wdt.c.o 0 0 9 90 0 99 152 0 0 242 - system_time.c.o 0 0 8 35 0 43 126 80 0 241 - esp_clk.c.o 0 16 4 25 0 45 194 0 0 235 - spi_flash_chip_issi.c.o 125 0 0 108 0 233 0 0 0 233 - newlib_init.c.o 156 0 240 0 0 396 73 0 0 229 + esp_err.c.obj 108 0 0 140 0 248 0 0 0 248 + brownout_hal.c.obj 0 0 0 0 0 0 244 0 0 244 + int_wdt.c.obj 0 0 9 90 0 99 152 0 0 242 + system_time.c.obj 0 0 8 35 0 43 126 80 0 241 + esp_clk.c.obj 0 16 4 25 0 45 194 0 0 235 +spi_flash_chip_issi.c.ob 125 0 0 108 0 233 0 0 0 233 + newlib_init.c.obj 156 0 240 0 0 396 73 0 0 229 lib_a-wsetup.o 0 0 0 0 0 0 223 0 0 223 pthread_local_storage.c. 8 0 4 0 0 12 213 0 0 221 lib_a-snprintf.o 0 0 0 0 0 0 217 0 0 217 lib_a-fopen.o 0 0 0 0 0 0 216 0 0 216 spi_flash_encrypt_hal_ir 0 0 0 213 0 213 0 0 0 213 - log_freertos.c.o 0 0 8 205 0 213 0 0 0 205 - abort.c.o 38 0 0 157 0 195 0 0 0 195 + log_freertos.c.obj 0 0 8 205 0 213 0 0 0 205 + abort.c.obj 38 0 0 157 0 195 0 0 0 195 lib_a-puts.o 0 0 0 0 0 0 190 0 0 190 - xtensa_intr.c.o 0 0 0 26 0 26 126 35 0 187 + xtensa_intr.c.obj 0 0 0 26 0 26 126 35 0 187 lib_a-stdio.o 0 0 0 0 0 0 182 0 0 182 - regi2c_ctrl.c.o 8 0 0 171 0 179 0 0 0 179 - spi_flash_chip_boya.c.o 125 0 0 52 0 177 0 0 0 177 - list.c.o 0 0 0 164 0 164 0 0 0 164 - cpu_util.c.o 0 0 0 137 0 137 0 20 0 157 - heap.c.o 0 0 0 151 0 151 0 0 0 151 - highint_hdl.S.o 0 0 0 147 0 147 0 0 0 147 - esp_ipc_isr_handler.S.o 16 0 0 125 0 141 0 0 0 141 + regi2c_ctrl.c.obj 8 0 0 171 0 179 0 0 0 179 +spi_flash_chip_boya.c.ob 125 0 0 52 0 177 0 0 0 177 + list.c.obj 0 0 0 164 0 164 0 0 0 164 + cpu_util.c.obj 0 0 0 137 0 137 0 20 0 157 + heap.c.obj 0 0 0 151 0 151 0 0 0 151 + highint_hdl.S.obj 0 0 0 147 0 147 0 0 0 147 +esp_ipc_isr_handler.S.ob 16 0 0 125 0 141 0 0 0 141 lib_a-assert.o 0 0 0 0 0 0 72 60 0 132 lib_a-flags.o 0 0 0 0 0 0 128 0 0 128 - esp_system.c.o 0 0 20 56 0 76 70 0 0 126 + esp_system.c.obj 0 0 20 56 0 76 70 0 0 126 lib_a-fwalk.o 0 0 0 0 0 0 119 0 0 119 lib_a-printf.o 0 0 0 0 0 0 112 0 0 112 spi_flash_os_func_noos.c 36 0 0 72 0 108 0 0 0 108 - uart_hal_iram.c.o 0 0 0 0 0 0 105 0 0 105 + uart_hal_iram.c.obj 0 0 0 0 0 0 105 0 0 105 lib_a-s_frexp.o 0 0 0 0 0 0 100 0 0 100 - flash_ops.c.o 24 0 4 41 0 69 33 0 0 98 - pthread.c.o 0 0 8 0 0 8 97 0 0 97 + flash_ops.c.obj 24 0 4 41 0 69 33 0 0 98 + pthread.c.obj 0 0 8 0 0 8 97 0 0 97 lib_a-vprintf.o 0 0 0 0 0 0 94 0 0 94 - cache_err_int.c.o 0 0 0 7 0 7 78 0 0 85 + cache_err_int.c.obj 0 0 0 7 0 7 78 0 0 85 lib_a-fiprintf.o 0 0 0 0 0 0 84 0 0 84 - mpu_hal.c.o 0 0 0 0 0 0 72 0 0 72 - panic_handler_asm.S.o 0 0 0 66 0 66 0 0 0 66 + mpu_hal.c.obj 0 0 0 0 0 0 72 0 0 72 + panic_handler_asm.S.obj 0 0 0 66 0 66 0 0 0 66 lib_a-wctomb_r.o 0 0 0 0 0 0 65 0 0 65 lib_a-mbtowc_r.o 0 0 0 0 0 0 64 0 0 64 - reent_init.c.o 0 0 0 63 0 63 0 0 0 63 + reent_init.c.obj 0 0 0 63 0 63 0 0 0 63 interrupt_controller_hal 0 0 0 0 0 0 59 0 0 59 - flash_qio_mode.c.o 0 0 0 0 0 0 58 0 0 58 + flash_qio_mode.c.obj 0 0 0 0 0 0 58 0 0 58 lib_a-fseek.o 0 0 0 0 0 0 49 0 0 49 state_asm--restore_extra 0 0 0 47 0 47 0 0 0 47 state_asm--save_extra_nw 0 0 0 47 0 47 0 0 0 47 lib_a-localeconv.o 0 0 0 0 0 0 47 0 0 47 xtensa_vector_defaults.S 0 0 0 46 0 46 0 0 0 46 - cpu_hal.c.o 0 0 0 42 0 42 0 0 0 42 + cpu_hal.c.obj 0 0 0 42 0 42 0 0 0 42 _divdi3.o 0 0 0 0 0 0 0 40 0 40 _moddi3.o 0 0 0 0 0 0 0 40 0 40 _udivdi3.o 0 0 0 0 0 0 0 40 0 40 _umoddi3.o 0 0 0 0 0 0 0 40 0 40 - brownout.c.o 0 0 0 0 0 0 30 5 0 35 + brownout.c.obj 0 0 0 0 0 0 30 5 0 35 spi_flash_chip_drivers.c 32 0 0 0 0 32 0 0 0 32 interrupts--intlevel.o 0 0 0 0 0 0 0 32 0 32 - syscalls.c.o 0 0 0 0 0 0 31 0 0 31 - chip_info.c.o 0 0 0 0 0 0 29 0 0 29 + syscalls.c.obj 0 0 0 0 0 0 31 0 0 31 + chip_info.c.obj 0 0 0 0 0 0 29 0 0 29 lib_a-sysgettod.o 0 0 0 0 0 0 28 0 0 28 - debug_helpers_asm.S.o 0 0 0 26 0 26 0 0 0 26 - esp_rom_uart.c.o 0 0 0 24 0 24 0 0 0 24 + debug_helpers_asm.S.obj 0 0 0 26 0 26 0 0 0 26 + esp_rom_uart.c.obj 0 0 0 24 0 24 0 0 0 24 bootloader_flash_config_ 0 0 0 0 0 0 22 0 0 22 - bootloader_mem.c.o 0 0 0 0 0 0 15 0 0 15 + bootloader_mem.c.obj 0 0 0 0 0 0 15 0 0 15 lib_a-errno.o 0 0 0 0 0 0 13 0 0 13 - pthread.c.o 0 0 0 0 0 0 12 0 0 12 + pthread.c.obj 0 0 0 0 0 0 12 0 0 12 crtend.o 0 0 0 0 0 0 0 8 0 8 - pm_impl.c.o 0 0 0 0 0 0 8 0 0 8 + pm_impl.c.obj 0 0 0 0 0 0 8 0 0 8 crti.o 0 0 0 0 3 3 3 0 0 6 - cxx_guards.cpp.o 0 0 0 0 0 0 5 0 0 5 - ubsan.c.o 0 0 0 5 0 5 0 0 0 5 + cxx_guards.cpp.obj 0 0 0 0 0 0 5 0 0 5 + ubsan.c.obj 0 0 0 5 0 5 0 0 0 5 crtbegin.o 0 0 0 0 0 0 0 4 0 4 - spi_bus_lock.c.o 0 0 0 0 0 0 0 4 0 4 - FreeRTOS-openocd.c.o 4 0 0 0 0 4 0 0 0 4 + spi_bus_lock.c.obj 0 0 0 0 0 0 0 4 0 4 + FreeRTOS-openocd.c.obj 4 0 0 0 0 4 0 0 0 4 crt0.o 0 0 0 0 0 0 0 0 0 0 crtn.o 0 0 0 0 0 0 0 0 0 0 project_elf_src_esp32s3. 0 0 0 0 0 0 0 0 0 0 - bootloader_common.c.o 0 0 0 0 0 0 0 0 0 0 + bootloader_common.c.obj 0 0 0 0 0 0 0 0 0 0 bootloader_common_loader 0 0 0 0 0 0 0 0 0 0 bootloader_efuse_esp32s3 0 0 0 0 0 0 0 0 0 0 bootloader_random_esp32s 0 0 0 0 0 0 0 0 0 0 - bootloader_sha.c.o 0 0 0 0 0 0 0 0 0 0 - bootloader_utility.c.o 0 0 0 0 0 0 0 0 0 0 - esp_image_format.c.o 0 0 0 0 0 0 0 0 0 0 - flash_partitions.c.o 0 0 0 0 0 0 0 0 0 0 - gdma.c.o 0 0 0 0 0 0 0 0 0 0 - gpio.c.o 0 0 0 0 0 0 0 0 0 0 - rtc_io.c.o 0 0 0 0 0 0 0 0 0 0 - rtc_module.c.o 0 0 0 0 0 0 0 0 0 0 - spi_common.c.o 0 0 0 0 0 0 0 0 0 0 - dport_access.c.o 0 0 0 0 0 0 0 0 0 0 - esp_crypto_lock.c.o 0 0 0 0 0 0 0 0 0 0 + bootloader_sha.c.obj 0 0 0 0 0 0 0 0 0 0 +bootloader_utility.c.obj 0 0 0 0 0 0 0 0 0 0 + esp_image_format.c.obj 0 0 0 0 0 0 0 0 0 0 + flash_partitions.c.obj 0 0 0 0 0 0 0 0 0 0 + gdma.c.obj 0 0 0 0 0 0 0 0 0 0 + gpio.c.obj 0 0 0 0 0 0 0 0 0 0 + rtc_io.c.obj 0 0 0 0 0 0 0 0 0 0 + rtc_module.c.obj 0 0 0 0 0 0 0 0 0 0 + spi_common.c.obj 0 0 0 0 0 0 0 0 0 0 + dport_access.c.obj 0 0 0 0 0 0 0 0 0 0 + esp_crypto_lock.c.obj 0 0 0 0 0 0 0 0 0 0 esp_ipc_isr_routines.S.o 0 0 0 0 0 0 0 0 0 0 - pm_locks.c.o 0 0 0 0 0 0 0 0 0 0 - gdma_hal.c.o 0 0 0 0 0 0 0 0 0 0 - gpio_hal.c.o 0 0 0 0 0 0 0 0 0 0 - rtc_io_hal.c.o 0 0 0 0 0 0 0 0 0 0 - sha_hal.c.o 0 0 0 0 0 0 0 0 0 0 + pm_locks.c.obj 0 0 0 0 0 0 0 0 0 0 + gdma_hal.c.obj 0 0 0 0 0 0 0 0 0 0 + gpio_hal.c.obj 0 0 0 0 0 0 0 0 0 0 + rtc_io_hal.c.obj 0 0 0 0 0 0 0 0 0 0 + sha_hal.c.obj 0 0 0 0 0 0 0 0 0 0 esp_crypto_shared_gdma.c 0 0 0 0 0 0 0 0 0 0 - esp_sha256.c.o 0 0 0 0 0 0 0 0 0 0 - esp_sha_gdma_impl.c.o 0 0 0 0 0 0 0 0 0 0 - sha.c.o 0 0 0 0 0 0 0 0 0 0 - gdma_periph.c.o 0 0 0 0 0 0 0 0 0 0 - gpio_periph.c.o 0 0 0 0 0 0 0 0 0 0 - rtc_io_periph.c.o 0 0 0 0 0 0 0 0 0 0 - spi_periph.c.o 0 0 0 0 0 0 0 0 0 0 - uart_periph.c.o 0 0 0 0 0 0 0 0 0 0 + esp_sha256.c.obj 0 0 0 0 0 0 0 0 0 0 + esp_sha_gdma_impl.c.obj 0 0 0 0 0 0 0 0 0 0 + sha.c.obj 0 0 0 0 0 0 0 0 0 0 + gdma_periph.c.obj 0 0 0 0 0 0 0 0 0 0 + gpio_periph.c.obj 0 0 0 0 0 0 0 0 0 0 + rtc_io_periph.c.obj 0 0 0 0 0 0 0 0 0 0 + spi_periph.c.obj 0 0 0 0 0 0 0 0 0 0 + uart_periph.c.obj 0 0 0 0 0 0 0 0 0 0 int_asm--set_intclear.o 0 0 0 0 0 0 0 0 0 0 lib_a-bzero.o 0 0 0 0 0 0 0 0 0 0 lib_a-environ.o 0 0 4 0 0 4 0 0 0 0 @@ -8950,7 +8950,7 @@ Producing JSON output... "flash_total": 10633, "ram_st_total": 0 }, - "libfreertos.a:tasks.c.o": { + "libfreertos.a:tasks.c.obj": { ".dram0.bss": 700, ".dram0.data": 12, ".flash.rodata": 451, @@ -8958,13 +8958,13 @@ Producing JSON output... "flash_total": 6200, "ram_st_total": 6449 }, - "libesp_common.a:esp_err_to_name.c.o": { + "libesp_common.a:esp_err_to_name.c.obj": { ".flash.rodata": 5101, ".flash.text": 53, "flash_total": 5154, "ram_st_total": 0 }, - "libvfs.a:vfs_uart.c.o": { + "libvfs.a:vfs_uart.c.obj": { ".dram0.bss": 8, ".dram0.data": 116, ".flash.rodata": 783, @@ -8972,14 +8972,14 @@ Producing JSON output... "flash_total": 4657, "ram_st_total": 124 }, - "libesp32.a:panic.c.o": { + "libesp32.a:panic.c.obj": { ".dram0.bss": 5, ".dram0.data": 2029, ".iram0.text": 2223, "flash_total": 4252, "ram_st_total": 4257 }, - "libfreertos.a:portasm.S.o": { + "libfreertos.a:portasm.S.obj": { ".dram0.data": 3084, ".iram0.text": 476, "flash_total": 3560, @@ -8991,7 +8991,7 @@ Producing JSON output... "flash_total": 3537, "ram_st_total": 0 }, - "libesp32.a:intr_alloc.c.o": { + "libesp32.a:intr_alloc.c.obj": { ".dram0.bss": 22, ".dram0.data": 8, ".flash.rodata": 704, @@ -9000,13 +9000,13 @@ Producing JSON output... "flash_total": 3049, "ram_st_total": 686 }, - "libfreertos.a:queue.c.o": { + "libfreertos.a:queue.c.obj": { ".flash.rodata": 366, ".iram0.text": 2411, "flash_total": 2777, "ram_st_total": 2411 }, - "libdriver.a:uart.c.o": { + "libdriver.a:uart.c.obj": { ".dram0.bss": 12, ".dram0.data": 56, ".flash.rodata": 452, @@ -9014,7 +9014,7 @@ Producing JSON output... "flash_total": 2607, "ram_st_total": 68 }, - "libheap.a:multi_heap.c.o": { + "libheap.a:multi_heap.c.obj": { ".dram0.data": 300, ".iram0.text": 2245, "flash_total": 2545, @@ -9026,7 +9026,7 @@ Producing JSON output... "flash_total": 2436, "ram_st_total": 0 }, - "libesp32.a:cpu_start.c.o": { + "libesp32.a:cpu_start.c.obj": { ".dram0.bss": 1, ".flash.rodata": 1073, ".flash.text": 255, @@ -9034,14 +9034,14 @@ Producing JSON output... "flash_total": 2395, "ram_st_total": 1068 }, - "libsoc.a:rtc_clk.c.o": { + "libsoc.a:rtc_clk.c.obj": { ".dram0.bss": 4, ".dram0.data": 160, ".iram0.text": 2104, "flash_total": 2264, "ram_st_total": 2268 }, - "libvfs.a:vfs.c.o": { + "libvfs.a:vfs.c.obj": { ".dram0.bss": 40, ".dram0.data": 192, ".flash.rodata": 132, @@ -9049,20 +9049,20 @@ Producing JSON output... "flash_total": 2216, "ram_st_total": 232 }, - "libdriver.a:gpio.c.o": { + "libdriver.a:gpio.c.obj": { ".dram0.data": 32, ".flash.rodata": 970, ".flash.text": 1193, "flash_total": 2195, "ram_st_total": 32 }, - "libsoc.a:spi_flash_hal_iram.c.o": { + "libsoc.a:spi_flash_hal_iram.c.obj": { ".dram0.data": 24, ".iram0.text": 1798, "flash_total": 1822, "ram_st_total": 1822 }, - "libfreertos.a:xtensa_vectors.S.o": { + "libfreertos.a:xtensa_vectors.S.obj": { ".dram0.data": 8, ".flash.rodata": 36, ".iram0.text": 1344, @@ -9070,7 +9070,7 @@ Producing JSON output... "flash_total": 1813, "ram_st_total": 1777 }, - "libesp32.a:task_wdt.c.o": { + "libesp32.a:task_wdt.c.obj": { ".dram0.bss": 4, ".dram0.data": 53, ".flash.rodata": 494, @@ -9078,13 +9078,13 @@ Producing JSON output... "flash_total": 1770, "ram_st_total": 57 }, - "libspi_flash.a:spi_flash_chip_generic.c.o": { + "libspi_flash.a:spi_flash_chip_generic.c.obj": { ".dram0.data": 340, ".iram0.text": 1423, "flash_total": 1763, "ram_st_total": 1763 }, - "libspi_flash.a:flash_mmap.c.o": { + "libspi_flash.a:flash_mmap.c.obj": { ".dram0.bss": 264, ".flash.rodata": 296, ".flash.text": 125, @@ -9092,7 +9092,7 @@ Producing JSON output... "flash_total": 1741, "ram_st_total": 1584 }, - "libspi_flash.a:cache_utils.c.o": { + "libspi_flash.a:cache_utils.c.obj": { ".dram0.bss": 14, ".dram0.data": 4, ".flash.rodata": 430, @@ -9101,7 +9101,7 @@ Producing JSON output... "flash_total": 1348, "ram_st_total": 851 }, - "libheap.a:heap_caps.c.o": { + "libheap.a:heap_caps.c.obj": { ".dram0.data": 4, ".flash.rodata": 362, ".flash.text": 50, @@ -9109,7 +9109,7 @@ Producing JSON output... "flash_total": 1300, "ram_st_total": 888 }, - "libfreertos.a:timers.c.o": { + "libfreertos.a:timers.c.obj": { ".dram0.bss": 56, ".dram0.data": 8, ".flash.rodata": 223, @@ -9117,7 +9117,7 @@ Producing JSON output... "flash_total": 1238, "ram_st_total": 1071 }, - "libesp_timer.a:esp_timer_impl_lac.c.o": { + "libesp_timer.a:esp_timer_impl_lac.c.obj": { ".dram0.bss": 8, ".dram0.data": 8, ".flash.rodata": 389, @@ -9126,57 +9126,57 @@ Producing JSON output... "flash_total": 1233, "ram_st_total": 530 }, - "libheap.a:heap_caps_init.c.o": { + "libheap.a:heap_caps_init.c.obj": { ".dram0.bss": 4, ".flash.rodata": 379, ".flash.text": 834, "flash_total": 1213, "ram_st_total": 4 }, - "libsoc.a:soc_memory_layout.c.o": { + "libsoc.a:soc_memory_layout.c.obj": { ".flash.rodata": 1197, "flash_total": 1197, "ram_st_total": 0 }, - "libdriver.a:periph_ctrl.c.o": { + "libdriver.a:periph_ctrl.c.obj": { ".dram0.data": 8, ".flash.rodata": 488, ".flash.text": 696, "flash_total": 1192, "ram_st_total": 8 }, - "libfreertos.a:port.c.o": { + "libfreertos.a:port.c.obj": { ".dram0.bss": 32, ".flash.rodata": 340, ".iram0.text": 737, "flash_total": 1077, "ram_st_total": 769 }, - "libfreertos.a:xtensa_intr_asm.S.o": { + "libfreertos.a:xtensa_intr_asm.S.obj": { ".dram0.data": 1024, ".iram0.text": 51, "flash_total": 1075, "ram_st_total": 1075 }, - "libbootloader_support.a:bootloader_flash_config_esp32.c.o": { + "libbootloader_support.a:bootloader_flash_config_esp32.c.obj": { ".flash.text": 17, ".iram0.text": 1028, "flash_total": 1045, "ram_st_total": 1028 }, - "libsoc.a:rtc_time.c.o": { + "libsoc.a:rtc_time.c.obj": { ".flash.rodata": 194, ".iram0.text": 819, "flash_total": 1013, "ram_st_total": 819 }, - "libesp_ringbuf.a:ringbuf.c.o": { + "libesp_ringbuf.a:ringbuf.c.obj": { ".flash.rodata": 150, ".iram0.text": 858, "flash_total": 1008, "ram_st_total": 858 }, - "libsoc.a:rtc_init.c.o": { + "libsoc.a:rtc_init.c.obj": { ".iram0.text": 956, "flash_total": 956, "ram_st_total": 956 @@ -9186,46 +9186,46 @@ Producing JSON output... "flash_total": 918, "ram_st_total": 0 }, - "libspi_flash.a:esp_flash_api.c.o": { + "libspi_flash.a:esp_flash_api.c.obj": { ".flash.rodata": 244, ".flash.text": 16, ".iram0.text": 600, "flash_total": 860, "ram_st_total": 600 }, - "libesp32.a:clk.c.o": { + "libesp32.a:clk.c.obj": { ".flash.rodata": 208, ".flash.text": 582, ".iram0.text": 64, "flash_total": 854, "ram_st_total": 64 }, - "libspi_flash.a:partition.c.o": { + "libspi_flash.a:partition.c.obj": { ".dram0.bss": 8, ".flash.rodata": 181, ".flash.text": 668, "flash_total": 849, "ram_st_total": 8 }, - "libnewlib.a:time.c.o": { + "libnewlib.a:time.c.obj": { ".dram0.bss": 32, ".flash.text": 719, ".iram0.text": 123, "flash_total": 842, "ram_st_total": 155 }, - "libsoc.a:memory_layout_utils.c.o": { + "libsoc.a:memory_layout_utils.c.obj": { ".flash.rodata": 295, ".flash.text": 505, "flash_total": 800, "ram_st_total": 0 }, - "libsoc.a:rtc_wdt.c.o": { + "libsoc.a:rtc_wdt.c.obj": { ".iram0.text": 796, "flash_total": 796, "ram_st_total": 796 }, - "libesp_timer.a:esp_timer.c.o": { + "libesp_timer.a:esp_timer.c.obj": { ".dram0.bss": 12, ".dram0.data": 8, ".flash.rodata": 104, @@ -9234,7 +9234,7 @@ Producing JSON output... "flash_total": 793, "ram_st_total": 300 }, - "libesp32.a:dport_access.c.o": { + "libesp32.a:dport_access.c.obj": { ".dram0.bss": 40, ".dram0.data": 8, ".flash.rodata": 126, @@ -9243,7 +9243,7 @@ Producing JSON output... "flash_total": 745, "ram_st_total": 470 }, - "libesp_common.a:ipc.c.o": { + "libesp_common.a:ipc.c.obj": { ".dram0.bss": 56, ".flash.rodata": 117, ".flash.text": 367, @@ -9251,7 +9251,7 @@ Producing JSON output... "flash_total": 676, "ram_st_total": 248 }, - "liblog.a:log.c.o": { + "liblog.a:log.c.obj": { ".dram0.bss": 264, ".dram0.data": 8, ".flash.rodata": 147, @@ -9260,7 +9260,7 @@ Producing JSON output... "flash_total": 673, "ram_st_total": 306 }, - "libnewlib.a:locks.c.o": { + "libnewlib.a:locks.c.obj": { ".dram0.data": 8, ".flash.rodata": 84, ".flash.text": 5, @@ -9268,7 +9268,7 @@ Producing JSON output... "flash_total": 584, "ram_st_total": 495 }, - "libspi_flash.a:esp_flash_spi_init.c.o": { + "libspi_flash.a:esp_flash_spi_init.c.obj": { ".dram0.bss": 4, ".dram0.data": 120, ".flash.rodata": 261, @@ -9276,17 +9276,17 @@ Producing JSON output... "flash_total": 572, "ram_st_total": 124 }, - "libsoc.a:uart_hal.c.o": { + "libsoc.a:uart_hal.c.obj": { ".flash.text": 493, "flash_total": 493, "ram_st_total": 0 }, - "libbootloader_support.a:flash_qio_mode.c.o": { + "libbootloader_support.a:flash_qio_mode.c.obj": { ".flash.text": 490, "flash_total": 490, "ram_st_total": 0 }, - "libesp32.a:crosscore_int.c.o": { + "libesp32.a:crosscore_int.c.obj": { ".dram0.bss": 8, ".dram0.data": 8, ".flash.rodata": 146, @@ -9295,19 +9295,19 @@ Producing JSON output... "flash_total": 483, "ram_st_total": 211 }, - "libesp32.a:int_wdt.c.o": { + "libesp32.a:int_wdt.c.obj": { ".dram0.bss": 1, ".flash.text": 341, ".iram0.text": 94, "flash_total": 435, "ram_st_total": 95 }, - "libesp32.a:system_api_esp32.c.o": { + "libesp32.a:system_api_esp32.c.obj": { ".iram0.text": 435, "flash_total": 435, "ram_st_total": 435 }, - "libapp_update.a:esp_app_desc.c.o": { + "libapp_update.a:esp_app_desc.c.obj": { ".flash.rodata": 256, ".flash.text": 12, ".iram0.text": 109, @@ -9320,31 +9320,31 @@ Producing JSON output... "flash_total": 374, "ram_st_total": 364 }, - "libsoc.a:uart_hal_iram.c.o": { + "libsoc.a:uart_hal_iram.c.obj": { ".flash.rodata": 222, ".flash.text": 147, "flash_total": 369, "ram_st_total": 0 }, - "libfreertos.a:xtensa_context.S.o": { + "libfreertos.a:xtensa_context.S.obj": { ".iram0.text": 367, "flash_total": 367, "ram_st_total": 367 }, - "libapp_update.a:esp_ota_ops.c.o": { + "libapp_update.a:esp_ota_ops.c.obj": { ".dram0.bss": 4, ".flash.rodata": 214, ".flash.text": 147, "flash_total": 361, "ram_st_total": 4 }, - "libsoc.a:spi_flash_hal.c.o": { + "libsoc.a:spi_flash_hal.c.obj": { ".flash.rodata": 48, ".flash.text": 302, "flash_total": 350, "ram_st_total": 0 }, - "libesp_common.a:brownout.c.o": { + "libesp_common.a:brownout.c.obj": { ".flash.rodata": 203, ".flash.text": 120, "flash_total": 323, @@ -9355,7 +9355,7 @@ Producing JSON output... "flash_total": 315, "ram_st_total": 315 }, - "libesp_common.a:freertos_hooks.c.o": { + "libesp_common.a:freertos_hooks.c.obj": { ".dram0.bss": 128, ".dram0.data": 8, ".flash.text": 243, @@ -9363,36 +9363,36 @@ Producing JSON output... "flash_total": 298, "ram_st_total": 183 }, - "libspi_flash.a:spi_flash_chip_gd.c.o": { + "libspi_flash.a:spi_flash_chip_gd.c.obj": { ".dram0.data": 95, ".iram0.text": 181, "flash_total": 276, "ram_st_total": 276 }, - "libsoc.a:brownout_hal.c.o": { + "libsoc.a:brownout_hal.c.obj": { ".flash.text": 269, "flash_total": 269, "ram_st_total": 0 }, - "libesp32.a:dport_panic_highint_hdl.S.o": { + "libesp32.a:dport_panic_highint_hdl.S.obj": { ".dram0.data": 12, ".iram0.text": 250, "flash_total": 262, "ram_st_total": 262 }, - "libsoc.a:soc_hal.c.o": { + "libsoc.a:soc_hal.c.obj": { ".dram0.data": 24, ".iram0.text": 234, "flash_total": 258, "ram_st_total": 258 }, - "libspi_flash.a:memspi_host_driver.c.o": { + "libspi_flash.a:memspi_host_driver.c.obj": { ".dram0.data": 43, ".iram0.text": 206, "flash_total": 249, "ram_st_total": 249 }, - "libdriver.a:rtc_module.c.o": { + "libdriver.a:rtc_module.c.obj": { ".dram0.bss": 8, ".dram0.data": 16, ".flash.text": 231, @@ -9415,7 +9415,7 @@ Producing JSON output... "flash_total": 234, "ram_st_total": 0 }, - "libnewlib.a:syscall_table.c.o": { + "libnewlib.a:syscall_table.c.obj": { ".dram0.bss": 240, ".dram0.data": 144, ".flash.text": 82, @@ -9427,66 +9427,66 @@ Producing JSON output... "flash_total": 217, "ram_st_total": 0 }, - "libxtensa.a:debug_helpers.c.o": { + "libxtensa.a:debug_helpers.c.obj": { ".iram0.text": 217, "flash_total": 217, "ram_st_total": 217 }, - "libspi_flash.a:spi_flash_chip_issi.c.o": { + "libspi_flash.a:spi_flash_chip_issi.c.obj": { ".dram0.data": 97, ".iram0.text": 101, "flash_total": 198, "ram_st_total": 198 }, - "libpthread.a:pthread_local_storage.c.o": { + "libpthread.a:pthread_local_storage.c.obj": { ".dram0.bss": 4, ".dram0.data": 8, ".flash.text": 183, "flash_total": 191, "ram_st_total": 12 }, - "liblog.a:log_freertos.c.o": { + "liblog.a:log_freertos.c.obj": { ".dram0.bss": 8, ".iram0.text": 188, "flash_total": 188, "ram_st_total": 196 }, - "libsoc_esp32.a:gpio_periph.c.o": { + "libsoc_esp32.a:gpio_periph.c.obj": { ".flash.rodata": 160, "flash_total": 160, "ram_st_total": 0 }, - "libesp32.a:cache_err_int.c.o": { + "libesp32.a:cache_err_int.c.obj": { ".flash.text": 98, ".iram0.text": 56, "flash_total": 154, "ram_st_total": 56 }, - "libnewlib.a:heap.c.o": { + "libnewlib.a:heap.c.obj": { ".iram0.text": 151, "flash_total": 151, "ram_st_total": 151 }, - "libfreertos.a:xtensa_intr.c.o": { + "libfreertos.a:xtensa_intr.c.obj": { ".flash.rodata": 35, ".iram0.text": 113, "flash_total": 148, "ram_st_total": 113 }, - "libspi_flash.a:spi_flash_os_func_noos.c.o": { + "libspi_flash.a:spi_flash_os_func_noos.c.obj": { ".dram0.data": 16, ".iram0.text": 127, "flash_total": 143, "ram_st_total": 143 }, - "libspi_flash.a:spi_flash_os_func_app.c.o": { + "libspi_flash.a:spi_flash_os_func_app.c.obj": { ".dram0.data": 24, ".flash.text": 25, ".iram0.text": 91, "flash_total": 140, "ram_st_total": 115 }, - "libfreertos.a:list.c.o": { + "libfreertos.a:list.c.obj": { ".iram0.text": 138, "flash_total": 138, "ram_st_total": 138 @@ -9502,7 +9502,7 @@ Producing JSON output... "flash_total": 128, "ram_st_total": 0 }, - "libmain.a:blink.c.o": { + "libmain.a:blink.c.obj": { ".flash.rodata": 39, ".flash.text": 72, "flash_total": 111, @@ -9523,19 +9523,19 @@ Producing JSON output... "flash_total": 84, "ram_st_total": 0 }, - "libpthread.a:pthread.c.o": { + "libpthread.a:pthread.c.obj": { ".dram0.bss": 8, ".flash.text": 81, "flash_total": 81, "ram_st_total": 8 }, - "libbootloader_support.a:bootloader_mem.c.o": { + "libbootloader_support.a:bootloader_mem.c.obj": { ".flash.rodata": 20, ".flash.text": 58, "flash_total": 78, "ram_st_total": 0 }, - "libsoc.a:cpu_util.c.o": { + "libsoc.a:cpu_util.c.obj": { ".iram0.text": 75, "flash_total": 75, "ram_st_total": 75 @@ -9550,7 +9550,7 @@ Producing JSON output... "flash_total": 63, "ram_st_total": 0 }, - "libspi_flash.a:flash_ops.c.o": { + "libspi_flash.a:flash_ops.c.obj": { ".dram0.bss": 4, ".dram0.data": 20, ".flash.text": 29, @@ -9568,27 +9568,27 @@ Producing JSON output... "flash_total": 62, "ram_st_total": 62 }, - "libnewlib.a:reent_init.c.o": { + "libnewlib.a:reent_init.c.obj": { ".iram0.text": 59, "flash_total": 59, "ram_st_total": 59 }, - "libdriver.a:rtc_io.c.o": { + "libdriver.a:rtc_io.c.obj": { ".flash.text": 53, "flash_total": 53, "ram_st_total": 0 }, - "libnewlib.a:syscalls.c.o": { + "libnewlib.a:syscalls.c.obj": { ".flash.text": 50, "flash_total": 50, "ram_st_total": 0 }, - "libsoc.a:mpu_hal.c.o": { + "libsoc.a:mpu_hal.c.obj": { ".flash.text": 47, "flash_total": 47, "ram_st_total": 0 }, - "libfreertos.a:xtensa_vector_defaults.S.o": { + "libfreertos.a:xtensa_vector_defaults.S.obj": { ".iram0.text": 46, "flash_total": 46, "ram_st_total": 46 @@ -9618,7 +9618,7 @@ Producing JSON output... "flash_total": 40, "ram_st_total": 0 }, - "libfreertos.a:xtensa_init.c.o": { + "libfreertos.a:xtensa_init.c.obj": { ".dram0.bss": 4, ".iram0.text": 32, "flash_total": 32, @@ -9629,12 +9629,12 @@ Producing JSON output... "flash_total": 32, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_chip_drivers.c.o": { + "libspi_flash.a:spi_flash_chip_drivers.c.obj": { ".dram0.data": 20, "flash_total": 20, "ram_st_total": 20 }, - "libnewlib.a:pthread.c.o": { + "libnewlib.a:pthread.c.obj": { ".flash.text": 12, "flash_total": 12, "ram_st_total": 0 @@ -9649,7 +9649,7 @@ Producing JSON output... "flash_total": 8, "ram_st_total": 0 }, - "libesp32.a:pm_esp32.c.o": { + "libesp32.a:pm_esp32.c.obj": { ".flash.text": 8, "flash_total": 8, "ram_st_total": 0 @@ -9659,7 +9659,7 @@ Producing JSON output... "flash_total": 8, "ram_st_total": 8 }, - "libsoc.a:cpu_hal.c.o": { + "libsoc.a:cpu_hal.c.obj": { ".iram0.text": 8, "flash_total": 8, "ram_st_total": 8 @@ -9670,12 +9670,12 @@ Producing JSON output... "flash_total": 6, "ram_st_total": 3 }, - "libcxx.a:cxx_exception_stubs.cpp.o": { + "libcxx.a:cxx_exception_stubs.cpp.obj": { ".flash.text": 6, "flash_total": 6, "ram_st_total": 0 }, - "libcxx.a:cxx_guards.cpp.o": { + "libcxx.a:cxx_guards.cpp.obj": { ".flash.text": 5, "flash_total": 5, "ram_st_total": 0 @@ -9685,7 +9685,7 @@ Producing JSON output... "flash_total": 4, "ram_st_total": 0 }, - "libfreertos.a:FreeRTOS-openocd.c.o": { + "libfreertos.a:FreeRTOS-openocd.c.obj": { ".dram0.data": 4, "flash_total": 4, "ram_st_total": 4 @@ -9698,39 +9698,39 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "(exe):project_elf_src.c.o": { + "(exe):project_elf_src.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_common.c.o": { + "libbootloader_support.a:bootloader_common.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_efuse_esp32.c.o": { + "libbootloader_support.a:bootloader_efuse_esp32.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_flash.c.o": { + "libbootloader_support.a:bootloader_flash.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_random.c.o": { + "libbootloader_support.a:bootloader_random.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_sha.c.o": { + "libbootloader_support.a:bootloader_sha.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_utility.c.o": { + "libbootloader_support.a:bootloader_utility.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:esp_image_format.c.o": { + "libbootloader_support.a:esp_image_format.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:flash_partitions.c.o": { + "libbootloader_support.a:flash_partitions.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -9978,35 +9978,35 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libdriver.a:spi_common.c.o": { + "libdriver.a:spi_common.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_api.c.o": { + "libefuse.a:esp_efuse_api.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_fields.c.o": { + "libefuse.a:esp_efuse_fields.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_table.c.o": { + "libefuse.a:esp_efuse_table.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_utility.c.o": { + "libefuse.a:esp_efuse_utility.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp32.a:hw_random.c.o": { + "libesp32.a:hw_random.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp_common.a:pm_locks.c.o": { + "libesp_common.a:pm_locks.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp_common.a:system_api.c.o": { + "libesp_common.a:system_api.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -10042,43 +10042,43 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:esp_sha256.c.o": { + "libmbedcrypto.a:esp_sha256.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:sha.c.o": { + "libmbedcrypto.a:sha.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:gpio_hal.c.o": { + "libsoc.a:gpio_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:rtc_io_hal.c.o": { + "libsoc.a:rtc_io_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc_esp32.a:rtc_io_periph.c.o": { + "libsoc_esp32.a:rtc_io_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc_esp32.a:spi_periph.c.o": { + "libsoc_esp32.a:spi_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc_esp32.a:uart_periph.c.o": { + "libsoc_esp32.a:uart_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_rom_patch.c.o": { + "libspi_flash.a:spi_flash_rom_patch.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libwpa_supplicant.a:md5-internal.c.o": { + "libwpa_supplicant.a:md5-internal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libxtensa.a:debug_helpers_asm.S.o": { + "libxtensa.a:debug_helpers_asm.S.obj": { "flash_total": 0, "ram_st_total": 0 } @@ -10108,18 +10108,18 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "(exe):project_elf_src.c.o": { + "(exe):project_elf_src.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libapp_update.a:esp_app_desc.c.o": { + "libapp_update.a:esp_app_desc.c.obj": { ".flash.rodata": -256, ".flash.text": -12, ".iram0.text": -109, "flash_total": -377, "ram_st_total": -109 }, - "libapp_update.a:esp_ota_ops.c.o": { + "libapp_update.a:esp_ota_ops.c.obj": { ".dram0.bss": -4, ".flash.rodata": -214, ".flash.text": -147, @@ -10132,15 +10132,15 @@ Producing JSON output... "flash_total": 840, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_common.c.o": { + "libbootloader_support.a:bootloader_common.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_efuse_esp32.c.o": { + "libbootloader_support.a:bootloader_efuse_esp32.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_flash.c.o": { + "libbootloader_support.a:bootloader_flash.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -10148,23 +10148,23 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_flash_config_esp32.c.o": { + "libbootloader_support.a:bootloader_flash_config_esp32.c.obj": { ".flash.text": -17, ".iram0.text": -1028, "flash_total": -1045, "ram_st_total": -1028 }, - "libbootloader_support.a:bootloader_mem.c.o": { + "libbootloader_support.a:bootloader_mem.c.obj": { ".flash.rodata": -20, ".flash.text": -58, "flash_total": -78, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_random.c.o": { + "libbootloader_support.a:bootloader_random.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_sha.c.o": { + "libbootloader_support.a:bootloader_sha.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -10172,11 +10172,11 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_utility.c.o": { + "libbootloader_support.a:bootloader_utility.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:esp_image_format.c.o": { + "libbootloader_support.a:esp_image_format.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -10184,11 +10184,11 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:flash_partitions.c.o": { + "libbootloader_support.a:flash_partitions.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:flash_qio_mode.c.o": { + "libbootloader_support.a:flash_qio_mode.c.obj": { ".flash.text": -490, "flash_total": -490, "ram_st_total": 0 @@ -10597,7 +10597,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libcxx.a:cxx_exception_stubs.cpp.o": { + "libcxx.a:cxx_exception_stubs.cpp.obj": { ".flash.text": -6, "flash_total": -6, "ram_st_total": 0 @@ -10607,7 +10607,7 @@ Producing JSON output... "flash_total": 6, "ram_st_total": 0 }, - "libcxx.a:cxx_guards.cpp.o": { + "libcxx.a:cxx_guards.cpp.obj": { ".flash.text": -5, "flash_total": -5, "ram_st_total": 0 @@ -10617,7 +10617,7 @@ Producing JSON output... "flash_total": 5, "ram_st_total": 0 }, - "libdriver.a:gpio.c.o": { + "libdriver.a:gpio.c.obj": { ".dram0.data": -32, ".flash.rodata": -970, ".flash.text": -1193, @@ -10628,7 +10628,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libdriver.a:periph_ctrl.c.o": { + "libdriver.a:periph_ctrl.c.obj": { ".dram0.data": -8, ".flash.rodata": -488, ".flash.text": -696, @@ -10642,12 +10642,12 @@ Producing JSON output... "flash_total": 784, "ram_st_total": 8 }, - "libdriver.a:rtc_io.c.o": { + "libdriver.a:rtc_io.c.obj": { ".flash.text": -53, "flash_total": -53, "ram_st_total": 0 }, - "libdriver.a:rtc_module.c.o": { + "libdriver.a:rtc_module.c.obj": { ".dram0.bss": -8, ".dram0.data": -16, ".flash.text": -231, @@ -10661,7 +10661,7 @@ Producing JSON output... "flash_total": 299, "ram_st_total": 16 }, - "libdriver.a:spi_common.c.o": { + "libdriver.a:spi_common.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -10672,7 +10672,7 @@ Producing JSON output... "flash_total": 409, "ram_st_total": 16 }, - "libdriver.a:uart.c.o": { + "libdriver.a:uart.c.obj": { ".dram0.bss": -12, ".dram0.data": -56, ".flash.rodata": -452, @@ -10687,19 +10687,19 @@ Producing JSON output... "flash_total": 46, "ram_st_total": 20 }, - "libefuse.a:esp_efuse_api.c.o": { + "libefuse.a:esp_efuse_api.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_fields.c.o": { + "libefuse.a:esp_efuse_fields.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_table.c.o": { + "libefuse.a:esp_efuse_table.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_utility.c.o": { + "libefuse.a:esp_efuse_utility.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -10709,7 +10709,7 @@ Producing JSON output... "flash_total": 336, "ram_st_total": 0 }, - "libesp32.a:cache_err_int.c.o": { + "libesp32.a:cache_err_int.c.obj": { ".flash.text": -98, ".iram0.text": -56, "flash_total": -154, @@ -10721,7 +10721,7 @@ Producing JSON output... "flash_total": 154, "ram_st_total": 56 }, - "libesp32.a:clk.c.o": { + "libesp32.a:clk.c.obj": { ".flash.rodata": -208, ".flash.text": -582, ".iram0.text": -64, @@ -10735,7 +10735,7 @@ Producing JSON output... "flash_total": 1541, "ram_st_total": 67 }, - "libesp32.a:cpu_start.c.o": { + "libesp32.a:cpu_start.c.obj": { ".dram0.bss": -1, ".flash.rodata": -1073, ".flash.text": -255, @@ -10751,7 +10751,7 @@ Producing JSON output... "flash_total": 1569, "ram_st_total": 807 }, - "libesp32.a:crosscore_int.c.o": { + "libesp32.a:crosscore_int.c.obj": { ".dram0.bss": -8, ".dram0.data": -8, ".flash.rodata": -146, @@ -10776,7 +10776,7 @@ Producing JSON output... "flash_total": 132, "ram_st_total": 2104 }, - "libesp32.a:dport_access.c.o": { + "libesp32.a:dport_access.c.obj": { ".dram0.bss": -40, ".dram0.data": -8, ".flash.rodata": -126, @@ -10794,7 +10794,7 @@ Producing JSON output... "flash_total": 865, "ram_st_total": 587 }, - "libesp32.a:dport_panic_highint_hdl.S.o": { + "libesp32.a:dport_panic_highint_hdl.S.obj": { ".dram0.data": -12, ".iram0.text": -250, "flash_total": -262, @@ -10850,7 +10850,7 @@ Producing JSON output... "flash_total": 188, "ram_st_total": 179 }, - "libesp32.a:hw_random.c.o": { + "libesp32.a:hw_random.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -10860,7 +10860,7 @@ Producing JSON output... "flash_total": 74, "ram_st_total": 78 }, - "libesp32.a:int_wdt.c.o": { + "libesp32.a:int_wdt.c.obj": { ".dram0.bss": -1, ".flash.text": -341, ".iram0.text": -94, @@ -10874,7 +10874,7 @@ Producing JSON output... "flash_total": 388, "ram_st_total": 88 }, - "libesp32.a:intr_alloc.c.o": { + "libesp32.a:intr_alloc.c.obj": { ".dram0.bss": -22, ".dram0.data": -8, ".flash.rodata": -704, @@ -10904,7 +10904,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libesp32.a:panic.c.o": { + "libesp32.a:panic.c.obj": { ".dram0.bss": -5, ".dram0.data": -2029, ".iram0.text": -2223, @@ -10922,7 +10922,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libesp32.a:pm_esp32.c.o": { + "libesp32.a:pm_esp32.c.obj": { ".flash.text": -8, "flash_total": -8, "ram_st_total": 0 @@ -10945,12 +10945,12 @@ Producing JSON output... "flash_total": 1251, "ram_st_total": 597 }, - "libesp32.a:system_api_esp32.c.o": { + "libesp32.a:system_api_esp32.c.obj": { ".iram0.text": -435, "flash_total": -435, "ram_st_total": -435 }, - "libesp32.a:task_wdt.c.o": { + "libesp32.a:task_wdt.c.obj": { ".dram0.bss": -4, ".dram0.data": -53, ".flash.rodata": -494, @@ -10968,19 +10968,19 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libesp_common.a:brownout.c.o": { + "libesp_common.a:brownout.c.obj": { ".flash.rodata": -203, ".flash.text": -120, "flash_total": -323, "ram_st_total": 0 }, - "libesp_common.a:esp_err_to_name.c.o": { + "libesp_common.a:esp_err_to_name.c.obj": { ".flash.rodata": -5101, ".flash.text": -53, "flash_total": -5154, "ram_st_total": 0 }, - "libesp_common.a:freertos_hooks.c.o": { + "libesp_common.a:freertos_hooks.c.obj": { ".dram0.bss": -128, ".dram0.data": -8, ".flash.text": -243, @@ -10988,7 +10988,7 @@ Producing JSON output... "flash_total": -298, "ram_st_total": -183 }, - "libesp_common.a:ipc.c.o": { + "libesp_common.a:ipc.c.obj": { ".dram0.bss": -56, ".flash.rodata": -117, ".flash.text": -367, @@ -10996,21 +10996,21 @@ Producing JSON output... "flash_total": -676, "ram_st_total": -248 }, - "libesp_common.a:pm_locks.c.o": { + "libesp_common.a:pm_locks.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp_common.a:system_api.c.o": { + "libesp_common.a:system_api.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp_ringbuf.a:ringbuf.c.o": { + "libesp_ringbuf.a:ringbuf.c.obj": { ".flash.rodata": -150, ".iram0.text": -858, "flash_total": -1008, "ram_st_total": -858 }, - "libesp_timer.a:esp_timer.c.o": { + "libesp_timer.a:esp_timer.c.obj": { ".dram0.bss": -12, ".dram0.data": -8, ".flash.rodata": -104, @@ -11019,7 +11019,7 @@ Producing JSON output... "flash_total": -793, "ram_st_total": -300 }, - "libesp_timer.a:esp_timer_impl_lac.c.o": { + "libesp_timer.a:esp_timer_impl_lac.c.obj": { ".dram0.bss": -8, ".dram0.data": -8, ".flash.rodata": -389, @@ -11036,7 +11036,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libfreertos.a:FreeRTOS-openocd.c.o": { + "libfreertos.a:FreeRTOS-openocd.c.obj": { ".dram0.data": -4, "flash_total": -4, "ram_st_total": -4 @@ -11050,7 +11050,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libfreertos.a:list.c.o": { + "libfreertos.a:list.c.obj": { ".iram0.text": -138, "flash_total": -138, "ram_st_total": -138 @@ -11060,7 +11060,7 @@ Producing JSON output... "flash_total": 142, "ram_st_total": 142 }, - "libfreertos.a:port.c.o": { + "libfreertos.a:port.c.obj": { ".dram0.bss": -32, ".flash.rodata": -340, ".iram0.text": -737, @@ -11074,7 +11074,7 @@ Producing JSON output... "flash_total": 986, "ram_st_total": 633 }, - "libfreertos.a:portasm.S.o": { + "libfreertos.a:portasm.S.obj": { ".dram0.data": -3084, ".iram0.text": -476, "flash_total": -3560, @@ -11086,7 +11086,7 @@ Producing JSON output... "flash_total": 3564, "ram_st_total": 3564 }, - "libfreertos.a:queue.c.o": { + "libfreertos.a:queue.c.obj": { ".flash.rodata": -366, ".iram0.text": -2411, "flash_total": -2777, @@ -11104,7 +11104,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libfreertos.a:tasks.c.o": { + "libfreertos.a:tasks.c.obj": { ".dram0.bss": -700, ".dram0.data": -12, ".flash.rodata": -451, @@ -11120,7 +11120,7 @@ Producing JSON output... "flash_total": 6190, "ram_st_total": 6387 }, - "libfreertos.a:timers.c.o": { + "libfreertos.a:timers.c.obj": { ".dram0.bss": -56, ".dram0.data": -8, ".flash.rodata": -223, @@ -11136,7 +11136,7 @@ Producing JSON output... "flash_total": 1390, "ram_st_total": 1213 }, - "libfreertos.a:xtensa_context.S.o": { + "libfreertos.a:xtensa_context.S.obj": { ".iram0.text": -367, "flash_total": -367, "ram_st_total": -367 @@ -11146,7 +11146,7 @@ Producing JSON output... "flash_total": 299, "ram_st_total": 299 }, - "libfreertos.a:xtensa_init.c.o": { + "libfreertos.a:xtensa_init.c.obj": { ".dram0.bss": -4, ".iram0.text": -32, "flash_total": -32, @@ -11158,7 +11158,7 @@ Producing JSON output... "flash_total": 32, "ram_st_total": 36 }, - "libfreertos.a:xtensa_intr.c.o": { + "libfreertos.a:xtensa_intr.c.obj": { ".flash.rodata": -35, ".iram0.text": -113, "flash_total": -148, @@ -11170,7 +11170,7 @@ Producing JSON output... "flash_total": 139, "ram_st_total": 104 }, - "libfreertos.a:xtensa_intr_asm.S.o": { + "libfreertos.a:xtensa_intr_asm.S.obj": { ".dram0.data": -1024, ".iram0.text": -51, "flash_total": -1075, @@ -11182,7 +11182,7 @@ Producing JSON output... "flash_total": 1075, "ram_st_total": 1075 }, - "libfreertos.a:xtensa_vector_defaults.S.o": { + "libfreertos.a:xtensa_vector_defaults.S.obj": { ".iram0.text": -46, "flash_total": -46, "ram_st_total": -46 @@ -11192,7 +11192,7 @@ Producing JSON output... "flash_total": 46, "ram_st_total": 46 }, - "libfreertos.a:xtensa_vectors.S.o": { + "libfreertos.a:xtensa_vectors.S.obj": { ".dram0.data": -8, ".flash.rodata": -36, ".iram0.text": -1344, @@ -11325,7 +11325,7 @@ Producing JSON output... "flash_total": -4, "ram_st_total": -4 }, - "libheap.a:heap_caps.c.o": { + "libheap.a:heap_caps.c.obj": { ".dram0.data": -4, ".flash.rodata": -362, ".flash.text": -50, @@ -11341,7 +11341,7 @@ Producing JSON output... "flash_total": 1980, "ram_st_total": 1199 }, - "libheap.a:heap_caps_init.c.o": { + "libheap.a:heap_caps_init.c.obj": { ".dram0.bss": -4, ".flash.rodata": -379, ".flash.text": -834, @@ -11355,7 +11355,7 @@ Producing JSON output... "flash_total": 1417, "ram_st_total": 4 }, - "libheap.a:multi_heap.c.o": { + "libheap.a:multi_heap.c.obj": { ".dram0.data": -300, ".iram0.text": -2245, "flash_total": -2545, @@ -11373,7 +11373,7 @@ Producing JSON output... "flash_total": 1434, "ram_st_total": 1434 }, - "liblog.a:log.c.o": { + "liblog.a:log.c.obj": { ".dram0.bss": -264, ".dram0.data": -8, ".flash.rodata": -147, @@ -11391,7 +11391,7 @@ Producing JSON output... "flash_total": 1026, "ram_st_total": 732 }, - "liblog.a:log_freertos.c.o": { + "liblog.a:log_freertos.c.obj": { ".dram0.bss": -8, ".iram0.text": -188, "flash_total": -188, @@ -11645,17 +11645,17 @@ Producing JSON output... "flash_total": 63, "ram_st_total": 0 }, - "libmain.a:blink.c.o": { + "libmain.a:blink.c.obj": { ".flash.rodata": -39, ".flash.text": -72, "flash_total": -111, "ram_st_total": 0 }, - "libmbedcrypto.a:esp_sha256.c.o": { + "libmbedcrypto.a:esp_sha256.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:sha.c.o": { + "libmbedcrypto.a:sha.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -11819,12 +11819,12 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libnewlib.a:heap.c.o": { + "libnewlib.a:heap.c.obj": { ".iram0.text": -151, "flash_total": -151, "ram_st_total": -151 }, - "libnewlib.a:locks.c.o": { + "libnewlib.a:locks.c.obj": { ".dram0.data": -8, ".flash.rodata": -84, ".flash.text": -5, @@ -11839,12 +11839,12 @@ Producing JSON output... "flash_total": 644, "ram_st_total": 560 }, - "libnewlib.a:pthread.c.o": { + "libnewlib.a:pthread.c.obj": { ".flash.text": -12, "flash_total": -12, "ram_st_total": 0 }, - "libnewlib.a:reent_init.c.o": { + "libnewlib.a:reent_init.c.obj": { ".iram0.text": -59, "flash_total": -59, "ram_st_total": -59 @@ -11855,7 +11855,7 @@ Producing JSON output... "flash_total": 70, "ram_st_total": 68 }, - "libnewlib.a:syscall_table.c.o": { + "libnewlib.a:syscall_table.c.obj": { ".dram0.bss": -240, ".dram0.data": -144, ".flash.text": -82, @@ -11869,7 +11869,7 @@ Producing JSON output... "flash_total": 211, "ram_st_total": 384 }, - "libnewlib.a:syscalls.c.o": { + "libnewlib.a:syscalls.c.obj": { ".flash.text": -50, "flash_total": -50, "ram_st_total": 0 @@ -11880,7 +11880,7 @@ Producing JSON output... "flash_total": 139, "ram_st_total": 94 }, - "libnewlib.a:time.c.o": { + "libnewlib.a:time.c.obj": { ".dram0.bss": -32, ".flash.text": -719, ".iram0.text": -123, @@ -11978,7 +11978,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libpthread.a:pthread.c.o": { + "libpthread.a:pthread.c.obj": { ".dram0.bss": -8, ".flash.text": -81, "flash_total": -81, @@ -11993,7 +11993,7 @@ Producing JSON output... "flash_total": 992, "ram_st_total": 190 }, - "libpthread.a:pthread_local_storage.c.o": { + "libpthread.a:pthread_local_storage.c.obj": { ".dram0.bss": -4, ".dram0.data": -8, ".flash.text": -183, @@ -12028,17 +12028,17 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:brownout_hal.c.o": { + "libsoc.a:brownout_hal.c.obj": { ".flash.text": -269, "flash_total": -269, "ram_st_total": 0 }, - "libsoc.a:cpu_hal.c.o": { + "libsoc.a:cpu_hal.c.obj": { ".iram0.text": -8, "flash_total": -8, "ram_st_total": -8 }, - "libsoc.a:cpu_util.c.o": { + "libsoc.a:cpu_util.c.obj": { ".iram0.text": -75, "flash_total": -75, "ram_st_total": -75 @@ -12048,7 +12048,7 @@ Producing JSON output... "flash_total": 310, "ram_st_total": 310 }, - "libsoc.a:gpio_hal.c.o": { + "libsoc.a:gpio_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -12056,18 +12056,18 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:memory_layout_utils.c.o": { + "libsoc.a:memory_layout_utils.c.obj": { ".flash.rodata": -295, ".flash.text": -505, "flash_total": -800, "ram_st_total": 0 }, - "libsoc.a:mpu_hal.c.o": { + "libsoc.a:mpu_hal.c.obj": { ".flash.text": -47, "flash_total": -47, "ram_st_total": 0 }, - "libsoc.a:rtc_clk.c.o": { + "libsoc.a:rtc_clk.c.obj": { ".dram0.bss": -4, ".dram0.data": -160, ".iram0.text": -2104, @@ -12081,7 +12081,7 @@ Producing JSON output... "flash_total": 2454, "ram_st_total": 2462 }, - "libsoc.a:rtc_init.c.o": { + "libsoc.a:rtc_init.c.obj": { ".iram0.text": -956, "flash_total": -956, "ram_st_total": -956 @@ -12091,7 +12091,7 @@ Producing JSON output... "flash_total": 980, "ram_st_total": 980 }, - "libsoc.a:rtc_io_hal.c.o": { + "libsoc.a:rtc_io_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -12104,7 +12104,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:rtc_time.c.o": { + "libsoc.a:rtc_time.c.obj": { ".flash.rodata": -194, ".iram0.text": -819, "flash_total": -1013, @@ -12116,18 +12116,18 @@ Producing JSON output... "flash_total": 940, "ram_st_total": 803 }, - "libsoc.a:rtc_wdt.c.o": { + "libsoc.a:rtc_wdt.c.obj": { ".iram0.text": -796, "flash_total": -796, "ram_st_total": -796 }, - "libsoc.a:soc_hal.c.o": { + "libsoc.a:soc_hal.c.obj": { ".dram0.data": -24, ".iram0.text": -234, "flash_total": -258, "ram_st_total": -258 }, - "libsoc.a:soc_memory_layout.c.o": { + "libsoc.a:soc_memory_layout.c.obj": { ".flash.rodata": -1197, "flash_total": -1197, "ram_st_total": 0 @@ -12137,47 +12137,47 @@ Producing JSON output... "flash_total": 1239, "ram_st_total": 0 }, - "libsoc.a:spi_flash_hal.c.o": { + "libsoc.a:spi_flash_hal.c.obj": { ".flash.rodata": -48, ".flash.text": -302, "flash_total": -350, "ram_st_total": 0 }, - "libsoc.a:spi_flash_hal_iram.c.o": { + "libsoc.a:spi_flash_hal_iram.c.obj": { ".dram0.data": -24, ".iram0.text": -1798, "flash_total": -1822, "ram_st_total": -1822 }, - "libsoc.a:uart_hal.c.o": { + "libsoc.a:uart_hal.c.obj": { ".flash.text": -493, "flash_total": -493, "ram_st_total": 0 }, - "libsoc.a:uart_hal_iram.c.o": { + "libsoc.a:uart_hal_iram.c.obj": { ".flash.rodata": -222, ".flash.text": -147, "flash_total": -369, "ram_st_total": 0 }, - "libsoc_esp32.a:gpio_periph.c.o": { + "libsoc_esp32.a:gpio_periph.c.obj": { ".flash.rodata": -160, "flash_total": -160, "ram_st_total": 0 }, - "libsoc_esp32.a:rtc_io_periph.c.o": { + "libsoc_esp32.a:rtc_io_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc_esp32.a:spi_periph.c.o": { + "libsoc_esp32.a:spi_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc_esp32.a:uart_periph.c.o": { + "libsoc_esp32.a:uart_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libspi_flash.a:cache_utils.c.o": { + "libspi_flash.a:cache_utils.c.obj": { ".dram0.bss": -14, ".dram0.data": -4, ".flash.rodata": -430, @@ -12195,14 +12195,14 @@ Producing JSON output... "flash_total": 1311, "ram_st_total": 854 }, - "libspi_flash.a:esp_flash_api.c.o": { + "libspi_flash.a:esp_flash_api.c.obj": { ".flash.rodata": -244, ".flash.text": -16, ".iram0.text": -600, "flash_total": -860, "ram_st_total": -600 }, - "libspi_flash.a:esp_flash_spi_init.c.o": { + "libspi_flash.a:esp_flash_spi_init.c.obj": { ".dram0.bss": -4, ".dram0.data": -120, ".flash.rodata": -261, @@ -12210,7 +12210,7 @@ Producing JSON output... "flash_total": -572, "ram_st_total": -124 }, - "libspi_flash.a:flash_mmap.c.o": { + "libspi_flash.a:flash_mmap.c.obj": { ".dram0.bss": -264, ".flash.rodata": -296, ".flash.text": -125, @@ -12226,7 +12226,7 @@ Producing JSON output... "flash_total": 1749, "ram_st_total": 1594 }, - "libspi_flash.a:flash_ops.c.o": { + "libspi_flash.a:flash_ops.c.obj": { ".dram0.bss": -4, ".dram0.data": -20, ".flash.text": -29, @@ -12242,13 +12242,13 @@ Producing JSON output... "flash_total": 2483, "ram_st_total": 2425 }, - "libspi_flash.a:memspi_host_driver.c.o": { + "libspi_flash.a:memspi_host_driver.c.obj": { ".dram0.data": -43, ".iram0.text": -206, "flash_total": -249, "ram_st_total": -249 }, - "libspi_flash.a:partition.c.o": { + "libspi_flash.a:partition.c.obj": { ".dram0.bss": -8, ".flash.rodata": -181, ".flash.text": -668, @@ -12262,43 +12262,43 @@ Producing JSON output... "flash_total": 723, "ram_st_total": 8 }, - "libspi_flash.a:spi_flash_chip_drivers.c.o": { + "libspi_flash.a:spi_flash_chip_drivers.c.obj": { ".dram0.data": -20, "flash_total": -20, "ram_st_total": -20 }, - "libspi_flash.a:spi_flash_chip_gd.c.o": { + "libspi_flash.a:spi_flash_chip_gd.c.obj": { ".dram0.data": -95, ".iram0.text": -181, "flash_total": -276, "ram_st_total": -276 }, - "libspi_flash.a:spi_flash_chip_generic.c.o": { + "libspi_flash.a:spi_flash_chip_generic.c.obj": { ".dram0.data": -340, ".iram0.text": -1423, "flash_total": -1763, "ram_st_total": -1763 }, - "libspi_flash.a:spi_flash_chip_issi.c.o": { + "libspi_flash.a:spi_flash_chip_issi.c.obj": { ".dram0.data": -97, ".iram0.text": -101, "flash_total": -198, "ram_st_total": -198 }, - "libspi_flash.a:spi_flash_os_func_app.c.o": { + "libspi_flash.a:spi_flash_os_func_app.c.obj": { ".dram0.data": -24, ".flash.text": -25, ".iram0.text": -91, "flash_total": -140, "ram_st_total": -115 }, - "libspi_flash.a:spi_flash_os_func_noos.c.o": { + "libspi_flash.a:spi_flash_os_func_noos.c.obj": { ".dram0.data": -16, ".iram0.text": -127, "flash_total": -143, "ram_st_total": -143 }, - "libspi_flash.a:spi_flash_rom_patch.c.o": { + "libspi_flash.a:spi_flash_rom_patch.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -12412,7 +12412,7 @@ Producing JSON output... "flash_total": 2111, "ram_st_total": 13 }, - "libvfs.a:vfs.c.o": { + "libvfs.a:vfs.c.obj": { ".dram0.bss": -40, ".dram0.data": -192, ".flash.rodata": -132, @@ -12428,7 +12428,7 @@ Producing JSON output... "flash_total": 2319, "ram_st_total": 232 }, - "libvfs.a:vfs_uart.c.o": { + "libvfs.a:vfs_uart.c.obj": { ".dram0.bss": -8, ".dram0.data": -116, ".flash.rodata": -783, @@ -12492,7 +12492,7 @@ Producing JSON output... "flash_total": 0, "ram_st_total": 0 }, - "libwpa_supplicant.a:md5-internal.c.o": { + "libwpa_supplicant.a:md5-internal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -12509,12 +12509,12 @@ Producing JSON output... "flash_total": 8, "ram_st_total": 8 }, - "libxtensa.a:debug_helpers.c.o": { + "libxtensa.a:debug_helpers.c.obj": { ".iram0.text": -217, "flash_total": -217, "ram_st_total": -217 }, - "libxtensa.a:debug_helpers_asm.S.o": { + "libxtensa.a:debug_helpers_asm.S.obj": { "flash_total": 0, "ram_st_total": 0 } @@ -13002,7 +13002,7 @@ Producing JSON output for esp32s2... "flash_total": 10633, "ram_st_total": 0 }, - "libfreertos.a:tasks.c.o": { + "libfreertos.a:tasks.c.obj": { ".dram0.bss": 660, ".dram0.data": 12, ".flash.rodata": 406, @@ -13010,20 +13010,20 @@ Producing JSON output for esp32s2... "flash_total": 5372, "ram_st_total": 5626 }, - "libesp_common.a:esp_err_to_name.c.o": { + "libesp_common.a:esp_err_to_name.c.obj": { ".flash.rodata": 5101, ".flash.text": 53, "flash_total": 5154, "ram_st_total": 0 }, - "libesp32s2.a:panic.c.o": { + "libesp32s2.a:panic.c.obj": { ".dram0.bss": 1, ".dram0.data": 2552, ".iram0.text": 2321, "flash_total": 4873, "ram_st_total": 4874 }, - "libvfs.a:vfs_uart.c.o": { + "libvfs.a:vfs_uart.c.obj": { ".dram0.bss": 8, ".dram0.data": 80, ".flash.rodata": 423, @@ -13037,7 +13037,7 @@ Producing JSON output for esp32s2... "flash_total": 3537, "ram_st_total": 0 }, - "libesp32s2.a:intr_alloc.c.o": { + "libesp32s2.a:intr_alloc.c.obj": { ".dram0.bss": 13, ".dram0.data": 8, ".flash.rodata": 706, @@ -13046,13 +13046,13 @@ Producing JSON output for esp32s2... "flash_total": 3056, "ram_st_total": 681 }, - "libfreertos.a:queue.c.o": { + "libfreertos.a:queue.c.obj": { ".flash.rodata": 424, ".iram0.text": 2397, "flash_total": 2821, "ram_st_total": 2397 }, - "libdriver.a:uart.c.o": { + "libdriver.a:uart.c.obj": { ".dram0.bss": 8, ".dram0.data": 40, ".flash.rodata": 452, @@ -13060,7 +13060,7 @@ Producing JSON output for esp32s2... "flash_total": 2579, "ram_st_total": 48 }, - "libheap.a:multi_heap.c.o": { + "libheap.a:multi_heap.c.obj": { ".dram0.data": 300, ".iram0.text": 2273, "flash_total": 2573, @@ -13072,14 +13072,14 @@ Producing JSON output for esp32s2... "flash_total": 2440, "ram_st_total": 0 }, - "libsoc.a:rtc_clk.c.o": { + "libsoc.a:rtc_clk.c.obj": { ".dram0.bss": 8, ".dram0.data": 381, ".iram0.text": 1867, "flash_total": 2248, "ram_st_total": 2256 }, - "libvfs.a:vfs.c.o": { + "libvfs.a:vfs.c.obj": { ".dram0.bss": 40, ".dram0.data": 192, ".flash.rodata": 132, @@ -13087,25 +13087,25 @@ Producing JSON output for esp32s2... "flash_total": 2216, "ram_st_total": 232 }, - "libfreertos.a:portasm.S.o": { + "libfreertos.a:portasm.S.obj": { ".dram0.data": 1544, ".iram0.text": 365, "flash_total": 1909, "ram_st_total": 1909 }, - "libsoc.a:spi_flash_hal_iram.c.o": { + "libsoc.a:spi_flash_hal_iram.c.obj": { ".dram0.data": 24, ".iram0.text": 1804, "flash_total": 1828, "ram_st_total": 1828 }, - "libspi_flash.a:spi_flash_chip_generic.c.o": { + "libspi_flash.a:spi_flash_chip_generic.c.obj": { ".dram0.data": 340, ".iram0.text": 1417, "flash_total": 1757, "ram_st_total": 1757 }, - "libesp32s2.a:task_wdt.c.o": { + "libesp32s2.a:task_wdt.c.obj": { ".dram0.bss": 4, ".dram0.data": 53, ".flash.rodata": 496, @@ -13113,7 +13113,7 @@ Producing JSON output for esp32s2... "flash_total": 1739, "ram_st_total": 57 }, - "libspi_flash.a:flash_mmap.c.o": { + "libspi_flash.a:flash_mmap.c.obj": { ".dram0.bss": 392, ".flash.rodata": 252, ".flash.text": 124, @@ -13121,7 +13121,7 @@ Producing JSON output for esp32s2... "flash_total": 1576, "ram_st_total": 1592 }, - "libheap.a:heap_caps.c.o": { + "libheap.a:heap_caps.c.obj": { ".dram0.data": 4, ".flash.rodata": 362, ".flash.text": 50, @@ -13129,19 +13129,19 @@ Producing JSON output for esp32s2... "flash_total": 1314, "ram_st_total": 902 }, - "libfreertos.a:xtensa_vectors.S.o": { + "libfreertos.a:xtensa_vectors.S.obj": { ".iram0.text": 864, ".iram0.vectors": 425, "flash_total": 1289, "ram_st_total": 1289 }, - "libsoc.a:rtc_init.c.o": { + "libsoc.a:rtc_init.c.obj": { ".flash.rodata": 8, ".iram0.text": 1255, "flash_total": 1263, "ram_st_total": 1255 }, - "libfreertos.a:timers.c.o": { + "libfreertos.a:timers.c.obj": { ".dram0.bss": 56, ".dram0.data": 8, ".flash.rodata": 223, @@ -13149,21 +13149,21 @@ Producing JSON output for esp32s2... "flash_total": 1218, "ram_st_total": 1051 }, - "libheap.a:heap_caps_init.c.o": { + "libheap.a:heap_caps_init.c.obj": { ".dram0.bss": 4, ".flash.rodata": 379, ".flash.text": 838, "flash_total": 1217, "ram_st_total": 4 }, - "libesp32s2.a:cpu_start.c.o": { + "libesp32s2.a:cpu_start.c.obj": { ".flash.rodata": 489, ".flash.text": 152, ".iram0.text": 536, "flash_total": 1177, "ram_st_total": 536 }, - "libesp_timer.a:esp_timer_impl_systimer.c.o": { + "libesp_timer.a:esp_timer_impl_systimer.c.obj": { ".dram0.bss": 8, ".dram0.data": 8, ".flash.rodata": 442, @@ -13172,20 +13172,20 @@ Producing JSON output for esp32s2... "flash_total": 1090, "ram_st_total": 404 }, - "libesp_ringbuf.a:ringbuf.c.o": { + "libesp_ringbuf.a:ringbuf.c.obj": { ".flash.rodata": 150, ".iram0.text": 858, "flash_total": 1008, "ram_st_total": 858 }, - "libdriver.a:periph_ctrl.c.o": { + "libdriver.a:periph_ctrl.c.obj": { ".dram0.data": 8, ".flash.rodata": 272, ".flash.text": 661, "flash_total": 941, "ram_st_total": 8 }, - "libesp32s2.a:clk.c.o": { + "libesp32s2.a:clk.c.obj": { ".flash.rodata": 281, ".flash.text": 626, ".iram0.text": 34, @@ -13197,39 +13197,39 @@ Producing JSON output for esp32s2... "flash_total": 910, "ram_st_total": 0 }, - "libspi_flash.a:partition.c.o": { + "libspi_flash.a:partition.c.obj": { ".dram0.bss": 8, ".flash.rodata": 181, ".flash.text": 679, "flash_total": 860, "ram_st_total": 8 }, - "libspi_flash.a:esp_flash_api.c.o": { + "libspi_flash.a:esp_flash_api.c.obj": { ".flash.rodata": 240, ".flash.text": 16, ".iram0.text": 600, "flash_total": 856, "ram_st_total": 600 }, - "libnewlib.a:time.c.o": { + "libnewlib.a:time.c.obj": { ".dram0.bss": 32, ".flash.text": 719, ".iram0.text": 115, "flash_total": 834, "ram_st_total": 147 }, - "libsoc.a:memory_layout_utils.c.o": { + "libsoc.a:memory_layout_utils.c.obj": { ".flash.rodata": 295, ".flash.text": 509, "flash_total": 804, "ram_st_total": 0 }, - "libsoc.a:rtc_wdt.c.o": { + "libsoc.a:rtc_wdt.c.obj": { ".iram0.text": 800, "flash_total": 800, "ram_st_total": 800 }, - "libesp_timer.a:esp_timer.c.o": { + "libesp_timer.a:esp_timer.c.obj": { ".dram0.bss": 12, ".dram0.data": 8, ".flash.rodata": 104, @@ -13238,7 +13238,7 @@ Producing JSON output for esp32s2... "flash_total": 797, "ram_st_total": 300 }, - "liblog.a:log.c.o": { + "liblog.a:log.c.obj": { ".dram0.bss": 264, ".dram0.data": 8, ".flash.rodata": 147, @@ -13247,12 +13247,12 @@ Producing JSON output for esp32s2... "flash_total": 655, "ram_st_total": 678 }, - "libsoc.a:rtc_time.c.o": { + "libsoc.a:rtc_time.c.obj": { ".iram0.text": 626, "flash_total": 626, "ram_st_total": 626 }, - "libspi_flash.a:esp_flash_spi_init.c.o": { + "libspi_flash.a:esp_flash_spi_init.c.obj": { ".dram0.bss": 4, ".dram0.data": 120, ".flash.rodata": 281, @@ -13260,7 +13260,7 @@ Producing JSON output for esp32s2... "flash_total": 616, "ram_st_total": 124 }, - "libnewlib.a:locks.c.o": { + "libnewlib.a:locks.c.obj": { ".dram0.data": 8, ".flash.rodata": 84, ".flash.text": 5, @@ -13268,20 +13268,20 @@ Producing JSON output for esp32s2... "flash_total": 584, "ram_st_total": 495 }, - "libfreertos.a:xtensa_intr_asm.S.o": { + "libfreertos.a:xtensa_intr_asm.S.obj": { ".dram0.data": 512, ".iram0.text": 51, "flash_total": 563, "ram_st_total": 563 }, - "libfreertos.a:port.c.o": { + "libfreertos.a:port.c.obj": { ".dram0.bss": 16, ".flash.rodata": 87, ".iram0.text": 408, "flash_total": 495, "ram_st_total": 424 }, - "libesp32s2.a:crosscore_int.c.o": { + "libesp32s2.a:crosscore_int.c.obj": { ".dram0.bss": 4, ".dram0.data": 8, ".flash.rodata": 237, @@ -13290,28 +13290,28 @@ Producing JSON output for esp32s2... "flash_total": 485, "ram_st_total": 166 }, - "libsoc.a:soc_memory_layout.c.o": { + "libsoc.a:soc_memory_layout.c.obj": { ".flash.rodata": 479, "flash_total": 479, "ram_st_total": 0 }, - "libsoc.a:rtc_sleep.c.o": { + "libsoc.a:rtc_sleep.c.obj": { ".iram0.text": 414, "flash_total": 414, "ram_st_total": 414 }, - "libsoc.a:uart_hal.c.o": { + "libsoc.a:uart_hal.c.obj": { ".flash.text": 409, "flash_total": 409, "ram_st_total": 0 }, - "libsoc.a:spi_flash_hal.c.o": { + "libsoc.a:spi_flash_hal.c.obj": { ".flash.rodata": 96, ".flash.text": 309, "flash_total": 405, "ram_st_total": 0 }, - "libspi_flash.a:cache_utils.c.o": { + "libspi_flash.a:cache_utils.c.obj": { ".dram0.bss": 8, ".flash.rodata": 176, ".flash.text": 21, @@ -13319,7 +13319,7 @@ Producing JSON output for esp32s2... "flash_total": 394, "ram_st_total": 205 }, - "libmain.a:hello_world_main.c.o": { + "libmain.a:hello_world_main.c.obj": { ".flash.rodata": 196, ".flash.text": 192, "flash_total": 388, @@ -13331,7 +13331,7 @@ Producing JSON output for esp32s2... "flash_total": 374, "ram_st_total": 364 }, - "libdriver.a:timer.c.o": { + "libdriver.a:timer.c.obj": { ".dram0.bss": 16, ".dram0.data": 16, ".flash.rodata": 170, @@ -13344,26 +13344,26 @@ Producing JSON output for esp32s2... "flash_total": 368, "ram_st_total": 0 }, - "libapp_update.a:esp_ota_ops.c.o": { + "libapp_update.a:esp_ota_ops.c.obj": { ".dram0.bss": 4, ".flash.rodata": 214, ".flash.text": 151, "flash_total": 365, "ram_st_total": 4 }, - "libesp32s2.a:int_wdt.c.o": { + "libesp32s2.a:int_wdt.c.obj": { ".flash.text": 302, ".iram0.text": 59, "flash_total": 361, "ram_st_total": 59 }, - "libesp32s2.a:system_api_esp32s2.c.o": { + "libesp32s2.a:system_api_esp32s2.c.obj": { ".flash.text": 27, ".iram0.text": 323, "flash_total": 350, "ram_st_total": 323 }, - "libesp_common.a:brownout.c.o": { + "libesp_common.a:brownout.c.obj": { ".flash.rodata": 203, ".flash.text": 120, "flash_total": 323, @@ -13374,17 +13374,17 @@ Producing JSON output for esp32s2... "flash_total": 315, "ram_st_total": 315 }, - "libsoc.a:cpu_util.c.o": { + "libsoc.a:cpu_util.c.obj": { ".iram0.text": 309, "flash_total": 309, "ram_st_total": 309 }, - "libsoc.a:brownout_hal.c.o": { + "libsoc.a:brownout_hal.c.obj": { ".flash.text": 304, "flash_total": 304, "ram_st_total": 0 }, - "libesp_common.a:freertos_hooks.c.o": { + "libesp_common.a:freertos_hooks.c.obj": { ".dram0.bss": 64, ".dram0.data": 8, ".flash.text": 243, @@ -13392,24 +13392,24 @@ Producing JSON output for esp32s2... "flash_total": 298, "ram_st_total": 119 }, - "libspi_flash.a:spi_flash_chip_gd.c.o": { + "libspi_flash.a:spi_flash_chip_gd.c.obj": { ".dram0.data": 95, ".iram0.text": 181, "flash_total": 276, "ram_st_total": 276 }, - "libapp_update.a:esp_app_desc.c.o": { + "libapp_update.a:esp_app_desc.c.obj": { ".flash.rodata": 256, "flash_total": 256, "ram_st_total": 0 }, - "libspi_flash.a:memspi_host_driver.c.o": { + "libspi_flash.a:memspi_host_driver.c.obj": { ".dram0.data": 43, ".iram0.text": 206, "flash_total": 249, "ram_st_total": 249 }, - "libdriver.a:rtc_module.c.o": { + "libdriver.a:rtc_module.c.obj": { ".dram0.bss": 8, ".dram0.data": 16, ".flash.text": 231, @@ -13437,56 +13437,56 @@ Producing JSON output for esp32s2... "flash_total": 217, "ram_st_total": 0 }, - "libnewlib.a:syscall_table.c.o": { + "libnewlib.a:syscall_table.c.obj": { ".dram0.bss": 240, ".dram0.data": 144, ".flash.text": 70, "flash_total": 214, "ram_st_total": 384 }, - "libfreertos.a:xtensa_context.S.o": { + "libfreertos.a:xtensa_context.S.obj": { ".iram0.text": 201, "flash_total": 201, "ram_st_total": 201 }, - "libspi_flash.a:spi_flash_chip_issi.c.o": { + "libspi_flash.a:spi_flash_chip_issi.c.obj": { ".dram0.data": 97, ".iram0.text": 101, "flash_total": 198, "ram_st_total": 198 }, - "libpthread.a:pthread_local_storage.c.o": { + "libpthread.a:pthread_local_storage.c.obj": { ".dram0.bss": 4, ".dram0.data": 8, ".flash.text": 183, "flash_total": 191, "ram_st_total": 12 }, - "liblog.a:log_freertos.c.o": { + "liblog.a:log_freertos.c.obj": { ".dram0.bss": 8, ".iram0.text": 188, "flash_total": 188, "ram_st_total": 196 }, - "libnewlib.a:heap.c.o": { + "libnewlib.a:heap.c.obj": { ".iram0.text": 151, "flash_total": 151, "ram_st_total": 151 }, - "libfreertos.a:xtensa_intr.c.o": { + "libfreertos.a:xtensa_intr.c.obj": { ".flash.rodata": 35, ".iram0.text": 112, "flash_total": 147, "ram_st_total": 112 }, - "libspi_flash.a:spi_flash_os_func_app.c.o": { + "libspi_flash.a:spi_flash_os_func_app.c.obj": { ".dram0.data": 24, ".flash.text": 25, ".iram0.text": 95, "flash_total": 144, "ram_st_total": 119 }, - "libfreertos.a:list.c.o": { + "libfreertos.a:list.c.obj": { ".iram0.text": 138, "flash_total": 138, "ram_st_total": 138 @@ -13496,7 +13496,7 @@ Producing JSON output for esp32s2... "flash_total": 128, "ram_st_total": 0 }, - "libesp32s2.a:dport_panic_highint_hdl.S.o": { + "libesp32s2.a:dport_panic_highint_hdl.S.obj": { ".iram0.text": 123, "flash_total": 123, "ram_st_total": 123 @@ -13506,7 +13506,7 @@ Producing JSON output for esp32s2... "flash_total": 116, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_os_func_noos.c.o": { + "libspi_flash.a:spi_flash_os_func_noos.c.obj": { ".dram0.data": 16, ".iram0.text": 89, "flash_total": 105, @@ -13517,7 +13517,7 @@ Producing JSON output for esp32s2... "flash_total": 100, "ram_st_total": 0 }, - "libesp32s2.a:cache_err_int.c.o": { + "libesp32s2.a:cache_err_int.c.obj": { ".flash.text": 96, "flash_total": 96, "ram_st_total": 0 @@ -13527,13 +13527,13 @@ Producing JSON output for esp32s2... "flash_total": 94, "ram_st_total": 0 }, - "libpthread.a:pthread.c.o": { + "libpthread.a:pthread.c.obj": { ".dram0.bss": 8, ".flash.text": 81, "flash_total": 81, "ram_st_total": 8 }, - "libspi_flash.a:flash_ops.c.o": { + "libspi_flash.a:flash_ops.c.obj": { ".dram0.bss": 4, ".dram0.data": 20, ".flash.text": 29, @@ -13546,22 +13546,22 @@ Producing JSON output for esp32s2... "flash_total": 63, "ram_st_total": 0 }, - "libnewlib.a:reent_init.c.o": { + "libnewlib.a:reent_init.c.obj": { ".iram0.text": 59, "flash_total": 59, "ram_st_total": 59 }, - "libdriver.a:rtc_io.c.o": { + "libdriver.a:rtc_io.c.obj": { ".flash.text": 53, "flash_total": 53, "ram_st_total": 0 }, - "libnewlib.a:syscalls.c.o": { + "libnewlib.a:syscalls.c.obj": { ".flash.text": 50, "flash_total": 50, "ram_st_total": 0 }, - "libfreertos.a:xtensa_vector_defaults.S.o": { + "libfreertos.a:xtensa_vector_defaults.S.obj": { ".iram0.text": 46, "flash_total": 46, "ram_st_total": 46 @@ -13571,12 +13571,12 @@ Producing JSON output for esp32s2... "flash_total": 45, "ram_st_total": 0 }, - "libsoc.a:uart_hal_iram.c.o": { + "libsoc.a:uart_hal_iram.c.obj": { ".flash.text": 43, "flash_total": 43, "ram_st_total": 0 }, - "libesp_common.a:system_api.c.o": { + "libesp_common.a:system_api.c.obj": { ".dram0.bss": 8, ".iram0.text": 40, "flash_total": 40, @@ -13602,7 +13602,7 @@ Producing JSON output for esp32s2... "flash_total": 40, "ram_st_total": 0 }, - "libfreertos.a:xtensa_init.c.o": { + "libfreertos.a:xtensa_init.c.obj": { ".dram0.bss": 4, ".iram0.text": 32, "flash_total": 32, @@ -13613,12 +13613,12 @@ Producing JSON output for esp32s2... "flash_total": 32, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_chip_drivers.c.o": { + "libspi_flash.a:spi_flash_chip_drivers.c.obj": { ".dram0.data": 20, "flash_total": 20, "ram_st_total": 20 }, - "libnewlib.a:pthread.c.o": { + "libnewlib.a:pthread.c.obj": { ".flash.text": 12, "flash_total": 12, "ram_st_total": 0 @@ -13633,7 +13633,7 @@ Producing JSON output for esp32s2... "flash_total": 8, "ram_st_total": 0 }, - "libesp32s2.a:pm_esp32s2.c.o": { + "libesp32s2.a:pm_esp32s2.c.obj": { ".flash.text": 8, "flash_total": 8, "ram_st_total": 0 @@ -13659,12 +13659,12 @@ Producing JSON output for esp32s2... "flash_total": 6, "ram_st_total": 3 }, - "libcxx.a:cxx_exception_stubs.cpp.o": { + "libcxx.a:cxx_exception_stubs.cpp.obj": { ".flash.text": 6, "flash_total": 6, "ram_st_total": 0 }, - "libcxx.a:cxx_guards.cpp.o": { + "libcxx.a:cxx_guards.cpp.obj": { ".flash.text": 5, "flash_total": 5, "ram_st_total": 0 @@ -13674,7 +13674,7 @@ Producing JSON output for esp32s2... "flash_total": 4, "ram_st_total": 0 }, - "libfreertos.a:FreeRTOS-openocd.c.o": { + "libfreertos.a:FreeRTOS-openocd.c.obj": { ".dram0.data": 4, "flash_total": 4, "ram_st_total": 4 @@ -13687,39 +13687,39 @@ Producing JSON output for esp32s2... "flash_total": 0, "ram_st_total": 0 }, - "(exe):project_elf_src.c.o": { + "(exe):project_elf_src.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_common.c.o": { + "libbootloader_support.a:bootloader_common.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_efuse_esp32s2.c.o": { + "libbootloader_support.a:bootloader_efuse_esp32s2.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_flash.c.o": { + "libbootloader_support.a:bootloader_flash.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_random.c.o": { + "libbootloader_support.a:bootloader_random.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_sha.c.o": { + "libbootloader_support.a:bootloader_sha.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_utility.c.o": { + "libbootloader_support.a:bootloader_utility.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:esp_image_format.c.o": { + "libbootloader_support.a:esp_image_format.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:flash_partitions.c.o": { + "libbootloader_support.a:flash_partitions.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -13972,19 +13972,19 @@ Producing JSON output for esp32s2... "flash_total": 0, "ram_st_total": 0 }, - "libdriver.a:gpio.c.o": { + "libdriver.a:gpio.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libdriver.a:spi_common.c.o": { + "libdriver.a:spi_common.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp32s2.a:hw_random.c.o": { + "libesp32s2.a:hw_random.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp_common.a:pm_locks.c.o": { + "libesp_common.a:pm_locks.c.obj": { "flash_total": 0, "ram_st_total": 0 }, @@ -14016,59 +14016,59 @@ Producing JSON output for esp32s2... "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:esp_mem.c.o": { + "libmbedcrypto.a:esp_mem.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:platform.c.o": { + "libmbedcrypto.a:platform.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:platform_util.c.o": { + "libmbedcrypto.a:platform_util.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:sha256.c.o": { + "libmbedcrypto.a:sha256.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:gpio_hal.c.o": { + "libsoc.a:gpio_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:rtc_io_hal.c.o": { + "libsoc.a:rtc_io_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:spi_flash_hal_gpspi.c.o": { + "libsoc.a:spi_flash_hal_gpspi.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:timer_hal.c.o": { + "libsoc.a:timer_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc_esp32s2.a:gpio_periph.c.o": { + "libsoc_esp32s2.a:gpio_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc_esp32s2.a:rtc_io_periph.c.o": { + "libsoc_esp32s2.a:rtc_io_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc_esp32s2.a:spi_periph.c.o": { + "libsoc_esp32s2.a:spi_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc_esp32s2.a:uart_periph.c.o": { + "libsoc_esp32s2.a:uart_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libwpa_supplicant.a:md5-internal.c.o": { + "libwpa_supplicant.a:md5-internal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libxtensa.a:stdatomic.c.o": { + "libxtensa.a:stdatomic.c.obj": { "flash_total": 0, "ram_st_total": 0 } @@ -14395,14 +14395,14 @@ Producing JSON output for esp32c3... "flash_total": 10493, "ram_st_total": 0 }, - "libesp_common.a:esp_err_to_name.c.o": { + "libesp_common.a:esp_err_to_name.c.obj": { ".dram0.data": 6, ".flash.rodata": 7065, ".flash.text": 56, "flash_total": 7127, "ram_st_total": 6 }, - "libfreertos.a:tasks.c.o": { + "libfreertos.a:tasks.c.obj": { ".dram0.bss": 664, ".dram0.data": 8, ".flash.rodata": 1080, @@ -14410,7 +14410,7 @@ Producing JSON output for esp32c3... "flash_total": 6640, "ram_st_total": 6224 }, - "libheap.a:heap_tlsf.c.o": { + "libheap.a:heap_tlsf.c.obj": { ".dram0.data": 1796, ".iram0.text": 4036, "flash_total": 5832, @@ -14422,7 +14422,7 @@ Producing JSON output for esp32c3... "flash_total": 5545, "ram_st_total": 0 }, - "libvfs.a:vfs_uart.c.o": { + "libvfs.a:vfs_uart.c.obj": { ".dram0.bss": 8, ".dram0.data": 80, ".flash.rodata": 270, @@ -14430,7 +14430,7 @@ Producing JSON output for esp32c3... "flash_total": 4752, "ram_st_total": 88 }, - "libfreertos.a:queue.c.o": { + "libfreertos.a:queue.c.obj": { ".flash.rodata": 1495, ".iram0.text": 3192, "flash_total": 4687, @@ -14442,20 +14442,20 @@ Producing JSON output for esp32c3... "flash_total": 4658, "ram_st_total": 0 }, - "libesp_hw_support.a:memprot.c.o": { + "libesp_hw_support.a:memprot.c.obj": { ".flash.rodata": 800, ".flash.text": 2762, ".iram0.text": 772, "flash_total": 4334, "ram_st_total": 772 }, - "libspi_flash.a:spi_flash_chip_generic.c.o": { + "libspi_flash.a:spi_flash_chip_generic.c.obj": { ".dram0.data": 554, ".iram0.text": 2684, "flash_total": 3238, "ram_st_total": 3238 }, - "libdriver.a:uart.c.o": { + "libdriver.a:uart.c.obj": { ".dram0.bss": 8, ".dram0.data": 40, ".flash.rodata": 511, @@ -14463,7 +14463,7 @@ Producing JSON output for esp32c3... "flash_total": 3139, "ram_st_total": 48 }, - "libesp_hw_support.a:intr_alloc.c.o": { + "libesp_hw_support.a:intr_alloc.c.obj": { ".dram0.bss": 13, ".flash.rodata": 198, ".flash.text": 2128, @@ -14471,13 +14471,13 @@ Producing JSON output for esp32c3... "flash_total": 3014, "ram_st_total": 701 }, - "libesp_system.a:panic_arch.c.o": { + "libesp_system.a:panic_arch.c.obj": { ".flash.rodata": 1693, ".flash.text": 1060, "flash_total": 2753, "ram_st_total": 0 }, - "libvfs.a:vfs.c.o": { + "libvfs.a:vfs.c.obj": { ".dram0.bss": 40, ".dram0.data": 192, ".flash.rodata": 108, @@ -14485,24 +14485,24 @@ Producing JSON output for esp32c3... "flash_total": 2660, "ram_st_total": 232 }, - "libesp_hw_support.a:rtc_init.c.o": { + "libesp_hw_support.a:rtc_init.c.obj": { ".flash.rodata": 500, ".flash.text": 2068, "flash_total": 2568, "ram_st_total": 0 }, - "libdriver.a:gpio.c.o": { + "libdriver.a:gpio.c.obj": { ".flash.rodata": 459, ".flash.text": 1856, "flash_total": 2315, "ram_st_total": 0 }, - "libhal.a:spi_flash_hal_iram.c.o": { + "libhal.a:spi_flash_hal_iram.c.obj": { ".iram0.text": 2220, "flash_total": 2220, "ram_st_total": 2220 }, - "libesp_system.a:task_wdt.c.o": { + "libesp_system.a:task_wdt.c.obj": { ".dram0.bss": 12, ".dram0.data": 45, ".flash.rodata": 478, @@ -14510,7 +14510,7 @@ Producing JSON output for esp32c3... "flash_total": 1961, "ram_st_total": 57 }, - "libspi_flash.a:flash_mmap.c.o": { + "libspi_flash.a:flash_mmap.c.obj": { ".dram0.bss": 136, ".flash.rodata": 240, ".flash.text": 182, @@ -14518,14 +14518,14 @@ Producing JSON output for esp32c3... "flash_total": 1952, "ram_st_total": 1666 }, - "libesp_hw_support.a:rtc_clk.c.o": { + "libesp_hw_support.a:rtc_clk.c.obj": { ".dram0.bss": 4, ".dram0.data": 171, ".iram0.text": 1738, "flash_total": 1909, "ram_st_total": 1913 }, - "libspi_flash.a:esp_flash_api.c.o": { + "libspi_flash.a:esp_flash_api.c.obj": { ".dram0.data": 20, ".flash.rodata": 762, ".flash.text": 82, @@ -14533,7 +14533,7 @@ Producing JSON output for esp32c3... "flash_total": 1832, "ram_st_total": 988 }, - "libheap.a:heap_caps.c.o": { + "libheap.a:heap_caps.c.obj": { ".dram0.bss": 4, ".dram0.data": 4, ".flash.rodata": 355, @@ -14542,25 +14542,25 @@ Producing JSON output for esp32c3... "flash_total": 1767, "ram_st_total": 1130 }, - "libesp_ringbuf.a:ringbuf.c.o": { + "libesp_ringbuf.a:ringbuf.c.obj": { ".flash.rodata": 512, ".iram0.text": 1004, "flash_total": 1516, "ram_st_total": 1004 }, - "libhal.a:spi_flash_hal_gpspi.c.o": { + "libhal.a:spi_flash_hal_gpspi.c.obj": { ".iram0.text": 1484, "flash_total": 1484, "ram_st_total": 1484 }, - "libefuse.a:esp_efuse_utility.c.o": { + "libefuse.a:esp_efuse_utility.c.obj": { ".dram0.bss": 4, ".flash.rodata": 475, ".flash.text": 998, "flash_total": 1473, "ram_st_total": 4 }, - "libnewlib.a:locks.c.o": { + "libnewlib.a:locks.c.obj": { ".dram0.bss": 168, ".flash.rodata": 344, ".flash.text": 152, @@ -14568,14 +14568,14 @@ Producing JSON output for esp32c3... "flash_total": 1420, "ram_st_total": 1092 }, - "libheap.a:heap_caps_init.c.o": { + "libheap.a:heap_caps_init.c.obj": { ".dram0.bss": 4, ".flash.rodata": 338, ".flash.text": 1052, "flash_total": 1390, "ram_st_total": 4 }, - "libesp_system.a:startup.c.o": { + "libesp_system.a:startup.c.obj": { ".dram0.bss": 8, ".dram0.data": 12, ".flash.rodata": 497, @@ -14584,7 +14584,7 @@ Producing JSON output for esp32c3... "flash_total": 1387, "ram_st_total": 64 }, - "libspi_flash.a:partition.c.o": { + "libspi_flash.a:partition.c.obj": { ".dram0.bss": 8, ".flash.rodata": 268, ".flash.text": 1070, @@ -14596,7 +14596,7 @@ Producing JSON output for esp32c3... "flash_total": 1264, "ram_st_total": 0 }, - "libhal.a:wdt_hal_iram.c.o": { + "libhal.a:wdt_hal_iram.c.obj": { ".iram0.text": 1160, "flash_total": 1160, "ram_st_total": 1160 @@ -14612,7 +14612,7 @@ Producing JSON output for esp32c3... "flash_total": 1136, "ram_st_total": 0 }, - "libesp_system.a:panic.c.o": { + "libesp_system.a:panic.c.obj": { ".dram0.bss": 5, ".dram0.data": 12, ".flash.rodata": 131, @@ -14621,38 +14621,38 @@ Producing JSON output for esp32c3... "flash_total": 1107, "ram_st_total": 23 }, - "libesp_system.a:clk.c.o": { + "libesp_system.a:clk.c.obj": { ".flash.rodata": 212, ".flash.text": 838, "flash_total": 1050, "ram_st_total": 0 }, - "libspi_flash.a:memspi_host_driver.c.o": { + "libspi_flash.a:memspi_host_driver.c.obj": { ".dram0.data": 397, ".iram0.text": 636, "flash_total": 1033, "ram_st_total": 1033 }, - "libspi_flash.a:spi_flash_chip_winbond.c.o": { + "libspi_flash.a:spi_flash_chip_winbond.c.obj": { ".dram0.data": 203, ".iram0.text": 748, "flash_total": 951, "ram_st_total": 951 }, - "libheap.a:memory_layout_utils.c.o": { + "libheap.a:memory_layout_utils.c.obj": { ".flash.rodata": 283, ".flash.text": 650, "flash_total": 933, "ram_st_total": 0 }, - "libdriver.a:periph_ctrl.c.o": { + "libdriver.a:periph_ctrl.c.obj": { ".dram0.bss": 27, ".flash.rodata": 85, ".flash.text": 836, "flash_total": 921, "ram_st_total": 27 }, - "libesp_timer.a:esp_timer.c.o": { + "libesp_timer.a:esp_timer.c.obj": { ".dram0.bss": 8, ".flash.rodata": 72, ".flash.text": 514, @@ -14670,7 +14670,7 @@ Producing JSON output for esp32c3... "flash_total": 848, "ram_st_total": 0 }, - "libfreertos.a:port.c.o": { + "libfreertos.a:port.c.obj": { ".dram0.bss": 1556, ".dram0.data": 4, ".flash.rodata": 190, @@ -14679,26 +14679,26 @@ Producing JSON output for esp32c3... "flash_total": 848, "ram_st_total": 2148 }, - "libhal.a:systimer_hal.c.o": { + "libhal.a:systimer_hal.c.obj": { ".dram0.data": 85, ".iram0.text": 760, "flash_total": 845, "ram_st_total": 845 }, - "libheap.a:multi_heap.c.o": { + "libheap.a:multi_heap.c.obj": { ".dram0.data": 157, ".iram0.text": 678, "flash_total": 835, "ram_st_total": 835 }, - "libnewlib.a:time.c.o": { + "libnewlib.a:time.c.obj": { ".dram0.bss": 20, ".flash.text": 620, ".iram0.text": 180, "flash_total": 800, "ram_st_total": 200 }, - "liblog.a:log.c.o": { + "liblog.a:log.c.obj": { ".dram0.bss": 264, ".dram0.data": 8, ".flash.rodata": 122, @@ -14707,14 +14707,14 @@ Producing JSON output for esp32c3... "flash_total": 724, "ram_st_total": 304 }, - "libesp_system.a:cpu_start.c.o": { + "libesp_system.a:cpu_start.c.obj": { ".flash.rodata": 158, ".flash.text": 42, ".iram0.text": 464, "flash_total": 664, "ram_st_total": 464 }, - "libesp_timer.a:esp_timer_impl_systimer.c.o": { + "libesp_timer.a:esp_timer_impl_systimer.c.obj": { ".dram0.bss": 12, ".dram0.data": 16, ".flash.rodata": 125, @@ -14723,7 +14723,7 @@ Producing JSON output for esp32c3... "flash_total": 647, "ram_st_total": 238 }, - "libspi_flash.a:esp_flash_spi_init.c.o": { + "libspi_flash.a:esp_flash_spi_init.c.obj": { ".dram0.bss": 4, ".dram0.data": 68, ".flash.rodata": 261, @@ -14731,7 +14731,7 @@ Producing JSON output for esp32c3... "flash_total": 601, "ram_st_total": 72 }, - "libspi_flash.a:spi_flash_os_func_app.c.o": { + "libspi_flash.a:spi_flash_os_func_app.c.obj": { ".dram0.data": 52, ".flash.rodata": 95, ".flash.text": 34, @@ -14739,19 +14739,19 @@ Producing JSON output for esp32c3... "flash_total": 595, "ram_st_total": 466 }, - "libesp_hw_support.a:rtc_time.c.o": { + "libesp_hw_support.a:rtc_time.c.obj": { ".iram0.text": 590, "flash_total": 590, "ram_st_total": 590 }, - "libfreertos.a:port_systick.c.o": { + "libfreertos.a:port_systick.c.obj": { ".dram0.bss": 8, ".flash.rodata": 192, ".iram0.text": 370, "flash_total": 562, "ram_st_total": 378 }, - "libriscv.a:vectors.S.o": { + "libriscv.a:vectors.S.obj": { ".iram0.text": 522, "flash_total": 522, "ram_st_total": 522 @@ -14766,7 +14766,7 @@ Producing JSON output for esp32c3... "flash_total": 500, "ram_st_total": 0 }, - "libapp_update.a:esp_app_desc.c.o": { + "libapp_update.a:esp_app_desc.c.obj": { ".dram0.bss": 8, ".dram0.data": 1, ".flash.appdesc": 256, @@ -14781,7 +14781,7 @@ Producing JSON output for esp32c3... "flash_total": 488, "ram_st_total": 0 }, - "libmain.a:hello_world_main.c.o": { + "libmain.a:hello_world_main.c.obj": { ".flash.rodata": 232, ".flash.text": 248, "flash_total": 480, @@ -14792,7 +14792,7 @@ Producing JSON output for esp32c3... "flash_total": 456, "ram_st_total": 0 }, - "libhal.a:spi_flash_hal.c.o": { + "libhal.a:spi_flash_hal.c.obj": { ".flash.rodata": 96, ".flash.text": 342, "flash_total": 438, @@ -14803,7 +14803,7 @@ Producing JSON output for esp32c3... "flash_total": 436, "ram_st_total": 0 }, - "libfreertos.a:port_common.c.o": { + "libfreertos.a:port_common.c.obj": { ".flash.rodata": 186, ".flash.text": 128, ".iram0.text": 104, @@ -14815,13 +14815,13 @@ Producing JSON output for esp32c3... "flash_total": 416, "ram_st_total": 0 }, - "libesp_hw_support.a:sleep_modes.c.o": { + "libesp_hw_support.a:sleep_modes.c.obj": { ".flash.rodata": 171, ".flash.text": 244, "flash_total": 415, "ram_st_total": 0 }, - "libesp_system.a:crosscore_int.c.o": { + "libesp_system.a:crosscore_int.c.obj": { ".dram0.bss": 4, ".flash.rodata": 120, ".flash.text": 106, @@ -14846,12 +14846,12 @@ Producing JSON output for esp32c3... "flash_total": 372, "ram_st_total": 0 }, - "libhal.a:uart_hal.c.o": { + "libhal.a:uart_hal.c.obj": { ".flash.text": 366, "flash_total": 366, "ram_st_total": 0 }, - "libesp_system.a:panic_handler.c.o": { + "libesp_system.a:panic_handler.c.obj": { ".dram0.bss": 4, ".dram0.data": 8, ".flash.rodata": 8, @@ -14860,7 +14860,7 @@ Producing JSON output for esp32c3... "flash_total": 364, "ram_st_total": 94 }, - "libnewlib.a:esp_time_impl.c.o": { + "libnewlib.a:esp_time_impl.c.obj": { ".dram0.bss": 12, ".flash.text": 362, "flash_total": 362, @@ -14871,12 +14871,12 @@ Producing JSON output for esp32c3... "flash_total": 340, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_flash.c.o": { + "libbootloader_support.a:bootloader_flash.c.obj": { ".iram0.text": 340, "flash_total": 340, "ram_st_total": 340 }, - "libesp_system.a:freertos_hooks.c.o": { + "libesp_system.a:freertos_hooks.c.obj": { ".dram0.bss": 64, ".flash.text": 290, ".iram0.text": 48, @@ -14888,56 +14888,56 @@ Producing JSON output for esp32c3... "flash_total": 316, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_chip_gd.c.o": { + "libspi_flash.a:spi_flash_chip_gd.c.obj": { ".dram0.data": 123, ".iram0.text": 190, "flash_total": 313, "ram_st_total": 313 }, - "libesp_hw_support.a:rtc_sleep.c.o": { + "libesp_hw_support.a:rtc_sleep.c.obj": { ".iram0.text": 308, "flash_total": 308, "ram_st_total": 308 }, - "libapp_update.a:esp_ota_ops.c.o": { + "libapp_update.a:esp_ota_ops.c.obj": { ".dram0.bss": 4, ".flash.rodata": 121, ".flash.text": 186, "flash_total": 307, "ram_st_total": 4 }, - "libesp_system.a:system_internal.c.o": { + "libesp_system.a:system_internal.c.obj": { ".iram0.text": 298, "flash_total": 298, "ram_st_total": 298 }, - "libesp_system.a:int_wdt.c.o": { + "libesp_system.a:int_wdt.c.obj": { ".dram0.bss": 8, ".flash.text": 206, ".iram0.text": 74, "flash_total": 280, "ram_st_total": 82 }, - "libriscv.a:interrupt.c.o": { + "libriscv.a:interrupt.c.obj": { ".dram0.bss": 256, ".flash.rodata": 137, ".iram0.text": 130, "flash_total": 267, "ram_st_total": 386 }, - "libspi_flash.a:spi_flash_chip_mxic.c.o": { + "libspi_flash.a:spi_flash_chip_mxic.c.obj": { ".dram0.data": 190, ".iram0.text": 76, "flash_total": 266, "ram_st_total": 266 }, - "libesp_system.a:esp_err.c.o": { + "libesp_system.a:esp_err.c.obj": { ".dram0.data": 108, ".iram0.text": 154, "flash_total": 262, "ram_st_total": 262 }, - "libesp_timer.a:system_time.c.o": { + "libesp_timer.a:system_time.c.obj": { ".dram0.bss": 8, ".flash.rodata": 80, ".flash.text": 142, @@ -14950,12 +14950,12 @@ Producing JSON output for esp32c3... "flash_total": 257, "ram_st_total": 0 }, - "libesp_hw_support.a:cpu_util_esp32c3.c.o": { + "libesp_hw_support.a:cpu_util_esp32c3.c.obj": { ".flash.text": 250, "flash_total": 250, "ram_st_total": 0 }, - "libesp_hw_support.a:esp_clk.c.o": { + "libesp_hw_support.a:esp_clk.c.obj": { ".dram0.bss": 4, ".flash.text": 200, ".iram0.text": 30, @@ -14963,31 +14963,31 @@ Producing JSON output for esp32c3... "flash_total": 246, "ram_st_total": 50 }, - "libpthread.a:pthread_local_storage.c.o": { + "libpthread.a:pthread_local_storage.c.obj": { ".dram0.bss": 4, ".flash.text": 242, "flash_total": 242, "ram_st_total": 4 }, - "libspi_flash.a:spi_flash_chip_issi.c.o": { + "libspi_flash.a:spi_flash_chip_issi.c.obj": { ".dram0.data": 125, ".iram0.text": 112, "flash_total": 237, "ram_st_total": 237 }, - "libheap.a:memory_layout.c.o": { + "libheap.a:memory_layout.c.obj": { ".dram0.data": 4, ".flash.rodata": 231, "flash_total": 235, "ram_st_total": 4 }, - "liblog.a:log_freertos.c.o": { + "liblog.a:log_freertos.c.obj": { ".dram0.bss": 8, ".iram0.text": 232, "flash_total": 232, "ram_st_total": 240 }, - "libnewlib.a:newlib_init.c.o": { + "libnewlib.a:newlib_init.c.obj": { ".dram0.bss": 240, ".dram0.data": 156, ".flash.text": 76, @@ -14999,12 +14999,12 @@ Producing JSON output for esp32c3... "flash_total": 224, "ram_st_total": 0 }, - "libesp_hw_support.a:regi2c_ctrl.c.o": { + "libesp_hw_support.a:regi2c_ctrl.c.obj": { ".iram0.text": 202, "flash_total": 202, "ram_st_total": 202 }, - "libnewlib.a:heap.c.o": { + "libnewlib.a:heap.c.obj": { ".iram0.text": 190, "flash_total": 190, "ram_st_total": 190 @@ -15021,7 +15021,7 @@ Producing JSON output for esp32c3... "flash_total": 187, "ram_st_total": 0 }, - "libspi_flash.a:cache_utils.c.o": { + "libspi_flash.a:cache_utils.c.obj": { ".dram0.bss": 8, ".flash.text": 38, ".iram0.text": 144, @@ -15033,13 +15033,13 @@ Producing JSON output for esp32c3... "flash_total": 176, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_chip_boya.c.o": { + "libspi_flash.a:spi_flash_chip_boya.c.obj": { ".dram0.data": 125, ".iram0.text": 46, "flash_total": 171, "ram_st_total": 171 }, - "libesp_system.a:esp_system.c.o": { + "libesp_system.a:esp_system.c.obj": { ".dram0.bss": 20, ".flash.text": 80, ".iram0.text": 90, @@ -15051,23 +15051,23 @@ Producing JSON output for esp32c3... "flash_total": 168, "ram_st_total": 0 }, - "libnewlib.a:abort.c.o": { + "libnewlib.a:abort.c.obj": { ".dram0.data": 38, ".iram0.text": 128, "flash_total": 166, "ram_st_total": 166 }, - "libhal.a:brownout_hal.c.o": { + "libhal.a:brownout_hal.c.obj": { ".flash.text": 160, "flash_total": 160, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_api.c.o": { + "libefuse.a:esp_efuse_api.c.obj": { ".flash.text": 158, "flash_total": 158, "ram_st_total": 0 }, - "libfreertos.a:portasm.S.o": { + "libfreertos.a:portasm.S.obj": { ".iram0.text": 154, "flash_total": 154, "ram_st_total": 154 @@ -15077,23 +15077,23 @@ Producing JSON output for esp32c3... "flash_total": 148, "ram_st_total": 0 }, - "libfreertos.a:list.c.o": { + "libfreertos.a:list.c.obj": { ".iram0.text": 134, "flash_total": 134, "ram_st_total": 134 }, - "libhal.a:spi_flash_encrypt_hal_iram.c.o": { + "libhal.a:spi_flash_encrypt_hal_iram.c.obj": { ".iram0.text": 132, "flash_total": 132, "ram_st_total": 132 }, - "libesp_system.a:cache_err_int.c.o": { + "libesp_system.a:cache_err_int.c.obj": { ".flash.text": 124, ".iram0.text": 4, "flash_total": 128, "ram_st_total": 4 }, - "libspi_flash.a:spi_flash_os_func_noos.c.o": { + "libspi_flash.a:spi_flash_os_func_noos.c.obj": { ".dram0.data": 36, ".iram0.text": 86, "flash_total": 122, @@ -15104,7 +15104,7 @@ Producing JSON output for esp32c3... "flash_total": 108, "ram_st_total": 0 }, - "libspi_flash.a:flash_ops.c.o": { + "libspi_flash.a:flash_ops.c.obj": { ".dram0.bss": 4, ".dram0.data": 24, ".flash.text": 38, @@ -15112,49 +15112,49 @@ Producing JSON output for esp32c3... "flash_total": 102, "ram_st_total": 68 }, - "libpthread.a:pthread.c.o": { + "libpthread.a:pthread.c.obj": { ".dram0.bss": 8, ".flash.text": 100, "flash_total": 100, "ram_st_total": 8 }, - "libefuse.a:esp_efuse_table.c.o": { + "libefuse.a:esp_efuse_table.c.obj": { ".dram0.data": 96, "flash_total": 96, "ram_st_total": 96 }, - "libhal.a:uart_hal_iram.c.o": { + "libhal.a:uart_hal_iram.c.obj": { ".flash.text": 88, "flash_total": 88, "ram_st_total": 0 }, - "libsoc.a:gpio_periph.c.o": { + "libsoc.a:gpio_periph.c.obj": { ".flash.rodata": 88, "flash_total": 88, "ram_st_total": 0 }, - "libesp_system.a:apb_backup_dma.c.o": { + "libesp_system.a:apb_backup_dma.c.obj": { ".flash.text": 34, ".iram0.text": 52, "flash_total": 86, "ram_st_total": 52 }, - "libhal.a:interrupt_controller_hal.c.o": { + "libhal.a:interrupt_controller_hal.c.obj": { ".flash.text": 80, "flash_total": 80, "ram_st_total": 0 }, - "libnewlib.a:reent_init.c.o": { + "libnewlib.a:reent_init.c.obj": { ".iram0.text": 76, "flash_total": 76, "ram_st_total": 76 }, - "libriscv.a:instruction_decode.c.o": { + "libriscv.a:instruction_decode.c.obj": { ".flash.text": 74, "flash_total": 74, "ram_st_total": 0 }, - "libesp_hw_support.a:chip_info.c.o": { + "libesp_hw_support.a:chip_info.c.obj": { ".flash.text": 70, "flash_total": 70, "ram_st_total": 0 @@ -15169,7 +15169,7 @@ Producing JSON output for esp32c3... "flash_total": 64, "ram_st_total": 0 }, - "libbootloader_support.a:flash_qio_mode.c.o": { + "libbootloader_support.a:flash_qio_mode.c.obj": { ".flash.text": 58, "flash_total": 58, "ram_st_total": 0 @@ -15179,7 +15179,7 @@ Producing JSON output for esp32c3... "flash_total": 56, "ram_st_total": 0 }, - "libesp_system.a:brownout.c.o": { + "libesp_system.a:brownout.c.obj": { ".flash.rodata": 5, ".flash.text": 38, "flash_total": 43, @@ -15190,22 +15190,22 @@ Producing JSON output for esp32c3... "flash_total": 40, "ram_st_total": 0 }, - "libnewlib.a:syscalls.c.o": { + "libnewlib.a:syscalls.c.obj": { ".flash.text": 36, "flash_total": 36, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_fields.c.o": { + "libefuse.a:esp_efuse_fields.c.obj": { ".flash.text": 32, "flash_total": 32, "ram_st_total": 0 }, - "libhal.a:cpu_hal.c.o": { + "libhal.a:cpu_hal.c.obj": { ".iram0.text": 32, "flash_total": 32, "ram_st_total": 32 }, - "libspi_flash.a:spi_flash_chip_drivers.c.o": { + "libspi_flash.a:spi_flash_chip_drivers.c.obj": { ".dram0.data": 32, "flash_total": 32, "ram_st_total": 32 @@ -15215,52 +15215,52 @@ Producing JSON output for esp32c3... "flash_total": 28, "ram_st_total": 0 }, - "libesp_hw_support.a:cpu_util.c.o": { + "libesp_hw_support.a:cpu_util.c.obj": { ".iram0.text": 28, "flash_total": 28, "ram_st_total": 28 }, - "libesp_pm.a:pm_impl.c.o": { + "libesp_pm.a:pm_impl.c.obj": { ".flash.text": 28, "flash_total": 28, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_flash_config_esp32c3.c.o": { + "libbootloader_support.a:bootloader_flash_config_esp32c3.c.obj": { ".flash.text": 26, "flash_total": 26, "ram_st_total": 0 }, - "libesp_rom.a:esp_rom_uart.c.o": { + "libesp_rom.a:esp_rom_uart.c.obj": { ".iram0.text": 24, "flash_total": 24, "ram_st_total": 24 }, - "libbootloader_support.a:bootloader_mem.c.o": { + "libbootloader_support.a:bootloader_mem.c.obj": { ".flash.text": 14, "flash_total": 14, "ram_st_total": 0 }, - "libnewlib.a:pthread.c.o": { + "libnewlib.a:pthread.c.obj": { ".flash.text": 6, "flash_total": 6, "ram_st_total": 0 }, - "libdriver.a:spi_bus_lock.c.o": { + "libdriver.a:spi_bus_lock.c.obj": { ".dram0.data": 4, "flash_total": 4, "ram_st_total": 4 }, - "libfreertos.a:FreeRTOS-openocd.c.o": { + "libfreertos.a:FreeRTOS-openocd.c.obj": { ".dram0.data": 4, "flash_total": 4, "ram_st_total": 4 }, - "libcxx.a:cxx_guards.cpp.o": { + "libcxx.a:cxx_guards.cpp.obj": { ".flash.text": 2, "flash_total": 2, "ram_st_total": 0 }, - "libesp_system.a:ubsan.c.o": { + "libesp_system.a:ubsan.c.obj": { ".iram0.text": 2, "flash_total": 2, "ram_st_total": 2 @@ -15612,14 +15612,14 @@ Producing JSON output for esp32h2... "flash_total": 10493, "ram_st_total": 0 }, - "libesp_common.a:esp_err_to_name.c.o": { + "libesp_common.a:esp_err_to_name.c.obj": { ".dram0.data": 6, ".flash.rodata": 7065, ".flash.text": 56, "flash_total": 7127, "ram_st_total": 6 }, - "libfreertos.a:tasks.c.o": { + "libfreertos.a:tasks.c.obj": { ".dram0.bss": 664, ".dram0.data": 8, ".flash.rodata": 1080, @@ -15627,7 +15627,7 @@ Producing JSON output for esp32h2... "flash_total": 6640, "ram_st_total": 6224 }, - "libheap.a:heap_tlsf.c.o": { + "libheap.a:heap_tlsf.c.obj": { ".dram0.data": 1796, ".iram0.text": 4036, "flash_total": 5832, @@ -15639,7 +15639,7 @@ Producing JSON output for esp32h2... "flash_total": 5545, "ram_st_total": 0 }, - "libvfs.a:vfs_uart.c.o": { + "libvfs.a:vfs_uart.c.obj": { ".dram0.bss": 8, ".dram0.data": 80, ".flash.rodata": 270, @@ -15647,7 +15647,7 @@ Producing JSON output for esp32h2... "flash_total": 4752, "ram_st_total": 88 }, - "libfreertos.a:queue.c.o": { + "libfreertos.a:queue.c.obj": { ".flash.rodata": 1495, ".iram0.text": 3180, "flash_total": 4675, @@ -15659,20 +15659,20 @@ Producing JSON output for esp32h2... "flash_total": 4658, "ram_st_total": 0 }, - "libesp_hw_support.a:memprot.c.o": { + "libesp_hw_support.a:memprot.c.obj": { ".flash.rodata": 800, ".flash.text": 2750, ".iram0.text": 772, "flash_total": 4322, "ram_st_total": 772 }, - "libspi_flash.a:spi_flash_chip_generic.c.o": { + "libspi_flash.a:spi_flash_chip_generic.c.obj": { ".dram0.data": 554, ".iram0.text": 2668, "flash_total": 3222, "ram_st_total": 3222 }, - "libdriver.a:uart.c.o": { + "libdriver.a:uart.c.obj": { ".dram0.bss": 8, ".dram0.data": 40, ".flash.rodata": 511, @@ -15680,7 +15680,7 @@ Producing JSON output for esp32h2... "flash_total": 3139, "ram_st_total": 48 }, - "libesp_hw_support.a:intr_alloc.c.o": { + "libesp_hw_support.a:intr_alloc.c.obj": { ".dram0.bss": 13, ".flash.rodata": 198, ".flash.text": 2128, @@ -15688,13 +15688,13 @@ Producing JSON output for esp32h2... "flash_total": 3014, "ram_st_total": 701 }, - "libesp_system.a:panic_arch.c.o": { + "libesp_system.a:panic_arch.c.obj": { ".flash.rodata": 1693, ".flash.text": 1060, "flash_total": 2753, "ram_st_total": 0 }, - "libvfs.a:vfs.c.o": { + "libvfs.a:vfs.c.obj": { ".dram0.bss": 40, ".dram0.data": 192, ".flash.rodata": 108, @@ -15702,12 +15702,12 @@ Producing JSON output for esp32h2... "flash_total": 2658, "ram_st_total": 232 }, - "libhal.a:spi_flash_hal_iram.c.o": { + "libhal.a:spi_flash_hal_iram.c.obj": { ".iram0.text": 2220, "flash_total": 2220, "ram_st_total": 2220 }, - "libesp_system.a:task_wdt.c.o": { + "libesp_system.a:task_wdt.c.obj": { ".dram0.bss": 12, ".dram0.data": 45, ".flash.rodata": 478, @@ -15715,7 +15715,7 @@ Producing JSON output for esp32h2... "flash_total": 1961, "ram_st_total": 57 }, - "libspi_flash.a:flash_mmap.c.o": { + "libspi_flash.a:flash_mmap.c.obj": { ".dram0.bss": 136, ".flash.rodata": 240, ".flash.text": 182, @@ -15723,7 +15723,7 @@ Producing JSON output for esp32h2... "flash_total": 1952, "ram_st_total": 1666 }, - "libspi_flash.a:esp_flash_api.c.o": { + "libspi_flash.a:esp_flash_api.c.obj": { ".dram0.data": 20, ".flash.rodata": 762, ".flash.text": 80, @@ -15731,7 +15731,7 @@ Producing JSON output for esp32h2... "flash_total": 1830, "ram_st_total": 988 }, - "libheap.a:heap_caps.c.o": { + "libheap.a:heap_caps.c.obj": { ".dram0.bss": 4, ".dram0.data": 4, ".flash.rodata": 355, @@ -15740,25 +15740,25 @@ Producing JSON output for esp32h2... "flash_total": 1767, "ram_st_total": 1130 }, - "libesp_ringbuf.a:ringbuf.c.o": { + "libesp_ringbuf.a:ringbuf.c.obj": { ".flash.rodata": 512, ".iram0.text": 1002, "flash_total": 1514, "ram_st_total": 1002 }, - "libhal.a:spi_flash_hal_gpspi.c.o": { + "libhal.a:spi_flash_hal_gpspi.c.obj": { ".iram0.text": 1484, "flash_total": 1484, "ram_st_total": 1484 }, - "libefuse.a:esp_efuse_utility.c.o": { + "libefuse.a:esp_efuse_utility.c.obj": { ".dram0.bss": 4, ".flash.rodata": 475, ".flash.text": 996, "flash_total": 1471, "ram_st_total": 4 }, - "libnewlib.a:locks.c.o": { + "libnewlib.a:locks.c.obj": { ".dram0.bss": 168, ".flash.rodata": 344, ".flash.text": 152, @@ -15766,14 +15766,14 @@ Producing JSON output for esp32h2... "flash_total": 1420, "ram_st_total": 1092 }, - "libheap.a:heap_caps_init.c.o": { + "libheap.a:heap_caps_init.c.obj": { ".dram0.bss": 4, ".flash.rodata": 338, ".flash.text": 1052, "flash_total": 1390, "ram_st_total": 4 }, - "libesp_system.a:startup.c.o": { + "libesp_system.a:startup.c.obj": { ".dram0.bss": 8, ".dram0.data": 12, ".flash.rodata": 497, @@ -15782,7 +15782,7 @@ Producing JSON output for esp32h2... "flash_total": 1369, "ram_st_total": 46 }, - "libspi_flash.a:partition.c.o": { + "libspi_flash.a:partition.c.obj": { ".dram0.bss": 8, ".flash.rodata": 268, ".flash.text": 1066, @@ -15794,7 +15794,7 @@ Producing JSON output for esp32h2... "flash_total": 1264, "ram_st_total": 0 }, - "libhal.a:wdt_hal_iram.c.o": { + "libhal.a:wdt_hal_iram.c.obj": { ".iram0.text": 1158, "flash_total": 1158, "ram_st_total": 1158 @@ -15810,7 +15810,7 @@ Producing JSON output for esp32h2... "flash_total": 1136, "ram_st_total": 0 }, - "libesp_system.a:panic.c.o": { + "libesp_system.a:panic.c.obj": { ".dram0.bss": 5, ".dram0.data": 12, ".flash.rodata": 131, @@ -15819,25 +15819,25 @@ Producing JSON output for esp32h2... "flash_total": 1107, "ram_st_total": 23 }, - "libspi_flash.a:memspi_host_driver.c.o": { + "libspi_flash.a:memspi_host_driver.c.obj": { ".dram0.data": 397, ".iram0.text": 636, "flash_total": 1033, "ram_st_total": 1033 }, - "libspi_flash.a:spi_flash_chip_winbond.c.o": { + "libspi_flash.a:spi_flash_chip_winbond.c.obj": { ".dram0.data": 203, ".iram0.text": 748, "flash_total": 951, "ram_st_total": 951 }, - "libheap.a:memory_layout_utils.c.o": { + "libheap.a:memory_layout_utils.c.obj": { ".flash.rodata": 283, ".flash.text": 650, "flash_total": 933, "ram_st_total": 0 }, - "libesp_timer.a:esp_timer.c.o": { + "libesp_timer.a:esp_timer.c.obj": { ".dram0.bss": 8, ".flash.rodata": 72, ".flash.text": 514, @@ -15855,7 +15855,7 @@ Producing JSON output for esp32h2... "flash_total": 848, "ram_st_total": 0 }, - "libfreertos.a:port.c.o": { + "libfreertos.a:port.c.obj": { ".dram0.bss": 1556, ".dram0.data": 4, ".flash.rodata": 190, @@ -15864,33 +15864,33 @@ Producing JSON output for esp32h2... "flash_total": 848, "ram_st_total": 2148 }, - "libheap.a:multi_heap.c.o": { + "libheap.a:multi_heap.c.obj": { ".dram0.data": 157, ".iram0.text": 678, "flash_total": 835, "ram_st_total": 835 }, - "libdriver.a:periph_ctrl.c.o": { + "libdriver.a:periph_ctrl.c.obj": { ".dram0.bss": 27, ".flash.rodata": 85, ".flash.text": 738, "flash_total": 823, "ram_st_total": 27 }, - "libhal.a:systimer_hal.c.o": { + "libhal.a:systimer_hal.c.obj": { ".dram0.data": 85, ".iram0.text": 716, "flash_total": 801, "ram_st_total": 801 }, - "libnewlib.a:time.c.o": { + "libnewlib.a:time.c.obj": { ".dram0.bss": 20, ".flash.text": 618, ".iram0.text": 180, "flash_total": 798, "ram_st_total": 200 }, - "liblog.a:log.c.o": { + "liblog.a:log.c.obj": { ".dram0.bss": 264, ".dram0.data": 8, ".flash.rodata": 122, @@ -15899,7 +15899,7 @@ Producing JSON output for esp32h2... "flash_total": 724, "ram_st_total": 304 }, - "libesp_timer.a:esp_timer_impl_systimer.c.o": { + "libesp_timer.a:esp_timer_impl_systimer.c.obj": { ".dram0.bss": 12, ".dram0.data": 16, ".flash.rodata": 125, @@ -15908,14 +15908,14 @@ Producing JSON output for esp32h2... "flash_total": 647, "ram_st_total": 238 }, - "libesp_system.a:cpu_start.c.o": { + "libesp_system.a:cpu_start.c.obj": { ".flash.rodata": 158, ".flash.text": 42, ".iram0.text": 432, "flash_total": 632, "ram_st_total": 432 }, - "libspi_flash.a:esp_flash_spi_init.c.o": { + "libspi_flash.a:esp_flash_spi_init.c.obj": { ".dram0.bss": 4, ".dram0.data": 68, ".flash.rodata": 261, @@ -15923,7 +15923,7 @@ Producing JSON output for esp32h2... "flash_total": 597, "ram_st_total": 72 }, - "libspi_flash.a:spi_flash_os_func_app.c.o": { + "libspi_flash.a:spi_flash_os_func_app.c.obj": { ".dram0.data": 52, ".flash.rodata": 95, ".flash.text": 34, @@ -15931,14 +15931,14 @@ Producing JSON output for esp32h2... "flash_total": 595, "ram_st_total": 466 }, - "libfreertos.a:port_systick.c.o": { + "libfreertos.a:port_systick.c.obj": { ".dram0.bss": 8, ".flash.rodata": 192, ".iram0.text": 368, "flash_total": 560, "ram_st_total": 376 }, - "libriscv.a:vectors.S.o": { + "libriscv.a:vectors.S.obj": { ".iram0.text": 522, "flash_total": 522, "ram_st_total": 522 @@ -15953,7 +15953,7 @@ Producing JSON output for esp32h2... "flash_total": 500, "ram_st_total": 0 }, - "libapp_update.a:esp_app_desc.c.o": { + "libapp_update.a:esp_app_desc.c.obj": { ".dram0.bss": 8, ".dram0.data": 1, ".flash.appdesc": 256, @@ -15968,7 +15968,7 @@ Producing JSON output for esp32h2... "flash_total": 488, "ram_st_total": 0 }, - "libmain.a:hello_world_main.c.o": { + "libmain.a:hello_world_main.c.obj": { ".flash.rodata": 232, ".flash.text": 248, "flash_total": 480, @@ -15984,13 +15984,13 @@ Producing JSON output for esp32h2... "flash_total": 436, "ram_st_total": 0 }, - "libhal.a:spi_flash_hal.c.o": { + "libhal.a:spi_flash_hal.c.obj": { ".flash.rodata": 96, ".flash.text": 332, "flash_total": 428, "ram_st_total": 0 }, - "libfreertos.a:port_common.c.o": { + "libfreertos.a:port_common.c.obj": { ".flash.rodata": 186, ".flash.text": 128, ".iram0.text": 104, @@ -16002,7 +16002,7 @@ Producing JSON output for esp32h2... "flash_total": 416, "ram_st_total": 0 }, - "libesp_system.a:crosscore_int.c.o": { + "libesp_system.a:crosscore_int.c.obj": { ".dram0.bss": 4, ".flash.rodata": 120, ".flash.text": 106, @@ -16021,7 +16021,7 @@ Producing JSON output for esp32h2... "flash_total": 382, "ram_st_total": 4 }, - "libesp_hw_support.a:rtc_clk.c.o": { + "libesp_hw_support.a:rtc_clk.c.obj": { ".dram0.bss": 4, ".dram0.data": 71, ".iram0.text": 308, @@ -16034,7 +16034,7 @@ Producing JSON output for esp32h2... "flash_total": 372, "ram_st_total": 0 }, - "libesp_system.a:panic_handler.c.o": { + "libesp_system.a:panic_handler.c.obj": { ".dram0.bss": 4, ".dram0.data": 8, ".flash.rodata": 8, @@ -16043,7 +16043,7 @@ Producing JSON output for esp32h2... "flash_total": 364, "ram_st_total": 94 }, - "libnewlib.a:esp_time_impl.c.o": { + "libnewlib.a:esp_time_impl.c.obj": { ".dram0.bss": 12, ".flash.text": 360, "flash_total": 360, @@ -16054,19 +16054,19 @@ Producing JSON output for esp32h2... "flash_total": 340, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_flash.c.o": { + "libbootloader_support.a:bootloader_flash.c.obj": { ".iram0.text": 340, "flash_total": 340, "ram_st_total": 340 }, - "libesp_system.a:freertos_hooks.c.o": { + "libesp_system.a:freertos_hooks.c.obj": { ".dram0.bss": 64, ".flash.text": 290, ".iram0.text": 48, "flash_total": 338, "ram_st_total": 112 }, - "libhal.a:uart_hal.c.o": { + "libhal.a:uart_hal.c.obj": { ".flash.text": 334, "flash_total": 334, "ram_st_total": 0 @@ -16076,51 +16076,51 @@ Producing JSON output for esp32h2... "flash_total": 316, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_chip_gd.c.o": { + "libspi_flash.a:spi_flash_chip_gd.c.obj": { ".dram0.data": 123, ".iram0.text": 190, "flash_total": 313, "ram_st_total": 313 }, - "libapp_update.a:esp_ota_ops.c.o": { + "libapp_update.a:esp_ota_ops.c.obj": { ".dram0.bss": 4, ".flash.rodata": 121, ".flash.text": 186, "flash_total": 307, "ram_st_total": 4 }, - "libesp_system.a:int_wdt.c.o": { + "libesp_system.a:int_wdt.c.obj": { ".dram0.bss": 8, ".flash.text": 206, ".iram0.text": 74, "flash_total": 280, "ram_st_total": 82 }, - "libriscv.a:interrupt.c.o": { + "libriscv.a:interrupt.c.obj": { ".dram0.bss": 256, ".flash.rodata": 137, ".iram0.text": 130, "flash_total": 267, "ram_st_total": 386 }, - "libspi_flash.a:spi_flash_chip_mxic.c.o": { + "libspi_flash.a:spi_flash_chip_mxic.c.obj": { ".dram0.data": 190, ".iram0.text": 76, "flash_total": 266, "ram_st_total": 266 }, - "libesp_system.a:esp_err.c.o": { + "libesp_system.a:esp_err.c.obj": { ".dram0.data": 108, ".iram0.text": 154, "flash_total": 262, "ram_st_total": 262 }, - "libesp_system.a:system_internal.c.o": { + "libesp_system.a:system_internal.c.obj": { ".iram0.text": 260, "flash_total": 260, "ram_st_total": 260 }, - "libesp_timer.a:system_time.c.o": { + "libesp_timer.a:system_time.c.obj": { ".dram0.bss": 8, ".flash.rodata": 80, ".flash.text": 142, @@ -16133,36 +16133,36 @@ Producing JSON output for esp32h2... "flash_total": 257, "ram_st_total": 0 }, - "libesp_hw_support.a:cpu_util_esp32h2.c.o": { + "libesp_hw_support.a:cpu_util_esp32h2.c.obj": { ".flash.text": 250, "flash_total": 250, "ram_st_total": 0 }, - "libpthread.a:pthread_local_storage.c.o": { + "libpthread.a:pthread_local_storage.c.obj": { ".dram0.bss": 4, ".flash.text": 242, "flash_total": 242, "ram_st_total": 4 }, - "libspi_flash.a:spi_flash_chip_issi.c.o": { + "libspi_flash.a:spi_flash_chip_issi.c.obj": { ".dram0.data": 125, ".iram0.text": 112, "flash_total": 237, "ram_st_total": 237 }, - "libheap.a:memory_layout.c.o": { + "libheap.a:memory_layout.c.obj": { ".dram0.data": 4, ".flash.rodata": 231, "flash_total": 235, "ram_st_total": 4 }, - "liblog.a:log_freertos.c.o": { + "liblog.a:log_freertos.c.obj": { ".dram0.bss": 8, ".iram0.text": 232, "flash_total": 232, "ram_st_total": 240 }, - "libnewlib.a:newlib_init.c.o": { + "libnewlib.a:newlib_init.c.obj": { ".dram0.bss": 240, ".dram0.data": 156, ".flash.text": 76, @@ -16174,7 +16174,7 @@ Producing JSON output for esp32h2... "flash_total": 224, "ram_st_total": 0 }, - "libesp_hw_support.a:esp_clk.c.o": { + "libesp_hw_support.a:esp_clk.c.obj": { ".dram0.bss": 4, ".flash.text": 176, ".iram0.text": 30, @@ -16182,7 +16182,7 @@ Producing JSON output for esp32h2... "flash_total": 222, "ram_st_total": 50 }, - "libnewlib.a:heap.c.o": { + "libnewlib.a:heap.c.obj": { ".iram0.text": 190, "flash_total": 190, "ram_st_total": 190 @@ -16199,14 +16199,14 @@ Producing JSON output for esp32h2... "flash_total": 187, "ram_st_total": 0 }, - "libspi_flash.a:cache_utils.c.o": { + "libspi_flash.a:cache_utils.c.obj": { ".dram0.bss": 8, ".flash.text": 38, ".iram0.text": 144, "flash_total": 182, "ram_st_total": 152 }, - "libesp_system.a:fpga_overrides.c.o": { + "libesp_system.a:fpga_overrides.c.obj": { ".flash.rodata": 107, ".flash.text": 72, "flash_total": 179, @@ -16217,13 +16217,13 @@ Producing JSON output for esp32h2... "flash_total": 176, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_chip_boya.c.o": { + "libspi_flash.a:spi_flash_chip_boya.c.obj": { ".dram0.data": 125, ".iram0.text": 46, "flash_total": 171, "ram_st_total": 171 }, - "libesp_system.a:esp_system.c.o": { + "libesp_system.a:esp_system.c.obj": { ".dram0.bss": 20, ".flash.text": 80, ".iram0.text": 90, @@ -16235,23 +16235,23 @@ Producing JSON output for esp32h2... "flash_total": 168, "ram_st_total": 0 }, - "libnewlib.a:abort.c.o": { + "libnewlib.a:abort.c.obj": { ".dram0.data": 38, ".iram0.text": 128, "flash_total": 166, "ram_st_total": 166 }, - "libhal.a:brownout_hal.c.o": { + "libhal.a:brownout_hal.c.obj": { ".flash.text": 160, "flash_total": 160, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_api.c.o": { + "libefuse.a:esp_efuse_api.c.obj": { ".flash.text": 158, "flash_total": 158, "ram_st_total": 0 }, - "libfreertos.a:portasm.S.o": { + "libfreertos.a:portasm.S.obj": { ".iram0.text": 154, "flash_total": 154, "ram_st_total": 154 @@ -16261,23 +16261,23 @@ Producing JSON output for esp32h2... "flash_total": 148, "ram_st_total": 0 }, - "libfreertos.a:list.c.o": { + "libfreertos.a:list.c.obj": { ".iram0.text": 134, "flash_total": 134, "ram_st_total": 134 }, - "libhal.a:spi_flash_encrypt_hal_iram.c.o": { + "libhal.a:spi_flash_encrypt_hal_iram.c.obj": { ".iram0.text": 132, "flash_total": 132, "ram_st_total": 132 }, - "libesp_system.a:cache_err_int.c.o": { + "libesp_system.a:cache_err_int.c.obj": { ".flash.text": 124, ".iram0.text": 4, "flash_total": 128, "ram_st_total": 4 }, - "libspi_flash.a:spi_flash_os_func_noos.c.o": { + "libspi_flash.a:spi_flash_os_func_noos.c.obj": { ".dram0.data": 36, ".iram0.text": 86, "flash_total": 122, @@ -16288,7 +16288,7 @@ Producing JSON output for esp32h2... "flash_total": 108, "ram_st_total": 0 }, - "libspi_flash.a:flash_ops.c.o": { + "libspi_flash.a:flash_ops.c.obj": { ".dram0.bss": 4, ".dram0.data": 24, ".flash.text": 38, @@ -16296,44 +16296,44 @@ Producing JSON output for esp32h2... "flash_total": 102, "ram_st_total": 68 }, - "libpthread.a:pthread.c.o": { + "libpthread.a:pthread.c.obj": { ".dram0.bss": 8, ".flash.text": 100, "flash_total": 100, "ram_st_total": 8 }, - "libhal.a:uart_hal_iram.c.o": { + "libhal.a:uart_hal_iram.c.obj": { ".flash.text": 88, "flash_total": 88, "ram_st_total": 0 }, - "libesp_system.a:apb_backup_dma.c.o": { + "libesp_system.a:apb_backup_dma.c.obj": { ".flash.text": 34, ".iram0.text": 52, "flash_total": 86, "ram_st_total": 52 }, - "libhal.a:interrupt_controller_hal.c.o": { + "libhal.a:interrupt_controller_hal.c.obj": { ".flash.text": 80, "flash_total": 80, "ram_st_total": 0 }, - "libnewlib.a:reent_init.c.o": { + "libnewlib.a:reent_init.c.obj": { ".iram0.text": 76, "flash_total": 76, "ram_st_total": 76 }, - "libesp_hw_support.a:regi2c_ctrl.c.o": { + "libesp_hw_support.a:regi2c_ctrl.c.obj": { ".iram0.text": 74, "flash_total": 74, "ram_st_total": 74 }, - "libriscv.a:instruction_decode.c.o": { + "libriscv.a:instruction_decode.c.obj": { ".flash.text": 74, "flash_total": 74, "ram_st_total": 0 }, - "libesp_hw_support.a:chip_info.c.o": { + "libesp_hw_support.a:chip_info.c.obj": { ".flash.text": 70, "flash_total": 70, "ram_st_total": 0 @@ -16348,7 +16348,7 @@ Producing JSON output for esp32h2... "flash_total": 64, "ram_st_total": 0 }, - "libbootloader_support.a:flash_qio_mode.c.o": { + "libbootloader_support.a:flash_qio_mode.c.obj": { ".flash.text": 58, "flash_total": 58, "ram_st_total": 0 @@ -16358,7 +16358,7 @@ Producing JSON output for esp32h2... "flash_total": 56, "ram_st_total": 0 }, - "libesp_system.a:brownout.c.o": { + "libesp_system.a:brownout.c.obj": { ".flash.rodata": 5, ".flash.text": 38, "flash_total": 43, @@ -16369,22 +16369,22 @@ Producing JSON output for esp32h2... "flash_total": 40, "ram_st_total": 0 }, - "libnewlib.a:syscalls.c.o": { + "libnewlib.a:syscalls.c.obj": { ".flash.text": 36, "flash_total": 36, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_fields.c.o": { + "libefuse.a:esp_efuse_fields.c.obj": { ".flash.text": 32, "flash_total": 32, "ram_st_total": 0 }, - "libhal.a:cpu_hal.c.o": { + "libhal.a:cpu_hal.c.obj": { ".iram0.text": 32, "flash_total": 32, "ram_st_total": 32 }, - "libspi_flash.a:spi_flash_chip_drivers.c.o": { + "libspi_flash.a:spi_flash_chip_drivers.c.obj": { ".dram0.data": 32, "flash_total": 32, "ram_st_total": 32 @@ -16394,57 +16394,57 @@ Producing JSON output for esp32h2... "flash_total": 28, "ram_st_total": 0 }, - "libesp_hw_support.a:cpu_util.c.o": { + "libesp_hw_support.a:cpu_util.c.obj": { ".iram0.text": 28, "flash_total": 28, "ram_st_total": 28 }, - "libbootloader_support.a:bootloader_flash_config_esp32h2.c.o": { + "libbootloader_support.a:bootloader_flash_config_esp32h2.c.obj": { ".flash.text": 26, "flash_total": 26, "ram_st_total": 0 }, - "libesp_hw_support.a:rtc_time.c.o": { + "libesp_hw_support.a:rtc_time.c.obj": { ".iram0.text": 20, "flash_total": 20, "ram_st_total": 20 }, - "libbootloader_support.a:bootloader_mem.c.o": { + "libbootloader_support.a:bootloader_mem.c.obj": { ".flash.text": 14, "flash_total": 14, "ram_st_total": 0 }, - "libefuse.a:esp_efuse_table.c.o": { + "libefuse.a:esp_efuse_table.c.obj": { ".dram0.data": 12, "flash_total": 12, "ram_st_total": 12 }, - "libesp_pm.a:pm_impl.c.o": { + "libesp_pm.a:pm_impl.c.obj": { ".flash.text": 6, "flash_total": 6, "ram_st_total": 0 }, - "libnewlib.a:pthread.c.o": { + "libnewlib.a:pthread.c.obj": { ".flash.text": 6, "flash_total": 6, "ram_st_total": 0 }, - "libdriver.a:spi_bus_lock.c.o": { + "libdriver.a:spi_bus_lock.c.obj": { ".dram0.data": 4, "flash_total": 4, "ram_st_total": 4 }, - "libfreertos.a:FreeRTOS-openocd.c.o": { + "libfreertos.a:FreeRTOS-openocd.c.obj": { ".dram0.data": 4, "flash_total": 4, "ram_st_total": 4 }, - "libcxx.a:cxx_guards.cpp.o": { + "libcxx.a:cxx_guards.cpp.obj": { ".flash.text": 2, "flash_total": 2, "ram_st_total": 0 }, - "libesp_system.a:ubsan.c.o": { + "libesp_system.a:ubsan.c.obj": { ".iram0.text": 2, "flash_total": 2, "ram_st_total": 2 @@ -16802,7 +16802,7 @@ Producing JSON output for esp32s3... "flash_total": 10527, "ram_st_total": 0 }, - "libfreertos.a:tasks.c.o": { + "libfreertos.a:tasks.c.obj": { ".dram0.bss": 704, ".dram0.data": 8, ".flash.rodata": 1158, @@ -16810,25 +16810,25 @@ Producing JSON output for esp32s3... "flash_total": 7958, "ram_st_total": 7504 }, - "libesp_common.a:esp_err_to_name.c.o": { + "libesp_common.a:esp_err_to_name.c.obj": { ".flash.rodata": 7287, ".flash.text": 53, "flash_total": 7340, "ram_st_total": 0 }, - "libheap.a:heap_tlsf.c.o": { + "libheap.a:heap_tlsf.c.obj": { ".dram0.data": 1796, ".iram0.text": 3591, "flash_total": 5387, "ram_st_total": 5387 }, - "libfreertos.a:queue.c.o": { + "libfreertos.a:queue.c.obj": { ".flash.rodata": 1515, ".iram0.text": 3038, "flash_total": 4553, "ram_st_total": 3038 }, - "libvfs.a:vfs_uart.c.o": { + "libvfs.a:vfs_uart.c.obj": { ".dram0.bss": 8, ".dram0.data": 116, ".flash.rodata": 282, @@ -16842,19 +16842,19 @@ Producing JSON output for esp32s3... "flash_total": 3757, "ram_st_total": 0 }, - "libfreertos.a:portasm.S.o": { + "libfreertos.a:portasm.S.obj": { ".dram0.data": 3084, ".iram0.text": 416, "flash_total": 3500, "ram_st_total": 3500 }, - "libspi_flash.a:spi_flash_chip_generic.c.o": { + "libspi_flash.a:spi_flash_chip_generic.c.obj": { ".dram0.data": 554, ".iram0.text": 2529, "flash_total": 3083, "ram_st_total": 3083 }, - "libesp_hw_support.a:intr_alloc.c.o": { + "libesp_hw_support.a:intr_alloc.c.obj": { ".dram0.bss": 22, ".dram0.data": 8, ".flash.rodata": 198, @@ -16869,7 +16869,7 @@ Producing JSON output for esp32s3... "flash_total": 2749, "ram_st_total": 0 }, - "libdriver.a:uart.c.o": { + "libdriver.a:uart.c.obj": { ".dram0.bss": 12, ".dram0.data": 56, ".flash.rodata": 511, @@ -16877,18 +16877,18 @@ Producing JSON output for esp32s3... "flash_total": 2658, "ram_st_total": 68 }, - "libesp_system.a:panic_arch.c.o": { + "libesp_system.a:panic_arch.c.obj": { ".flash.rodata": 1538, ".flash.text": 715, "flash_total": 2253, "ram_st_total": 0 }, - "libhal.a:spi_flash_hal_iram.c.o": { + "libhal.a:spi_flash_hal_iram.c.obj": { ".iram0.text": 2250, "flash_total": 2250, "ram_st_total": 2250 }, - "libvfs.a:vfs.c.o": { + "libvfs.a:vfs.c.obj": { ".dram0.bss": 40, ".dram0.data": 192, ".flash.rodata": 111, @@ -16896,14 +16896,14 @@ Producing JSON output for esp32s3... "flash_total": 2238, "ram_st_total": 232 }, - "libesp_hw_support.a:rtc_clk.c.o": { + "libesp_hw_support.a:rtc_clk.c.obj": { ".dram0.bss": 8, ".dram0.data": 171, ".iram0.text": 2059, "flash_total": 2230, "ram_st_total": 2238 }, - "libfreertos.a:xtensa_vectors.S.o": { + "libfreertos.a:xtensa_vectors.S.obj": { ".dram0.data": 32, ".flash.rodata": 48, ".iram0.text": 1464, @@ -16911,7 +16911,7 @@ Producing JSON output for esp32s3... "flash_total": 1969, "ram_st_total": 1921 }, - "libesp_system.a:task_wdt.c.o": { + "libesp_system.a:task_wdt.c.obj": { ".dram0.bss": 12, ".dram0.data": 53, ".flash.rodata": 591, @@ -16919,18 +16919,18 @@ Producing JSON output for esp32s3... "flash_total": 1963, "ram_st_total": 65 }, - "libhal.a:spi_flash_hal_gpspi.c.o": { + "libhal.a:spi_flash_hal_gpspi.c.obj": { ".iram0.text": 1842, "flash_total": 1842, "ram_st_total": 1842 }, - "libesp_hw_support.a:rtc_init.c.o": { + "libesp_hw_support.a:rtc_init.c.obj": { ".flash.rodata": 70, ".flash.text": 1703, "flash_total": 1773, "ram_st_total": 0 }, - "libspi_flash.a:esp_flash_api.c.o": { + "libspi_flash.a:esp_flash_api.c.obj": { ".dram0.data": 20, ".flash.rodata": 762, ".flash.text": 89, @@ -16938,7 +16938,7 @@ Producing JSON output for esp32s3... "flash_total": 1733, "ram_st_total": 882 }, - "libspi_flash.a:flash_mmap.c.o": { + "libspi_flash.a:flash_mmap.c.obj": { ".dram0.bss": 520, ".flash.rodata": 240, ".flash.text": 166, @@ -16946,7 +16946,7 @@ Producing JSON output for esp32s3... "flash_total": 1704, "ram_st_total": 1818 }, - "libfreertos.a:port.c.o": { + "libfreertos.a:port.c.obj": { ".dram0.bss": 24, ".flash.rodata": 541, ".flash.text": 147, @@ -16954,7 +16954,7 @@ Producing JSON output for esp32s3... "flash_total": 1633, "ram_st_total": 969 }, - "libheap.a:heap_caps.c.o": { + "libheap.a:heap_caps.c.obj": { ".dram0.bss": 4, ".dram0.data": 4, ".flash.rodata": 355, @@ -16963,12 +16963,12 @@ Producing JSON output for esp32s3... "flash_total": 1623, "ram_st_total": 1011 }, - "libhal.a:wdt_hal_iram.c.o": { + "libhal.a:wdt_hal_iram.c.obj": { ".iram0.text": 1493, "flash_total": 1493, "ram_st_total": 1493 }, - "libdriver.a:periph_ctrl.c.o": { + "libdriver.a:periph_ctrl.c.obj": { ".dram0.bss": 37, ".dram0.data": 8, ".flash.rodata": 85, @@ -16976,7 +16976,7 @@ Producing JSON output for esp32s3... "flash_total": 1470, "ram_st_total": 45 }, - "libesp_system.a:cpu_start.c.o": { + "libesp_system.a:cpu_start.c.obj": { ".dram0.bss": 5, ".flash.rodata": 334, ".flash.text": 371, @@ -16984,13 +16984,13 @@ Producing JSON output for esp32s3... "flash_total": 1437, "ram_st_total": 737 }, - "libesp_ringbuf.a:ringbuf.c.o": { + "libesp_ringbuf.a:ringbuf.c.obj": { ".flash.rodata": 512, ".iram0.text": 873, "flash_total": 1385, "ram_st_total": 873 }, - "libspi_flash.a:cache_utils.c.o": { + "libspi_flash.a:cache_utils.c.obj": { ".dram0.bss": 14, ".dram0.data": 4, ".flash.rodata": 570, @@ -16999,14 +16999,14 @@ Producing JSON output for esp32s3... "flash_total": 1351, "ram_st_total": 703 }, - "libheap.a:heap_caps_init.c.o": { + "libheap.a:heap_caps_init.c.obj": { ".dram0.bss": 4, ".flash.rodata": 430, ".flash.text": 905, "flash_total": 1335, "ram_st_total": 4 }, - "libesp_system.a:startup.c.o": { + "libesp_system.a:startup.c.obj": { ".dram0.bss": 11, ".dram0.data": 8, ".flash.rodata": 505, @@ -17015,7 +17015,7 @@ Producing JSON output for esp32s3... "flash_total": 1330, "ram_st_total": 88 }, - "libnewlib.a:locks.c.o": { + "libnewlib.a:locks.c.obj": { ".dram0.bss": 168, ".dram0.data": 8, ".flash.rodata": 344, @@ -17024,26 +17024,26 @@ Producing JSON output for esp32s3... "flash_total": 1256, "ram_st_total": 958 }, - "libspi_flash.a:partition.c.o": { + "libspi_flash.a:partition.c.obj": { ".dram0.bss": 8, ".flash.rodata": 268, ".flash.text": 938, "flash_total": 1206, "ram_st_total": 8 }, - "libhal.a:systimer_hal.c.o": { + "libhal.a:systimer_hal.c.obj": { ".dram0.data": 85, ".iram0.text": 1052, "flash_total": 1137, "ram_st_total": 1137 }, - "libxtensa.a:xtensa_intr_asm.S.o": { + "libxtensa.a:xtensa_intr_asm.S.obj": { ".dram0.data": 1024, ".iram0.text": 51, "flash_total": 1075, "ram_st_total": 1075 }, - "libesp_system.a:panic.c.o": { + "libesp_system.a:panic.c.obj": { ".dram0.bss": 5, ".dram0.data": 12, ".flash.rodata": 147, @@ -17052,19 +17052,19 @@ Producing JSON output for esp32s3... "flash_total": 1046, "ram_st_total": 29 }, - "libspi_flash.a:memspi_host_driver.c.o": { + "libspi_flash.a:memspi_host_driver.c.obj": { ".dram0.data": 397, ".iram0.text": 637, "flash_total": 1034, "ram_st_total": 1034 }, - "libesp_system.a:clk.c.o": { + "libesp_system.a:clk.c.obj": { ".flash.rodata": 212, ".flash.text": 802, "flash_total": 1014, "ram_st_total": 0 }, - "libesp_timer.a:esp_timer.c.o": { + "libesp_timer.a:esp_timer.c.obj": { ".dram0.bss": 8, ".dram0.data": 8, ".flash.rodata": 72, @@ -17073,13 +17073,13 @@ Producing JSON output for esp32s3... "flash_total": 867, "ram_st_total": 298 }, - "libheap.a:memory_layout_utils.c.o": { + "libheap.a:memory_layout_utils.c.obj": { ".flash.rodata": 283, ".flash.text": 575, "flash_total": 858, "ram_st_total": 0 }, - "libesp_system.a:debug_helpers.c.o": { + "libesp_system.a:debug_helpers.c.obj": { ".flash.rodata": 73, ".iram0.text": 747, "flash_total": 820, @@ -17090,19 +17090,19 @@ Producing JSON output for esp32s3... "flash_total": 818, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_chip_winbond.c.o": { + "libspi_flash.a:spi_flash_chip_winbond.c.obj": { ".dram0.data": 136, ".iram0.text": 659, "flash_total": 795, "ram_st_total": 795 }, - "libheap.a:multi_heap.c.o": { + "libheap.a:multi_heap.c.obj": { ".dram0.data": 157, ".iram0.text": 601, "flash_total": 758, "ram_st_total": 758 }, - "libesp_ipc.a:esp_ipc.c.o": { + "libesp_ipc.a:esp_ipc.c.obj": { ".dram0.bss": 56, ".flash.rodata": 97, ".flash.text": 456, @@ -17115,7 +17115,7 @@ Producing JSON output for esp32s3... "flash_total": 721, "ram_st_total": 0 }, - "libesp_system.a:panic_handler.c.o": { + "libesp_system.a:panic_handler.c.obj": { ".dram0.bss": 8, ".dram0.data": 8, ".flash.rodata": 8, @@ -17130,12 +17130,12 @@ Producing JSON output for esp32s3... "flash_total": 708, "ram_st_total": 0 }, - "libesp_hw_support.a:rtc_time.c.o": { + "libesp_hw_support.a:rtc_time.c.obj": { ".iram0.text": 675, "flash_total": 675, "ram_st_total": 675 }, - "liblog.a:log.c.o": { + "liblog.a:log.c.obj": { ".dram0.bss": 264, ".dram0.data": 8, ".flash.rodata": 122, @@ -17144,14 +17144,14 @@ Producing JSON output for esp32s3... "flash_total": 671, "ram_st_total": 314 }, - "libnewlib.a:time.c.o": { + "libnewlib.a:time.c.obj": { ".dram0.bss": 20, ".flash.text": 509, ".iram0.text": 127, "flash_total": 636, "ram_st_total": 147 }, - "libesp_timer.a:esp_timer_impl_systimer.c.o": { + "libesp_timer.a:esp_timer_impl_systimer.c.obj": { ".dram0.bss": 12, ".dram0.data": 24, ".flash.rodata": 125, @@ -17160,14 +17160,14 @@ Producing JSON output for esp32s3... "flash_total": 633, "ram_st_total": 234 }, - "libfreertos.a:port_systick.c.o": { + "libfreertos.a:port_systick.c.obj": { ".dram0.bss": 12, ".flash.rodata": 192, ".iram0.text": 394, "flash_total": 586, "ram_st_total": 406 }, - "libspi_flash.a:esp_flash_spi_init.c.o": { + "libspi_flash.a:esp_flash_spi_init.c.obj": { ".dram0.bss": 4, ".dram0.data": 68, ".flash.rodata": 261, @@ -17180,13 +17180,13 @@ Producing JSON output for esp32s3... "flash_total": 552, "ram_st_total": 0 }, - "libhal.a:interrupt_descriptor_table.c.o": { + "libhal.a:interrupt_descriptor_table.c.obj": { ".flash.rodata": 512, ".flash.text": 12, "flash_total": 524, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_os_func_app.c.o": { + "libspi_flash.a:spi_flash_os_func_app.c.obj": { ".dram0.data": 52, ".flash.rodata": 95, ".flash.text": 44, @@ -17194,7 +17194,7 @@ Producing JSON output for esp32s3... "flash_total": 515, "ram_st_total": 376 }, - "libesp_system.a:crosscore_int.c.o": { + "libesp_system.a:crosscore_int.c.obj": { ".dram0.bss": 8, ".dram0.data": 8, ".flash.rodata": 120, @@ -17203,13 +17203,13 @@ Producing JSON output for esp32s3... "flash_total": 499, "ram_st_total": 245 }, - "libesp_system.a:system_internal.c.o": { + "libesp_system.a:system_internal.c.obj": { ".flash.rodata": 16, ".iram0.text": 475, "flash_total": 491, "ram_st_total": 475 }, - "libapp_update.a:esp_app_desc.c.o": { + "libapp_update.a:esp_app_desc.c.obj": { ".dram0.bss": 8, ".dram0.data": 1, ".flash.appdesc": 256, @@ -17219,18 +17219,18 @@ Producing JSON output for esp32s3... "flash_total": 486, "ram_st_total": 203 }, - "libesp_hw_support.a:rtc_sleep.c.o": { + "libesp_hw_support.a:rtc_sleep.c.obj": { ".iram0.text": 476, "flash_total": 476, "ram_st_total": 476 }, - "libmain.a:hello_world_main.c.o": { + "libmain.a:hello_world_main.c.obj": { ".flash.rodata": 232, ".flash.text": 228, "flash_total": 460, "ram_st_total": 0 }, - "libfreertos.a:port_common.c.o": { + "libfreertos.a:port_common.c.obj": { ".dram0.bss": 8, ".flash.rodata": 214, ".flash.text": 146, @@ -17238,23 +17238,23 @@ Producing JSON output for esp32s3... "flash_total": 458, "ram_st_total": 106 }, - "libhal.a:spi_flash_hal.c.o": { + "libhal.a:spi_flash_hal.c.obj": { ".flash.rodata": 96, ".flash.text": 351, "flash_total": 447, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_flash.c.o": { + "libbootloader_support.a:bootloader_flash.c.obj": { ".iram0.text": 444, "flash_total": 444, "ram_st_total": 444 }, - "libhal.a:uart_hal.c.o": { + "libhal.a:uart_hal.c.obj": { ".flash.text": 432, "flash_total": 432, "ram_st_total": 0 }, - "libfreertos.a:xtensa_context.S.o": { + "libfreertos.a:xtensa_context.S.obj": { ".iram0.text": 390, "flash_total": 390, "ram_st_total": 390 @@ -17265,7 +17265,7 @@ Producing JSON output for esp32s3... "flash_total": 378, "ram_st_total": 4 }, - "libesp_ipc.a:esp_ipc_isr.c.o": { + "libesp_ipc.a:esp_ipc_isr.c.obj": { ".dram0.bss": 16, ".dram0.data": 4, ".flash.rodata": 144, @@ -17274,13 +17274,13 @@ Producing JSON output for esp32s3... "flash_total": 354, "ram_st_total": 39 }, - "libspi_flash.a:spi_flash_chip_gd.c.o": { + "libspi_flash.a:spi_flash_chip_gd.c.obj": { ".dram0.data": 123, ".iram0.text": 202, "flash_total": 325, "ram_st_total": 325 }, - "libheap.a:memory_layout.c.o": { + "libheap.a:memory_layout.c.obj": { ".flash.rodata": 315, "flash_total": 315, "ram_st_total": 0 @@ -17295,7 +17295,7 @@ Producing JSON output for esp32s3... "flash_total": 311, "ram_st_total": 311 }, - "libesp_system.a:freertos_hooks.c.o": { + "libesp_system.a:freertos_hooks.c.obj": { ".dram0.bss": 128, ".dram0.data": 8, ".flash.text": 247, @@ -17303,7 +17303,7 @@ Producing JSON output for esp32s3... "flash_total": 302, "ram_st_total": 183 }, - "libnewlib.a:esp_time_impl.c.o": { + "libnewlib.a:esp_time_impl.c.obj": { ".dram0.bss": 12, ".flash.text": 281, "flash_total": 281, @@ -17319,7 +17319,7 @@ Producing JSON output for esp32s3... "flash_total": 270, "ram_st_total": 0 }, - "libapp_update.a:esp_ota_ops.c.o": { + "libapp_update.a:esp_ota_ops.c.obj": { ".dram0.bss": 4, ".flash.rodata": 121, ".flash.text": 148, @@ -17331,13 +17331,13 @@ Producing JSON output for esp32s3... "flash_total": 263, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_chip_mxic.c.o": { + "libspi_flash.a:spi_flash_chip_mxic.c.obj": { ".dram0.data": 190, ".iram0.text": 70, "flash_total": 260, "ram_st_total": 260 }, - "libhal.a:soc_hal.c.o": { + "libhal.a:soc_hal.c.obj": { ".dram0.data": 24, ".iram0.text": 234, "flash_total": 258, @@ -17353,25 +17353,25 @@ Producing JSON output for esp32s3... "flash_total": 252, "ram_st_total": 0 }, - "libesp_system.a:esp_err.c.o": { + "libesp_system.a:esp_err.c.obj": { ".dram0.data": 108, ".iram0.text": 140, "flash_total": 248, "ram_st_total": 248 }, - "libhal.a:brownout_hal.c.o": { + "libhal.a:brownout_hal.c.obj": { ".flash.text": 244, "flash_total": 244, "ram_st_total": 0 }, - "libesp_system.a:int_wdt.c.o": { + "libesp_system.a:int_wdt.c.obj": { ".dram0.bss": 9, ".flash.text": 152, ".iram0.text": 90, "flash_total": 242, "ram_st_total": 99 }, - "libesp_timer.a:system_time.c.o": { + "libesp_timer.a:system_time.c.obj": { ".dram0.bss": 8, ".flash.rodata": 80, ".flash.text": 126, @@ -17379,7 +17379,7 @@ Producing JSON output for esp32s3... "flash_total": 241, "ram_st_total": 43 }, - "libesp_hw_support.a:esp_clk.c.o": { + "libesp_hw_support.a:esp_clk.c.obj": { ".dram0.bss": 4, ".flash.text": 194, ".iram0.text": 25, @@ -17387,13 +17387,13 @@ Producing JSON output for esp32s3... "flash_total": 235, "ram_st_total": 45 }, - "libspi_flash.a:spi_flash_chip_issi.c.o": { + "libspi_flash.a:spi_flash_chip_issi.c.obj": { ".dram0.data": 125, ".iram0.text": 108, "flash_total": 233, "ram_st_total": 233 }, - "libnewlib.a:newlib_init.c.o": { + "libnewlib.a:newlib_init.c.obj": { ".dram0.bss": 240, ".dram0.data": 156, ".flash.text": 73, @@ -17405,7 +17405,7 @@ Producing JSON output for esp32s3... "flash_total": 223, "ram_st_total": 0 }, - "libpthread.a:pthread_local_storage.c.o": { + "libpthread.a:pthread_local_storage.c.obj": { ".dram0.bss": 4, ".dram0.data": 8, ".flash.text": 213, @@ -17422,18 +17422,18 @@ Producing JSON output for esp32s3... "flash_total": 216, "ram_st_total": 0 }, - "libhal.a:spi_flash_encrypt_hal_iram.c.o": { + "libhal.a:spi_flash_encrypt_hal_iram.c.obj": { ".iram0.text": 213, "flash_total": 213, "ram_st_total": 213 }, - "liblog.a:log_freertos.c.o": { + "liblog.a:log_freertos.c.obj": { ".dram0.bss": 8, ".iram0.text": 205, "flash_total": 205, "ram_st_total": 213 }, - "libnewlib.a:abort.c.o": { + "libnewlib.a:abort.c.obj": { ".dram0.data": 38, ".iram0.text": 157, "flash_total": 195, @@ -17445,7 +17445,7 @@ Producing JSON output for esp32s3... "flash_total": 190, "ram_st_total": 0 }, - "libxtensa.a:xtensa_intr.c.o": { + "libxtensa.a:xtensa_intr.c.obj": { ".flash.rodata": 35, ".flash.text": 126, ".iram0.text": 26, @@ -17457,40 +17457,40 @@ Producing JSON output for esp32s3... "flash_total": 182, "ram_st_total": 0 }, - "libesp_hw_support.a:regi2c_ctrl.c.o": { + "libesp_hw_support.a:regi2c_ctrl.c.obj": { ".dram0.data": 8, ".iram0.text": 171, "flash_total": 179, "ram_st_total": 179 }, - "libspi_flash.a:spi_flash_chip_boya.c.o": { + "libspi_flash.a:spi_flash_chip_boya.c.obj": { ".dram0.data": 125, ".iram0.text": 52, "flash_total": 177, "ram_st_total": 177 }, - "libfreertos.a:list.c.o": { + "libfreertos.a:list.c.obj": { ".iram0.text": 164, "flash_total": 164, "ram_st_total": 164 }, - "libesp_hw_support.a:cpu_util.c.o": { + "libesp_hw_support.a:cpu_util.c.obj": { ".flash.rodata": 20, ".iram0.text": 137, "flash_total": 157, "ram_st_total": 137 }, - "libnewlib.a:heap.c.o": { + "libnewlib.a:heap.c.obj": { ".iram0.text": 151, "flash_total": 151, "ram_st_total": 151 }, - "libesp_system.a:highint_hdl.S.o": { + "libesp_system.a:highint_hdl.S.obj": { ".iram0.text": 147, "flash_total": 147, "ram_st_total": 147 }, - "libesp_ipc.a:esp_ipc_isr_handler.S.o": { + "libesp_ipc.a:esp_ipc_isr_handler.S.obj": { ".dram0.data": 16, ".iram0.text": 125, "flash_total": 141, @@ -17507,7 +17507,7 @@ Producing JSON output for esp32s3... "flash_total": 128, "ram_st_total": 0 }, - "libesp_system.a:esp_system.c.o": { + "libesp_system.a:esp_system.c.obj": { ".dram0.bss": 20, ".flash.text": 70, ".iram0.text": 56, @@ -17524,13 +17524,13 @@ Producing JSON output for esp32s3... "flash_total": 112, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_os_func_noos.c.o": { + "libspi_flash.a:spi_flash_os_func_noos.c.obj": { ".dram0.data": 36, ".iram0.text": 72, "flash_total": 108, "ram_st_total": 108 }, - "libhal.a:uart_hal_iram.c.o": { + "libhal.a:uart_hal_iram.c.obj": { ".flash.text": 105, "flash_total": 105, "ram_st_total": 0 @@ -17540,7 +17540,7 @@ Producing JSON output for esp32s3... "flash_total": 100, "ram_st_total": 0 }, - "libspi_flash.a:flash_ops.c.o": { + "libspi_flash.a:flash_ops.c.obj": { ".dram0.bss": 4, ".dram0.data": 24, ".flash.text": 33, @@ -17548,7 +17548,7 @@ Producing JSON output for esp32s3... "flash_total": 98, "ram_st_total": 69 }, - "libpthread.a:pthread.c.o": { + "libpthread.a:pthread.c.obj": { ".dram0.bss": 8, ".flash.text": 97, "flash_total": 97, @@ -17559,7 +17559,7 @@ Producing JSON output for esp32s3... "flash_total": 94, "ram_st_total": 0 }, - "libesp_system.a:cache_err_int.c.o": { + "libesp_system.a:cache_err_int.c.obj": { ".flash.text": 78, ".iram0.text": 7, "flash_total": 85, @@ -17570,12 +17570,12 @@ Producing JSON output for esp32s3... "flash_total": 84, "ram_st_total": 0 }, - "libhal.a:mpu_hal.c.o": { + "libhal.a:mpu_hal.c.obj": { ".flash.text": 72, "flash_total": 72, "ram_st_total": 0 }, - "libesp_system.a:panic_handler_asm.S.o": { + "libesp_system.a:panic_handler_asm.S.obj": { ".iram0.text": 66, "flash_total": 66, "ram_st_total": 66 @@ -17590,17 +17590,17 @@ Producing JSON output for esp32s3... "flash_total": 64, "ram_st_total": 0 }, - "libnewlib.a:reent_init.c.o": { + "libnewlib.a:reent_init.c.obj": { ".iram0.text": 63, "flash_total": 63, "ram_st_total": 63 }, - "libhal.a:interrupt_controller_hal.c.o": { + "libhal.a:interrupt_controller_hal.c.obj": { ".flash.text": 59, "flash_total": 59, "ram_st_total": 0 }, - "libbootloader_support.a:flash_qio_mode.c.o": { + "libbootloader_support.a:flash_qio_mode.c.obj": { ".flash.text": 58, "flash_total": 58, "ram_st_total": 0 @@ -17625,12 +17625,12 @@ Producing JSON output for esp32s3... "flash_total": 47, "ram_st_total": 0 }, - "libfreertos.a:xtensa_vector_defaults.S.o": { + "libfreertos.a:xtensa_vector_defaults.S.obj": { ".iram0.text": 46, "flash_total": 46, "ram_st_total": 46 }, - "libhal.a:cpu_hal.c.o": { + "libhal.a:cpu_hal.c.obj": { ".iram0.text": 42, "flash_total": 42, "ram_st_total": 42 @@ -17655,13 +17655,13 @@ Producing JSON output for esp32s3... "flash_total": 40, "ram_st_total": 0 }, - "libesp_system.a:brownout.c.o": { + "libesp_system.a:brownout.c.obj": { ".flash.rodata": 5, ".flash.text": 30, "flash_total": 35, "ram_st_total": 0 }, - "libspi_flash.a:spi_flash_chip_drivers.c.o": { + "libspi_flash.a:spi_flash_chip_drivers.c.obj": { ".dram0.data": 32, "flash_total": 32, "ram_st_total": 32 @@ -17671,12 +17671,12 @@ Producing JSON output for esp32s3... "flash_total": 32, "ram_st_total": 0 }, - "libnewlib.a:syscalls.c.o": { + "libnewlib.a:syscalls.c.obj": { ".flash.text": 31, "flash_total": 31, "ram_st_total": 0 }, - "libesp_hw_support.a:chip_info.c.o": { + "libesp_hw_support.a:chip_info.c.obj": { ".flash.text": 29, "flash_total": 29, "ram_st_total": 0 @@ -17686,22 +17686,22 @@ Producing JSON output for esp32s3... "flash_total": 28, "ram_st_total": 0 }, - "libesp_system.a:debug_helpers_asm.S.o": { + "libesp_system.a:debug_helpers_asm.S.obj": { ".iram0.text": 26, "flash_total": 26, "ram_st_total": 26 }, - "libesp_rom.a:esp_rom_uart.c.o": { + "libesp_rom.a:esp_rom_uart.c.obj": { ".iram0.text": 24, "flash_total": 24, "ram_st_total": 24 }, - "libbootloader_support.a:bootloader_flash_config_esp32s3.c.o": { + "libbootloader_support.a:bootloader_flash_config_esp32s3.c.obj": { ".flash.text": 22, "flash_total": 22, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_mem.c.o": { + "libbootloader_support.a:bootloader_mem.c.obj": { ".flash.text": 15, "flash_total": 15, "ram_st_total": 0 @@ -17711,7 +17711,7 @@ Producing JSON output for esp32s3... "flash_total": 13, "ram_st_total": 0 }, - "libnewlib.a:pthread.c.o": { + "libnewlib.a:pthread.c.obj": { ".flash.text": 12, "flash_total": 12, "ram_st_total": 0 @@ -17721,7 +17721,7 @@ Producing JSON output for esp32s3... "flash_total": 8, "ram_st_total": 0 }, - "libesp_pm.a:pm_impl.c.o": { + "libesp_pm.a:pm_impl.c.obj": { ".flash.text": 8, "flash_total": 8, "ram_st_total": 0 @@ -17732,12 +17732,12 @@ Producing JSON output for esp32s3... "flash_total": 6, "ram_st_total": 3 }, - "libcxx.a:cxx_guards.cpp.o": { + "libcxx.a:cxx_guards.cpp.obj": { ".flash.text": 5, "flash_total": 5, "ram_st_total": 0 }, - "libesp_system.a:ubsan.c.o": { + "libesp_system.a:ubsan.c.obj": { ".iram0.text": 5, "flash_total": 5, "ram_st_total": 5 @@ -17747,12 +17747,12 @@ Producing JSON output for esp32s3... "flash_total": 4, "ram_st_total": 0 }, - "libdriver.a:spi_bus_lock.c.o": { + "libdriver.a:spi_bus_lock.c.obj": { ".flash.rodata": 4, "flash_total": 4, "ram_st_total": 0 }, - "libfreertos.a:FreeRTOS-openocd.c.o": { + "libfreertos.a:FreeRTOS-openocd.c.obj": { ".dram0.data": 4, "flash_total": 4, "ram_st_total": 4 @@ -17765,127 +17765,127 @@ Producing JSON output for esp32s3... "flash_total": 0, "ram_st_total": 0 }, - "(exe):project_elf_src_esp32s3.c.o": { + "(exe):project_elf_src_esp32s3.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_common.c.o": { + "libbootloader_support.a:bootloader_common.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_common_loader.c.o": { + "libbootloader_support.a:bootloader_common_loader.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_efuse_esp32s3.c.o": { + "libbootloader_support.a:bootloader_efuse_esp32s3.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_random_esp32s3.c.o": { + "libbootloader_support.a:bootloader_random_esp32s3.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_sha.c.o": { + "libbootloader_support.a:bootloader_sha.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:bootloader_utility.c.o": { + "libbootloader_support.a:bootloader_utility.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:esp_image_format.c.o": { + "libbootloader_support.a:esp_image_format.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libbootloader_support.a:flash_partitions.c.o": { + "libbootloader_support.a:flash_partitions.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libdriver.a:gdma.c.o": { + "libdriver.a:gdma.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libdriver.a:gpio.c.o": { + "libdriver.a:gpio.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libdriver.a:rtc_io.c.o": { + "libdriver.a:rtc_io.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libdriver.a:rtc_module.c.o": { + "libdriver.a:rtc_module.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libdriver.a:spi_common.c.o": { + "libdriver.a:spi_common.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp_hw_support.a:dport_access.c.o": { + "libesp_hw_support.a:dport_access.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp_hw_support.a:esp_crypto_lock.c.o": { + "libesp_hw_support.a:esp_crypto_lock.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp_ipc.a:esp_ipc_isr_routines.S.o": { + "libesp_ipc.a:esp_ipc_isr_routines.S.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libesp_pm.a:pm_locks.c.o": { + "libesp_pm.a:pm_locks.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libhal.a:gdma_hal.c.o": { + "libhal.a:gdma_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libhal.a:gpio_hal.c.o": { + "libhal.a:gpio_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libhal.a:rtc_io_hal.c.o": { + "libhal.a:rtc_io_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libhal.a:sha_hal.c.o": { + "libhal.a:sha_hal.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:esp_crypto_shared_gdma.c.o": { + "libmbedcrypto.a:esp_crypto_shared_gdma.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:esp_sha256.c.o": { + "libmbedcrypto.a:esp_sha256.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:esp_sha_gdma_impl.c.o": { + "libmbedcrypto.a:esp_sha_gdma_impl.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libmbedcrypto.a:sha.c.o": { + "libmbedcrypto.a:sha.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:gdma_periph.c.o": { + "libsoc.a:gdma_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:gpio_periph.c.o": { + "libsoc.a:gpio_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:rtc_io_periph.c.o": { + "libsoc.a:rtc_io_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:spi_periph.c.o": { + "libsoc.a:spi_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 }, - "libsoc.a:uart_periph.c.o": { + "libsoc.a:uart_periph.c.obj": { "flash_total": 0, "ram_st_total": 0 },