expected_output 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018
  1. ***
  2. Running idf_size.py...
  3. Total sizes:
  4. DRAM .data size: 9324 bytes
  5. DRAM .bss size: 8296 bytes
  6. Used static DRAM: 17620 bytes ( 163116 available, 9.7% used)
  7. Used static IRAM: 38932 bytes ( 92140 available, 29.7% used)
  8. Flash code: 146944 bytes
  9. Flash rodata: 39580 bytes
  10. Total image size:~ 234780 bytes (.bin may be padded larger)
  11. ***
  12. Running idf_size.py --archives...
  13. Total sizes:
  14. DRAM .data size: 9324 bytes
  15. DRAM .bss size: 8296 bytes
  16. Used static DRAM: 17620 bytes ( 163116 available, 9.7% used)
  17. Used static IRAM: 38932 bytes ( 92140 available, 29.7% used)
  18. Flash code: 146944 bytes
  19. Flash rodata: 39580 bytes
  20. Total image size:~ 234780 bytes (.bin may be padded larger)
  21. Per-archive contributions to ELF file:
  22. Archive File DRAM .data & .bss IRAM Flash code & rodata Total
  23. liblwip.a 14 3751 0 66978 13936 84679
  24. libc.a 0 0 0 55583 3889 59472
  25. libesp32.a 2635 2375 7758 4814 8133 25715
  26. libfreertos.a 4156 832 12853 0 1545 19386
  27. libspi_flash.a 36 359 7004 886 1624 9909
  28. libsoc.a 660 8 3887 0 3456 8011
  29. libheap.a 1331 4 4376 1218 980 7909
  30. libgcc.a 4 20 104 5488 888 6504
  31. libvfs.a 232 103 0 3770 403 4508
  32. libunity.a 0 121 0 2316 830 3267
  33. libstdc++.a 8 16 0 1827 1062 2913
  34. libnewlib.a 152 272 853 803 86 2166
  35. libpthread.a 16 12 174 774 638 1614
  36. libdriver.a 40 20 0 961 537 1558
  37. liblog.a 8 268 456 396 166 1294
  38. libapp_update.a 0 0 0 123 717 840
  39. libtcpip_adapter.a 0 81 0 180 359 620
  40. libhal.a 0 0 515 0 32 547
  41. libm.a 0 0 92 0 0 92
  42. libmain.a 0 0 0 53 10 63
  43. libcxx.a 0 0 0 11 0 11
  44. libxtensa-debug-module.a 0 0 8 0 0 8
  45. libbootloader_support.a 0 0 0 0 0 0
  46. libcoexist.a 0 0 0 0 0 0
  47. libcore.a 0 0 0 0 0 0
  48. libethernet.a 0 0 0 0 0 0
  49. libmbedtls.a 0 0 0 0 0 0
  50. libmesh.a 0 0 0 0 0 0
  51. libnet80211.a 0 0 0 0 0 0
  52. libnvs_flash.a 0 0 0 0 0 0
  53. libphy.a 0 0 0 0 0 0
  54. libpp.a 0 0 0 0 0 0
  55. librtc.a 0 0 0 0 0 0
  56. libsmartconfig_ack.a 0 0 0 0 0 0
  57. libwpa.a 0 0 0 0 0 0
  58. libwpa2.a 0 0 0 0 0 0
  59. libwpa_supplicant.a 0 0 0 0 0 0
  60. libwps.a 0 0 0 0 0 0
  61. ***
  62. Running idf_size.py --files...
  63. Total sizes:
  64. DRAM .data size: 9324 bytes
  65. DRAM .bss size: 8296 bytes
  66. Used static DRAM: 17620 bytes ( 163116 available, 9.7% used)
  67. Used static IRAM: 38932 bytes ( 92140 available, 29.7% used)
  68. Flash code: 146944 bytes
  69. Flash rodata: 39580 bytes
  70. Total image size:~ 234780 bytes (.bin may be padded larger)
  71. Per-file contributions to ELF file:
  72. Object File DRAM .data & .bss IRAM Flash code & rodata Total
  73. lib_a-vfprintf.o 0 0 0 14193 756 14949
  74. lib_a-svfprintf.o 0 0 0 13834 756 14590
  75. lib_a-svfiprintf.o 0 0 0 9642 1210 10852
  76. lib_a-vfiprintf.o 0 0 0 9933 738 10671
  77. nd6.o 8 1027 0 8427 136 9598
  78. tcp_in.o 0 54 0 8127 916 9097
  79. tasks.o 20 700 5667 0 503 6890
  80. tcp_out.o 0 0 0 5060 1124 6184
  81. sockets.o 0 728 0 4627 824 6179
  82. tcp.o 4 23 0 4290 1384 5701
  83. api_msg.o 0 0 0 3763 1366 5129
  84. dhcp.o 0 8 0 3456 1401 4865
  85. panic.o 2579 5 2145 0 0 4729
  86. esp_err_to_name.o 0 0 0 50 4091 4141
  87. unwind-dw2-fde.o 4 20 0 3316 404 3744
  88. pbuf.o 0 1 0 2453 1161 3615
  89. portasm.o 3084 0 480 0 0 3564
  90. lib_a-dtoa.o 0 0 0 3522 13 3535
  91. etharp.o 0 241 0 2618 658 3517
  92. ip6.o 0 0 0 3212 124 3336
  93. dns.o 0 1292 0 1809 206 3307
  94. spi_flash_rom_patch.o 0 0 2518 0 766 3284
  95. udp.o 2 4 0 3020 216 3242
  96. intr_alloc.o 8 22 726 1749 710 3215
  97. multi_heap.o 857 0 2217 0 0 3074
  98. queue.o 8 56 2569 0 369 3002
  99. flash_ops.o 32 41 2352 99 0 2524
  100. unwind-dw2-xtensa.o 0 0 0 2172 324 2496
  101. rtc_clk.o 660 8 1794 0 0 2462
  102. lib_a-mprec.o 0 0 0 2134 296 2430
  103. vfs.o 192 40 0 1995 132 2359
  104. ip6_frag.o 0 6 0 1905 442 2353
  105. api_lib.o 0 0 0 1425 919 2344
  106. igmp.o 0 12 0 1604 707 2323
  107. dbg_stubs.o 0 2072 32 100 0 2204
  108. vfs_uart.o 40 63 0 1775 271 2149
  109. unity_platform.o 0 13 0 1511 600 2124
  110. esp_timer_esp32.o 8 26 1295 254 526 2109
  111. rtc_periph.o 0 0 0 0 2080 2080
  112. flash_mmap.o 0 296 1298 124 327 2045
  113. heap_caps.o 4 0 1195 188 593 1980
  114. eh_personality.o 0 0 0 1561 384 1945
  115. ip4.o 0 6 0 1664 139 1809
  116. netif.o 0 241 0 1239 287 1767
  117. xtensa_vectors.o 8 0 1697 0 36 1741
  118. cpu_start.o 0 1 806 277 486 1570
  119. clk.o 0 0 67 581 893 1541
  120. timers.o 8 56 1149 0 233 1446
  121. sys_arch.o 0 8 0 1216 222 1446
  122. multi_heap_poisoning.o 470 0 964 0 0 1434
  123. heap_caps_init.o 0 4 0 1030 387 1421
  124. mld6.o 0 4 0 1334 0 1338
  125. cache_utils.o 4 14 836 81 390 1325
  126. raw.o 0 4 0 1087 223 1314
  127. esp_timer.o 8 20 702 429 142 1301
  128. log.o 8 268 456 396 166 1294
  129. system_api.o 0 8 589 0 662 1259
  130. soc_memory_layout.o 0 0 0 0 1239 1239
  131. icmp.o 0 0 0 769 371 1140
  132. xtensa_intr_asm.o 1024 0 51 0 0 1075
  133. port.o 0 16 617 0 369 1002
  134. pthread.o 8 8 174 298 512 1000
  135. icmp6.o 0 0 0 863 127 990
  136. rtc_init.o 0 0 980 0 0 980
  137. unity.o 0 108 0 767 90 965
  138. rtc_time.o 0 0 803 0 137 940
  139. dport_access.o 8 40 539 189 129 905
  140. lib_a-fseeko.o 0 0 0 862 0 862
  141. time.o 0 32 139 691 0 862
  142. tcpip.o 0 16 0 644 191 851
  143. esp_ota_ops.o 0 0 0 123 717 840
  144. periph_ctrl.o 8 0 0 520 256 784
  145. timers.o 0 12 0 638 131 781
  146. partition.o 0 8 0 582 141 731
  147. locks.o 8 0 552 0 84 644
  148. ipc.o 0 36 159 329 104 628
  149. tcpip_adapter_lwip.o 0 81 0 180 359 620
  150. pthread_local_storage.o 8 4 0 476 126 614
  151. inet_chksum.o 0 0 0 580 0 580
  152. crosscore_int.o 8 8 204 126 148 494
  153. netbuf.o 0 0 0 154 326 480
  154. vfs_lwip.o 0 0 0 307 155 462
  155. syscall_table.o 144 240 0 67 0 451
  156. timer.o 16 0 0 112 281 409
  157. int_wdt.o 0 1 87 301 0 389
  158. eh_globals.o 0 16 0 149 193 358
  159. brownout.o 0 0 0 145 191 336
  160. freertos_hooks.o 8 128 43 137 0 316
  161. windowspill_asm.o 0 0 311 0 0 311
  162. cpu_util.o 0 0 310 0 0 310
  163. rtc_module.o 8 8 0 291 0 307
  164. xtensa_context.o 0 0 299 0 0 299
  165. eh_terminate.o 0 0 0 117 141 258
  166. ethernet.o 0 0 0 244 12 256
  167. lib_a-puts.o 0 0 0 182 60 242
  168. dport_panic_highint_hdl. 8 0 234 0 0 242
  169. lib_a-reent.o 0 0 0 232 0 232
  170. lib_a-fopen.o 0 0 0 228 0 228
  171. dhcpserver.o 0 4 0 203 0 207
  172. test_utils.o 0 0 0 38 140 178
  173. lib_a-sprintf.o 0 0 0 167 0 167
  174. cache_err_int.o 0 0 56 98 0 154
  175. list.o 0 0 142 0 0 142
  176. xtensa_intr.o 0 0 104 0 35 139
  177. syscalls.o 0 0 94 45 0 139
  178. si_class_type_info.o 0 0 0 0 136 136
  179. lib_a-assert.o 0 0 0 68 60 128
  180. lib_a-flags.o 0 0 0 127 0 127
  181. lib_a-printf.o 0 0 0 116 0 116
  182. ip4_addr.o 0 0 0 72 40 112
  183. class_type_info.o 0 0 0 0 112 112
  184. lib_a-s_frexp.o 0 0 0 110 0 110
  185. ip.o 0 60 0 50 0 110
  186. memp.o 0 0 0 0 108 108
  187. lib2funcs.o 0 0 104 0 0 104
  188. lib_a-vprintf.o 0 0 0 94 0 94
  189. lib_a-s_fpclassify.o 0 0 92 0 0 92
  190. def.o 0 0 0 91 0 91
  191. lib_a-fiprintf.o 0 0 0 84 0 84
  192. hw_random.o 0 4 74 0 0 78
  193. stack_check.o 0 4 0 32 42 78
  194. clock.o 0 0 72 0 0 72
  195. reent_init.o 0 0 68 0 2 70
  196. app_main.o 0 0 0 53 10 63
  197. state_asm--restore_extra 0 0 62 0 0 62
  198. state_asm--save_extra_nw 0 0 62 0 0 62
  199. uart.o 8 12 0 38 0 58
  200. new_opv.o 0 0 0 0 56 56
  201. xtensa_vector_defaults.o 0 0 46 0 0 46
  202. lib_a-fseek.o 0 0 0 45 0 45
  203. _divdi3.o 0 0 0 0 40 40
  204. _moddi3.o 0 0 0 0 40 40
  205. _udivdi3.o 0 0 0 0 40 40
  206. _umoddi3.o 0 0 0 0 40 40
  207. new_op.o 0 0 0 0 40 40
  208. xtensa_init.o 0 4 32 0 0 36
  209. interrupts--intlevel.o 0 0 0 0 32 32
  210. init.o 0 0 0 27 0 27
  211. wifi_init.o 0 0 0 17 9 26
  212. ip6_addr.o 0 0 0 0 20 20
  213. lib_a-errno.o 0 0 0 10 0 10
  214. int_asm--set_intclear.o 0 0 8 0 0 8
  215. eri.o 0 0 8 0 0 8
  216. cxx_exception_stubs.o 0 0 0 6 0 6
  217. cxx_guards.o 0 0 0 5 0 5
  218. FreeRTOS-openocd.o 4 0 0 0 0 4
  219. eh_term_handler.o 4 0 0 0 0 4
  220. eh_unex_handler.o 4 0 0 0 0 4
  221. bootloader_flash.o 0 0 0 0 0 0
  222. bootloader_sha.o 0 0 0 0 0 0
  223. esp_image_format.o 0 0 0 0 0 0
  224. lib_a-fputs.o 0 0 0 0 0 0
  225. lib_a-snprintf.o 0 0 0 0 0 0
  226. lib_a-strerror.o 0 0 0 0 0 0
  227. lib_a-sysgettod.o 0 0 0 0 0 0
  228. lib_a-u_strerr.o 0 0 0 0 0 0
  229. lib_a-vsnprintf.o 0 0 0 0 0 0
  230. lib_a-xpg_strerror_r.o 0 0 0 0 0 0
  231. coexist_api.o 0 0 0 0 0 0
  232. coexist_arbit.o 0 0 0 0 0 0
  233. coexist_core.o 0 0 0 0 0 0
  234. coexist_dbg.o 0 0 0 0 0 0
  235. coexist_hw.o 0 0 0 0 0 0
  236. coexist_param.o 0 0 0 0 0 0
  237. coexist_timer.o 0 0 0 0 0 0
  238. misc_nvs.o 0 0 0 0 0 0
  239. gpio.o 0 0 0 0 0 0
  240. ets_timer_legacy.o 0 0 0 0 0 0
  241. event_default_handlers.o 0 0 0 0 0 0
  242. event_loop.o 0 0 0 0 0 0
  243. lib_printf.o 0 0 0 0 0 0
  244. phy_init.o 0 0 0 0 0 0
  245. sha.o 0 0 0 0 0 0
  246. wifi_os_adapter.o 0 0 0 0 0 0
  247. emac_dev.o 0 0 0 0 0 0
  248. emac_main.o 0 0 0 0 0 0
  249. event_groups.o 0 0 0 0 0 0
  250. ringbuf.o 0 0 0 0 0 0
  251. _addsubdf3.o 0 0 0 0 0 0
  252. _cmpdf2.o 0 0 0 0 0 0
  253. _divdf3.o 0 0 0 0 0 0
  254. _divsf3.o 0 0 0 0 0 0
  255. _extendsfdf2.o 0 0 0 0 0 0
  256. _fixdfsi.o 0 0 0 0 0 0
  257. _floatdidf.o 0 0 0 0 0 0
  258. _floatdisf.o 0 0 0 0 0 0
  259. _floatsidf.o 0 0 0 0 0 0
  260. _muldf3.o 0 0 0 0 0 0
  261. _popcountsi2.o 0 0 0 0 0 0
  262. ethernetif.o 0 0 0 0 0 0
  263. ethip6.o 0 0 0 0 0 0
  264. wlanif.o 0 0 0 0 0 0
  265. esp_sha256.o 0 0 0 0 0 0
  266. mesh.o 0 0 0 0 0 0
  267. mesh_common.o 0 0 0 0 0 0
  268. mesh_config.o 0 0 0 0 0 0
  269. mesh_main.o 0 0 0 0 0 0
  270. mesh_parent.o 0 0 0 0 0 0
  271. mesh_route.o 0 0 0 0 0 0
  272. mesh_schedule.o 0 0 0 0 0 0
  273. mesh_timer.o 0 0 0 0 0 0
  274. mesh_utilities.o 0 0 0 0 0 0
  275. mesh_wifi.o 0 0 0 0 0 0
  276. ieee80211.o 0 0 0 0 0 0
  277. ieee80211_action.o 0 0 0 0 0 0
  278. ieee80211_action_vendor. 0 0 0 0 0 0
  279. ieee80211_api.o 0 0 0 0 0 0
  280. ieee80211_crypto.o 0 0 0 0 0 0
  281. ieee80211_crypto_ccmp.o 0 0 0 0 0 0
  282. ieee80211_crypto_tkip.o 0 0 0 0 0 0
  283. ieee80211_crypto_wep.o 0 0 0 0 0 0
  284. ieee80211_debug.o 0 0 0 0 0 0
  285. ieee80211_ets.o 0 0 0 0 0 0
  286. ieee80211_hostap.o 0 0 0 0 0 0
  287. ieee80211_ht.o 0 0 0 0 0 0
  288. ieee80211_ie_vendor.o 0 0 0 0 0 0
  289. ieee80211_input.o 0 0 0 0 0 0
  290. ieee80211_ioctl.o 0 0 0 0 0 0
  291. ieee80211_mesh_quick.o 0 0 0 0 0 0
  292. ieee80211_misc.o 0 0 0 0 0 0
  293. ieee80211_nvs.o 0 0 0 0 0 0
  294. ieee80211_output.o 0 0 0 0 0 0
  295. ieee80211_phy.o 0 0 0 0 0 0
  296. ieee80211_power.o 0 0 0 0 0 0
  297. ieee80211_proto.o 0 0 0 0 0 0
  298. ieee80211_regdomain.o 0 0 0 0 0 0
  299. ieee80211_rfid.o 0 0 0 0 0 0
  300. ieee80211_scan.o 0 0 0 0 0 0
  301. ieee80211_sta.o 0 0 0 0 0 0
  302. ieee80211_timer.o 0 0 0 0 0 0
  303. wl_chm.o 0 0 0 0 0 0
  304. wl_cnx.o 0 0 0 0 0 0
  305. nvs_api.o 0 0 0 0 0 0
  306. nvs_item_hash_list.o 0 0 0 0 0 0
  307. nvs_page.o 0 0 0 0 0 0
  308. nvs_pagemanager.o 0 0 0 0 0 0
  309. nvs_storage.o 0 0 0 0 0 0
  310. nvs_types.o 0 0 0 0 0 0
  311. phy.o 0 0 0 0 0 0
  312. phy_chip_v7.o 0 0 0 0 0 0
  313. phy_chip_v7_ana.o 0 0 0 0 0 0
  314. phy_chip_v7_cal.o 0 0 0 0 0 0
  315. esf_buf.o 0 0 0 0 0 0
  316. if_hwctrl.o 0 0 0 0 0 0
  317. lmac.o 0 0 0 0 0 0
  318. pm.o 0 0 0 0 0 0
  319. pm_for_bcn_only_mode.o 0 0 0 0 0 0
  320. pp.o 0 0 0 0 0 0
  321. pp_debug.o 0 0 0 0 0 0
  322. pp_timer.o 0 0 0 0 0 0
  323. rate_control.o 0 0 0 0 0 0
  324. trc.o 0 0 0 0 0 0
  325. wdev.o 0 0 0 0 0 0
  326. bt_bb.o 0 0 0 0 0 0
  327. pm.o 0 0 0 0 0 0
  328. rtc.o 0 0 0 0 0 0
  329. rtc_analog.o 0 0 0 0 0 0
  330. smartconfig_ack.o 0 0 0 0 0 0
  331. gpio_periph.o 0 0 0 0 0 0
  332. rtc_sleep.o 0 0 0 0 0 0
  333. bad_alloc.o 0 0 0 0 0 0
  334. del_op.o 0 0 0 0 0 0
  335. del_opv.o 0 0 0 0 0 0
  336. eh_exception.o 0 0 0 0 0 0
  337. new_handler.o 0 0 0 0 0 0
  338. pure.o 0 0 0 0 0 0
  339. tinfo.o 0 0 0 0 0 0
  340. ap_config.o 0 0 0 0 0 0
  341. common.o 0 0 0 0 0 0
  342. wpa.o 0 0 0 0 0 0
  343. wpa_auth.o 0 0 0 0 0 0
  344. wpa_auth_ie.o 0 0 0 0 0 0
  345. wpa_common.o 0 0 0 0 0 0
  346. wpa_debug.o 0 0 0 0 0 0
  347. wpa_ie.o 0 0 0 0 0 0
  348. wpa_main.o 0 0 0 0 0 0
  349. wpabuf.o 0 0 0 0 0 0
  350. wpas_glue.o 0 0 0 0 0 0
  351. wpa2_internal.o 0 0 0 0 0 0
  352. os_xtensa.o 0 0 0 0 0 0
  353. wps_internal.o 0 0 0 0 0 0
  354. ***
  355. Running idf_size.py --archive_details...
  356. Total sizes:
  357. DRAM .data size: 9324 bytes
  358. DRAM .bss size: 8296 bytes
  359. Used static DRAM: 17620 bytes ( 163116 available, 9.7% used)
  360. Used static IRAM: 38932 bytes ( 92140 available, 29.7% used)
  361. Flash code: 146944 bytes
  362. Flash rodata: 39580 bytes
  363. Total image size:~ 234780 bytes (.bin may be padded larger)
  364. Symbols within the archive: libdriver.a (Not all symbols may be reported)
  365. Symbols from section: .dram0.data
  366. timer_spinlock(16) periph_spinlock(8) s_rtc_isr_handler_list_lock(8) uart_selectlock(8)
  367. Section total: 40
  368. Symbols from section: .dram0.bss
  369. p_uart_obj(12) s_rtc_isr_handle(4) s_rtc_isr_handler_list(4)
  370. Section total: 20
  371. Symbols from section: .iram0.text
  372. Section total: 0
  373. Symbols from section: .iram0.vectors
  374. Section total: 0
  375. Symbols from section: .flash.text
  376. get_clk_en_mask(211) get_rst_en_mask(157) timer_group_intr_enable(112) rtc_isr(86) periph_module_enable(78) rtc_isr_ensure_installed(75) rtc_gpio_force_hold_dis_all(65) rtc_isr_register(65) is_wifi_clk_peripheral(28) uart_set_select_notif_callback(26) get_rst_en_reg(25) get_clk_en_reg(21) uart_get_selectlock(12)
  377. Section total: 961
  378. Symbols from section: .flash.rodata
  379. str1.4(249) get_clk_en_mask(128) get_rst_en_mask(128) __FUNCTION__$5441(24) TG(8)
  380. Section total: 537
  381. ***
  382. Producing JSON output...
  383. {
  384. "dram_data": 9324,
  385. "dram_bss": 8296,
  386. "used_dram": 17620,
  387. "available_dram": 163116,
  388. "used_dram_ratio": 0.09749026203966006,
  389. "used_iram": 38932,
  390. "available_iram": 92140,
  391. "used_iram_ratio": 0.297027587890625,
  392. "flash_code": 146944,
  393. "flash_rodata": 39580,
  394. "total_size": 234780
  395. }
  396. {
  397. "liblwip.a": {
  398. "data": 14,
  399. "bss": 3751,
  400. "iram": 0,
  401. "flash_text": 66978,
  402. "flash_rodata": 13936,
  403. "total": 84679
  404. },
  405. "libc.a": {
  406. "data": 0,
  407. "bss": 0,
  408. "iram": 0,
  409. "flash_text": 55583,
  410. "flash_rodata": 3889,
  411. "total": 59472
  412. },
  413. "libesp32.a": {
  414. "data": 2635,
  415. "bss": 2375,
  416. "iram": 7758,
  417. "flash_text": 4814,
  418. "flash_rodata": 8133,
  419. "total": 25715
  420. },
  421. "libfreertos.a": {
  422. "data": 4156,
  423. "bss": 832,
  424. "iram": 12853,
  425. "flash_text": 0,
  426. "flash_rodata": 1545,
  427. "total": 19386
  428. },
  429. "libspi_flash.a": {
  430. "data": 36,
  431. "bss": 359,
  432. "iram": 7004,
  433. "flash_text": 886,
  434. "flash_rodata": 1624,
  435. "total": 9909
  436. },
  437. "libsoc.a": {
  438. "data": 660,
  439. "bss": 8,
  440. "iram": 3887,
  441. "flash_text": 0,
  442. "flash_rodata": 3456,
  443. "total": 8011
  444. },
  445. "libheap.a": {
  446. "data": 1331,
  447. "bss": 4,
  448. "iram": 4376,
  449. "flash_text": 1218,
  450. "flash_rodata": 980,
  451. "total": 7909
  452. },
  453. "libgcc.a": {
  454. "data": 4,
  455. "bss": 20,
  456. "iram": 104,
  457. "flash_text": 5488,
  458. "flash_rodata": 888,
  459. "total": 6504
  460. },
  461. "libvfs.a": {
  462. "data": 232,
  463. "bss": 103,
  464. "iram": 0,
  465. "flash_text": 3770,
  466. "flash_rodata": 403,
  467. "total": 4508
  468. },
  469. "libunity.a": {
  470. "data": 0,
  471. "bss": 121,
  472. "iram": 0,
  473. "flash_text": 2316,
  474. "flash_rodata": 830,
  475. "total": 3267
  476. },
  477. "libstdc++.a": {
  478. "data": 8,
  479. "bss": 16,
  480. "iram": 0,
  481. "flash_text": 1827,
  482. "flash_rodata": 1062,
  483. "total": 2913
  484. },
  485. "libnewlib.a": {
  486. "data": 152,
  487. "bss": 272,
  488. "iram": 853,
  489. "flash_text": 803,
  490. "flash_rodata": 86,
  491. "total": 2166
  492. },
  493. "libpthread.a": {
  494. "data": 16,
  495. "bss": 12,
  496. "iram": 174,
  497. "flash_text": 774,
  498. "flash_rodata": 638,
  499. "total": 1614
  500. },
  501. "libdriver.a": {
  502. "data": 40,
  503. "bss": 20,
  504. "iram": 0,
  505. "flash_text": 961,
  506. "flash_rodata": 537,
  507. "total": 1558
  508. },
  509. "liblog.a": {
  510. "data": 8,
  511. "bss": 268,
  512. "iram": 456,
  513. "flash_text": 396,
  514. "flash_rodata": 166,
  515. "total": 1294
  516. },
  517. "libapp_update.a": {
  518. "data": 0,
  519. "bss": 0,
  520. "iram": 0,
  521. "flash_text": 123,
  522. "flash_rodata": 717,
  523. "total": 840
  524. },
  525. "libtcpip_adapter.a": {
  526. "data": 0,
  527. "bss": 81,
  528. "iram": 0,
  529. "flash_text": 180,
  530. "flash_rodata": 359,
  531. "total": 620
  532. },
  533. "libhal.a": {
  534. "data": 0,
  535. "bss": 0,
  536. "iram": 515,
  537. "flash_text": 0,
  538. "flash_rodata": 32,
  539. "total": 547
  540. },
  541. "libm.a": {
  542. "data": 0,
  543. "bss": 0,
  544. "iram": 92,
  545. "flash_text": 0,
  546. "flash_rodata": 0,
  547. "total": 92
  548. },
  549. "libmain.a": {
  550. "data": 0,
  551. "bss": 0,
  552. "iram": 0,
  553. "flash_text": 53,
  554. "flash_rodata": 10,
  555. "total": 63
  556. },
  557. "libcxx.a": {
  558. "data": 0,
  559. "bss": 0,
  560. "iram": 0,
  561. "flash_text": 11,
  562. "flash_rodata": 0,
  563. "total": 11
  564. },
  565. "libxtensa-debug-module.a": {
  566. "data": 0,
  567. "bss": 0,
  568. "iram": 8,
  569. "flash_text": 0,
  570. "flash_rodata": 0,
  571. "total": 8
  572. },
  573. "libbootloader_support.a": {
  574. "data": 0,
  575. "bss": 0,
  576. "iram": 0,
  577. "flash_text": 0,
  578. "flash_rodata": 0,
  579. "total": 0
  580. },
  581. "libcoexist.a": {
  582. "data": 0,
  583. "bss": 0,
  584. "iram": 0,
  585. "flash_text": 0,
  586. "flash_rodata": 0,
  587. "total": 0
  588. },
  589. "libcore.a": {
  590. "data": 0,
  591. "bss": 0,
  592. "iram": 0,
  593. "flash_text": 0,
  594. "flash_rodata": 0,
  595. "total": 0
  596. },
  597. "libethernet.a": {
  598. "data": 0,
  599. "bss": 0,
  600. "iram": 0,
  601. "flash_text": 0,
  602. "flash_rodata": 0,
  603. "total": 0
  604. },
  605. "libmbedtls.a": {
  606. "data": 0,
  607. "bss": 0,
  608. "iram": 0,
  609. "flash_text": 0,
  610. "flash_rodata": 0,
  611. "total": 0
  612. },
  613. "libmesh.a": {
  614. "data": 0,
  615. "bss": 0,
  616. "iram": 0,
  617. "flash_text": 0,
  618. "flash_rodata": 0,
  619. "total": 0
  620. },
  621. "libnet80211.a": {
  622. "data": 0,
  623. "bss": 0,
  624. "iram": 0,
  625. "flash_text": 0,
  626. "flash_rodata": 0,
  627. "total": 0
  628. },
  629. "libnvs_flash.a": {
  630. "data": 0,
  631. "bss": 0,
  632. "iram": 0,
  633. "flash_text": 0,
  634. "flash_rodata": 0,
  635. "total": 0
  636. },
  637. "libphy.a": {
  638. "data": 0,
  639. "bss": 0,
  640. "iram": 0,
  641. "flash_text": 0,
  642. "flash_rodata": 0,
  643. "total": 0
  644. },
  645. "libpp.a": {
  646. "data": 0,
  647. "bss": 0,
  648. "iram": 0,
  649. "flash_text": 0,
  650. "flash_rodata": 0,
  651. "total": 0
  652. },
  653. "librtc.a": {
  654. "data": 0,
  655. "bss": 0,
  656. "iram": 0,
  657. "flash_text": 0,
  658. "flash_rodata": 0,
  659. "total": 0
  660. },
  661. "libsmartconfig_ack.a": {
  662. "data": 0,
  663. "bss": 0,
  664. "iram": 0,
  665. "flash_text": 0,
  666. "flash_rodata": 0,
  667. "total": 0
  668. },
  669. "libwpa.a": {
  670. "data": 0,
  671. "bss": 0,
  672. "iram": 0,
  673. "flash_text": 0,
  674. "flash_rodata": 0,
  675. "total": 0
  676. },
  677. "libwpa2.a": {
  678. "data": 0,
  679. "bss": 0,
  680. "iram": 0,
  681. "flash_text": 0,
  682. "flash_rodata": 0,
  683. "total": 0
  684. },
  685. "libwpa_supplicant.a": {
  686. "data": 0,
  687. "bss": 0,
  688. "iram": 0,
  689. "flash_text": 0,
  690. "flash_rodata": 0,
  691. "total": 0
  692. },
  693. "libwps.a": {
  694. "data": 0,
  695. "bss": 0,
  696. "iram": 0,
  697. "flash_text": 0,
  698. "flash_rodata": 0,
  699. "total": 0
  700. }
  701. }
  702. {
  703. "libc.a:lib_a-vfprintf.o": {
  704. "data": 0,
  705. "bss": 0,
  706. "iram": 0,
  707. "flash_text": 14193,
  708. "flash_rodata": 756,
  709. "total": 14949
  710. },
  711. "libc.a:lib_a-svfprintf.o": {
  712. "data": 0,
  713. "bss": 0,
  714. "iram": 0,
  715. "flash_text": 13834,
  716. "flash_rodata": 756,
  717. "total": 14590
  718. },
  719. "libc.a:lib_a-svfiprintf.o": {
  720. "data": 0,
  721. "bss": 0,
  722. "iram": 0,
  723. "flash_text": 9642,
  724. "flash_rodata": 1210,
  725. "total": 10852
  726. },
  727. "libc.a:lib_a-vfiprintf.o": {
  728. "data": 0,
  729. "bss": 0,
  730. "iram": 0,
  731. "flash_text": 9933,
  732. "flash_rodata": 738,
  733. "total": 10671
  734. },
  735. "liblwip.a:nd6.o": {
  736. "data": 8,
  737. "bss": 1027,
  738. "iram": 0,
  739. "flash_text": 8427,
  740. "flash_rodata": 136,
  741. "total": 9598
  742. },
  743. "liblwip.a:tcp_in.o": {
  744. "data": 0,
  745. "bss": 54,
  746. "iram": 0,
  747. "flash_text": 8127,
  748. "flash_rodata": 916,
  749. "total": 9097
  750. },
  751. "libfreertos.a:tasks.o": {
  752. "data": 20,
  753. "bss": 700,
  754. "iram": 5667,
  755. "flash_text": 0,
  756. "flash_rodata": 503,
  757. "total": 6890
  758. },
  759. "liblwip.a:tcp_out.o": {
  760. "data": 0,
  761. "bss": 0,
  762. "iram": 0,
  763. "flash_text": 5060,
  764. "flash_rodata": 1124,
  765. "total": 6184
  766. },
  767. "liblwip.a:sockets.o": {
  768. "data": 0,
  769. "bss": 728,
  770. "iram": 0,
  771. "flash_text": 4627,
  772. "flash_rodata": 824,
  773. "total": 6179
  774. },
  775. "liblwip.a:tcp.o": {
  776. "data": 4,
  777. "bss": 23,
  778. "iram": 0,
  779. "flash_text": 4290,
  780. "flash_rodata": 1384,
  781. "total": 5701
  782. },
  783. "liblwip.a:api_msg.o": {
  784. "data": 0,
  785. "bss": 0,
  786. "iram": 0,
  787. "flash_text": 3763,
  788. "flash_rodata": 1366,
  789. "total": 5129
  790. },
  791. "liblwip.a:dhcp.o": {
  792. "data": 0,
  793. "bss": 8,
  794. "iram": 0,
  795. "flash_text": 3456,
  796. "flash_rodata": 1401,
  797. "total": 4865
  798. },
  799. "libesp32.a:panic.o": {
  800. "data": 2579,
  801. "bss": 5,
  802. "iram": 2145,
  803. "flash_text": 0,
  804. "flash_rodata": 0,
  805. "total": 4729
  806. },
  807. "libesp32.a:esp_err_to_name.o": {
  808. "data": 0,
  809. "bss": 0,
  810. "iram": 0,
  811. "flash_text": 50,
  812. "flash_rodata": 4091,
  813. "total": 4141
  814. },
  815. "libgcc.a:unwind-dw2-fde.o": {
  816. "data": 4,
  817. "bss": 20,
  818. "iram": 0,
  819. "flash_text": 3316,
  820. "flash_rodata": 404,
  821. "total": 3744
  822. },
  823. "liblwip.a:pbuf.o": {
  824. "data": 0,
  825. "bss": 1,
  826. "iram": 0,
  827. "flash_text": 2453,
  828. "flash_rodata": 1161,
  829. "total": 3615
  830. },
  831. "libfreertos.a:portasm.o": {
  832. "data": 3084,
  833. "bss": 0,
  834. "iram": 480,
  835. "flash_text": 0,
  836. "flash_rodata": 0,
  837. "total": 3564
  838. },
  839. "libc.a:lib_a-dtoa.o": {
  840. "data": 0,
  841. "bss": 0,
  842. "iram": 0,
  843. "flash_text": 3522,
  844. "flash_rodata": 13,
  845. "total": 3535
  846. },
  847. "liblwip.a:etharp.o": {
  848. "data": 0,
  849. "bss": 241,
  850. "iram": 0,
  851. "flash_text": 2618,
  852. "flash_rodata": 658,
  853. "total": 3517
  854. },
  855. "liblwip.a:ip6.o": {
  856. "data": 0,
  857. "bss": 0,
  858. "iram": 0,
  859. "flash_text": 3212,
  860. "flash_rodata": 124,
  861. "total": 3336
  862. },
  863. "liblwip.a:dns.o": {
  864. "data": 0,
  865. "bss": 1292,
  866. "iram": 0,
  867. "flash_text": 1809,
  868. "flash_rodata": 206,
  869. "total": 3307
  870. },
  871. "libspi_flash.a:spi_flash_rom_patch.o": {
  872. "data": 0,
  873. "bss": 0,
  874. "iram": 2518,
  875. "flash_text": 0,
  876. "flash_rodata": 766,
  877. "total": 3284
  878. },
  879. "liblwip.a:udp.o": {
  880. "data": 2,
  881. "bss": 4,
  882. "iram": 0,
  883. "flash_text": 3020,
  884. "flash_rodata": 216,
  885. "total": 3242
  886. },
  887. "libesp32.a:intr_alloc.o": {
  888. "data": 8,
  889. "bss": 22,
  890. "iram": 726,
  891. "flash_text": 1749,
  892. "flash_rodata": 710,
  893. "total": 3215
  894. },
  895. "libheap.a:multi_heap.o": {
  896. "data": 857,
  897. "bss": 0,
  898. "iram": 2217,
  899. "flash_text": 0,
  900. "flash_rodata": 0,
  901. "total": 3074
  902. },
  903. "libfreertos.a:queue.o": {
  904. "data": 8,
  905. "bss": 56,
  906. "iram": 2569,
  907. "flash_text": 0,
  908. "flash_rodata": 369,
  909. "total": 3002
  910. },
  911. "libspi_flash.a:flash_ops.o": {
  912. "data": 32,
  913. "bss": 41,
  914. "iram": 2352,
  915. "flash_text": 99,
  916. "flash_rodata": 0,
  917. "total": 2524
  918. },
  919. "libgcc.a:unwind-dw2-xtensa.o": {
  920. "data": 0,
  921. "bss": 0,
  922. "iram": 0,
  923. "flash_text": 2172,
  924. "flash_rodata": 324,
  925. "total": 2496
  926. },
  927. "libsoc.a:rtc_clk.o": {
  928. "data": 660,
  929. "bss": 8,
  930. "iram": 1794,
  931. "flash_text": 0,
  932. "flash_rodata": 0,
  933. "total": 2462
  934. },
  935. "libc.a:lib_a-mprec.o": {
  936. "data": 0,
  937. "bss": 0,
  938. "iram": 0,
  939. "flash_text": 2134,
  940. "flash_rodata": 296,
  941. "total": 2430
  942. },
  943. "libvfs.a:vfs.o": {
  944. "data": 192,
  945. "bss": 40,
  946. "iram": 0,
  947. "flash_text": 1995,
  948. "flash_rodata": 132,
  949. "total": 2359
  950. },
  951. "liblwip.a:ip6_frag.o": {
  952. "data": 0,
  953. "bss": 6,
  954. "iram": 0,
  955. "flash_text": 1905,
  956. "flash_rodata": 442,
  957. "total": 2353
  958. },
  959. "liblwip.a:api_lib.o": {
  960. "data": 0,
  961. "bss": 0,
  962. "iram": 0,
  963. "flash_text": 1425,
  964. "flash_rodata": 919,
  965. "total": 2344
  966. },
  967. "liblwip.a:igmp.o": {
  968. "data": 0,
  969. "bss": 12,
  970. "iram": 0,
  971. "flash_text": 1604,
  972. "flash_rodata": 707,
  973. "total": 2323
  974. },
  975. "libesp32.a:dbg_stubs.o": {
  976. "data": 0,
  977. "bss": 2072,
  978. "iram": 32,
  979. "flash_text": 100,
  980. "flash_rodata": 0,
  981. "total": 2204
  982. },
  983. "libvfs.a:vfs_uart.o": {
  984. "data": 40,
  985. "bss": 63,
  986. "iram": 0,
  987. "flash_text": 1775,
  988. "flash_rodata": 271,
  989. "total": 2149
  990. },
  991. "libunity.a:unity_platform.o": {
  992. "data": 0,
  993. "bss": 13,
  994. "iram": 0,
  995. "flash_text": 1511,
  996. "flash_rodata": 600,
  997. "total": 2124
  998. },
  999. "libesp32.a:esp_timer_esp32.o": {
  1000. "data": 8,
  1001. "bss": 26,
  1002. "iram": 1295,
  1003. "flash_text": 254,
  1004. "flash_rodata": 526,
  1005. "total": 2109
  1006. },
  1007. "libsoc.a:rtc_periph.o": {
  1008. "data": 0,
  1009. "bss": 0,
  1010. "iram": 0,
  1011. "flash_text": 0,
  1012. "flash_rodata": 2080,
  1013. "total": 2080
  1014. },
  1015. "libspi_flash.a:flash_mmap.o": {
  1016. "data": 0,
  1017. "bss": 296,
  1018. "iram": 1298,
  1019. "flash_text": 124,
  1020. "flash_rodata": 327,
  1021. "total": 2045
  1022. },
  1023. "libheap.a:heap_caps.o": {
  1024. "data": 4,
  1025. "bss": 0,
  1026. "iram": 1195,
  1027. "flash_text": 188,
  1028. "flash_rodata": 593,
  1029. "total": 1980
  1030. },
  1031. "libstdc++.a:eh_personality.o": {
  1032. "data": 0,
  1033. "bss": 0,
  1034. "iram": 0,
  1035. "flash_text": 1561,
  1036. "flash_rodata": 384,
  1037. "total": 1945
  1038. },
  1039. "liblwip.a:ip4.o": {
  1040. "data": 0,
  1041. "bss": 6,
  1042. "iram": 0,
  1043. "flash_text": 1664,
  1044. "flash_rodata": 139,
  1045. "total": 1809
  1046. },
  1047. "liblwip.a:netif.o": {
  1048. "data": 0,
  1049. "bss": 241,
  1050. "iram": 0,
  1051. "flash_text": 1239,
  1052. "flash_rodata": 287,
  1053. "total": 1767
  1054. },
  1055. "libfreertos.a:xtensa_vectors.o": {
  1056. "data": 8,
  1057. "bss": 0,
  1058. "iram": 1697,
  1059. "flash_text": 0,
  1060. "flash_rodata": 36,
  1061. "total": 1741
  1062. },
  1063. "libesp32.a:cpu_start.o": {
  1064. "data": 0,
  1065. "bss": 1,
  1066. "iram": 806,
  1067. "flash_text": 277,
  1068. "flash_rodata": 486,
  1069. "total": 1570
  1070. },
  1071. "libesp32.a:clk.o": {
  1072. "data": 0,
  1073. "bss": 0,
  1074. "iram": 67,
  1075. "flash_text": 581,
  1076. "flash_rodata": 893,
  1077. "total": 1541
  1078. },
  1079. "libfreertos.a:timers.o": {
  1080. "data": 8,
  1081. "bss": 56,
  1082. "iram": 1149,
  1083. "flash_text": 0,
  1084. "flash_rodata": 233,
  1085. "total": 1446
  1086. },
  1087. "liblwip.a:sys_arch.o": {
  1088. "data": 0,
  1089. "bss": 8,
  1090. "iram": 0,
  1091. "flash_text": 1216,
  1092. "flash_rodata": 222,
  1093. "total": 1446
  1094. },
  1095. "libheap.a:multi_heap_poisoning.o": {
  1096. "data": 470,
  1097. "bss": 0,
  1098. "iram": 964,
  1099. "flash_text": 0,
  1100. "flash_rodata": 0,
  1101. "total": 1434
  1102. },
  1103. "libheap.a:heap_caps_init.o": {
  1104. "data": 0,
  1105. "bss": 4,
  1106. "iram": 0,
  1107. "flash_text": 1030,
  1108. "flash_rodata": 387,
  1109. "total": 1421
  1110. },
  1111. "liblwip.a:mld6.o": {
  1112. "data": 0,
  1113. "bss": 4,
  1114. "iram": 0,
  1115. "flash_text": 1334,
  1116. "flash_rodata": 0,
  1117. "total": 1338
  1118. },
  1119. "libspi_flash.a:cache_utils.o": {
  1120. "data": 4,
  1121. "bss": 14,
  1122. "iram": 836,
  1123. "flash_text": 81,
  1124. "flash_rodata": 390,
  1125. "total": 1325
  1126. },
  1127. "liblwip.a:raw.o": {
  1128. "data": 0,
  1129. "bss": 4,
  1130. "iram": 0,
  1131. "flash_text": 1087,
  1132. "flash_rodata": 223,
  1133. "total": 1314
  1134. },
  1135. "libesp32.a:esp_timer.o": {
  1136. "data": 8,
  1137. "bss": 20,
  1138. "iram": 702,
  1139. "flash_text": 429,
  1140. "flash_rodata": 142,
  1141. "total": 1301
  1142. },
  1143. "liblog.a:log.o": {
  1144. "data": 8,
  1145. "bss": 268,
  1146. "iram": 456,
  1147. "flash_text": 396,
  1148. "flash_rodata": 166,
  1149. "total": 1294
  1150. },
  1151. "libesp32.a:system_api.o": {
  1152. "data": 0,
  1153. "bss": 8,
  1154. "iram": 589,
  1155. "flash_text": 0,
  1156. "flash_rodata": 662,
  1157. "total": 1259
  1158. },
  1159. "libsoc.a:soc_memory_layout.o": {
  1160. "data": 0,
  1161. "bss": 0,
  1162. "iram": 0,
  1163. "flash_text": 0,
  1164. "flash_rodata": 1239,
  1165. "total": 1239
  1166. },
  1167. "liblwip.a:icmp.o": {
  1168. "data": 0,
  1169. "bss": 0,
  1170. "iram": 0,
  1171. "flash_text": 769,
  1172. "flash_rodata": 371,
  1173. "total": 1140
  1174. },
  1175. "libfreertos.a:xtensa_intr_asm.o": {
  1176. "data": 1024,
  1177. "bss": 0,
  1178. "iram": 51,
  1179. "flash_text": 0,
  1180. "flash_rodata": 0,
  1181. "total": 1075
  1182. },
  1183. "libfreertos.a:port.o": {
  1184. "data": 0,
  1185. "bss": 16,
  1186. "iram": 617,
  1187. "flash_text": 0,
  1188. "flash_rodata": 369,
  1189. "total": 1002
  1190. },
  1191. "libpthread.a:pthread.o": {
  1192. "data": 8,
  1193. "bss": 8,
  1194. "iram": 174,
  1195. "flash_text": 298,
  1196. "flash_rodata": 512,
  1197. "total": 1000
  1198. },
  1199. "liblwip.a:icmp6.o": {
  1200. "data": 0,
  1201. "bss": 0,
  1202. "iram": 0,
  1203. "flash_text": 863,
  1204. "flash_rodata": 127,
  1205. "total": 990
  1206. },
  1207. "libsoc.a:rtc_init.o": {
  1208. "data": 0,
  1209. "bss": 0,
  1210. "iram": 980,
  1211. "flash_text": 0,
  1212. "flash_rodata": 0,
  1213. "total": 980
  1214. },
  1215. "libunity.a:unity.o": {
  1216. "data": 0,
  1217. "bss": 108,
  1218. "iram": 0,
  1219. "flash_text": 767,
  1220. "flash_rodata": 90,
  1221. "total": 965
  1222. },
  1223. "libsoc.a:rtc_time.o": {
  1224. "data": 0,
  1225. "bss": 0,
  1226. "iram": 803,
  1227. "flash_text": 0,
  1228. "flash_rodata": 137,
  1229. "total": 940
  1230. },
  1231. "libesp32.a:dport_access.o": {
  1232. "data": 8,
  1233. "bss": 40,
  1234. "iram": 539,
  1235. "flash_text": 189,
  1236. "flash_rodata": 129,
  1237. "total": 905
  1238. },
  1239. "libc.a:lib_a-fseeko.o": {
  1240. "data": 0,
  1241. "bss": 0,
  1242. "iram": 0,
  1243. "flash_text": 862,
  1244. "flash_rodata": 0,
  1245. "total": 862
  1246. },
  1247. "libnewlib.a:time.o": {
  1248. "data": 0,
  1249. "bss": 32,
  1250. "iram": 139,
  1251. "flash_text": 691,
  1252. "flash_rodata": 0,
  1253. "total": 862
  1254. },
  1255. "liblwip.a:tcpip.o": {
  1256. "data": 0,
  1257. "bss": 16,
  1258. "iram": 0,
  1259. "flash_text": 644,
  1260. "flash_rodata": 191,
  1261. "total": 851
  1262. },
  1263. "libapp_update.a:esp_ota_ops.o": {
  1264. "data": 0,
  1265. "bss": 0,
  1266. "iram": 0,
  1267. "flash_text": 123,
  1268. "flash_rodata": 717,
  1269. "total": 840
  1270. },
  1271. "libdriver.a:periph_ctrl.o": {
  1272. "data": 8,
  1273. "bss": 0,
  1274. "iram": 0,
  1275. "flash_text": 520,
  1276. "flash_rodata": 256,
  1277. "total": 784
  1278. },
  1279. "liblwip.a:timers.o": {
  1280. "data": 0,
  1281. "bss": 12,
  1282. "iram": 0,
  1283. "flash_text": 638,
  1284. "flash_rodata": 131,
  1285. "total": 781
  1286. },
  1287. "libspi_flash.a:partition.o": {
  1288. "data": 0,
  1289. "bss": 8,
  1290. "iram": 0,
  1291. "flash_text": 582,
  1292. "flash_rodata": 141,
  1293. "total": 731
  1294. },
  1295. "libnewlib.a:locks.o": {
  1296. "data": 8,
  1297. "bss": 0,
  1298. "iram": 552,
  1299. "flash_text": 0,
  1300. "flash_rodata": 84,
  1301. "total": 644
  1302. },
  1303. "libesp32.a:ipc.o": {
  1304. "data": 0,
  1305. "bss": 36,
  1306. "iram": 159,
  1307. "flash_text": 329,
  1308. "flash_rodata": 104,
  1309. "total": 628
  1310. },
  1311. "libtcpip_adapter.a:tcpip_adapter_lwip.o": {
  1312. "data": 0,
  1313. "bss": 81,
  1314. "iram": 0,
  1315. "flash_text": 180,
  1316. "flash_rodata": 359,
  1317. "total": 620
  1318. },
  1319. "libpthread.a:pthread_local_storage.o": {
  1320. "data": 8,
  1321. "bss": 4,
  1322. "iram": 0,
  1323. "flash_text": 476,
  1324. "flash_rodata": 126,
  1325. "total": 614
  1326. },
  1327. "liblwip.a:inet_chksum.o": {
  1328. "data": 0,
  1329. "bss": 0,
  1330. "iram": 0,
  1331. "flash_text": 580,
  1332. "flash_rodata": 0,
  1333. "total": 580
  1334. },
  1335. "libesp32.a:crosscore_int.o": {
  1336. "data": 8,
  1337. "bss": 8,
  1338. "iram": 204,
  1339. "flash_text": 126,
  1340. "flash_rodata": 148,
  1341. "total": 494
  1342. },
  1343. "liblwip.a:netbuf.o": {
  1344. "data": 0,
  1345. "bss": 0,
  1346. "iram": 0,
  1347. "flash_text": 154,
  1348. "flash_rodata": 326,
  1349. "total": 480
  1350. },
  1351. "liblwip.a:vfs_lwip.o": {
  1352. "data": 0,
  1353. "bss": 0,
  1354. "iram": 0,
  1355. "flash_text": 307,
  1356. "flash_rodata": 155,
  1357. "total": 462
  1358. },
  1359. "libnewlib.a:syscall_table.o": {
  1360. "data": 144,
  1361. "bss": 240,
  1362. "iram": 0,
  1363. "flash_text": 67,
  1364. "flash_rodata": 0,
  1365. "total": 451
  1366. },
  1367. "libdriver.a:timer.o": {
  1368. "data": 16,
  1369. "bss": 0,
  1370. "iram": 0,
  1371. "flash_text": 112,
  1372. "flash_rodata": 281,
  1373. "total": 409
  1374. },
  1375. "libesp32.a:int_wdt.o": {
  1376. "data": 0,
  1377. "bss": 1,
  1378. "iram": 87,
  1379. "flash_text": 301,
  1380. "flash_rodata": 0,
  1381. "total": 389
  1382. },
  1383. "libstdc++.a:eh_globals.o": {
  1384. "data": 0,
  1385. "bss": 16,
  1386. "iram": 0,
  1387. "flash_text": 149,
  1388. "flash_rodata": 193,
  1389. "total": 358
  1390. },
  1391. "libesp32.a:brownout.o": {
  1392. "data": 0,
  1393. "bss": 0,
  1394. "iram": 0,
  1395. "flash_text": 145,
  1396. "flash_rodata": 191,
  1397. "total": 336
  1398. },
  1399. "libesp32.a:freertos_hooks.o": {
  1400. "data": 8,
  1401. "bss": 128,
  1402. "iram": 43,
  1403. "flash_text": 137,
  1404. "flash_rodata": 0,
  1405. "total": 316
  1406. },
  1407. "libhal.a:windowspill_asm.o": {
  1408. "data": 0,
  1409. "bss": 0,
  1410. "iram": 311,
  1411. "flash_text": 0,
  1412. "flash_rodata": 0,
  1413. "total": 311
  1414. },
  1415. "libsoc.a:cpu_util.o": {
  1416. "data": 0,
  1417. "bss": 0,
  1418. "iram": 310,
  1419. "flash_text": 0,
  1420. "flash_rodata": 0,
  1421. "total": 310
  1422. },
  1423. "libdriver.a:rtc_module.o": {
  1424. "data": 8,
  1425. "bss": 8,
  1426. "iram": 0,
  1427. "flash_text": 291,
  1428. "flash_rodata": 0,
  1429. "total": 307
  1430. },
  1431. "libfreertos.a:xtensa_context.o": {
  1432. "data": 0,
  1433. "bss": 0,
  1434. "iram": 299,
  1435. "flash_text": 0,
  1436. "flash_rodata": 0,
  1437. "total": 299
  1438. },
  1439. "libstdc++.a:eh_terminate.o": {
  1440. "data": 0,
  1441. "bss": 0,
  1442. "iram": 0,
  1443. "flash_text": 117,
  1444. "flash_rodata": 141,
  1445. "total": 258
  1446. },
  1447. "liblwip.a:ethernet.o": {
  1448. "data": 0,
  1449. "bss": 0,
  1450. "iram": 0,
  1451. "flash_text": 244,
  1452. "flash_rodata": 12,
  1453. "total": 256
  1454. },
  1455. "libc.a:lib_a-puts.o": {
  1456. "data": 0,
  1457. "bss": 0,
  1458. "iram": 0,
  1459. "flash_text": 182,
  1460. "flash_rodata": 60,
  1461. "total": 242
  1462. },
  1463. "libesp32.a:dport_panic_highint_hdl.o": {
  1464. "data": 8,
  1465. "bss": 0,
  1466. "iram": 234,
  1467. "flash_text": 0,
  1468. "flash_rodata": 0,
  1469. "total": 242
  1470. },
  1471. "libc.a:lib_a-reent.o": {
  1472. "data": 0,
  1473. "bss": 0,
  1474. "iram": 0,
  1475. "flash_text": 232,
  1476. "flash_rodata": 0,
  1477. "total": 232
  1478. },
  1479. "libc.a:lib_a-fopen.o": {
  1480. "data": 0,
  1481. "bss": 0,
  1482. "iram": 0,
  1483. "flash_text": 228,
  1484. "flash_rodata": 0,
  1485. "total": 228
  1486. },
  1487. "liblwip.a:dhcpserver.o": {
  1488. "data": 0,
  1489. "bss": 4,
  1490. "iram": 0,
  1491. "flash_text": 203,
  1492. "flash_rodata": 0,
  1493. "total": 207
  1494. },
  1495. "libunity.a:test_utils.o": {
  1496. "data": 0,
  1497. "bss": 0,
  1498. "iram": 0,
  1499. "flash_text": 38,
  1500. "flash_rodata": 140,
  1501. "total": 178
  1502. },
  1503. "libc.a:lib_a-sprintf.o": {
  1504. "data": 0,
  1505. "bss": 0,
  1506. "iram": 0,
  1507. "flash_text": 167,
  1508. "flash_rodata": 0,
  1509. "total": 167
  1510. },
  1511. "libesp32.a:cache_err_int.o": {
  1512. "data": 0,
  1513. "bss": 0,
  1514. "iram": 56,
  1515. "flash_text": 98,
  1516. "flash_rodata": 0,
  1517. "total": 154
  1518. },
  1519. "libfreertos.a:list.o": {
  1520. "data": 0,
  1521. "bss": 0,
  1522. "iram": 142,
  1523. "flash_text": 0,
  1524. "flash_rodata": 0,
  1525. "total": 142
  1526. },
  1527. "libfreertos.a:xtensa_intr.o": {
  1528. "data": 0,
  1529. "bss": 0,
  1530. "iram": 104,
  1531. "flash_text": 0,
  1532. "flash_rodata": 35,
  1533. "total": 139
  1534. },
  1535. "libnewlib.a:syscalls.o": {
  1536. "data": 0,
  1537. "bss": 0,
  1538. "iram": 94,
  1539. "flash_text": 45,
  1540. "flash_rodata": 0,
  1541. "total": 139
  1542. },
  1543. "libstdc++.a:si_class_type_info.o": {
  1544. "data": 0,
  1545. "bss": 0,
  1546. "iram": 0,
  1547. "flash_text": 0,
  1548. "flash_rodata": 136,
  1549. "total": 136
  1550. },
  1551. "libc.a:lib_a-assert.o": {
  1552. "data": 0,
  1553. "bss": 0,
  1554. "iram": 0,
  1555. "flash_text": 68,
  1556. "flash_rodata": 60,
  1557. "total": 128
  1558. },
  1559. "libc.a:lib_a-flags.o": {
  1560. "data": 0,
  1561. "bss": 0,
  1562. "iram": 0,
  1563. "flash_text": 127,
  1564. "flash_rodata": 0,
  1565. "total": 127
  1566. },
  1567. "libc.a:lib_a-printf.o": {
  1568. "data": 0,
  1569. "bss": 0,
  1570. "iram": 0,
  1571. "flash_text": 116,
  1572. "flash_rodata": 0,
  1573. "total": 116
  1574. },
  1575. "liblwip.a:ip4_addr.o": {
  1576. "data": 0,
  1577. "bss": 0,
  1578. "iram": 0,
  1579. "flash_text": 72,
  1580. "flash_rodata": 40,
  1581. "total": 112
  1582. },
  1583. "libstdc++.a:class_type_info.o": {
  1584. "data": 0,
  1585. "bss": 0,
  1586. "iram": 0,
  1587. "flash_text": 0,
  1588. "flash_rodata": 112,
  1589. "total": 112
  1590. },
  1591. "libc.a:lib_a-s_frexp.o": {
  1592. "data": 0,
  1593. "bss": 0,
  1594. "iram": 0,
  1595. "flash_text": 110,
  1596. "flash_rodata": 0,
  1597. "total": 110
  1598. },
  1599. "liblwip.a:ip.o": {
  1600. "data": 0,
  1601. "bss": 60,
  1602. "iram": 0,
  1603. "flash_text": 50,
  1604. "flash_rodata": 0,
  1605. "total": 110
  1606. },
  1607. "liblwip.a:memp.o": {
  1608. "data": 0,
  1609. "bss": 0,
  1610. "iram": 0,
  1611. "flash_text": 0,
  1612. "flash_rodata": 108,
  1613. "total": 108
  1614. },
  1615. "libgcc.a:lib2funcs.o": {
  1616. "data": 0,
  1617. "bss": 0,
  1618. "iram": 104,
  1619. "flash_text": 0,
  1620. "flash_rodata": 0,
  1621. "total": 104
  1622. },
  1623. "libc.a:lib_a-vprintf.o": {
  1624. "data": 0,
  1625. "bss": 0,
  1626. "iram": 0,
  1627. "flash_text": 94,
  1628. "flash_rodata": 0,
  1629. "total": 94
  1630. },
  1631. "libm.a:lib_a-s_fpclassify.o": {
  1632. "data": 0,
  1633. "bss": 0,
  1634. "iram": 92,
  1635. "flash_text": 0,
  1636. "flash_rodata": 0,
  1637. "total": 92
  1638. },
  1639. "liblwip.a:def.o": {
  1640. "data": 0,
  1641. "bss": 0,
  1642. "iram": 0,
  1643. "flash_text": 91,
  1644. "flash_rodata": 0,
  1645. "total": 91
  1646. },
  1647. "libc.a:lib_a-fiprintf.o": {
  1648. "data": 0,
  1649. "bss": 0,
  1650. "iram": 0,
  1651. "flash_text": 84,
  1652. "flash_rodata": 0,
  1653. "total": 84
  1654. },
  1655. "libesp32.a:hw_random.o": {
  1656. "data": 0,
  1657. "bss": 4,
  1658. "iram": 74,
  1659. "flash_text": 0,
  1660. "flash_rodata": 0,
  1661. "total": 78
  1662. },
  1663. "libesp32.a:stack_check.o": {
  1664. "data": 0,
  1665. "bss": 4,
  1666. "iram": 0,
  1667. "flash_text": 32,
  1668. "flash_rodata": 42,
  1669. "total": 78
  1670. },
  1671. "libhal.a:clock.o": {
  1672. "data": 0,
  1673. "bss": 0,
  1674. "iram": 72,
  1675. "flash_text": 0,
  1676. "flash_rodata": 0,
  1677. "total": 72
  1678. },
  1679. "libnewlib.a:reent_init.o": {
  1680. "data": 0,
  1681. "bss": 0,
  1682. "iram": 68,
  1683. "flash_text": 0,
  1684. "flash_rodata": 2,
  1685. "total": 70
  1686. },
  1687. "libmain.a:app_main.o": {
  1688. "data": 0,
  1689. "bss": 0,
  1690. "iram": 0,
  1691. "flash_text": 53,
  1692. "flash_rodata": 10,
  1693. "total": 63
  1694. },
  1695. "libhal.a:state_asm--restore_extra_nw.o": {
  1696. "data": 0,
  1697. "bss": 0,
  1698. "iram": 62,
  1699. "flash_text": 0,
  1700. "flash_rodata": 0,
  1701. "total": 62
  1702. },
  1703. "libhal.a:state_asm--save_extra_nw.o": {
  1704. "data": 0,
  1705. "bss": 0,
  1706. "iram": 62,
  1707. "flash_text": 0,
  1708. "flash_rodata": 0,
  1709. "total": 62
  1710. },
  1711. "libdriver.a:uart.o": {
  1712. "data": 8,
  1713. "bss": 12,
  1714. "iram": 0,
  1715. "flash_text": 38,
  1716. "flash_rodata": 0,
  1717. "total": 58
  1718. },
  1719. "libstdc++.a:new_opv.o": {
  1720. "data": 0,
  1721. "bss": 0,
  1722. "iram": 0,
  1723. "flash_text": 0,
  1724. "flash_rodata": 56,
  1725. "total": 56
  1726. },
  1727. "libfreertos.a:xtensa_vector_defaults.o": {
  1728. "data": 0,
  1729. "bss": 0,
  1730. "iram": 46,
  1731. "flash_text": 0,
  1732. "flash_rodata": 0,
  1733. "total": 46
  1734. },
  1735. "libc.a:lib_a-fseek.o": {
  1736. "data": 0,
  1737. "bss": 0,
  1738. "iram": 0,
  1739. "flash_text": 45,
  1740. "flash_rodata": 0,
  1741. "total": 45
  1742. },
  1743. "libgcc.a:_divdi3.o": {
  1744. "data": 0,
  1745. "bss": 0,
  1746. "iram": 0,
  1747. "flash_text": 0,
  1748. "flash_rodata": 40,
  1749. "total": 40
  1750. },
  1751. "libgcc.a:_moddi3.o": {
  1752. "data": 0,
  1753. "bss": 0,
  1754. "iram": 0,
  1755. "flash_text": 0,
  1756. "flash_rodata": 40,
  1757. "total": 40
  1758. },
  1759. "libgcc.a:_udivdi3.o": {
  1760. "data": 0,
  1761. "bss": 0,
  1762. "iram": 0,
  1763. "flash_text": 0,
  1764. "flash_rodata": 40,
  1765. "total": 40
  1766. },
  1767. "libgcc.a:_umoddi3.o": {
  1768. "data": 0,
  1769. "bss": 0,
  1770. "iram": 0,
  1771. "flash_text": 0,
  1772. "flash_rodata": 40,
  1773. "total": 40
  1774. },
  1775. "libstdc++.a:new_op.o": {
  1776. "data": 0,
  1777. "bss": 0,
  1778. "iram": 0,
  1779. "flash_text": 0,
  1780. "flash_rodata": 40,
  1781. "total": 40
  1782. },
  1783. "libfreertos.a:xtensa_init.o": {
  1784. "data": 0,
  1785. "bss": 4,
  1786. "iram": 32,
  1787. "flash_text": 0,
  1788. "flash_rodata": 0,
  1789. "total": 36
  1790. },
  1791. "libhal.a:interrupts--intlevel.o": {
  1792. "data": 0,
  1793. "bss": 0,
  1794. "iram": 0,
  1795. "flash_text": 0,
  1796. "flash_rodata": 32,
  1797. "total": 32
  1798. },
  1799. "liblwip.a:init.o": {
  1800. "data": 0,
  1801. "bss": 0,
  1802. "iram": 0,
  1803. "flash_text": 27,
  1804. "flash_rodata": 0,
  1805. "total": 27
  1806. },
  1807. "libesp32.a:wifi_init.o": {
  1808. "data": 0,
  1809. "bss": 0,
  1810. "iram": 0,
  1811. "flash_text": 17,
  1812. "flash_rodata": 9,
  1813. "total": 26
  1814. },
  1815. "liblwip.a:ip6_addr.o": {
  1816. "data": 0,
  1817. "bss": 0,
  1818. "iram": 0,
  1819. "flash_text": 0,
  1820. "flash_rodata": 20,
  1821. "total": 20
  1822. },
  1823. "libc.a:lib_a-errno.o": {
  1824. "data": 0,
  1825. "bss": 0,
  1826. "iram": 0,
  1827. "flash_text": 10,
  1828. "flash_rodata": 0,
  1829. "total": 10
  1830. },
  1831. "libhal.a:int_asm--set_intclear.o": {
  1832. "data": 0,
  1833. "bss": 0,
  1834. "iram": 8,
  1835. "flash_text": 0,
  1836. "flash_rodata": 0,
  1837. "total": 8
  1838. },
  1839. "libxtensa-debug-module.a:eri.o": {
  1840. "data": 0,
  1841. "bss": 0,
  1842. "iram": 8,
  1843. "flash_text": 0,
  1844. "flash_rodata": 0,
  1845. "total": 8
  1846. },
  1847. "libcxx.a:cxx_exception_stubs.o": {
  1848. "data": 0,
  1849. "bss": 0,
  1850. "iram": 0,
  1851. "flash_text": 6,
  1852. "flash_rodata": 0,
  1853. "total": 6
  1854. },
  1855. "libcxx.a:cxx_guards.o": {
  1856. "data": 0,
  1857. "bss": 0,
  1858. "iram": 0,
  1859. "flash_text": 5,
  1860. "flash_rodata": 0,
  1861. "total": 5
  1862. },
  1863. "libfreertos.a:FreeRTOS-openocd.o": {
  1864. "data": 4,
  1865. "bss": 0,
  1866. "iram": 0,
  1867. "flash_text": 0,
  1868. "flash_rodata": 0,
  1869. "total": 4
  1870. },
  1871. "libstdc++.a:eh_term_handler.o": {
  1872. "data": 4,
  1873. "bss": 0,
  1874. "iram": 0,
  1875. "flash_text": 0,
  1876. "flash_rodata": 0,
  1877. "total": 4
  1878. },
  1879. "libstdc++.a:eh_unex_handler.o": {
  1880. "data": 4,
  1881. "bss": 0,
  1882. "iram": 0,
  1883. "flash_text": 0,
  1884. "flash_rodata": 0,
  1885. "total": 4
  1886. },
  1887. "libbootloader_support.a:bootloader_flash.o": {
  1888. "data": 0,
  1889. "bss": 0,
  1890. "iram": 0,
  1891. "flash_text": 0,
  1892. "flash_rodata": 0,
  1893. "total": 0
  1894. },
  1895. "libbootloader_support.a:bootloader_sha.o": {
  1896. "data": 0,
  1897. "bss": 0,
  1898. "iram": 0,
  1899. "flash_text": 0,
  1900. "flash_rodata": 0,
  1901. "total": 0
  1902. },
  1903. "libbootloader_support.a:esp_image_format.o": {
  1904. "data": 0,
  1905. "bss": 0,
  1906. "iram": 0,
  1907. "flash_text": 0,
  1908. "flash_rodata": 0,
  1909. "total": 0
  1910. },
  1911. "libc.a:lib_a-fputs.o": {
  1912. "data": 0,
  1913. "bss": 0,
  1914. "iram": 0,
  1915. "flash_text": 0,
  1916. "flash_rodata": 0,
  1917. "total": 0
  1918. },
  1919. "libc.a:lib_a-snprintf.o": {
  1920. "data": 0,
  1921. "bss": 0,
  1922. "iram": 0,
  1923. "flash_text": 0,
  1924. "flash_rodata": 0,
  1925. "total": 0
  1926. },
  1927. "libc.a:lib_a-strerror.o": {
  1928. "data": 0,
  1929. "bss": 0,
  1930. "iram": 0,
  1931. "flash_text": 0,
  1932. "flash_rodata": 0,
  1933. "total": 0
  1934. },
  1935. "libc.a:lib_a-sysgettod.o": {
  1936. "data": 0,
  1937. "bss": 0,
  1938. "iram": 0,
  1939. "flash_text": 0,
  1940. "flash_rodata": 0,
  1941. "total": 0
  1942. },
  1943. "libc.a:lib_a-u_strerr.o": {
  1944. "data": 0,
  1945. "bss": 0,
  1946. "iram": 0,
  1947. "flash_text": 0,
  1948. "flash_rodata": 0,
  1949. "total": 0
  1950. },
  1951. "libc.a:lib_a-vsnprintf.o": {
  1952. "data": 0,
  1953. "bss": 0,
  1954. "iram": 0,
  1955. "flash_text": 0,
  1956. "flash_rodata": 0,
  1957. "total": 0
  1958. },
  1959. "libc.a:lib_a-xpg_strerror_r.o": {
  1960. "data": 0,
  1961. "bss": 0,
  1962. "iram": 0,
  1963. "flash_text": 0,
  1964. "flash_rodata": 0,
  1965. "total": 0
  1966. },
  1967. "libcoexist.a:coexist_api.o": {
  1968. "data": 0,
  1969. "bss": 0,
  1970. "iram": 0,
  1971. "flash_text": 0,
  1972. "flash_rodata": 0,
  1973. "total": 0
  1974. },
  1975. "libcoexist.a:coexist_arbit.o": {
  1976. "data": 0,
  1977. "bss": 0,
  1978. "iram": 0,
  1979. "flash_text": 0,
  1980. "flash_rodata": 0,
  1981. "total": 0
  1982. },
  1983. "libcoexist.a:coexist_core.o": {
  1984. "data": 0,
  1985. "bss": 0,
  1986. "iram": 0,
  1987. "flash_text": 0,
  1988. "flash_rodata": 0,
  1989. "total": 0
  1990. },
  1991. "libcoexist.a:coexist_dbg.o": {
  1992. "data": 0,
  1993. "bss": 0,
  1994. "iram": 0,
  1995. "flash_text": 0,
  1996. "flash_rodata": 0,
  1997. "total": 0
  1998. },
  1999. "libcoexist.a:coexist_hw.o": {
  2000. "data": 0,
  2001. "bss": 0,
  2002. "iram": 0,
  2003. "flash_text": 0,
  2004. "flash_rodata": 0,
  2005. "total": 0
  2006. },
  2007. "libcoexist.a:coexist_param.o": {
  2008. "data": 0,
  2009. "bss": 0,
  2010. "iram": 0,
  2011. "flash_text": 0,
  2012. "flash_rodata": 0,
  2013. "total": 0
  2014. },
  2015. "libcoexist.a:coexist_timer.o": {
  2016. "data": 0,
  2017. "bss": 0,
  2018. "iram": 0,
  2019. "flash_text": 0,
  2020. "flash_rodata": 0,
  2021. "total": 0
  2022. },
  2023. "libcore.a:misc_nvs.o": {
  2024. "data": 0,
  2025. "bss": 0,
  2026. "iram": 0,
  2027. "flash_text": 0,
  2028. "flash_rodata": 0,
  2029. "total": 0
  2030. },
  2031. "libdriver.a:gpio.o": {
  2032. "data": 0,
  2033. "bss": 0,
  2034. "iram": 0,
  2035. "flash_text": 0,
  2036. "flash_rodata": 0,
  2037. "total": 0
  2038. },
  2039. "libesp32.a:ets_timer_legacy.o": {
  2040. "data": 0,
  2041. "bss": 0,
  2042. "iram": 0,
  2043. "flash_text": 0,
  2044. "flash_rodata": 0,
  2045. "total": 0
  2046. },
  2047. "libesp32.a:event_default_handlers.o": {
  2048. "data": 0,
  2049. "bss": 0,
  2050. "iram": 0,
  2051. "flash_text": 0,
  2052. "flash_rodata": 0,
  2053. "total": 0
  2054. },
  2055. "libesp32.a:event_loop.o": {
  2056. "data": 0,
  2057. "bss": 0,
  2058. "iram": 0,
  2059. "flash_text": 0,
  2060. "flash_rodata": 0,
  2061. "total": 0
  2062. },
  2063. "libesp32.a:lib_printf.o": {
  2064. "data": 0,
  2065. "bss": 0,
  2066. "iram": 0,
  2067. "flash_text": 0,
  2068. "flash_rodata": 0,
  2069. "total": 0
  2070. },
  2071. "libesp32.a:phy_init.o": {
  2072. "data": 0,
  2073. "bss": 0,
  2074. "iram": 0,
  2075. "flash_text": 0,
  2076. "flash_rodata": 0,
  2077. "total": 0
  2078. },
  2079. "libesp32.a:sha.o": {
  2080. "data": 0,
  2081. "bss": 0,
  2082. "iram": 0,
  2083. "flash_text": 0,
  2084. "flash_rodata": 0,
  2085. "total": 0
  2086. },
  2087. "libesp32.a:wifi_os_adapter.o": {
  2088. "data": 0,
  2089. "bss": 0,
  2090. "iram": 0,
  2091. "flash_text": 0,
  2092. "flash_rodata": 0,
  2093. "total": 0
  2094. },
  2095. "libethernet.a:emac_dev.o": {
  2096. "data": 0,
  2097. "bss": 0,
  2098. "iram": 0,
  2099. "flash_text": 0,
  2100. "flash_rodata": 0,
  2101. "total": 0
  2102. },
  2103. "libethernet.a:emac_main.o": {
  2104. "data": 0,
  2105. "bss": 0,
  2106. "iram": 0,
  2107. "flash_text": 0,
  2108. "flash_rodata": 0,
  2109. "total": 0
  2110. },
  2111. "libfreertos.a:event_groups.o": {
  2112. "data": 0,
  2113. "bss": 0,
  2114. "iram": 0,
  2115. "flash_text": 0,
  2116. "flash_rodata": 0,
  2117. "total": 0
  2118. },
  2119. "libfreertos.a:ringbuf.o": {
  2120. "data": 0,
  2121. "bss": 0,
  2122. "iram": 0,
  2123. "flash_text": 0,
  2124. "flash_rodata": 0,
  2125. "total": 0
  2126. },
  2127. "libgcc.a:_addsubdf3.o": {
  2128. "data": 0,
  2129. "bss": 0,
  2130. "iram": 0,
  2131. "flash_text": 0,
  2132. "flash_rodata": 0,
  2133. "total": 0
  2134. },
  2135. "libgcc.a:_cmpdf2.o": {
  2136. "data": 0,
  2137. "bss": 0,
  2138. "iram": 0,
  2139. "flash_text": 0,
  2140. "flash_rodata": 0,
  2141. "total": 0
  2142. },
  2143. "libgcc.a:_divdf3.o": {
  2144. "data": 0,
  2145. "bss": 0,
  2146. "iram": 0,
  2147. "flash_text": 0,
  2148. "flash_rodata": 0,
  2149. "total": 0
  2150. },
  2151. "libgcc.a:_divsf3.o": {
  2152. "data": 0,
  2153. "bss": 0,
  2154. "iram": 0,
  2155. "flash_text": 0,
  2156. "flash_rodata": 0,
  2157. "total": 0
  2158. },
  2159. "libgcc.a:_extendsfdf2.o": {
  2160. "data": 0,
  2161. "bss": 0,
  2162. "iram": 0,
  2163. "flash_text": 0,
  2164. "flash_rodata": 0,
  2165. "total": 0
  2166. },
  2167. "libgcc.a:_fixdfsi.o": {
  2168. "data": 0,
  2169. "bss": 0,
  2170. "iram": 0,
  2171. "flash_text": 0,
  2172. "flash_rodata": 0,
  2173. "total": 0
  2174. },
  2175. "libgcc.a:_floatdidf.o": {
  2176. "data": 0,
  2177. "bss": 0,
  2178. "iram": 0,
  2179. "flash_text": 0,
  2180. "flash_rodata": 0,
  2181. "total": 0
  2182. },
  2183. "libgcc.a:_floatdisf.o": {
  2184. "data": 0,
  2185. "bss": 0,
  2186. "iram": 0,
  2187. "flash_text": 0,
  2188. "flash_rodata": 0,
  2189. "total": 0
  2190. },
  2191. "libgcc.a:_floatsidf.o": {
  2192. "data": 0,
  2193. "bss": 0,
  2194. "iram": 0,
  2195. "flash_text": 0,
  2196. "flash_rodata": 0,
  2197. "total": 0
  2198. },
  2199. "libgcc.a:_muldf3.o": {
  2200. "data": 0,
  2201. "bss": 0,
  2202. "iram": 0,
  2203. "flash_text": 0,
  2204. "flash_rodata": 0,
  2205. "total": 0
  2206. },
  2207. "libgcc.a:_popcountsi2.o": {
  2208. "data": 0,
  2209. "bss": 0,
  2210. "iram": 0,
  2211. "flash_text": 0,
  2212. "flash_rodata": 0,
  2213. "total": 0
  2214. },
  2215. "liblwip.a:ethernetif.o": {
  2216. "data": 0,
  2217. "bss": 0,
  2218. "iram": 0,
  2219. "flash_text": 0,
  2220. "flash_rodata": 0,
  2221. "total": 0
  2222. },
  2223. "liblwip.a:ethip6.o": {
  2224. "data": 0,
  2225. "bss": 0,
  2226. "iram": 0,
  2227. "flash_text": 0,
  2228. "flash_rodata": 0,
  2229. "total": 0
  2230. },
  2231. "liblwip.a:wlanif.o": {
  2232. "data": 0,
  2233. "bss": 0,
  2234. "iram": 0,
  2235. "flash_text": 0,
  2236. "flash_rodata": 0,
  2237. "total": 0
  2238. },
  2239. "libmbedtls.a:esp_sha256.o": {
  2240. "data": 0,
  2241. "bss": 0,
  2242. "iram": 0,
  2243. "flash_text": 0,
  2244. "flash_rodata": 0,
  2245. "total": 0
  2246. },
  2247. "libmesh.a:mesh.o": {
  2248. "data": 0,
  2249. "bss": 0,
  2250. "iram": 0,
  2251. "flash_text": 0,
  2252. "flash_rodata": 0,
  2253. "total": 0
  2254. },
  2255. "libmesh.a:mesh_common.o": {
  2256. "data": 0,
  2257. "bss": 0,
  2258. "iram": 0,
  2259. "flash_text": 0,
  2260. "flash_rodata": 0,
  2261. "total": 0
  2262. },
  2263. "libmesh.a:mesh_config.o": {
  2264. "data": 0,
  2265. "bss": 0,
  2266. "iram": 0,
  2267. "flash_text": 0,
  2268. "flash_rodata": 0,
  2269. "total": 0
  2270. },
  2271. "libmesh.a:mesh_main.o": {
  2272. "data": 0,
  2273. "bss": 0,
  2274. "iram": 0,
  2275. "flash_text": 0,
  2276. "flash_rodata": 0,
  2277. "total": 0
  2278. },
  2279. "libmesh.a:mesh_parent.o": {
  2280. "data": 0,
  2281. "bss": 0,
  2282. "iram": 0,
  2283. "flash_text": 0,
  2284. "flash_rodata": 0,
  2285. "total": 0
  2286. },
  2287. "libmesh.a:mesh_route.o": {
  2288. "data": 0,
  2289. "bss": 0,
  2290. "iram": 0,
  2291. "flash_text": 0,
  2292. "flash_rodata": 0,
  2293. "total": 0
  2294. },
  2295. "libmesh.a:mesh_schedule.o": {
  2296. "data": 0,
  2297. "bss": 0,
  2298. "iram": 0,
  2299. "flash_text": 0,
  2300. "flash_rodata": 0,
  2301. "total": 0
  2302. },
  2303. "libmesh.a:mesh_timer.o": {
  2304. "data": 0,
  2305. "bss": 0,
  2306. "iram": 0,
  2307. "flash_text": 0,
  2308. "flash_rodata": 0,
  2309. "total": 0
  2310. },
  2311. "libmesh.a:mesh_utilities.o": {
  2312. "data": 0,
  2313. "bss": 0,
  2314. "iram": 0,
  2315. "flash_text": 0,
  2316. "flash_rodata": 0,
  2317. "total": 0
  2318. },
  2319. "libmesh.a:mesh_wifi.o": {
  2320. "data": 0,
  2321. "bss": 0,
  2322. "iram": 0,
  2323. "flash_text": 0,
  2324. "flash_rodata": 0,
  2325. "total": 0
  2326. },
  2327. "libnet80211.a:ieee80211.o": {
  2328. "data": 0,
  2329. "bss": 0,
  2330. "iram": 0,
  2331. "flash_text": 0,
  2332. "flash_rodata": 0,
  2333. "total": 0
  2334. },
  2335. "libnet80211.a:ieee80211_action.o": {
  2336. "data": 0,
  2337. "bss": 0,
  2338. "iram": 0,
  2339. "flash_text": 0,
  2340. "flash_rodata": 0,
  2341. "total": 0
  2342. },
  2343. "libnet80211.a:ieee80211_action_vendor.o": {
  2344. "data": 0,
  2345. "bss": 0,
  2346. "iram": 0,
  2347. "flash_text": 0,
  2348. "flash_rodata": 0,
  2349. "total": 0
  2350. },
  2351. "libnet80211.a:ieee80211_api.o": {
  2352. "data": 0,
  2353. "bss": 0,
  2354. "iram": 0,
  2355. "flash_text": 0,
  2356. "flash_rodata": 0,
  2357. "total": 0
  2358. },
  2359. "libnet80211.a:ieee80211_crypto.o": {
  2360. "data": 0,
  2361. "bss": 0,
  2362. "iram": 0,
  2363. "flash_text": 0,
  2364. "flash_rodata": 0,
  2365. "total": 0
  2366. },
  2367. "libnet80211.a:ieee80211_crypto_ccmp.o": {
  2368. "data": 0,
  2369. "bss": 0,
  2370. "iram": 0,
  2371. "flash_text": 0,
  2372. "flash_rodata": 0,
  2373. "total": 0
  2374. },
  2375. "libnet80211.a:ieee80211_crypto_tkip.o": {
  2376. "data": 0,
  2377. "bss": 0,
  2378. "iram": 0,
  2379. "flash_text": 0,
  2380. "flash_rodata": 0,
  2381. "total": 0
  2382. },
  2383. "libnet80211.a:ieee80211_crypto_wep.o": {
  2384. "data": 0,
  2385. "bss": 0,
  2386. "iram": 0,
  2387. "flash_text": 0,
  2388. "flash_rodata": 0,
  2389. "total": 0
  2390. },
  2391. "libnet80211.a:ieee80211_debug.o": {
  2392. "data": 0,
  2393. "bss": 0,
  2394. "iram": 0,
  2395. "flash_text": 0,
  2396. "flash_rodata": 0,
  2397. "total": 0
  2398. },
  2399. "libnet80211.a:ieee80211_ets.o": {
  2400. "data": 0,
  2401. "bss": 0,
  2402. "iram": 0,
  2403. "flash_text": 0,
  2404. "flash_rodata": 0,
  2405. "total": 0
  2406. },
  2407. "libnet80211.a:ieee80211_hostap.o": {
  2408. "data": 0,
  2409. "bss": 0,
  2410. "iram": 0,
  2411. "flash_text": 0,
  2412. "flash_rodata": 0,
  2413. "total": 0
  2414. },
  2415. "libnet80211.a:ieee80211_ht.o": {
  2416. "data": 0,
  2417. "bss": 0,
  2418. "iram": 0,
  2419. "flash_text": 0,
  2420. "flash_rodata": 0,
  2421. "total": 0
  2422. },
  2423. "libnet80211.a:ieee80211_ie_vendor.o": {
  2424. "data": 0,
  2425. "bss": 0,
  2426. "iram": 0,
  2427. "flash_text": 0,
  2428. "flash_rodata": 0,
  2429. "total": 0
  2430. },
  2431. "libnet80211.a:ieee80211_input.o": {
  2432. "data": 0,
  2433. "bss": 0,
  2434. "iram": 0,
  2435. "flash_text": 0,
  2436. "flash_rodata": 0,
  2437. "total": 0
  2438. },
  2439. "libnet80211.a:ieee80211_ioctl.o": {
  2440. "data": 0,
  2441. "bss": 0,
  2442. "iram": 0,
  2443. "flash_text": 0,
  2444. "flash_rodata": 0,
  2445. "total": 0
  2446. },
  2447. "libnet80211.a:ieee80211_mesh_quick.o": {
  2448. "data": 0,
  2449. "bss": 0,
  2450. "iram": 0,
  2451. "flash_text": 0,
  2452. "flash_rodata": 0,
  2453. "total": 0
  2454. },
  2455. "libnet80211.a:ieee80211_misc.o": {
  2456. "data": 0,
  2457. "bss": 0,
  2458. "iram": 0,
  2459. "flash_text": 0,
  2460. "flash_rodata": 0,
  2461. "total": 0
  2462. },
  2463. "libnet80211.a:ieee80211_nvs.o": {
  2464. "data": 0,
  2465. "bss": 0,
  2466. "iram": 0,
  2467. "flash_text": 0,
  2468. "flash_rodata": 0,
  2469. "total": 0
  2470. },
  2471. "libnet80211.a:ieee80211_output.o": {
  2472. "data": 0,
  2473. "bss": 0,
  2474. "iram": 0,
  2475. "flash_text": 0,
  2476. "flash_rodata": 0,
  2477. "total": 0
  2478. },
  2479. "libnet80211.a:ieee80211_phy.o": {
  2480. "data": 0,
  2481. "bss": 0,
  2482. "iram": 0,
  2483. "flash_text": 0,
  2484. "flash_rodata": 0,
  2485. "total": 0
  2486. },
  2487. "libnet80211.a:ieee80211_power.o": {
  2488. "data": 0,
  2489. "bss": 0,
  2490. "iram": 0,
  2491. "flash_text": 0,
  2492. "flash_rodata": 0,
  2493. "total": 0
  2494. },
  2495. "libnet80211.a:ieee80211_proto.o": {
  2496. "data": 0,
  2497. "bss": 0,
  2498. "iram": 0,
  2499. "flash_text": 0,
  2500. "flash_rodata": 0,
  2501. "total": 0
  2502. },
  2503. "libnet80211.a:ieee80211_regdomain.o": {
  2504. "data": 0,
  2505. "bss": 0,
  2506. "iram": 0,
  2507. "flash_text": 0,
  2508. "flash_rodata": 0,
  2509. "total": 0
  2510. },
  2511. "libnet80211.a:ieee80211_rfid.o": {
  2512. "data": 0,
  2513. "bss": 0,
  2514. "iram": 0,
  2515. "flash_text": 0,
  2516. "flash_rodata": 0,
  2517. "total": 0
  2518. },
  2519. "libnet80211.a:ieee80211_scan.o": {
  2520. "data": 0,
  2521. "bss": 0,
  2522. "iram": 0,
  2523. "flash_text": 0,
  2524. "flash_rodata": 0,
  2525. "total": 0
  2526. },
  2527. "libnet80211.a:ieee80211_sta.o": {
  2528. "data": 0,
  2529. "bss": 0,
  2530. "iram": 0,
  2531. "flash_text": 0,
  2532. "flash_rodata": 0,
  2533. "total": 0
  2534. },
  2535. "libnet80211.a:ieee80211_timer.o": {
  2536. "data": 0,
  2537. "bss": 0,
  2538. "iram": 0,
  2539. "flash_text": 0,
  2540. "flash_rodata": 0,
  2541. "total": 0
  2542. },
  2543. "libnet80211.a:wl_chm.o": {
  2544. "data": 0,
  2545. "bss": 0,
  2546. "iram": 0,
  2547. "flash_text": 0,
  2548. "flash_rodata": 0,
  2549. "total": 0
  2550. },
  2551. "libnet80211.a:wl_cnx.o": {
  2552. "data": 0,
  2553. "bss": 0,
  2554. "iram": 0,
  2555. "flash_text": 0,
  2556. "flash_rodata": 0,
  2557. "total": 0
  2558. },
  2559. "libnvs_flash.a:nvs_api.o": {
  2560. "data": 0,
  2561. "bss": 0,
  2562. "iram": 0,
  2563. "flash_text": 0,
  2564. "flash_rodata": 0,
  2565. "total": 0
  2566. },
  2567. "libnvs_flash.a:nvs_item_hash_list.o": {
  2568. "data": 0,
  2569. "bss": 0,
  2570. "iram": 0,
  2571. "flash_text": 0,
  2572. "flash_rodata": 0,
  2573. "total": 0
  2574. },
  2575. "libnvs_flash.a:nvs_page.o": {
  2576. "data": 0,
  2577. "bss": 0,
  2578. "iram": 0,
  2579. "flash_text": 0,
  2580. "flash_rodata": 0,
  2581. "total": 0
  2582. },
  2583. "libnvs_flash.a:nvs_pagemanager.o": {
  2584. "data": 0,
  2585. "bss": 0,
  2586. "iram": 0,
  2587. "flash_text": 0,
  2588. "flash_rodata": 0,
  2589. "total": 0
  2590. },
  2591. "libnvs_flash.a:nvs_storage.o": {
  2592. "data": 0,
  2593. "bss": 0,
  2594. "iram": 0,
  2595. "flash_text": 0,
  2596. "flash_rodata": 0,
  2597. "total": 0
  2598. },
  2599. "libnvs_flash.a:nvs_types.o": {
  2600. "data": 0,
  2601. "bss": 0,
  2602. "iram": 0,
  2603. "flash_text": 0,
  2604. "flash_rodata": 0,
  2605. "total": 0
  2606. },
  2607. "libphy.a:phy.o": {
  2608. "data": 0,
  2609. "bss": 0,
  2610. "iram": 0,
  2611. "flash_text": 0,
  2612. "flash_rodata": 0,
  2613. "total": 0
  2614. },
  2615. "libphy.a:phy_chip_v7.o": {
  2616. "data": 0,
  2617. "bss": 0,
  2618. "iram": 0,
  2619. "flash_text": 0,
  2620. "flash_rodata": 0,
  2621. "total": 0
  2622. },
  2623. "libphy.a:phy_chip_v7_ana.o": {
  2624. "data": 0,
  2625. "bss": 0,
  2626. "iram": 0,
  2627. "flash_text": 0,
  2628. "flash_rodata": 0,
  2629. "total": 0
  2630. },
  2631. "libphy.a:phy_chip_v7_cal.o": {
  2632. "data": 0,
  2633. "bss": 0,
  2634. "iram": 0,
  2635. "flash_text": 0,
  2636. "flash_rodata": 0,
  2637. "total": 0
  2638. },
  2639. "libpp.a:esf_buf.o": {
  2640. "data": 0,
  2641. "bss": 0,
  2642. "iram": 0,
  2643. "flash_text": 0,
  2644. "flash_rodata": 0,
  2645. "total": 0
  2646. },
  2647. "libpp.a:if_hwctrl.o": {
  2648. "data": 0,
  2649. "bss": 0,
  2650. "iram": 0,
  2651. "flash_text": 0,
  2652. "flash_rodata": 0,
  2653. "total": 0
  2654. },
  2655. "libpp.a:lmac.o": {
  2656. "data": 0,
  2657. "bss": 0,
  2658. "iram": 0,
  2659. "flash_text": 0,
  2660. "flash_rodata": 0,
  2661. "total": 0
  2662. },
  2663. "libpp.a:pm.o": {
  2664. "data": 0,
  2665. "bss": 0,
  2666. "iram": 0,
  2667. "flash_text": 0,
  2668. "flash_rodata": 0,
  2669. "total": 0
  2670. },
  2671. "libpp.a:pm_for_bcn_only_mode.o": {
  2672. "data": 0,
  2673. "bss": 0,
  2674. "iram": 0,
  2675. "flash_text": 0,
  2676. "flash_rodata": 0,
  2677. "total": 0
  2678. },
  2679. "libpp.a:pp.o": {
  2680. "data": 0,
  2681. "bss": 0,
  2682. "iram": 0,
  2683. "flash_text": 0,
  2684. "flash_rodata": 0,
  2685. "total": 0
  2686. },
  2687. "libpp.a:pp_debug.o": {
  2688. "data": 0,
  2689. "bss": 0,
  2690. "iram": 0,
  2691. "flash_text": 0,
  2692. "flash_rodata": 0,
  2693. "total": 0
  2694. },
  2695. "libpp.a:pp_timer.o": {
  2696. "data": 0,
  2697. "bss": 0,
  2698. "iram": 0,
  2699. "flash_text": 0,
  2700. "flash_rodata": 0,
  2701. "total": 0
  2702. },
  2703. "libpp.a:rate_control.o": {
  2704. "data": 0,
  2705. "bss": 0,
  2706. "iram": 0,
  2707. "flash_text": 0,
  2708. "flash_rodata": 0,
  2709. "total": 0
  2710. },
  2711. "libpp.a:trc.o": {
  2712. "data": 0,
  2713. "bss": 0,
  2714. "iram": 0,
  2715. "flash_text": 0,
  2716. "flash_rodata": 0,
  2717. "total": 0
  2718. },
  2719. "libpp.a:wdev.o": {
  2720. "data": 0,
  2721. "bss": 0,
  2722. "iram": 0,
  2723. "flash_text": 0,
  2724. "flash_rodata": 0,
  2725. "total": 0
  2726. },
  2727. "librtc.a:bt_bb.o": {
  2728. "data": 0,
  2729. "bss": 0,
  2730. "iram": 0,
  2731. "flash_text": 0,
  2732. "flash_rodata": 0,
  2733. "total": 0
  2734. },
  2735. "librtc.a:pm.o": {
  2736. "data": 0,
  2737. "bss": 0,
  2738. "iram": 0,
  2739. "flash_text": 0,
  2740. "flash_rodata": 0,
  2741. "total": 0
  2742. },
  2743. "librtc.a:rtc.o": {
  2744. "data": 0,
  2745. "bss": 0,
  2746. "iram": 0,
  2747. "flash_text": 0,
  2748. "flash_rodata": 0,
  2749. "total": 0
  2750. },
  2751. "librtc.a:rtc_analog.o": {
  2752. "data": 0,
  2753. "bss": 0,
  2754. "iram": 0,
  2755. "flash_text": 0,
  2756. "flash_rodata": 0,
  2757. "total": 0
  2758. },
  2759. "libsmartconfig_ack.a:smartconfig_ack.o": {
  2760. "data": 0,
  2761. "bss": 0,
  2762. "iram": 0,
  2763. "flash_text": 0,
  2764. "flash_rodata": 0,
  2765. "total": 0
  2766. },
  2767. "libsoc.a:gpio_periph.o": {
  2768. "data": 0,
  2769. "bss": 0,
  2770. "iram": 0,
  2771. "flash_text": 0,
  2772. "flash_rodata": 0,
  2773. "total": 0
  2774. },
  2775. "libsoc.a:rtc_sleep.o": {
  2776. "data": 0,
  2777. "bss": 0,
  2778. "iram": 0,
  2779. "flash_text": 0,
  2780. "flash_rodata": 0,
  2781. "total": 0
  2782. },
  2783. "libstdc++.a:bad_alloc.o": {
  2784. "data": 0,
  2785. "bss": 0,
  2786. "iram": 0,
  2787. "flash_text": 0,
  2788. "flash_rodata": 0,
  2789. "total": 0
  2790. },
  2791. "libstdc++.a:del_op.o": {
  2792. "data": 0,
  2793. "bss": 0,
  2794. "iram": 0,
  2795. "flash_text": 0,
  2796. "flash_rodata": 0,
  2797. "total": 0
  2798. },
  2799. "libstdc++.a:del_opv.o": {
  2800. "data": 0,
  2801. "bss": 0,
  2802. "iram": 0,
  2803. "flash_text": 0,
  2804. "flash_rodata": 0,
  2805. "total": 0
  2806. },
  2807. "libstdc++.a:eh_exception.o": {
  2808. "data": 0,
  2809. "bss": 0,
  2810. "iram": 0,
  2811. "flash_text": 0,
  2812. "flash_rodata": 0,
  2813. "total": 0
  2814. },
  2815. "libstdc++.a:new_handler.o": {
  2816. "data": 0,
  2817. "bss": 0,
  2818. "iram": 0,
  2819. "flash_text": 0,
  2820. "flash_rodata": 0,
  2821. "total": 0
  2822. },
  2823. "libstdc++.a:pure.o": {
  2824. "data": 0,
  2825. "bss": 0,
  2826. "iram": 0,
  2827. "flash_text": 0,
  2828. "flash_rodata": 0,
  2829. "total": 0
  2830. },
  2831. "libstdc++.a:tinfo.o": {
  2832. "data": 0,
  2833. "bss": 0,
  2834. "iram": 0,
  2835. "flash_text": 0,
  2836. "flash_rodata": 0,
  2837. "total": 0
  2838. },
  2839. "libwpa.a:ap_config.o": {
  2840. "data": 0,
  2841. "bss": 0,
  2842. "iram": 0,
  2843. "flash_text": 0,
  2844. "flash_rodata": 0,
  2845. "total": 0
  2846. },
  2847. "libwpa.a:common.o": {
  2848. "data": 0,
  2849. "bss": 0,
  2850. "iram": 0,
  2851. "flash_text": 0,
  2852. "flash_rodata": 0,
  2853. "total": 0
  2854. },
  2855. "libwpa.a:wpa.o": {
  2856. "data": 0,
  2857. "bss": 0,
  2858. "iram": 0,
  2859. "flash_text": 0,
  2860. "flash_rodata": 0,
  2861. "total": 0
  2862. },
  2863. "libwpa.a:wpa_auth.o": {
  2864. "data": 0,
  2865. "bss": 0,
  2866. "iram": 0,
  2867. "flash_text": 0,
  2868. "flash_rodata": 0,
  2869. "total": 0
  2870. },
  2871. "libwpa.a:wpa_auth_ie.o": {
  2872. "data": 0,
  2873. "bss": 0,
  2874. "iram": 0,
  2875. "flash_text": 0,
  2876. "flash_rodata": 0,
  2877. "total": 0
  2878. },
  2879. "libwpa.a:wpa_common.o": {
  2880. "data": 0,
  2881. "bss": 0,
  2882. "iram": 0,
  2883. "flash_text": 0,
  2884. "flash_rodata": 0,
  2885. "total": 0
  2886. },
  2887. "libwpa.a:wpa_debug.o": {
  2888. "data": 0,
  2889. "bss": 0,
  2890. "iram": 0,
  2891. "flash_text": 0,
  2892. "flash_rodata": 0,
  2893. "total": 0
  2894. },
  2895. "libwpa.a:wpa_ie.o": {
  2896. "data": 0,
  2897. "bss": 0,
  2898. "iram": 0,
  2899. "flash_text": 0,
  2900. "flash_rodata": 0,
  2901. "total": 0
  2902. },
  2903. "libwpa.a:wpa_main.o": {
  2904. "data": 0,
  2905. "bss": 0,
  2906. "iram": 0,
  2907. "flash_text": 0,
  2908. "flash_rodata": 0,
  2909. "total": 0
  2910. },
  2911. "libwpa.a:wpabuf.o": {
  2912. "data": 0,
  2913. "bss": 0,
  2914. "iram": 0,
  2915. "flash_text": 0,
  2916. "flash_rodata": 0,
  2917. "total": 0
  2918. },
  2919. "libwpa.a:wpas_glue.o": {
  2920. "data": 0,
  2921. "bss": 0,
  2922. "iram": 0,
  2923. "flash_text": 0,
  2924. "flash_rodata": 0,
  2925. "total": 0
  2926. },
  2927. "libwpa2.a:wpa2_internal.o": {
  2928. "data": 0,
  2929. "bss": 0,
  2930. "iram": 0,
  2931. "flash_text": 0,
  2932. "flash_rodata": 0,
  2933. "total": 0
  2934. },
  2935. "libwpa_supplicant.a:os_xtensa.o": {
  2936. "data": 0,
  2937. "bss": 0,
  2938. "iram": 0,
  2939. "flash_text": 0,
  2940. "flash_rodata": 0,
  2941. "total": 0
  2942. },
  2943. "libwps.a:wps_internal.o": {
  2944. "data": 0,
  2945. "bss": 0,
  2946. "iram": 0,
  2947. "flash_text": 0,
  2948. "flash_rodata": 0,
  2949. "total": 0
  2950. }
  2951. }
  2952. {
  2953. ".dram0.data": {
  2954. "timer_spinlock": 16,
  2955. "periph_spinlock": 8,
  2956. "s_rtc_isr_handler_list_lock": 8,
  2957. "uart_selectlock": 8
  2958. },
  2959. ".dram0.bss": {
  2960. "p_uart_obj": 12,
  2961. "s_rtc_isr_handle": 4,
  2962. "s_rtc_isr_handler_list": 4
  2963. },
  2964. ".iram0.text": {},
  2965. ".iram0.vectors": {},
  2966. ".flash.text": {
  2967. "get_clk_en_mask": 211,
  2968. "get_rst_en_mask": 157,
  2969. "timer_group_intr_enable": 112,
  2970. "rtc_isr": 86,
  2971. "periph_module_enable": 78,
  2972. "rtc_isr_ensure_installed": 75,
  2973. "rtc_gpio_force_hold_dis_all": 65,
  2974. "rtc_isr_register": 65,
  2975. "is_wifi_clk_peripheral": 28,
  2976. "uart_set_select_notif_callback": 26,
  2977. "get_rst_en_reg": 25,
  2978. "get_clk_en_reg": 21,
  2979. "uart_get_selectlock": 12
  2980. },
  2981. ".flash.rodata": {
  2982. "str1.4": 249,
  2983. "get_clk_en_mask": 128,
  2984. "get_rst_en_mask": 128,
  2985. "__FUNCTION__$5441": 24,
  2986. "TG": 8
  2987. }
  2988. }
  2989. ***
  2990. Producing JSON file output...
  2991. ***
  2992. Producing text file output...
  2993. ***
  2994. Running idf_size_tests.py...
  2995. Total sizes:
  2996. DRAM .data size: 0 bytes
  2997. DRAM .bss size: 0 bytes
  2998. Used static DRAM: 0 bytes ( 0 available, nan% used)
  2999. Used static IRAM: 0 bytes ( 0 available, nan% used)
  3000. Flash code: 0 bytes
  3001. Flash rodata: 0 bytes
  3002. Total image size:~ 0 bytes (.bin may be padded larger)