expected_output 83 KB

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