bootloader.map 430 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076
  1. Archive member included to satisfy reference by file (symbol)
  2. esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3. (__assert_func)
  4. esp-idf/main/libmain.a(bootloader_start.c.obj)
  5. (call_start_cpu0)
  6. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  7. esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_utility_load_partition_table)
  8. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  9. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_load_image)
  10. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  11. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_flash_encryption_enabled)
  12. esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  13. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (esp_partition_table_verify)
  14. esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  15. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_console_deinit)
  16. esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  17. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_sha256_start)
  18. esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  19. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_ana_clock_glitch_reset_config)
  20. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  21. esp-idf/main/libmain.a(bootloader_start.c.obj) (bootloader_init)
  22. esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  23. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_common_ota_select_crc)
  24. esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  25. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_clock_configure)
  26. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  27. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_mmap_get_free_pages)
  28. esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  29. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_init_mem)
  30. esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  31. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (bootloader_fill_random)
  32. esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  33. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (bootloader_random_disable)
  34. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  35. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_flash_update_id)
  36. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  37. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_clear_bss_section)
  38. esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  39. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (bootloader_console_init)
  40. esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  41. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (ESP_EFUSE_SPI_BOOT_CRYPT_CNT)
  42. esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  43. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_enable_rom_secure_download_mode)
  44. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  45. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj) (esp_efuse_read_field_blob)
  46. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  47. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj) (esp_efuse_utility_process)
  48. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  49. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_utility_clear_program_registers)
  50. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  51. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (esp_efuse_get_coding_scheme)
  52. esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  53. esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj) (esp_cpu_configure_region_protection)
  54. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  55. esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj) (rtc_clk_init)
  56. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  57. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj) (rtc_clk_32k_enable)
  58. esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  59. esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) (esp_rom_install_uart_printf)
  60. esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  61. esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj) (esp_rom_uart_set_clock_baudrate)
  62. esp-idf/log/liblog.a(log_noos.c.obj)
  63. esp-idf/main/libmain.a(bootloader_start.c.obj) (esp_log_timestamp)
  64. esp-idf/hal/libhal.a(efuse_hal.c.obj)
  65. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (efuse_hal_chip_revision)
  66. esp-idf/hal/libhal.a(efuse_hal.c.obj)
  67. esp-idf/hal/libhal.a(efuse_hal.c.obj) (efuse_hal_get_major_chip_version)
  68. esp-idf/hal/libhal.a(mmu_hal.c.obj)
  69. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (mmu_hal_init)
  70. esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  71. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (wdt_hal_init)
  72. esp-idf/hal/libhal.a(cache_hal.c.obj)
  73. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj) (cache_hal_init)
  74. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  75. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__lshrdi3)
  76. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  77. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__ashldi3)
  78. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  79. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj) (__popcountsi2)
  80. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  81. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (__divdi3)
  82. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  83. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj) (__udivdi3)
  84. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  85. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o) (__clz_tab)
  86. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  87. esp-idf/main/libmain.a(bootloader_start.c.obj) (_global_impure_ptr)
  88. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  89. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj) (memcmp)
  90. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  91. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj) (memcpy)
  92. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  93. esp-idf/main/libmain.a(bootloader_start.c.obj) (memset)
  94. Discarded input sections
  95. .text 0x0000000000000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj
  96. .data 0x0000000000000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj
  97. .bss 0x0000000000000000 0x0 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj
  98. .comment 0x0000000000000000 0x27 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj
  99. .riscv.attributes
  100. 0x0000000000000000 0x26 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj
  101. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  102. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  103. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  104. .text 0x0000000000000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj)
  105. .data 0x0000000000000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj)
  106. .bss 0x0000000000000000 0x0 esp-idf/main/libmain.a(bootloader_start.c.obj)
  107. .text.__getreent
  108. 0x0000000000000000 0xa esp-idf/main/libmain.a(bootloader_start.c.obj)
  109. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  110. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  111. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  112. .text.bootloader_common_get_partition_description
  113. 0x0000000000000000 0x9e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  114. .text.bootloader_atexit
  115. 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  116. .text.bootloader_sha256_hex_to_str
  117. 0x0000000000000000 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  118. .text.bootloader_sha256_flash_contents
  119. 0x0000000000000000 0xba esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  120. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  121. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  122. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  123. .text.bootloader_load_image_no_verify
  124. 0x0000000000000000 0xe esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  125. .text.esp_image_verify
  126. 0x0000000000000000 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  127. .text.esp_image_get_metadata
  128. 0x0000000000000000 0xc4 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  129. .text.esp_image_verify_bootloader_data
  130. 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  131. .text.esp_image_verify_bootloader
  132. 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  133. .text.esp_image_get_flash_size
  134. 0x0000000000000000 0x58 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  135. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  136. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  137. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  138. .text.esp_flash_write_protect_crypt_cnt
  139. 0x0000000000000000 0x10 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  140. .text.esp_get_flash_encryption_mode
  141. 0x0000000000000000 0x92 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  142. .rodata.esp_flash_encryption_set_release_mode.str1.4
  143. 0x0000000000000000 0xd9 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  144. .text.esp_flash_encryption_set_release_mode
  145. 0x0000000000000000 0x114 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  146. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  147. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  148. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  149. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  150. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  151. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  152. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  153. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  154. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  155. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  156. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  157. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  158. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  159. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  160. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  161. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  162. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  163. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  164. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  165. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  166. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  167. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  168. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  169. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  170. .text.bootloader_flash_erase_range
  171. 0x0000000000000000 0x7e esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  172. .text.bootloader_spi_flash_reset
  173. 0x0000000000000000 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  174. .iram1.7 0x0000000000000000 0x8a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  175. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  176. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  177. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  178. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  179. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  180. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  181. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  182. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  183. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  184. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  185. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  186. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  187. .iram1.1 0x0000000000000000 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  188. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  189. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  190. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  191. .text 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  192. .data 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  193. .bss 0x0000000000000000 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  194. .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  195. .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  196. .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  197. .data.ESP_EFUSE_MAC_FACTORY
  198. 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  199. .data.ESP_EFUSE_WAFER_VERSION_MINOR
  200. 0x0000000000000000 0xc esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  201. .rodata.MAC_FACTORY
  202. 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  203. .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN0
  204. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  205. .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN1
  206. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  207. .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN2
  208. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  209. .sdata.ESP_EFUSE_ADC1_CAL_VOL_ATTEN3
  210. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  211. .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN0
  212. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  213. .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN1
  214. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  215. .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN2
  216. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  217. .sdata.ESP_EFUSE_ADC1_INIT_CODE_ATTEN3
  218. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  219. .sdata.ESP_EFUSE_BLK_VERSION_MAJOR
  220. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  221. .sdata.ESP_EFUSE_BLK_VERSION_MINOR
  222. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  223. .sdata.ESP_EFUSE_BTLC_GPIO_ENABLE
  224. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  225. .sdata.ESP_EFUSE_DIG_DBIAS_HVT
  226. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  227. .sdata.ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR
  228. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  229. .sdata.ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR
  230. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  231. .sdata.ESP_EFUSE_DIS_CAN
  232. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  233. .sdata.ESP_EFUSE_DIS_DIRECT_BOOT
  234. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  235. .sdata.ESP_EFUSE_DIS_DOWNLOAD_ICACHE
  236. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  237. .sdata.ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT
  238. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  239. .sdata.ESP_EFUSE_DIS_DOWNLOAD_MODE
  240. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  241. .sdata.ESP_EFUSE_DIS_FORCE_DOWNLOAD
  242. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  243. .sdata.ESP_EFUSE_DIS_ICACHE
  244. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  245. .sdata.ESP_EFUSE_DIS_PAD_JTAG
  246. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  247. .sdata.ESP_EFUSE_DIS_USB_DEVICE
  248. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  249. .sdata.ESP_EFUSE_DIS_USB_JTAG
  250. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  251. .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE
  252. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  253. .sdata.ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT
  254. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  255. .sdata.ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD
  256. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  257. .sdata.ESP_EFUSE_ERR_RST_ENABLE
  258. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  259. .sdata.ESP_EFUSE_FLASH_TPUW
  260. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  261. .sdata.ESP_EFUSE_FORCE_SEND_RESUME
  262. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  263. .sdata.ESP_EFUSE_JTAG_SEL_ENABLE
  264. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  265. .sdata.ESP_EFUSE_KEY0
  266. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  267. .sdata.ESP_EFUSE_KEY1
  268. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  269. .sdata.ESP_EFUSE_KEY2
  270. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  271. .sdata.ESP_EFUSE_KEY3
  272. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  273. .sdata.ESP_EFUSE_KEY4
  274. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  275. .sdata.ESP_EFUSE_KEY5
  276. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  277. .sdata.ESP_EFUSE_KEY_PURPOSE_0
  278. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  279. .sdata.ESP_EFUSE_KEY_PURPOSE_1
  280. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  281. .sdata.ESP_EFUSE_KEY_PURPOSE_2
  282. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  283. .sdata.ESP_EFUSE_KEY_PURPOSE_3
  284. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  285. .sdata.ESP_EFUSE_KEY_PURPOSE_4
  286. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  287. .sdata.ESP_EFUSE_KEY_PURPOSE_5
  288. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  289. .sdata.ESP_EFUSE_K_DIG_LDO
  290. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  291. .sdata.ESP_EFUSE_K_RTC_LDO
  292. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  293. .sdata.ESP_EFUSE_OCODE
  294. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  295. .sdata.ESP_EFUSE_OPTIONAL_UNIQUE_ID
  296. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  297. .sdata.ESP_EFUSE_PKG_VERSION
  298. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  299. .sdata.ESP_EFUSE_POWERGLITCH_EN
  300. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  301. .sdata.ESP_EFUSE_POWER_GLITCH_DSENSE
  302. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  303. .sdata.ESP_EFUSE_RD_DIS
  304. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  305. .sdata.ESP_EFUSE_RD_DIS_KEY0
  306. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  307. .sdata.ESP_EFUSE_RD_DIS_KEY1
  308. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  309. .sdata.ESP_EFUSE_RD_DIS_KEY2
  310. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  311. .sdata.ESP_EFUSE_RD_DIS_KEY3
  312. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  313. .sdata.ESP_EFUSE_RD_DIS_KEY4
  314. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  315. .sdata.ESP_EFUSE_RD_DIS_KEY5
  316. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  317. .sdata.ESP_EFUSE_RD_DIS_SYS_DATA_PART2
  318. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  319. .sdata.ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE
  320. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  321. .sdata.ESP_EFUSE_SECURE_BOOT_EN
  322. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  323. .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0
  324. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  325. .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1
  326. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  327. .sdata.ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2
  328. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  329. .sdata.ESP_EFUSE_SECURE_VERSION
  330. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  331. .sdata.ESP_EFUSE_SOFT_DIS_JTAG
  332. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  333. .sdata.ESP_EFUSE_SPI_BOOT_CRYPT_CNT
  334. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  335. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_CLK
  336. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  337. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_CS
  338. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  339. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D4
  340. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  341. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D5
  342. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  343. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D6
  344. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  345. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D7
  346. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  347. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_DQS
  348. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  349. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_D_D0
  350. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  351. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_HD_D3
  352. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  353. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_Q_D1
  354. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  355. .sdata.ESP_EFUSE_SPI_PAD_CONFIG_WP_D2
  356. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  357. .sdata.ESP_EFUSE_SYS_DATA_PART2
  358. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  359. .sdata.ESP_EFUSE_TEMP_CALIB
  360. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  361. .sdata.ESP_EFUSE_THRES_HVT
  362. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  363. .sdata.ESP_EFUSE_UART_PRINT_CONTROL
  364. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  365. .sdata.ESP_EFUSE_USB_DREFH
  366. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  367. .sdata.ESP_EFUSE_USB_DREFL
  368. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  369. .sdata.ESP_EFUSE_USB_EXCHG_PINS
  370. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  371. .sdata.ESP_EFUSE_USER_DATA
  372. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  373. .sdata.ESP_EFUSE_USER_DATA_MAC_CUSTOM
  374. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  375. .sdata.ESP_EFUSE_VDD_SPI_AS_GPIO
  376. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  377. .sdata.ESP_EFUSE_V_DIG_DBIAS20
  378. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  379. .sdata.ESP_EFUSE_V_RTC_DBIAS20
  380. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  381. .sdata.ESP_EFUSE_WAFER_VERSION_MAJOR
  382. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  383. .sdata.ESP_EFUSE_WDT_DELAY_SEL
  384. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  385. .sdata.ESP_EFUSE_WR_DIS
  386. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  387. .sdata.ESP_EFUSE_WR_DIS_BLK1
  388. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  389. .sdata.ESP_EFUSE_WR_DIS_GROUP_1
  390. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  391. .sdata.ESP_EFUSE_WR_DIS_GROUP_2
  392. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  393. .sdata.ESP_EFUSE_WR_DIS_GROUP_3
  394. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  395. .sdata.ESP_EFUSE_WR_DIS_KEY0
  396. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  397. .sdata.ESP_EFUSE_WR_DIS_KEY0_PURPOSE
  398. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  399. .sdata.ESP_EFUSE_WR_DIS_KEY1
  400. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  401. .sdata.ESP_EFUSE_WR_DIS_KEY1_PURPOSE
  402. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  403. .sdata.ESP_EFUSE_WR_DIS_KEY2
  404. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  405. .sdata.ESP_EFUSE_WR_DIS_KEY2_PURPOSE
  406. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  407. .sdata.ESP_EFUSE_WR_DIS_KEY3
  408. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  409. .sdata.ESP_EFUSE_WR_DIS_KEY3_PURPOSE
  410. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  411. .sdata.ESP_EFUSE_WR_DIS_KEY4
  412. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  413. .sdata.ESP_EFUSE_WR_DIS_KEY4_PURPOSE
  414. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  415. .sdata.ESP_EFUSE_WR_DIS_KEY5
  416. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  417. .sdata.ESP_EFUSE_WR_DIS_KEY5_PURPOSE
  418. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  419. .sdata.ESP_EFUSE_WR_DIS_RD_DIS
  420. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  421. .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE
  422. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  423. .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_EN
  424. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  425. .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0
  426. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  427. .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1
  428. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  429. .sdata.ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2
  430. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  431. .sdata.ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT
  432. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  433. .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART1
  434. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  435. .sdata.ESP_EFUSE_WR_DIS_SYS_DATA_PART2
  436. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  437. .sdata.ESP_EFUSE_WR_DIS_USER_DATA
  438. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  439. .srodata.ADC1_CAL_VOL_ATTEN0
  440. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  441. .srodata.ADC1_CAL_VOL_ATTEN1
  442. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  443. .srodata.ADC1_CAL_VOL_ATTEN2
  444. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  445. .srodata.ADC1_CAL_VOL_ATTEN3
  446. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  447. .srodata.ADC1_INIT_CODE_ATTEN0
  448. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  449. .srodata.ADC1_INIT_CODE_ATTEN1
  450. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  451. .srodata.ADC1_INIT_CODE_ATTEN2
  452. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  453. .srodata.ADC1_INIT_CODE_ATTEN3
  454. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  455. .srodata.BLK_VERSION_MAJOR
  456. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  457. .srodata.BLK_VERSION_MINOR
  458. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  459. .srodata.BTLC_GPIO_ENABLE
  460. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  461. .srodata.DIG_DBIAS_HVT
  462. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  463. .srodata.DISABLE_BLK_VERSION_MAJOR
  464. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  465. .srodata.DISABLE_WAFER_VERSION_MAJOR
  466. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  467. .srodata.DIS_CAN
  468. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  469. .srodata.DIS_DIRECT_BOOT
  470. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  471. .srodata.DIS_DOWNLOAD_ICACHE
  472. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  473. .srodata.DIS_DOWNLOAD_MANUAL_ENCRYPT
  474. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  475. .srodata.DIS_DOWNLOAD_MODE
  476. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  477. .srodata.DIS_FORCE_DOWNLOAD
  478. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  479. .srodata.DIS_ICACHE
  480. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  481. .srodata.DIS_PAD_JTAG
  482. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  483. .srodata.DIS_USB_DEVICE
  484. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  485. .srodata.DIS_USB_JTAG
  486. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  487. .srodata.DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE
  488. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  489. .srodata.DIS_USB_SERIAL_JTAG_ROM_PRINT
  490. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  491. .srodata.ENABLE_SECURITY_DOWNLOAD
  492. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  493. .srodata.ERR_RST_ENABLE
  494. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  495. .srodata.FLASH_TPUW
  496. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  497. .srodata.FORCE_SEND_RESUME
  498. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  499. .srodata.JTAG_SEL_ENABLE
  500. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  501. .srodata.KEY0 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  502. .srodata.KEY1 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  503. .srodata.KEY2 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  504. .srodata.KEY3 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  505. .srodata.KEY4 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  506. .srodata.KEY5 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  507. .srodata.KEY_PURPOSE_0
  508. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  509. .srodata.KEY_PURPOSE_1
  510. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  511. .srodata.KEY_PURPOSE_2
  512. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  513. .srodata.KEY_PURPOSE_3
  514. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  515. .srodata.KEY_PURPOSE_4
  516. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  517. .srodata.KEY_PURPOSE_5
  518. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  519. .srodata.K_DIG_LDO
  520. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  521. .srodata.K_RTC_LDO
  522. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  523. .srodata.OCODE
  524. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  525. .srodata.OPTIONAL_UNIQUE_ID
  526. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  527. .srodata.PKG_VERSION
  528. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  529. .srodata.POWERGLITCH_EN
  530. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  531. .srodata.POWER_GLITCH_DSENSE
  532. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  533. .srodata.RD_DIS
  534. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  535. .srodata.RD_DIS_KEY0
  536. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  537. .srodata.RD_DIS_KEY1
  538. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  539. .srodata.RD_DIS_KEY2
  540. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  541. .srodata.RD_DIS_KEY3
  542. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  543. .srodata.RD_DIS_KEY4
  544. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  545. .srodata.RD_DIS_KEY5
  546. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  547. .srodata.RD_DIS_SYS_DATA_PART2
  548. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  549. .srodata.SECURE_BOOT_AGGRESSIVE_REVOKE
  550. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  551. .srodata.SECURE_BOOT_EN
  552. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  553. .srodata.SECURE_BOOT_KEY_REVOKE0
  554. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  555. .srodata.SECURE_BOOT_KEY_REVOKE1
  556. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  557. .srodata.SECURE_BOOT_KEY_REVOKE2
  558. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  559. .srodata.SECURE_VERSION
  560. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  561. .srodata.SOFT_DIS_JTAG
  562. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  563. .srodata.SPI_BOOT_CRYPT_CNT
  564. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  565. .srodata.SPI_PAD_CONFIG_CLK
  566. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  567. .srodata.SPI_PAD_CONFIG_CS
  568. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  569. .srodata.SPI_PAD_CONFIG_D4
  570. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  571. .srodata.SPI_PAD_CONFIG_D5
  572. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  573. .srodata.SPI_PAD_CONFIG_D6
  574. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  575. .srodata.SPI_PAD_CONFIG_D7
  576. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  577. .srodata.SPI_PAD_CONFIG_DQS
  578. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  579. .srodata.SPI_PAD_CONFIG_D_D0
  580. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  581. .srodata.SPI_PAD_CONFIG_HD_D3
  582. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  583. .srodata.SPI_PAD_CONFIG_Q_D1
  584. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  585. .srodata.SPI_PAD_CONFIG_WP_D2
  586. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  587. .srodata.SYS_DATA_PART2
  588. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  589. .srodata.TEMP_CALIB
  590. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  591. .srodata.THRES_HVT
  592. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  593. .srodata.UART_PRINT_CONTROL
  594. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  595. .srodata.USB_DREFH
  596. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  597. .srodata.USB_DREFL
  598. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  599. .srodata.USB_EXCHG_PINS
  600. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  601. .srodata.USER_DATA
  602. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  603. .srodata.USER_DATA_MAC_CUSTOM
  604. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  605. .srodata.VDD_SPI_AS_GPIO
  606. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  607. .srodata.V_DIG_DBIAS20
  608. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  609. .srodata.V_RTC_DBIAS20
  610. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  611. .srodata.WAFER_VERSION_MAJOR
  612. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  613. .srodata.WAFER_VERSION_MINOR
  614. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  615. .srodata.WDT_DELAY_SEL
  616. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  617. .srodata.WR_DIS
  618. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  619. .srodata.WR_DIS_BLK1
  620. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  621. .srodata.WR_DIS_GROUP_1
  622. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  623. .srodata.WR_DIS_GROUP_2
  624. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  625. .srodata.WR_DIS_GROUP_3
  626. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  627. .srodata.WR_DIS_KEY0
  628. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  629. .srodata.WR_DIS_KEY0_PURPOSE
  630. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  631. .srodata.WR_DIS_KEY1
  632. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  633. .srodata.WR_DIS_KEY1_PURPOSE
  634. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  635. .srodata.WR_DIS_KEY2
  636. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  637. .srodata.WR_DIS_KEY2_PURPOSE
  638. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  639. .srodata.WR_DIS_KEY3
  640. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  641. .srodata.WR_DIS_KEY3_PURPOSE
  642. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  643. .srodata.WR_DIS_KEY4
  644. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  645. .srodata.WR_DIS_KEY4_PURPOSE
  646. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  647. .srodata.WR_DIS_KEY5
  648. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  649. .srodata.WR_DIS_KEY5_PURPOSE
  650. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  651. .srodata.WR_DIS_RD_DIS
  652. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  653. .srodata.WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE
  654. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  655. .srodata.WR_DIS_SECURE_BOOT_EN
  656. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  657. .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE0
  658. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  659. .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE1
  660. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  661. .srodata.WR_DIS_SECURE_BOOT_KEY_REVOKE2
  662. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  663. .srodata.WR_DIS_SPI_BOOT_CRYPT_CNT
  664. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  665. .srodata.WR_DIS_SYS_DATA_PART1
  666. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  667. .srodata.WR_DIS_SYS_DATA_PART2
  668. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  669. .srodata.WR_DIS_USER_DATA
  670. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  671. .debug_info 0x0000000000000000 0x193a esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  672. .debug_abbrev 0x0000000000000000 0xf5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  673. .debug_aranges
  674. 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  675. .debug_line 0x0000000000000000 0x21d esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  676. .debug_str 0x0000000000000000 0x1806 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  677. .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  678. .riscv.attributes
  679. 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  680. .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  681. .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  682. .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  683. .text.esp_efuse_get_pkg_ver
  684. 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  685. .text.esp_efuse_set_rom_log_scheme
  686. 0x0000000000000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  687. .text.esp_efuse_disable_rom_download_mode
  688. 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  689. .text.esp_efuse_enable_rom_secure_download_mode
  690. 0x0000000000000000 0x34 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  691. .debug_info 0x0000000000000000 0x3ba esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  692. .debug_abbrev 0x0000000000000000 0x18f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  693. .debug_loc 0x0000000000000000 0x1f esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  694. .debug_aranges
  695. 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  696. .debug_ranges 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  697. .debug_line 0x0000000000000000 0x48b esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  698. .debug_str 0x0000000000000000 0x5c6 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  699. .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  700. .debug_frame 0x0000000000000000 0x80 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  701. .riscv.attributes
  702. 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  703. .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  704. .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  705. .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  706. .text.esp_efuse_read_field_blob
  707. 0x0000000000000000 0x6e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  708. .rodata.esp_efuse_read_field_bit.str1.4
  709. 0x0000000000000000 0x3b esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  710. .text.esp_efuse_read_field_bit
  711. 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  712. .text.esp_efuse_read_field_cnt
  713. 0x0000000000000000 0x50 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  714. .text.esp_efuse_write_field_blob
  715. 0x0000000000000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  716. .rodata.esp_efuse_write_field_cnt.str1.4
  717. 0x0000000000000000 0x59 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  718. .text.esp_efuse_write_field_cnt
  719. 0x0000000000000000 0xb0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  720. .text.esp_efuse_write_field_bit
  721. 0x0000000000000000 0x5a esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  722. .text.esp_efuse_get_field_size
  723. 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  724. .text.esp_efuse_write_reg
  725. 0x0000000000000000 0x5e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  726. .text.esp_efuse_read_block
  727. 0x0000000000000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  728. .text.esp_efuse_read_reg
  729. 0x0000000000000000 0x46 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  730. .text.esp_efuse_write_block
  731. 0x0000000000000000 0x44 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  732. .rodata.esp_efuse_batch_write_begin.str1.4
  733. 0x0000000000000000 0x5c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  734. .text.esp_efuse_batch_write_begin
  735. 0x0000000000000000 0x72 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  736. .rodata.esp_efuse_batch_write_cancel.str1.4
  737. 0x0000000000000000 0x76 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  738. .text.esp_efuse_batch_write_cancel
  739. 0x0000000000000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  740. .rodata.esp_efuse_batch_write_commit.str1.4
  741. 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  742. .text.esp_efuse_batch_write_commit
  743. 0x0000000000000000 0x8e esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  744. .text.esp_efuse_check_errors
  745. 0x0000000000000000 0x8 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  746. .rodata.__func__.0
  747. 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  748. .rodata.__func__.1
  749. 0x0000000000000000 0x13 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  750. .rodata.__func__.2
  751. 0x0000000000000000 0x19 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  752. .sbss.s_batch_writing_mode
  753. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  754. .debug_info 0x0000000000000000 0xdd2 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  755. .debug_abbrev 0x0000000000000000 0x318 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  756. .debug_loc 0x0000000000000000 0x77f esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  757. .debug_aranges
  758. 0x0000000000000000 0x90 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  759. .debug_ranges 0x0000000000000000 0xc0 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  760. .debug_line 0x0000000000000000 0xffa esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  761. .debug_str 0x0000000000000000 0x7c5 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  762. .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  763. .debug_frame 0x0000000000000000 0x1ec esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  764. .riscv.attributes
  765. 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  766. .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  767. .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  768. .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  769. .rodata.write_reg.str1.4
  770. 0x0000000000000000 0xb4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  771. .text.write_reg
  772. 0x0000000000000000 0x7a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  773. .rodata.esp_efuse_utility_process.str1.4
  774. 0x0000000000000000 0x69 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  775. .text.esp_efuse_utility_process
  776. 0x0000000000000000 0x18a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  777. .text.esp_efuse_utility_reset
  778. 0x0000000000000000 0x4c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  779. .text.esp_efuse_utility_burn_efuses
  780. 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  781. .text.esp_efuse_utility_erase_virt_blocks
  782. 0x0000000000000000 0x2 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  783. .rodata.esp_efuse_utility_update_virt_blocks.str1.4
  784. 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  785. .text.esp_efuse_utility_update_virt_blocks
  786. 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  787. .rodata.esp_efuse_utility_debug_dump_blocks.str1.4
  788. 0x0000000000000000 0x22 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  789. .text.esp_efuse_utility_debug_dump_blocks
  790. 0x0000000000000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  791. .text.esp_efuse_utility_get_number_of_items
  792. 0x0000000000000000 0x10 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  793. .text.esp_efuse_utility_read_reg
  794. 0x0000000000000000 0x68 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  795. .text.esp_efuse_utility_fill_buff
  796. 0x0000000000000000 0xde esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  797. .text.esp_efuse_utility_count_once
  798. 0x0000000000000000 0x62 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  799. .rodata.esp_efuse_utility_write_cnt.str1.4
  800. 0x0000000000000000 0x31 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  801. .text.esp_efuse_utility_write_cnt
  802. 0x0000000000000000 0xce esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  803. .rodata.esp_efuse_utility_write_reg.str1.4
  804. 0x0000000000000000 0x5d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  805. .text.esp_efuse_utility_write_reg
  806. 0x0000000000000000 0x64 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  807. .text.esp_efuse_utility_write_blob
  808. 0x0000000000000000 0x94 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  809. .rodata.esp_efuse_utility_get_read_register_address.str1.4
  810. 0x0000000000000000 0x16 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  811. .text.esp_efuse_utility_get_read_register_address
  812. 0x0000000000000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  813. .rodata.esp_efuse_utility_is_correct_written_data.str1.4
  814. 0x0000000000000000 0xdd esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  815. .text.esp_efuse_utility_is_correct_written_data
  816. 0x0000000000000000 0xd6 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  817. .rodata.__func__.0
  818. 0x0000000000000000 0x2c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  819. .rodata.__func__.1
  820. 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  821. .rodata.__func__.2
  822. 0x0000000000000000 0xa esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  823. .rodata.__func__.3
  824. 0x0000000000000000 0xf esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  825. .rodata.__func__.4
  826. 0x0000000000000000 0x1a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  827. .sbss.s_burn_counter
  828. 0x0000000000000000 0x4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  829. .debug_info 0x0000000000000000 0x13a9 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  830. .debug_abbrev 0x0000000000000000 0x426 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  831. .debug_loc 0x0000000000000000 0x126d esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  832. .debug_aranges
  833. 0x0000000000000000 0x98 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  834. .debug_ranges 0x0000000000000000 0x2a0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  835. .debug_line 0x0000000000000000 0x161c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  836. .debug_str 0x0000000000000000 0x9c3 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  837. .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  838. .debug_frame 0x0000000000000000 0x270 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  839. .riscv.attributes
  840. 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  841. .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  842. .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  843. .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  844. .text.esp_efuse_utility_clear_program_registers
  845. 0x0000000000000000 0x18 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  846. .rodata.esp_efuse_utility_check_errors.str1.4
  847. 0x0000000000000000 0x82 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  848. .text.esp_efuse_utility_check_errors
  849. 0x0000000000000000 0x7c esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  850. .rodata.esp_efuse_utility_burn_chip.str1.4
  851. 0x0000000000000000 0x203 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  852. .text.esp_efuse_utility_burn_chip
  853. 0x0000000000000000 0x286 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  854. .rodata.esp_efuse_utility_apply_new_coding_scheme.str1.4
  855. 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  856. .text.esp_efuse_utility_apply_new_coding_scheme
  857. 0x0000000000000000 0xb4 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  858. .bss.write_mass_blocks
  859. 0x0000000000000000 0x160 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  860. .rodata.range_read_addr_blocks
  861. 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  862. .rodata.range_write_addr_blocks
  863. 0x0000000000000000 0x58 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  864. .debug_info 0x0000000000000000 0x24c8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  865. .debug_abbrev 0x0000000000000000 0x339 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  866. .debug_loc 0x0000000000000000 0x37f esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  867. .debug_aranges
  868. 0x0000000000000000 0x38 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  869. .debug_ranges 0x0000000000000000 0x188 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  870. .debug_line 0x0000000000000000 0xcfb esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  871. .debug_str 0x0000000000000000 0x1901 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  872. .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  873. .debug_frame 0x0000000000000000 0xd8 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  874. .riscv.attributes
  875. 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  876. .text 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  877. .data 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  878. .bss 0x0000000000000000 0x0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  879. .text.esp_efuse_block_is_empty
  880. 0x0000000000000000 0x36 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  881. .text.esp_efuse_set_write_protect
  882. 0x0000000000000000 0x72 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  883. .text.esp_efuse_set_read_protect
  884. 0x0000000000000000 0x3e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  885. .text.esp_efuse_get_coding_scheme
  886. 0x0000000000000000 0x6 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  887. .text.esp_efuse_get_purpose_field
  888. 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  889. .text.esp_efuse_get_key
  890. 0x0000000000000000 0x20 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  891. .rodata.esp_efuse_get_key_dis_read.str1.4
  892. 0x0000000000000000 0x8f esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  893. .text.esp_efuse_get_key_dis_read
  894. 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  895. .text.esp_efuse_set_key_dis_read
  896. 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  897. .text.esp_efuse_get_key_dis_write
  898. 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  899. .text.esp_efuse_set_key_dis_write
  900. 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  901. .text.esp_efuse_get_key_purpose
  902. 0x0000000000000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  903. .text.esp_efuse_set_key_purpose
  904. 0x0000000000000000 0x3c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  905. .text.esp_efuse_get_keypurpose_dis_write
  906. 0x0000000000000000 0x4a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  907. .text.esp_efuse_set_keypurpose_dis_write
  908. 0x0000000000000000 0x28 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  909. .text.esp_efuse_find_purpose
  910. 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  911. .text.esp_efuse_key_block_unused
  912. 0x0000000000000000 0x5e esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  913. .text.esp_efuse_find_unused_key_block
  914. 0x0000000000000000 0x2a esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  915. .text.esp_efuse_count_unused_key_blocks
  916. 0x0000000000000000 0x32 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  917. .text.esp_efuse_write_key
  918. 0x0000000000000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  919. .rodata.esp_efuse_write_keys.str1.4
  920. 0x0000000000000000 0xf5 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  921. .text.esp_efuse_write_keys
  922. 0x0000000000000000 0x152 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  923. .rodata.esp_efuse_get_digest_revoke.str1.4
  924. 0x0000000000000000 0x42 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  925. .text.esp_efuse_get_digest_revoke
  926. 0x0000000000000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  927. .text.esp_efuse_set_digest_revoke
  928. 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  929. .text.esp_efuse_get_write_protect_of_digest_revoke
  930. 0x0000000000000000 0x48 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  931. .text.esp_efuse_set_write_protect_of_digest_revoke
  932. 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  933. .rodata.esp_secure_boot_read_key_digests.str1.4
  934. 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  935. .text.esp_secure_boot_read_key_digests
  936. 0x0000000000000000 0xa8 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  937. .rodata.__func__.0
  938. 0x0000000000000000 0x21 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  939. .rodata.__func__.1
  940. 0x0000000000000000 0x2d esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  941. .rodata.__func__.2
  942. 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  943. .rodata.__func__.3
  944. 0x0000000000000000 0x23 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  945. .rodata.__func__.4
  946. 0x0000000000000000 0x1c esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  947. .rodata.__func__.5
  948. 0x0000000000000000 0x1b esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  949. .rodata.s_revoke_table
  950. 0x0000000000000000 0x24 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  951. .rodata.s_table
  952. 0x0000000000000000 0x78 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  953. .debug_info 0x0000000000000000 0x1538 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  954. .debug_abbrev 0x0000000000000000 0x3c9 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  955. .debug_loc 0x0000000000000000 0xcae esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  956. .debug_aranges
  957. 0x0000000000000000 0xe0 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  958. .debug_ranges 0x0000000000000000 0x220 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  959. .debug_line 0x0000000000000000 0x1398 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  960. .debug_str 0x0000000000000000 0xfb9 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  961. .comment 0x0000000000000000 0x27 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  962. .debug_frame 0x0000000000000000 0x324 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  963. .riscv.attributes
  964. 0x0000000000000000 0x26 esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  965. .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  966. .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  967. .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  968. .text.semihosting_call_noerrno
  969. 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  970. .rodata.esp_cpu_stall.str1.4
  971. 0x0000000000000000 0x52 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  972. .text.esp_cpu_stall
  973. 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  974. .text.esp_cpu_unstall
  975. 0x0000000000000000 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  976. .text.esp_cpu_reset
  977. 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  978. .text.esp_cpu_wait_for_intr
  979. 0x0000000000000000 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  980. .text.esp_cpu_intr_get_desc
  981. 0x0000000000000000 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  982. .text.esp_cpu_set_breakpoint
  983. 0x0000000000000000 0x56 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  984. .text.esp_cpu_clear_breakpoint
  985. 0x0000000000000000 0x48 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  986. .text.esp_cpu_set_watchpoint
  987. 0x0000000000000000 0xc4 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  988. .text.esp_cpu_clear_watchpoint
  989. 0x0000000000000000 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  990. .text.esp_cpu_compare_and_set
  991. 0x0000000000000000 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  992. .rodata.__func__.0
  993. 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  994. .rodata.__func__.1
  995. 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  996. .rodata.__func__.2
  997. 0x0000000000000000 0xe esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  998. .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  999. .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  1000. .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  1001. .text 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1002. .data 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1003. .bss 0x0000000000000000 0x0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1004. .text.rtc_clk_32k_enable_external
  1005. 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1006. .text.rtc_clk_32k_bootstrap
  1007. 0x0000000000000000 0x8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1008. .text.rtc_clk_32k_enabled
  1009. 0x0000000000000000 0x18 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1010. .text.rtc_clk_8m_enabled
  1011. 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1012. .text.rtc_clk_8md256_enabled
  1013. 0x0000000000000000 0x10 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1014. .text.rtc_clk_cpu_freq_set_xtal
  1015. 0x0000000000000000 0x38 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1016. .text.rtc_clk_cpu_freq_set_config_fast
  1017. 0x0000000000000000 0x36 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1018. .text.rtc_dig_clk8m_enable
  1019. 0x0000000000000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1020. .text.rtc_dig_clk8m_disable
  1021. 0x0000000000000000 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1022. .text.rtc_dig_8m_enabled
  1023. 0x0000000000000000 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  1024. .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  1025. .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  1026. .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  1027. .iram1.0 0x0000000000000000 0x22 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  1028. .text 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  1029. .data 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  1030. .bss 0x0000000000000000 0x0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  1031. .iram1.1 0x0000000000000000 0x32 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  1032. .text 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj)
  1033. .data 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj)
  1034. .bss 0x0000000000000000 0x0 esp-idf/log/liblog.a(log_noos.c.obj)
  1035. .rodata.esp_log_impl_lock.str1.4
  1036. 0x0000000000000000 0x2c esp-idf/log/liblog.a(log_noos.c.obj)
  1037. .text.esp_log_impl_lock
  1038. 0x0000000000000000 0x38 esp-idf/log/liblog.a(log_noos.c.obj)
  1039. .text.esp_log_lock_impl_timeout
  1040. 0x0000000000000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj)
  1041. .rodata.esp_log_impl_unlock.str1.4
  1042. 0x0000000000000000 0xc esp-idf/log/liblog.a(log_noos.c.obj)
  1043. .text.esp_log_impl_unlock
  1044. 0x0000000000000000 0x3c esp-idf/log/liblog.a(log_noos.c.obj)
  1045. .rodata.__func__.0
  1046. 0x0000000000000000 0x12 esp-idf/log/liblog.a(log_noos.c.obj)
  1047. .rodata.__func__.1
  1048. 0x0000000000000000 0x14 esp-idf/log/liblog.a(log_noos.c.obj)
  1049. .sbss.s_lock 0x0000000000000000 0x4 esp-idf/log/liblog.a(log_noos.c.obj)
  1050. .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1051. .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1052. .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1053. .text.efuse_hal_get_mac
  1054. 0x0000000000000000 0x14 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1055. .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1056. .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1057. .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1058. .text.efuse_hal_set_timing
  1059. 0x0000000000000000 0x1a esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1060. .text.efuse_hal_read
  1061. 0x0000000000000000 0x44 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1062. .text.efuse_hal_clear_program_registers
  1063. 0x0000000000000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1064. .text.efuse_hal_program
  1065. 0x0000000000000000 0x64 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1066. .text.efuse_hal_rs_calculate
  1067. 0x0000000000000000 0x8 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1068. .text.efuse_hal_is_coding_error_in_block
  1069. 0x0000000000000000 0x6a esp-idf/hal/libhal.a(efuse_hal.c.obj)
  1070. .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  1071. .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  1072. .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  1073. .text.mmu_hal_pages_to_bytes
  1074. 0x0000000000000000 0x6 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  1075. .text.mmu_hal_bytes_to_pages
  1076. 0x0000000000000000 0x6 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  1077. .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  1078. .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  1079. .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  1080. .text.wdt_hal_deinit
  1081. 0x0000000000000000 0x62 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  1082. .text.wdt_hal_disable
  1083. 0x0000000000000000 0x22 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  1084. .text.wdt_hal_handle_intr
  1085. 0x0000000000000000 0x2c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  1086. .text.wdt_hal_feed
  1087. 0x0000000000000000 0x1c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  1088. .text.wdt_hal_is_enabled
  1089. 0x0000000000000000 0x12 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  1090. .text 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj)
  1091. .data 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj)
  1092. .bss 0x0000000000000000 0x0 esp-idf/hal/libhal.a(cache_hal.c.obj)
  1093. .text 0x0000000000000000 0x28 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1094. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1095. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1096. .debug_info 0x0000000000000000 0x1a1 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1097. .debug_abbrev 0x0000000000000000 0x10c d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1098. .debug_loclists
  1099. 0x0000000000000000 0xa7 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1100. .debug_aranges
  1101. 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1102. .debug_line 0x0000000000000000 0x107 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1103. .debug_str 0x0000000000000000 0x1a0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1104. .debug_line_str
  1105. 0x0000000000000000 0x249 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1106. .comment 0x0000000000000000 0x27 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1107. .debug_frame 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1108. .riscv.attributes
  1109. 0x0000000000000000 0x26 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  1110. .text 0x0000000000000000 0x28 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1111. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1112. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1113. .debug_info 0x0000000000000000 0x1a1 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1114. .debug_abbrev 0x0000000000000000 0x10c d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1115. .debug_loclists
  1116. 0x0000000000000000 0xa7 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1117. .debug_aranges
  1118. 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1119. .debug_line 0x0000000000000000 0x107 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1120. .debug_str 0x0000000000000000 0x1a0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1121. .debug_line_str
  1122. 0x0000000000000000 0x249 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1123. .comment 0x0000000000000000 0x27 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1124. .debug_frame 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1125. .riscv.attributes
  1126. 0x0000000000000000 0x26 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  1127. .text 0x0000000000000000 0x42 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1128. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1129. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1130. .debug_info 0x0000000000000000 0xd1 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1131. .debug_abbrev 0x0000000000000000 0x65 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1132. .debug_loclists
  1133. 0x0000000000000000 0xbd d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1134. .debug_aranges
  1135. 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1136. .debug_line 0x0000000000000000 0xe9 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1137. .debug_str 0x0000000000000000 0x167 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1138. .debug_line_str
  1139. 0x0000000000000000 0x249 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1140. .comment 0x0000000000000000 0x27 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1141. .debug_frame 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1142. .riscv.attributes
  1143. 0x0000000000000000 0x26 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  1144. .text 0x0000000000000000 0x39e d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1145. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1146. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1147. .debug_info 0x0000000000000000 0x793 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1148. .debug_abbrev 0x0000000000000000 0x1bf d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1149. .debug_loclists
  1150. 0x0000000000000000 0x88e d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1151. .debug_aranges
  1152. 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1153. .debug_rnglists
  1154. 0x0000000000000000 0xf6 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1155. .debug_line 0x0000000000000000 0x7ca d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1156. .debug_str 0x0000000000000000 0x215 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1157. .debug_line_str
  1158. 0x0000000000000000 0x249 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1159. .comment 0x0000000000000000 0x27 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1160. .eh_frame 0x0000000000000000 0x28 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1161. .riscv.attributes
  1162. 0x0000000000000000 0x26 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  1163. .text 0x0000000000000000 0x35e d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1164. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1165. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1166. .debug_info 0x0000000000000000 0x761 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1167. .debug_abbrev 0x0000000000000000 0x1a6 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1168. .debug_loclists
  1169. 0x0000000000000000 0xa99 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1170. .debug_aranges
  1171. 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1172. .debug_rnglists
  1173. 0x0000000000000000 0x111 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1174. .debug_line 0x0000000000000000 0x727 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1175. .debug_str 0x0000000000000000 0x216 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1176. .debug_line_str
  1177. 0x0000000000000000 0x249 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1178. .comment 0x0000000000000000 0x27 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1179. .eh_frame 0x0000000000000000 0x28 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1180. .riscv.attributes
  1181. 0x0000000000000000 0x26 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  1182. .text 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1183. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1184. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1185. .rodata 0x0000000000000000 0x100 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1186. .debug_info 0x0000000000000000 0xd8 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1187. .debug_abbrev 0x0000000000000000 0x70 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1188. .debug_aranges
  1189. 0x0000000000000000 0x18 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1190. .debug_line 0x0000000000000000 0x3f d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1191. .debug_str 0x0000000000000000 0x163 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1192. .debug_line_str
  1193. 0x0000000000000000 0x249 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1194. .comment 0x0000000000000000 0x27 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1195. .riscv.attributes
  1196. 0x0000000000000000 0x26 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  1197. .text 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1198. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1199. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1200. .sbss 0x0000000000000000 0x4 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1201. .debug_info 0x0000000000000000 0x81a d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1202. .debug_abbrev 0x0000000000000000 0x173 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1203. .debug_aranges
  1204. 0x0000000000000000 0x18 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1205. .debug_line 0x0000000000000000 0x4d d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1206. .debug_str 0x0000000000000000 0x4b2 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1207. .debug_line_str
  1208. 0x0000000000000000 0x2e9 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1209. .comment 0x0000000000000000 0x27 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1210. .riscv.attributes
  1211. 0x0000000000000000 0x26 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  1212. .text 0x0000000000000000 0x48 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1213. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1214. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1215. .debug_info 0x0000000000000000 0x10f d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1216. .debug_abbrev 0x0000000000000000 0x8a d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1217. .debug_loclists
  1218. 0x0000000000000000 0x130 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1219. .debug_aranges
  1220. 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1221. .debug_line 0x0000000000000000 0x161 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1222. .debug_str 0x0000000000000000 0xef d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1223. .debug_line_str
  1224. 0x0000000000000000 0x349 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1225. .comment 0x0000000000000000 0x27 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1226. .debug_frame 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1227. .riscv.attributes
  1228. 0x0000000000000000 0x26 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  1229. .text 0x0000000000000000 0xdc d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1230. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1231. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1232. .debug_info 0x0000000000000000 0x256 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1233. .debug_abbrev 0x0000000000000000 0x107 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1234. .debug_loclists
  1235. 0x0000000000000000 0x291 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1236. .debug_aranges
  1237. 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1238. .debug_line 0x0000000000000000 0x2da d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1239. .debug_str 0x0000000000000000 0x110 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1240. .debug_line_str
  1241. 0x0000000000000000 0x42b d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1242. .comment 0x0000000000000000 0x27 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1243. .debug_frame 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1244. .riscv.attributes
  1245. 0x0000000000000000 0x26 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  1246. .text 0x0000000000000000 0xa8 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1247. .data 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1248. .bss 0x0000000000000000 0x0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1249. .debug_line 0x0000000000000000 0x18e d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1250. .debug_line_str
  1251. 0x0000000000000000 0xec d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1252. .debug_info 0x0000000000000000 0x25 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1253. .debug_abbrev 0x0000000000000000 0x14 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1254. .debug_aranges
  1255. 0x0000000000000000 0x20 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1256. .debug_str 0x0000000000000000 0xb0 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1257. .riscv.attributes
  1258. 0x0000000000000000 0x24 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  1259. Memory Configuration
  1260. Name Origin Length Attributes
  1261. iram_seg 0x00000000403cc710 0x0000000000002000 xrw
  1262. iram_loader_seg 0x00000000403ce710 0x0000000000007000 xrw
  1263. dram_seg 0x000000003fcd5710 0x0000000000005000 rw
  1264. *default* 0x0000000000000000 0xffffffffffffffff
  1265. Linker script and memory map
  1266. LOAD CMakeFiles/bootloader.elf.dir/project_elf_src_esp32c3.c.obj
  1267. LOAD esp-idf/soc/libsoc.a
  1268. LOAD esp-idf/micro-ecc/libmicro-ecc.a
  1269. LOAD esp-idf/hal/libhal.a
  1270. LOAD esp-idf/esp_app_format/libesp_app_format.a
  1271. LOAD esp-idf/bootloader_support/libbootloader_support.a
  1272. LOAD esp-idf/efuse/libefuse.a
  1273. LOAD esp-idf/esp_system/libesp_system.a
  1274. LOAD esp-idf/esp_hw_support/libesp_hw_support.a
  1275. LOAD esp-idf/esp_common/libesp_common.a
  1276. LOAD esp-idf/esp_rom/libesp_rom.a
  1277. LOAD esp-idf/log/liblog.a
  1278. LOAD esp-idf/main/libmain.a
  1279. 0x0000000000000000 IDF_TARGET_ESP32C3 = 0x0
  1280. LOAD esp-idf/soc/libsoc.a
  1281. LOAD esp-idf/micro-ecc/libmicro-ecc.a
  1282. LOAD esp-idf/hal/libhal.a
  1283. LOAD esp-idf/esp_app_format/libesp_app_format.a
  1284. LOAD esp-idf/bootloader_support/libbootloader_support.a
  1285. LOAD esp-idf/efuse/libefuse.a
  1286. LOAD esp-idf/esp_system/libesp_system.a
  1287. LOAD esp-idf/esp_hw_support/libesp_hw_support.a
  1288. LOAD esp-idf/esp_common/libesp_common.a
  1289. LOAD esp-idf/esp_rom/libesp_rom.a
  1290. LOAD esp-idf/log/liblog.a
  1291. LOAD esp-idf/soc/libsoc.a
  1292. LOAD esp-idf/micro-ecc/libmicro-ecc.a
  1293. LOAD esp-idf/hal/libhal.a
  1294. LOAD esp-idf/esp_app_format/libesp_app_format.a
  1295. LOAD esp-idf/bootloader_support/libbootloader_support.a
  1296. LOAD esp-idf/efuse/libefuse.a
  1297. LOAD esp-idf/esp_system/libesp_system.a
  1298. LOAD esp-idf/esp_hw_support/libesp_hw_support.a
  1299. LOAD esp-idf/esp_common/libesp_common.a
  1300. LOAD esp-idf/esp_rom/libesp_rom.a
  1301. LOAD esp-idf/log/liblog.a
  1302. LOAD esp-idf/soc/libsoc.a
  1303. LOAD esp-idf/micro-ecc/libmicro-ecc.a
  1304. LOAD esp-idf/hal/libhal.a
  1305. LOAD esp-idf/esp_app_format/libesp_app_format.a
  1306. LOAD esp-idf/bootloader_support/libbootloader_support.a
  1307. LOAD esp-idf/efuse/libefuse.a
  1308. LOAD esp-idf/esp_system/libesp_system.a
  1309. LOAD esp-idf/esp_hw_support/libesp_hw_support.a
  1310. LOAD esp-idf/esp_common/libesp_common.a
  1311. LOAD esp-idf/esp_rom/libesp_rom.a
  1312. LOAD esp-idf/log/liblog.a
  1313. LOAD esp-idf/soc/libsoc.a
  1314. LOAD esp-idf/micro-ecc/libmicro-ecc.a
  1315. LOAD esp-idf/hal/libhal.a
  1316. LOAD esp-idf/esp_app_format/libesp_app_format.a
  1317. LOAD esp-idf/bootloader_support/libbootloader_support.a
  1318. LOAD esp-idf/efuse/libefuse.a
  1319. LOAD esp-idf/esp_system/libesp_system.a
  1320. LOAD esp-idf/esp_hw_support/libesp_hw_support.a
  1321. LOAD esp-idf/esp_common/libesp_common.a
  1322. LOAD esp-idf/esp_rom/libesp_rom.a
  1323. LOAD esp-idf/log/liblog.a
  1324. LOAD d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a
  1325. LOAD d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a
  1326. LOAD d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libnosys.a
  1327. LOAD d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a
  1328. LOAD d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a
  1329. START GROUP
  1330. LOAD d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a
  1331. LOAD d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a
  1332. LOAD d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libnosys.a
  1333. END GROUP
  1334. 0x0000000060000000 PROVIDE (UART0 = 0x60000000)
  1335. 0x0000000060010000 PROVIDE (UART1 = 0x60010000)
  1336. 0x0000000060002000 PROVIDE (SPIMEM1 = 0x60002000)
  1337. 0x0000000060003000 PROVIDE (SPIMEM0 = 0x60003000)
  1338. [!provide] PROVIDE (GPIO = 0x60004000)
  1339. [!provide] PROVIDE (SDM = 0x60004f00)
  1340. 0x0000000060008000 PROVIDE (RTCCNTL = 0x60008000)
  1341. [!provide] PROVIDE (RTCIO = 0x60008400)
  1342. 0x0000000060008800 PROVIDE (EFUSE = 0x60008800)
  1343. [!provide] PROVIDE (HINF = 0x6000b000)
  1344. [!provide] PROVIDE (I2S0 = 0x6002d000)
  1345. [!provide] PROVIDE (I2C0 = 0x60013000)
  1346. [!provide] PROVIDE (UHCI0 = 0x60014000)
  1347. [!provide] PROVIDE (UHCI1 = 0x6000c000)
  1348. [!provide] PROVIDE (HOST = 0x60015000)
  1349. [!provide] PROVIDE (RMT = 0x60016000)
  1350. [!provide] PROVIDE (RMTMEM = 0x60016400)
  1351. [!provide] PROVIDE (SLC = 0x60018000)
  1352. [!provide] PROVIDE (LEDC = 0x60019000)
  1353. 0x000000006001f000 PROVIDE (TIMERG0 = 0x6001f000)
  1354. 0x0000000060020000 PROVIDE (TIMERG1 = 0x60020000)
  1355. [!provide] PROVIDE (SYSTIMER = 0x60023000)
  1356. [!provide] PROVIDE (GPSPI2 = 0x60024000)
  1357. [!provide] PROVIDE (GPSPI3 = 0x60025000)
  1358. [!provide] PROVIDE (SYSCON = 0x60026000)
  1359. [!provide] PROVIDE (TWAI = 0x6002b000)
  1360. [!provide] PROVIDE (GPSPI4 = 0x60037000)
  1361. [!provide] PROVIDE (APB_SARADC = 0x60040000)
  1362. 0x0000000060043000 PROVIDE (USB_SERIAL_JTAG = 0x60043000)
  1363. [!provide] PROVIDE (GDMA = 0x6003f000)
  1364. 0x0000000040000018 rtc_get_reset_reason = 0x40000018
  1365. 0x000000004000001c analog_super_wdt_reset_happened = 0x4000001c
  1366. 0x0000000040000020 jtag_cpu_reset_happened = 0x40000020
  1367. 0x0000000040000024 rtc_get_wakeup_cause = 0x40000024
  1368. 0x0000000040000028 rtc_boot_control = 0x40000028
  1369. 0x000000004000002c rtc_select_apb_bridge = 0x4000002c
  1370. 0x0000000040000030 rtc_unhold_all_pads = 0x40000030
  1371. 0x0000000040000034 set_rtc_memory_crc = 0x40000034
  1372. 0x0000000040000038 cacl_rtc_memory_crc = 0x40000038
  1373. 0x000000004000003c ets_is_print_boot = 0x4000003c
  1374. 0x0000000040000040 ets_printf = 0x40000040
  1375. 0x0000000040000044 ets_install_putc1 = 0x40000044
  1376. 0x0000000040000048 ets_install_uart_printf = 0x40000048
  1377. 0x000000004000004c ets_install_putc2 = 0x4000004c
  1378. 0x0000000040000050 PROVIDE (ets_delay_us = 0x40000050)
  1379. 0x0000000040000054 ets_get_stack_info = 0x40000054
  1380. 0x0000000040000058 ets_install_lock = 0x40000058
  1381. 0x000000004000005c ets_backup_dma_copy = 0x4000005c
  1382. 0x0000000040000060 ets_apb_backup_init_lock_func = 0x40000060
  1383. 0x0000000040000064 UartRxString = 0x40000064
  1384. 0x0000000040000068 uart_tx_one_char = 0x40000068
  1385. 0x000000004000006c uart_tx_one_char2 = 0x4000006c
  1386. 0x0000000040000070 uart_rx_one_char = 0x40000070
  1387. 0x0000000040000074 uart_rx_one_char_block = 0x40000074
  1388. 0x0000000040000078 uart_rx_readbuff = 0x40000078
  1389. 0x000000004000007c uartAttach = 0x4000007c
  1390. 0x0000000040000080 uart_tx_flush = 0x40000080
  1391. 0x0000000040000084 uart_tx_wait_idle = 0x40000084
  1392. 0x0000000040000088 uart_div_modify = 0x40000088
  1393. 0x000000004000008c multofup = 0x4000008c
  1394. 0x0000000040000090 software_reset = 0x40000090
  1395. 0x0000000040000094 software_reset_cpu = 0x40000094
  1396. 0x0000000040000098 assist_debug_clock_enable = 0x40000098
  1397. 0x000000004000009c assist_debug_record_enable = 0x4000009c
  1398. 0x00000000400000a0 clear_super_wdt_reset_flag = 0x400000a0
  1399. 0x00000000400000a4 disable_default_watchdog = 0x400000a4
  1400. 0x00000000400000a8 send_packet = 0x400000a8
  1401. 0x00000000400000ac recv_packet = 0x400000ac
  1402. 0x00000000400000b0 GetUartDevice = 0x400000b0
  1403. 0x00000000400000b4 UartDwnLdProc = 0x400000b4
  1404. 0x00000000400000b8 Uart_Init = 0x400000b8
  1405. 0x00000000400000bc ets_set_user_start = 0x400000bc
  1406. 0x000000003ff1fffc ets_rom_layout_p = 0x3ff1fffc
  1407. 0x000000003fcdfffc ets_ops_table_ptr = 0x3fcdfffc
  1408. 0x00000000400000c0 mz_adler32 = 0x400000c0
  1409. 0x00000000400000c4 mz_crc32 = 0x400000c4
  1410. 0x00000000400000c8 mz_free = 0x400000c8
  1411. 0x00000000400000cc tdefl_compress = 0x400000cc
  1412. 0x00000000400000d0 tdefl_compress_buffer = 0x400000d0
  1413. 0x00000000400000d4 tdefl_compress_mem_to_heap = 0x400000d4
  1414. 0x00000000400000d8 tdefl_compress_mem_to_mem = 0x400000d8
  1415. 0x00000000400000dc tdefl_compress_mem_to_output = 0x400000dc
  1416. 0x00000000400000e0 tdefl_get_adler32 = 0x400000e0
  1417. 0x00000000400000e4 tdefl_get_prev_return_status = 0x400000e4
  1418. 0x00000000400000e8 tdefl_init = 0x400000e8
  1419. 0x00000000400000ec tdefl_write_image_to_png_file_in_memory = 0x400000ec
  1420. 0x00000000400000f0 tdefl_write_image_to_png_file_in_memory_ex = 0x400000f0
  1421. 0x00000000400000f4 tinfl_decompress = 0x400000f4
  1422. 0x00000000400000f8 tinfl_decompress_mem_to_callback = 0x400000f8
  1423. 0x00000000400000fc tinfl_decompress_mem_to_heap = 0x400000fc
  1424. 0x0000000040000100 tinfl_decompress_mem_to_mem = 0x40000100
  1425. [!provide] PROVIDE (jd_prepare = 0x40000104)
  1426. [!provide] PROVIDE (jd_decomp = 0x40000108)
  1427. 0x000000004000010c PROVIDE (esp_rom_spiflash_wait_idle = 0x4000010c)
  1428. 0x0000000040000110 PROVIDE (esp_rom_spiflash_write_encrypted = 0x40000110)
  1429. [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_dest = 0x40000114)
  1430. [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_enable = 0x40000118)
  1431. [!provide] PROVIDE (esp_rom_spiflash_write_encrypted_disable = 0x4000011c)
  1432. [!provide] PROVIDE (esp_rom_spiflash_erase_chip = 0x40000120)
  1433. 0x0000000040000124 PROVIDE (esp_rom_spiflash_erase_block = 0x40000124)
  1434. 0x0000000040000128 PROVIDE (esp_rom_spiflash_erase_sector = 0x40000128)
  1435. 0x000000004000012c PROVIDE (esp_rom_spiflash_write = 0x4000012c)
  1436. 0x0000000040000130 PROVIDE (esp_rom_spiflash_read = 0x40000130)
  1437. 0x0000000040000134 PROVIDE (esp_rom_spiflash_config_param = 0x40000134)
  1438. [!provide] PROVIDE (esp_rom_spiflash_read_user_cmd = 0x40000138)
  1439. [!provide] PROVIDE (esp_rom_spiflash_select_qio_pins = 0x4000013c)
  1440. [!provide] PROVIDE (esp_rom_spiflash_unlock = 0x40000140)
  1441. [!provide] PROVIDE (esp_rom_spi_flash_auto_sus_res = 0x40000144)
  1442. [!provide] PROVIDE (esp_rom_spi_flash_send_resume = 0x40000148)
  1443. [!provide] PROVIDE (esp_rom_spi_flash_update_id = 0x4000014c)
  1444. 0x0000000040000150 PROVIDE (esp_rom_spiflash_config_clk = 0x40000150)
  1445. [!provide] PROVIDE (esp_rom_spiflash_config_readmode = 0x40000154)
  1446. [!provide] PROVIDE (esp_rom_spiflash_read_status = 0x40000158)
  1447. [!provide] PROVIDE (esp_rom_spiflash_read_statushigh = 0x4000015c)
  1448. [!provide] PROVIDE (esp_rom_spiflash_write_status = 0x40000160)
  1449. [!provide] PROVIDE (esp_rom_spiflash_attach = 0x40000164)
  1450. [!provide] PROVIDE (spi_flash_get_chip_size = 0x40000168)
  1451. [!provide] PROVIDE (spi_flash_guard_set = 0x4000016c)
  1452. [!provide] PROVIDE (spi_flash_guard_get = 0x40000170)
  1453. [!provide] PROVIDE (spi_flash_write_config_set = 0x40000174)
  1454. [!provide] PROVIDE (spi_flash_write_config_get = 0x40000178)
  1455. [!provide] PROVIDE (spi_flash_safe_write_address_func_set = 0x4000017c)
  1456. [!provide] PROVIDE (spi_flash_unlock = 0x40000180)
  1457. [!provide] PROVIDE (spi_flash_erase_range = 0x40000184)
  1458. [!provide] PROVIDE (spi_flash_erase_sector = 0x40000188)
  1459. [!provide] PROVIDE (spi_flash_write = 0x4000018c)
  1460. [!provide] PROVIDE (spi_flash_read = 0x40000190)
  1461. [!provide] PROVIDE (spi_flash_write_encrypted = 0x40000194)
  1462. [!provide] PROVIDE (spi_flash_read_encrypted = 0x40000198)
  1463. [!provide] PROVIDE (spi_flash_mmap_os_func_set = 0x4000019c)
  1464. [!provide] PROVIDE (spi_flash_mmap_page_num_init = 0x400001a0)
  1465. [!provide] PROVIDE (spi_flash_mmap = 0x400001a4)
  1466. [!provide] PROVIDE (spi_flash_mmap_pages = 0x400001a8)
  1467. [!provide] PROVIDE (spi_flash_munmap = 0x400001ac)
  1468. [!provide] PROVIDE (spi_flash_mmap_dump = 0x400001b0)
  1469. [!provide] PROVIDE (spi_flash_check_and_flush_cache = 0x400001b4)
  1470. [!provide] PROVIDE (spi_flash_mmap_get_free_pages = 0x400001b8)
  1471. [!provide] PROVIDE (spi_flash_cache2phys = 0x400001bc)
  1472. [!provide] PROVIDE (spi_flash_phys2cache = 0x400001c0)
  1473. [!provide] PROVIDE (spi_flash_disable_cache = 0x400001c4)
  1474. [!provide] PROVIDE (spi_flash_restore_cache = 0x400001c8)
  1475. [!provide] PROVIDE (spi_flash_cache_enabled = 0x400001cc)
  1476. [!provide] PROVIDE (spi_flash_enable_cache = 0x400001d0)
  1477. [!provide] PROVIDE (spi_cache_mode_switch = 0x400001d4)
  1478. [!provide] PROVIDE (spi_common_set_dummy_output = 0x400001d8)
  1479. [!provide] PROVIDE (spi_common_set_flash_cs_timing = 0x400001dc)
  1480. [!provide] PROVIDE (esp_enable_cache_flash_wrap = 0x400001e0)
  1481. [!provide] PROVIDE (SPIEraseArea = 0x400001e4)
  1482. [!provide] PROVIDE (SPILock = 0x400001e8)
  1483. [!provide] PROVIDE (SPIMasterReadModeCnfig = 0x400001ec)
  1484. [!provide] PROVIDE (SPI_Common_Command = 0x400001f0)
  1485. [!provide] PROVIDE (SPI_WakeUp = 0x400001f4)
  1486. [!provide] PROVIDE (SPI_block_erase = 0x400001f8)
  1487. [!provide] PROVIDE (SPI_chip_erase = 0x400001fc)
  1488. [!provide] PROVIDE (SPI_init = 0x40000200)
  1489. [!provide] PROVIDE (SPI_page_program = 0x40000204)
  1490. [!provide] PROVIDE (SPI_read_data = 0x40000208)
  1491. [!provide] PROVIDE (SPI_sector_erase = 0x4000020c)
  1492. [!provide] PROVIDE (SPI_write_enable = 0x40000210)
  1493. [!provide] PROVIDE (SelectSpiFunction = 0x40000214)
  1494. [!provide] PROVIDE (SetSpiDrvs = 0x40000218)
  1495. [!provide] PROVIDE (Wait_SPI_Idle = 0x4000021c)
  1496. [!provide] PROVIDE (spi_dummy_len_fix = 0x40000220)
  1497. [!provide] PROVIDE (Disable_QMode = 0x40000224)
  1498. [!provide] PROVIDE (Enable_QMode = 0x40000228)
  1499. [!provide] PROVIDE (rom_spiflash_legacy_funcs = 0x3fcdfff4)
  1500. 0x000000003fcdfff0 PROVIDE (rom_spiflash_legacy_data = 0x3fcdfff0)
  1501. [!provide] PROVIDE (g_flash_guard_ops = 0x3fcdfff8)
  1502. [!provide] PROVIDE (spi_flash_hal_poll_cmd_done = 0x4000022c)
  1503. [!provide] PROVIDE (spi_flash_hal_device_config = 0x40000230)
  1504. [!provide] PROVIDE (spi_flash_hal_configure_host_io_mode = 0x40000234)
  1505. [!provide] PROVIDE (spi_flash_hal_common_command = 0x40000238)
  1506. [!provide] PROVIDE (spi_flash_hal_read = 0x4000023c)
  1507. [!provide] PROVIDE (spi_flash_hal_erase_chip = 0x40000240)
  1508. [!provide] PROVIDE (spi_flash_hal_erase_sector = 0x40000244)
  1509. [!provide] PROVIDE (spi_flash_hal_erase_block = 0x40000248)
  1510. [!provide] PROVIDE (spi_flash_hal_program_page = 0x4000024c)
  1511. [!provide] PROVIDE (spi_flash_hal_set_write_protect = 0x40000250)
  1512. [!provide] PROVIDE (spi_flash_hal_host_idle = 0x40000254)
  1513. [!provide] PROVIDE (spi_flash_chip_generic_probe = 0x40000258)
  1514. [!provide] PROVIDE (spi_flash_chip_generic_detect_size = 0x4000025c)
  1515. [!provide] PROVIDE (spi_flash_chip_generic_write = 0x40000260)
  1516. [!provide] PROVIDE (spi_flash_chip_generic_write_encrypted = 0x40000264)
  1517. [!provide] PROVIDE (spi_flash_chip_generic_set_write_protect = 0x40000268)
  1518. [!provide] PROVIDE (spi_flash_common_write_status_16b_wrsr = 0x4000026c)
  1519. [!provide] PROVIDE (spi_flash_chip_generic_reset = 0x40000270)
  1520. [!provide] PROVIDE (spi_flash_chip_generic_erase_chip = 0x40000274)
  1521. [!provide] PROVIDE (spi_flash_chip_generic_erase_sector = 0x40000278)
  1522. [!provide] PROVIDE (spi_flash_chip_generic_erase_block = 0x4000027c)
  1523. [!provide] PROVIDE (spi_flash_chip_generic_page_program = 0x40000280)
  1524. [!provide] PROVIDE (spi_flash_chip_generic_get_write_protect = 0x40000284)
  1525. [!provide] PROVIDE (spi_flash_common_read_status_16b_rdsr_rdsr2 = 0x40000288)
  1526. [!provide] PROVIDE (spi_flash_chip_generic_read_reg = 0x4000028c)
  1527. [!provide] PROVIDE (spi_flash_chip_generic_yield = 0x40000290)
  1528. [!provide] PROVIDE (spi_flash_generic_wait_host_idle = 0x40000294)
  1529. [!provide] PROVIDE (spi_flash_chip_generic_wait_idle = 0x40000298)
  1530. [!provide] PROVIDE (spi_flash_chip_generic_config_host_io_mode = 0x4000029c)
  1531. [!provide] PROVIDE (spi_flash_chip_generic_read = 0x400002a0)
  1532. [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr2 = 0x400002a4)
  1533. [!provide] PROVIDE (spi_flash_chip_generic_get_io_mode = 0x400002a8)
  1534. [!provide] PROVIDE (spi_flash_common_read_status_8b_rdsr = 0x400002ac)
  1535. [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr = 0x400002b0)
  1536. [!provide] PROVIDE (spi_flash_common_write_status_8b_wrsr2 = 0x400002b4)
  1537. [!provide] PROVIDE (spi_flash_common_set_io_mode = 0x400002b8)
  1538. [!provide] PROVIDE (spi_flash_chip_generic_set_io_mode = 0x400002bc)
  1539. [!provide] PROVIDE (spi_flash_chip_gd_get_io_mode = 0x400002c0)
  1540. [!provide] PROVIDE (spi_flash_chip_gd_probe = 0x400002c4)
  1541. [!provide] PROVIDE (spi_flash_chip_gd_set_io_mode = 0x400002c8)
  1542. [!provide] PROVIDE (spi_flash_chip_generic_config_data = 0x3fcdffec)
  1543. [!provide] PROVIDE (memspi_host_read_id_hs = 0x400002cc)
  1544. [!provide] PROVIDE (memspi_host_read_status_hs = 0x400002d0)
  1545. [!provide] PROVIDE (memspi_host_flush_cache = 0x400002d4)
  1546. [!provide] PROVIDE (memspi_host_erase_chip = 0x400002d8)
  1547. [!provide] PROVIDE (memspi_host_erase_sector = 0x400002dc)
  1548. [!provide] PROVIDE (memspi_host_erase_block = 0x400002e0)
  1549. [!provide] PROVIDE (memspi_host_program_page = 0x400002e4)
  1550. [!provide] PROVIDE (memspi_host_read = 0x400002e8)
  1551. [!provide] PROVIDE (memspi_host_set_write_protect = 0x400002ec)
  1552. [!provide] PROVIDE (memspi_host_set_max_read_len = 0x400002f0)
  1553. [!provide] PROVIDE (memspi_host_read_data_slicer = 0x400002f4)
  1554. [!provide] PROVIDE (memspi_host_write_data_slicer = 0x400002f8)
  1555. [!provide] PROVIDE (esp_flash_chip_driver_initialized = 0x400002fc)
  1556. [!provide] PROVIDE (esp_flash_read_id = 0x40000300)
  1557. [!provide] PROVIDE (esp_flash_get_size = 0x40000304)
  1558. [!provide] PROVIDE (esp_flash_erase_chip = 0x40000308)
  1559. [!provide] PROVIDE (rom_esp_flash_erase_region = 0x4000030c)
  1560. [!provide] PROVIDE (esp_flash_get_chip_write_protect = 0x40000310)
  1561. [!provide] PROVIDE (esp_flash_set_chip_write_protect = 0x40000314)
  1562. [!provide] PROVIDE (esp_flash_get_protectable_regions = 0x40000318)
  1563. [!provide] PROVIDE (esp_flash_get_protected_region = 0x4000031c)
  1564. [!provide] PROVIDE (esp_flash_set_protected_region = 0x40000320)
  1565. [!provide] PROVIDE (esp_flash_read = 0x40000324)
  1566. [!provide] PROVIDE (esp_flash_write = 0x40000328)
  1567. [!provide] PROVIDE (esp_flash_write_encrypted = 0x4000032c)
  1568. [!provide] PROVIDE (esp_flash_read_encrypted = 0x40000330)
  1569. [!provide] PROVIDE (esp_flash_get_io_mode = 0x40000334)
  1570. [!provide] PROVIDE (esp_flash_set_io_mode = 0x40000338)
  1571. [!provide] PROVIDE (spi_flash_boot_attach = 0x4000033c)
  1572. [!provide] PROVIDE (spi_flash_dump_counters = 0x40000340)
  1573. [!provide] PROVIDE (spi_flash_get_counters = 0x40000344)
  1574. [!provide] PROVIDE (spi_flash_op_counters_config = 0x40000348)
  1575. [!provide] PROVIDE (spi_flash_reset_counters = 0x4000034c)
  1576. [!provide] PROVIDE (esp_flash_default_chip = 0x3fcdffe8)
  1577. [!provide] PROVIDE (esp_flash_api_funcs = 0x3fcdffe4)
  1578. [!provide] PROVIDE (Cache_Get_ICache_Line_Size = 0x400004b0)
  1579. [!provide] PROVIDE (Cache_Get_Mode = 0x400004b4)
  1580. [!provide] PROVIDE (Cache_Address_Through_IBus = 0x400004b8)
  1581. [!provide] PROVIDE (Cache_Address_Through_DBus = 0x400004bc)
  1582. [!provide] PROVIDE (Cache_Set_Default_Mode = 0x400004c0)
  1583. [!provide] PROVIDE (Cache_Enable_Defalut_ICache_Mode = 0x400004c4)
  1584. [!provide] PROVIDE (ROM_Boot_Cache_Init = 0x400004c8)
  1585. [!provide] PROVIDE (Cache_Invalidate_ICache_Items = 0x400004cc)
  1586. [!provide] PROVIDE (Cache_Op_Addr = 0x400004d0)
  1587. [!provide] PROVIDE (Cache_Invalidate_Addr = 0x400004d4)
  1588. [!provide] PROVIDE (Cache_Invalidate_ICache_All = 0x400004d8)
  1589. [!provide] PROVIDE (Cache_Mask_All = 0x400004dc)
  1590. [!provide] PROVIDE (Cache_UnMask_Dram0 = 0x400004e0)
  1591. [!provide] PROVIDE (Cache_Suspend_ICache_Autoload = 0x400004e4)
  1592. [!provide] PROVIDE (Cache_Resume_ICache_Autoload = 0x400004e8)
  1593. [!provide] PROVIDE (Cache_Start_ICache_Preload = 0x400004ec)
  1594. [!provide] PROVIDE (Cache_ICache_Preload_Done = 0x400004f0)
  1595. [!provide] PROVIDE (Cache_End_ICache_Preload = 0x400004f4)
  1596. [!provide] PROVIDE (Cache_Config_ICache_Autoload = 0x400004f8)
  1597. [!provide] PROVIDE (Cache_Enable_ICache_Autoload = 0x400004fc)
  1598. [!provide] PROVIDE (Cache_Disable_ICache_Autoload = 0x40000500)
  1599. [!provide] PROVIDE (Cache_Enable_ICache_PreLock = 0x40000504)
  1600. [!provide] PROVIDE (Cache_Disable_ICache_PreLock = 0x40000508)
  1601. [!provide] PROVIDE (Cache_Lock_ICache_Items = 0x4000050c)
  1602. [!provide] PROVIDE (Cache_Unlock_ICache_Items = 0x40000510)
  1603. [!provide] PROVIDE (Cache_Lock_Addr = 0x40000514)
  1604. [!provide] PROVIDE (Cache_Unlock_Addr = 0x40000518)
  1605. 0x000000004000051c PROVIDE (Cache_Disable_ICache = 0x4000051c)
  1606. 0x0000000040000520 PROVIDE (Cache_Enable_ICache = 0x40000520)
  1607. [!provide] PROVIDE (Cache_Suspend_ICache = 0x40000524)
  1608. [!provide] PROVIDE (Cache_Resume_ICache = 0x40000528)
  1609. [!provide] PROVIDE (Cache_Freeze_ICache_Enable = 0x4000052c)
  1610. [!provide] PROVIDE (Cache_Freeze_ICache_Disable = 0x40000530)
  1611. [!provide] PROVIDE (Cache_Pms_Lock = 0x40000534)
  1612. [!provide] PROVIDE (Cache_Ibus_Pms_Set_Addr = 0x40000538)
  1613. [!provide] PROVIDE (Cache_Ibus_Pms_Set_Attr = 0x4000053c)
  1614. [!provide] PROVIDE (Cache_Dbus_Pms_Set_Addr = 0x40000540)
  1615. [!provide] PROVIDE (Cache_Dbus_Pms_Set_Attr = 0x40000544)
  1616. [!provide] PROVIDE (Cache_Set_IDROM_MMU_Size = 0x40000548)
  1617. [!provide] PROVIDE (Cache_Get_IROM_MMU_End = 0x4000054c)
  1618. [!provide] PROVIDE (Cache_Get_DROM_MMU_End = 0x40000550)
  1619. [!provide] PROVIDE (Cache_Owner_Init = 0x40000554)
  1620. [!provide] PROVIDE (Cache_Occupy_ICache_MEMORY = 0x40000558)
  1621. [!provide] PROVIDE (Cache_MMU_Init = 0x4000055c)
  1622. [!provide] PROVIDE (Cache_Ibus_MMU_Set = 0x40000560)
  1623. [!provide] PROVIDE (Cache_Dbus_MMU_Set = 0x40000564)
  1624. [!provide] PROVIDE (Cache_Count_Flash_Pages = 0x40000568)
  1625. [!provide] PROVIDE (Cache_Travel_Tag_Memory = 0x4000056c)
  1626. [!provide] PROVIDE (Cache_Get_Virtual_Addr = 0x40000570)
  1627. [!provide] PROVIDE (Cache_Get_Memory_BaseAddr = 0x40000574)
  1628. [!provide] PROVIDE (Cache_Get_Memory_Addr = 0x40000578)
  1629. [!provide] PROVIDE (Cache_Get_Memory_value = 0x4000057c)
  1630. [!provide] PROVIDE (rom_cache_op_cb = 0x3fcdffd8)
  1631. [!provide] PROVIDE (rom_cache_internal_table_ptr = 0x3fcdffd4)
  1632. 0x0000000040000580 ets_get_apb_freq = 0x40000580
  1633. 0x0000000040000584 ets_get_cpu_frequency = 0x40000584
  1634. 0x0000000040000588 ets_update_cpu_frequency = 0x40000588
  1635. 0x000000004000058c ets_get_printf_channel = 0x4000058c
  1636. 0x0000000040000590 ets_get_xtal_div = 0x40000590
  1637. 0x0000000040000594 ets_set_xtal_div = 0x40000594
  1638. 0x0000000040000598 ets_get_xtal_freq = 0x40000598
  1639. 0x000000004000059c gpio_input_get = 0x4000059c
  1640. 0x00000000400005a0 gpio_matrix_in = 0x400005a0
  1641. 0x00000000400005a4 gpio_matrix_out = 0x400005a4
  1642. 0x00000000400005a8 gpio_output_disable = 0x400005a8
  1643. 0x00000000400005ac gpio_output_enable = 0x400005ac
  1644. 0x00000000400005b0 gpio_output_set = 0x400005b0
  1645. 0x00000000400005b4 gpio_pad_hold = 0x400005b4
  1646. 0x00000000400005b8 gpio_pad_input_disable = 0x400005b8
  1647. 0x00000000400005bc gpio_pad_input_enable = 0x400005bc
  1648. 0x00000000400005c0 gpio_pad_pulldown = 0x400005c0
  1649. 0x00000000400005c4 gpio_pad_pullup = 0x400005c4
  1650. 0x00000000400005c8 gpio_pad_select_gpio = 0x400005c8
  1651. 0x00000000400005cc gpio_pad_set_drv = 0x400005cc
  1652. 0x00000000400005d0 gpio_pad_unhold = 0x400005d0
  1653. 0x00000000400005d4 gpio_pin_wakeup_disable = 0x400005d4
  1654. 0x00000000400005d8 gpio_pin_wakeup_enable = 0x400005d8
  1655. 0x00000000400005dc gpio_bypass_matrix_in = 0x400005dc
  1656. 0x00000000400005e0 esprv_intc_int_set_priority = 0x400005e0
  1657. 0x00000000400005e4 esprv_intc_int_set_threshold = 0x400005e4
  1658. 0x00000000400005e8 esprv_intc_int_enable = 0x400005e8
  1659. 0x00000000400005ec esprv_intc_int_disable = 0x400005ec
  1660. 0x00000000400005f0 esprv_intc_int_set_type = 0x400005f0
  1661. 0x00000000400005f4 intr_matrix_set = 0x400005f4
  1662. 0x00000000400005f8 ets_intr_lock = 0x400005f8
  1663. 0x00000000400005fc ets_intr_unlock = 0x400005fc
  1664. [!provide] PROVIDE (intr_handler_set = 0x40000600)
  1665. 0x0000000040000604 ets_isr_attach = 0x40000604
  1666. 0x0000000040000608 ets_isr_mask = 0x40000608
  1667. 0x000000004000060c ets_isr_unmask = 0x4000060c
  1668. 0x0000000040000610 md5_vector = 0x40000610
  1669. 0x0000000040000614 MD5Init = 0x40000614
  1670. 0x0000000040000618 MD5Update = 0x40000618
  1671. 0x000000004000061c MD5Final = 0x4000061c
  1672. 0x0000000040000620 hmac_md5_vector = 0x40000620
  1673. 0x0000000040000624 hmac_md5 = 0x40000624
  1674. 0x0000000040000628 crc32_le = 0x40000628
  1675. 0x000000004000062c crc32_be = 0x4000062c
  1676. 0x0000000040000630 crc16_le = 0x40000630
  1677. 0x0000000040000634 crc16_be = 0x40000634
  1678. 0x0000000040000638 crc8_le = 0x40000638
  1679. 0x000000004000063c crc8_be = 0x4000063c
  1680. 0x0000000040000640 esp_crc8 = 0x40000640
  1681. 0x0000000040000644 ets_sha_enable = 0x40000644
  1682. 0x0000000040000648 ets_sha_disable = 0x40000648
  1683. 0x000000004000064c ets_sha_get_state = 0x4000064c
  1684. 0x0000000040000650 ets_sha_init = 0x40000650
  1685. 0x0000000040000654 ets_sha_process = 0x40000654
  1686. 0x0000000040000658 ets_sha_starts = 0x40000658
  1687. 0x000000004000065c ets_sha_update = 0x4000065c
  1688. 0x0000000040000660 ets_sha_finish = 0x40000660
  1689. 0x0000000040000664 ets_sha_clone = 0x40000664
  1690. 0x0000000040000668 ets_hmac_enable = 0x40000668
  1691. 0x000000004000066c ets_hmac_disable = 0x4000066c
  1692. 0x0000000040000670 ets_hmac_calculate_message = 0x40000670
  1693. 0x0000000040000674 ets_hmac_calculate_downstream = 0x40000674
  1694. 0x0000000040000678 ets_hmac_invalidate_downstream = 0x40000678
  1695. 0x000000004000067c ets_jtag_enable_temporarily = 0x4000067c
  1696. 0x0000000040000680 ets_aes_enable = 0x40000680
  1697. 0x0000000040000684 ets_aes_disable = 0x40000684
  1698. 0x0000000040000688 ets_aes_setkey = 0x40000688
  1699. 0x000000004000068c ets_aes_block = 0x4000068c
  1700. 0x0000000040000690 ets_bigint_enable = 0x40000690
  1701. 0x0000000040000694 ets_bigint_disable = 0x40000694
  1702. 0x0000000040000698 ets_bigint_multiply = 0x40000698
  1703. 0x000000004000069c ets_bigint_modmult = 0x4000069c
  1704. 0x00000000400006a0 ets_bigint_modexp = 0x400006a0
  1705. 0x00000000400006a4 ets_bigint_wait_finish = 0x400006a4
  1706. 0x00000000400006a8 ets_bigint_getz = 0x400006a8
  1707. 0x00000000400006ac ets_ds_enable = 0x400006ac
  1708. 0x00000000400006b0 ets_ds_disable = 0x400006b0
  1709. 0x00000000400006b4 ets_ds_start_sign = 0x400006b4
  1710. 0x00000000400006b8 ets_ds_is_busy = 0x400006b8
  1711. 0x00000000400006bc ets_ds_finish_sign = 0x400006bc
  1712. 0x00000000400006c0 ets_ds_encrypt_params = 0x400006c0
  1713. 0x00000000400006c4 ets_aes_setkey_dec = 0x400006c4
  1714. 0x00000000400006c8 ets_aes_setkey_enc = 0x400006c8
  1715. 0x00000000400006cc ets_mgf1_sha256 = 0x400006cc
  1716. 0x00000000400006d0 ets_efuse_read = 0x400006d0
  1717. 0x00000000400006d4 ets_efuse_program = 0x400006d4
  1718. 0x00000000400006d8 ets_efuse_clear_program_registers = 0x400006d8
  1719. 0x00000000400006dc ets_efuse_write_key = 0x400006dc
  1720. 0x00000000400006e0 ets_efuse_get_read_register_address = 0x400006e0
  1721. 0x00000000400006e4 ets_efuse_get_key_purpose = 0x400006e4
  1722. 0x00000000400006e8 ets_efuse_key_block_unused = 0x400006e8
  1723. 0x00000000400006ec ets_efuse_find_unused_key_block = 0x400006ec
  1724. 0x00000000400006f0 ets_efuse_rs_calculate = 0x400006f0
  1725. 0x00000000400006f4 ets_efuse_count_unused_key_blocks = 0x400006f4
  1726. 0x00000000400006f8 ets_efuse_secure_boot_enabled = 0x400006f8
  1727. 0x00000000400006fc ets_efuse_secure_boot_aggressive_revoke_enabled = 0x400006fc
  1728. 0x0000000040000700 ets_efuse_cache_encryption_enabled = 0x40000700
  1729. 0x0000000040000704 ets_efuse_download_modes_disabled = 0x40000704
  1730. 0x0000000040000708 ets_efuse_find_purpose = 0x40000708
  1731. 0x000000004000070c ets_efuse_flash_opi_5pads_power_sel_vddspi = 0x4000070c
  1732. 0x0000000040000710 ets_efuse_force_send_resume = 0x40000710
  1733. 0x0000000040000714 ets_efuse_get_flash_delay_us = 0x40000714
  1734. 0x0000000040000718 ets_efuse_get_mac = 0x40000718
  1735. 0x000000004000071c ets_efuse_get_spiconfig = 0x4000071c
  1736. 0x0000000040000720 ets_efuse_usb_print_is_disabled = 0x40000720
  1737. 0x0000000040000724 ets_efuse_usb_serial_jtag_print_is_disabled = 0x40000724
  1738. 0x0000000040000728 ets_efuse_get_uart_print_control = 0x40000728
  1739. 0x000000004000072c ets_efuse_get_wp_pad = 0x4000072c
  1740. 0x0000000040000730 ets_efuse_legacy_spi_boot_mode_disabled = 0x40000730
  1741. 0x0000000040000734 ets_efuse_security_download_modes_enabled = 0x40000734
  1742. 0x0000000040000738 ets_efuse_set_timing = 0x40000738
  1743. 0x000000004000073c ets_efuse_jtag_disabled = 0x4000073c
  1744. 0x0000000040000740 ets_efuse_usb_download_mode_disabled = 0x40000740
  1745. 0x0000000040000744 ets_efuse_usb_module_disabled = 0x40000744
  1746. 0x0000000040000748 ets_efuse_usb_device_disabled = 0x40000748
  1747. 0x000000004000074c ets_emsa_pss_verify = 0x4000074c
  1748. 0x0000000040000750 ets_rsa_pss_verify = 0x40000750
  1749. 0x0000000040000754 ets_secure_boot_verify_bootloader_with_keys = 0x40000754
  1750. 0x0000000040000758 ets_secure_boot_verify_signature = 0x40000758
  1751. 0x000000004000075c ets_secure_boot_read_key_digests = 0x4000075c
  1752. 0x0000000040000760 ets_secure_boot_revoke_public_key_digest = 0x40000760
  1753. [!provide] PROVIDE (usb_uart_rx_one_char = 0x400008cc)
  1754. [!provide] PROVIDE (usb_uart_rx_one_char_block = 0x400008d0)
  1755. [!provide] PROVIDE (usb_uart_tx_flush = 0x400008d4)
  1756. [!provide] PROVIDE (usb_uart_tx_one_char = 0x400008d8)
  1757. 0x000000003fcdffd1 PROVIDE (g_uart_print = 0x3fcdffd1)
  1758. 0x000000003fcdffd0 PROVIDE (g_usb_print = 0x3fcdffd0)
  1759. 0x00000000400008dc bt_rf_coex_get_dft_cfg = 0x400008dc
  1760. 0x00000000400008e0 bt_rf_coex_hooks_p_set = 0x400008e0
  1761. 0x00000000400008e4 btdm_con_maxevtime_cal_impl = 0x400008e4
  1762. 0x00000000400008e8 btdm_controller_get_compile_version_impl = 0x400008e8
  1763. 0x00000000400008ec btdm_controller_rom_data_init = 0x400008ec
  1764. 0x00000000400008f0 btdm_dis_privacy_err_report_impl = 0x400008f0
  1765. 0x00000000400008f4 btdm_disable_adv_delay_impl = 0x400008f4
  1766. 0x00000000400008f8 btdm_enable_scan_continue_impl = 0x400008f8
  1767. 0x00000000400008fc btdm_enable_scan_forever_impl = 0x400008fc
  1768. 0x0000000040000900 btdm_get_power_state_impl = 0x40000900
  1769. 0x0000000040000904 btdm_get_prevent_sleep_flag_impl = 0x40000904
  1770. 0x0000000040000908 btdm_power_state_active_impl = 0x40000908
  1771. 0x000000004000090c btdm_switch_phy_coded_impl = 0x4000090c
  1772. 0x0000000040000910 hci_acl_data_handler = 0x40000910
  1773. 0x0000000040000914 hci_disconnect_cmd_handler = 0x40000914
  1774. 0x0000000040000918 hci_le_con_upd_cmd_handler = 0x40000918
  1775. 0x000000004000091c hci_le_ltk_req_neg_reply_cmd_handler = 0x4000091c
  1776. 0x0000000040000920 hci_le_ltk_req_reply_cmd_handler = 0x40000920
  1777. 0x0000000040000924 hci_le_rd_chnl_map_cmd_handler = 0x40000924
  1778. 0x0000000040000928 hci_le_rd_phy_cmd_handler = 0x40000928
  1779. 0x000000004000092c hci_le_rd_rem_feats_cmd_handler = 0x4000092c
  1780. 0x0000000040000930 hci_le_rem_con_param_req_neg_reply_cmd_handler = 0x40000930
  1781. 0x0000000040000934 hci_le_rem_con_param_req_reply_cmd_handler = 0x40000934
  1782. 0x0000000040000938 hci_le_set_data_len_cmd_handler = 0x40000938
  1783. 0x000000004000093c hci_le_set_phy_cmd_handler = 0x4000093c
  1784. 0x0000000040000940 hci_le_start_enc_cmd_handler = 0x40000940
  1785. 0x0000000040000944 hci_rd_auth_payl_to_cmd_handler = 0x40000944
  1786. 0x0000000040000948 hci_rd_rem_ver_info_cmd_handler = 0x40000948
  1787. 0x000000004000094c hci_rd_rssi_cmd_handler = 0x4000094c
  1788. 0x0000000040000950 hci_rd_tx_pwr_lvl_cmd_handler = 0x40000950
  1789. 0x0000000040000954 hci_vs_set_pref_slave_evt_dur_cmd_handler = 0x40000954
  1790. 0x0000000040000958 hci_vs_set_pref_slave_latency_cmd_handler = 0x40000958
  1791. 0x000000004000095c hci_wr_auth_payl_to_cmd_handler = 0x4000095c
  1792. 0x0000000040000960 ll_channel_map_ind_handler = 0x40000960
  1793. 0x0000000040000964 ll_connection_param_req_handler = 0x40000964
  1794. 0x0000000040000968 ll_connection_param_rsp_handler = 0x40000968
  1795. 0x000000004000096c ll_connection_update_ind_handler = 0x4000096c
  1796. 0x0000000040000970 ll_enc_req_handler = 0x40000970
  1797. 0x0000000040000974 ll_enc_rsp_handler = 0x40000974
  1798. 0x0000000040000978 ll_feature_req_handler = 0x40000978
  1799. 0x000000004000097c ll_feature_rsp_handler = 0x4000097c
  1800. 0x0000000040000980 ll_length_req_handler = 0x40000980
  1801. 0x0000000040000984 ll_length_rsp_handler = 0x40000984
  1802. 0x0000000040000988 ll_min_used_channels_ind_handler = 0x40000988
  1803. 0x000000004000098c ll_pause_enc_req_handler = 0x4000098c
  1804. 0x0000000040000990 ll_pause_enc_rsp_handler = 0x40000990
  1805. 0x0000000040000994 ll_phy_req_handler = 0x40000994
  1806. 0x0000000040000998 ll_phy_rsp_handler = 0x40000998
  1807. 0x000000004000099c ll_phy_update_ind_handler = 0x4000099c
  1808. 0x00000000400009a0 ll_ping_req_handler = 0x400009a0
  1809. 0x00000000400009a4 ll_ping_rsp_handler = 0x400009a4
  1810. 0x00000000400009a8 ll_slave_feature_req_handler = 0x400009a8
  1811. 0x00000000400009ac ll_start_enc_req_handler = 0x400009ac
  1812. 0x00000000400009b0 ll_start_enc_rsp_handler = 0x400009b0
  1813. 0x00000000400009b4 ll_terminate_ind_handler = 0x400009b4
  1814. 0x00000000400009b8 ll_version_ind_handler = 0x400009b8
  1815. 0x00000000400009bc llc_auth_payl_nearly_to_handler = 0x400009bc
  1816. 0x00000000400009c0 llc_auth_payl_real_to_handler = 0x400009c0
  1817. 0x00000000400009c4 llc_encrypt_ind_handler = 0x400009c4
  1818. 0x00000000400009c8 llc_hci_command_handler_wrapper = 0x400009c8
  1819. 0x00000000400009cc llc_ll_connection_param_req_pdu_send = 0x400009cc
  1820. 0x00000000400009d0 llc_ll_connection_param_rsp_pdu_send = 0x400009d0
  1821. 0x00000000400009d4 llc_ll_connection_update_ind_pdu_send = 0x400009d4
  1822. 0x00000000400009d8 llc_ll_enc_req_pdu_send = 0x400009d8
  1823. 0x00000000400009dc llc_ll_enc_rsp_pdu_send = 0x400009dc
  1824. 0x00000000400009e0 llc_ll_feature_req_pdu_send = 0x400009e0
  1825. 0x00000000400009e4 llc_ll_feature_rsp_pdu_send = 0x400009e4
  1826. 0x00000000400009e8 llc_ll_length_req_pdu_send = 0x400009e8
  1827. 0x00000000400009ec llc_ll_length_rsp_pdu_send = 0x400009ec
  1828. 0x00000000400009f0 llc_ll_pause_enc_req_pdu_send = 0x400009f0
  1829. 0x00000000400009f4 llc_ll_pause_enc_rsp_pdu_send = 0x400009f4
  1830. 0x00000000400009f8 llc_ll_phy_req_pdu_send = 0x400009f8
  1831. 0x00000000400009fc llc_ll_phy_rsp_pdu_send = 0x400009fc
  1832. 0x0000000040000a00 llc_ll_ping_req_pdu_send = 0x40000a00
  1833. 0x0000000040000a04 llc_ll_ping_rsp_pdu_send = 0x40000a04
  1834. 0x0000000040000a08 llc_ll_start_enc_req_pdu_send = 0x40000a08
  1835. 0x0000000040000a0c llc_ll_start_enc_rsp_pdu_send = 0x40000a0c
  1836. 0x0000000040000a10 llc_ll_terminate_ind_pdu_send = 0x40000a10
  1837. 0x0000000040000a14 llc_ll_unknown_rsp_pdu_send = 0x40000a14
  1838. 0x0000000040000a18 llc_llcp_ch_map_update_ind_pdu_send = 0x40000a18
  1839. 0x0000000040000a1c llc_llcp_phy_upd_ind_pdu_send = 0x40000a1c
  1840. 0x0000000040000a20 llc_llcp_version_ind_pdu_send = 0x40000a20
  1841. 0x0000000040000a24 llc_op_ch_map_upd_ind_handler = 0x40000a24
  1842. 0x0000000040000a28 llc_op_con_upd_ind_handler = 0x40000a28
  1843. 0x0000000040000a2c llc_op_disconnect_ind_handler = 0x40000a2c
  1844. 0x0000000040000a30 llc_op_dl_upd_ind_handler = 0x40000a30
  1845. 0x0000000040000a34 llc_op_encrypt_ind_handler = 0x40000a34
  1846. 0x0000000040000a38 llc_op_feats_exch_ind_handler = 0x40000a38
  1847. 0x0000000040000a3c llc_op_le_ping_ind_handler = 0x40000a3c
  1848. 0x0000000040000a40 llc_op_phy_upd_ind_handler = 0x40000a40
  1849. 0x0000000040000a44 llc_op_ver_exch_ind_handler = 0x40000a44
  1850. 0x0000000040000a48 llc_stopped_ind_handler = 0x40000a48
  1851. 0x0000000040000a4c lld_acl_rx_ind_handler = 0x40000a4c
  1852. 0x0000000040000a50 lld_acl_tx_cfm_handler = 0x40000a50
  1853. 0x0000000040000a54 lld_adv_end_ind_handler = 0x40000a54
  1854. 0x0000000040000a58 lld_adv_rep_ind_handler = 0x40000a58
  1855. 0x0000000040000a5c lld_ch_map_upd_cfm_handler = 0x40000a5c
  1856. 0x0000000040000a60 lld_con_estab_ind_handler = 0x40000a60
  1857. 0x0000000040000a64 lld_con_evt_sd_evt_time_set = 0x40000a64
  1858. 0x0000000040000a68 lld_con_offset_upd_ind_handler = 0x40000a68
  1859. 0x0000000040000a6c lld_con_param_upd_cfm_handler = 0x40000a6c
  1860. 0x0000000040000a70 lld_disc_ind_handler = 0x40000a70
  1861. 0x0000000040000a74 lld_init_end_ind_handler = 0x40000a74
  1862. 0x0000000040000a78 lld_llcp_rx_ind_handler_wrapper = 0x40000a78
  1863. 0x0000000040000a7c lld_llcp_tx_cfm_handler = 0x40000a7c
  1864. 0x0000000040000a80 lld_per_adv_end_ind_handler = 0x40000a80
  1865. 0x0000000040000a84 lld_per_adv_rep_ind_handler = 0x40000a84
  1866. 0x0000000040000a88 lld_per_adv_rx_end_ind_handler = 0x40000a88
  1867. 0x0000000040000a8c lld_phy_coded_500k_get = 0x40000a8c
  1868. 0x0000000040000a90 lld_phy_upd_cfm_handler = 0x40000a90
  1869. 0x0000000040000a94 lld_scan_end_ind_handler = 0x40000a94
  1870. 0x0000000040000a98 lld_scan_req_ind_handler = 0x40000a98
  1871. 0x0000000040000a9c lld_sync_start_req_handler = 0x40000a9c
  1872. 0x0000000040000aa0 lld_test_end_ind_handler = 0x40000aa0
  1873. 0x0000000040000aa4 lld_update_rxbuf_handler = 0x40000aa4
  1874. 0x0000000040000aa8 llm_ch_map_update_ind_handler = 0x40000aa8
  1875. 0x0000000040000aac llm_hci_command_handler_wrapper = 0x40000aac
  1876. 0x0000000040000ab0 llm_scan_period_to_handler = 0x40000ab0
  1877. 0x0000000040000ab4 r_Add2SelfBigHex256 = 0x40000ab4
  1878. 0x0000000040000ab8 r_AddBigHex256 = 0x40000ab8
  1879. 0x0000000040000abc r_AddBigHexModP256 = 0x40000abc
  1880. 0x0000000040000ac0 r_AddP256 = 0x40000ac0
  1881. 0x0000000040000ac4 r_AddPdiv2_256 = 0x40000ac4
  1882. 0x0000000040000ac8 r_GF_Jacobian_Point_Addition256 = 0x40000ac8
  1883. 0x0000000040000acc r_GF_Jacobian_Point_Double256 = 0x40000acc
  1884. 0x0000000040000ad0 r_GF_Point_Jacobian_To_Affine256 = 0x40000ad0
  1885. 0x0000000040000ad4 r_MultiplyBigHexByUint32_256 = 0x40000ad4
  1886. 0x0000000040000ad8 r_MultiplyBigHexModP256 = 0x40000ad8
  1887. 0x0000000040000adc r_MultiplyByU16ModP256 = 0x40000adc
  1888. 0x0000000040000ae0 r_SubtractBigHex256 = 0x40000ae0
  1889. 0x0000000040000ae4 r_SubtractBigHexMod256 = 0x40000ae4
  1890. 0x0000000040000ae8 r_SubtractBigHexUint32_256 = 0x40000ae8
  1891. 0x0000000040000aec r_SubtractFromSelfBigHex256 = 0x40000aec
  1892. 0x0000000040000af0 r_SubtractFromSelfBigHexSign256 = 0x40000af0
  1893. 0x0000000040000af4 r_aes_alloc = 0x40000af4
  1894. 0x0000000040000af8 r_aes_ccm_continue = 0x40000af8
  1895. 0x0000000040000afc r_aes_ccm_process_e = 0x40000afc
  1896. 0x0000000040000b00 r_aes_ccm_xor_128_lsb = 0x40000b00
  1897. 0x0000000040000b04 r_aes_ccm_xor_128_msb = 0x40000b04
  1898. 0x0000000040000b08 r_aes_cmac_continue = 0x40000b08
  1899. 0x0000000040000b0c r_aes_cmac_start = 0x40000b0c
  1900. 0x0000000040000b10 r_aes_k1_continue = 0x40000b10
  1901. 0x0000000040000b14 r_aes_k2_continue = 0x40000b14
  1902. 0x0000000040000b18 r_aes_k3_continue = 0x40000b18
  1903. 0x0000000040000b1c r_aes_k4_continue = 0x40000b1c
  1904. 0x0000000040000b20 r_aes_shift_left_128 = 0x40000b20
  1905. 0x0000000040000b24 r_aes_start = 0x40000b24
  1906. 0x0000000040000b28 r_aes_xor_128 = 0x40000b28
  1907. 0x0000000040000b2c r_assert_err = 0x40000b2c
  1908. 0x0000000040000b30 r_assert_param = 0x40000b30
  1909. 0x0000000040000b34 r_assert_warn = 0x40000b34
  1910. 0x0000000040000b38 r_bigHexInversion256 = 0x40000b38
  1911. 0x0000000040000b3c r_ble_sw_cca_check_isr = 0x40000b3c
  1912. 0x0000000040000b40 r_ble_util_buf_acl_tx_alloc = 0x40000b40
  1913. 0x0000000040000b44 r_ble_util_buf_acl_tx_elt_get = 0x40000b44
  1914. 0x0000000040000b48 r_ble_util_buf_acl_tx_free = 0x40000b48
  1915. 0x0000000040000b4c r_ble_util_buf_acl_tx_free_in_isr = 0x40000b4c
  1916. 0x0000000040000b50 r_ble_util_buf_adv_tx_alloc = 0x40000b50
  1917. 0x0000000040000b54 r_ble_util_buf_adv_tx_free = 0x40000b54
  1918. 0x0000000040000b58 r_ble_util_buf_adv_tx_free_in_isr = 0x40000b58
  1919. 0x0000000040000b5c r_ble_util_buf_env_deinit = 0x40000b5c
  1920. 0x0000000040000b60 r_ble_util_buf_env_init = 0x40000b60
  1921. 0x0000000040000b64 r_ble_util_buf_get_rx_buf_nb = 0x40000b64
  1922. 0x0000000040000b68 r_ble_util_buf_get_rx_buf_size = 0x40000b68
  1923. 0x0000000040000b6c r_ble_util_buf_llcp_tx_alloc = 0x40000b6c
  1924. 0x0000000040000b70 r_ble_util_buf_llcp_tx_free = 0x40000b70
  1925. 0x0000000040000b74 r_ble_util_buf_rx_alloc = 0x40000b74
  1926. 0x0000000040000b78 r_ble_util_buf_rx_alloc_in_isr = 0x40000b78
  1927. 0x0000000040000b7c r_ble_util_buf_rx_free = 0x40000b7c
  1928. 0x0000000040000b80 r_ble_util_buf_rx_free_in_isr = 0x40000b80
  1929. 0x0000000040000b84 r_ble_util_buf_set_rx_buf_nb = 0x40000b84
  1930. 0x0000000040000b88 r_ble_util_buf_set_rx_buf_size = 0x40000b88
  1931. 0x0000000040000b8c r_ble_util_data_rx_buf_reset = 0x40000b8c
  1932. 0x0000000040000b90 r_bt_bb_get_intr_mask = 0x40000b90
  1933. 0x0000000040000b94 r_bt_bb_intr_clear = 0x40000b94
  1934. 0x0000000040000b98 r_bt_bb_intr_mask_set = 0x40000b98
  1935. 0x0000000040000b9c r_bt_bb_isr = 0x40000b9c
  1936. 0x0000000040000ba0 r_bt_rf_coex_cfg_set = 0x40000ba0
  1937. 0x0000000040000ba4 r_bt_rf_coex_conn_dynamic_pti_en_get = 0x40000ba4
  1938. 0x0000000040000ba8 r_bt_rf_coex_conn_phy_coded_data_time_limit_en_get = 0x40000ba8
  1939. 0x0000000040000bac r_bt_rf_coex_ext_adv_dynamic_pti_en_get = 0x40000bac
  1940. 0x0000000040000bb0 r_bt_rf_coex_ext_scan_dynamic_pti_en_get = 0x40000bb0
  1941. 0x0000000040000bb4 r_bt_rf_coex_legacy_adv_dynamic_pti_en_get = 0x40000bb4
  1942. 0x0000000040000bb8 r_bt_rf_coex_per_adv_dynamic_pti_en_get = 0x40000bb8
  1943. 0x0000000040000bbc r_bt_rf_coex_pti_table_get = 0x40000bbc
  1944. 0x0000000040000bc0 r_bt_rf_coex_st_param_get = 0x40000bc0
  1945. 0x0000000040000bc4 r_bt_rf_coex_st_param_set = 0x40000bc4
  1946. 0x0000000040000bc8 r_bt_rf_coex_sync_scan_dynamic_pti_en_get = 0x40000bc8
  1947. 0x0000000040000bcc r_bt_rma_apply_rule_cs_fmt = 0x40000bcc
  1948. 0x0000000040000bd0 r_bt_rma_apply_rule_cs_idx = 0x40000bd0
  1949. 0x0000000040000bd4 r_bt_rma_configure = 0x40000bd4
  1950. 0x0000000040000bd8 r_bt_rma_deregister_rule_cs_fmt = 0x40000bd8
  1951. 0x0000000040000bdc r_bt_rma_deregister_rule_cs_idx = 0x40000bdc
  1952. 0x0000000040000be0 r_bt_rma_get_ant_by_act = 0x40000be0
  1953. 0x0000000040000be4 r_bt_rma_init = 0x40000be4
  1954. 0x0000000040000be8 r_bt_rma_register_rule_cs_fmt = 0x40000be8
  1955. 0x0000000040000bec r_bt_rma_register_rule_cs_idx = 0x40000bec
  1956. 0x0000000040000bf0 r_bt_rtp_apply_rule_cs_fmt = 0x40000bf0
  1957. 0x0000000040000bf4 r_bt_rtp_apply_rule_cs_idx = 0x40000bf4
  1958. 0x0000000040000bf8 r_bt_rtp_deregister_rule_cs_fmt = 0x40000bf8
  1959. 0x0000000040000bfc r_bt_rtp_deregister_rule_cs_idx = 0x40000bfc
  1960. 0x0000000040000c00 r_bt_rtp_get_txpwr_idx_by_act = 0x40000c00
  1961. 0x0000000040000c04 r_bt_rtp_init = 0x40000c04
  1962. 0x0000000040000c08 r_bt_rtp_register_rule_cs_fmt = 0x40000c08
  1963. 0x0000000040000c0c r_bt_rtp_register_rule_cs_idx = 0x40000c0c
  1964. 0x0000000040000c10 r_btdm_isr = 0x40000c10
  1965. 0x0000000040000c14 r_btdm_task_post = 0x40000c14
  1966. 0x0000000040000c18 r_btdm_task_post_from_isr = 0x40000c18
  1967. 0x0000000040000c1c r_btdm_task_recycle = 0x40000c1c
  1968. 0x0000000040000c20 r_cali_phase_match_p = 0x40000c20
  1969. 0x0000000040000c24 r_cmp_abs_time = 0x40000c24
  1970. 0x0000000040000c28 r_cmp_dest_id = 0x40000c28
  1971. 0x0000000040000c2c r_cmp_timer_id = 0x40000c2c
  1972. 0x0000000040000c30 r_co_bdaddr_compare = 0x40000c30
  1973. 0x0000000040000c34 r_co_ble_pkt_dur_in_us = 0x40000c34
  1974. 0x0000000040000c38 r_co_list_extract = 0x40000c38
  1975. 0x0000000040000c3c r_co_list_extract_after = 0x40000c3c
  1976. 0x0000000040000c40 r_co_list_extract_sublist = 0x40000c40
  1977. 0x0000000040000c44 r_co_list_find = 0x40000c44
  1978. 0x0000000040000c48 r_co_list_init = 0x40000c48
  1979. 0x0000000040000c4c r_co_list_insert_after = 0x40000c4c
  1980. 0x0000000040000c50 r_co_list_insert_before = 0x40000c50
  1981. 0x0000000040000c54 r_co_list_merge = 0x40000c54
  1982. 0x0000000040000c58 r_co_list_pool_init = 0x40000c58
  1983. 0x0000000040000c5c r_co_list_pop_front = 0x40000c5c
  1984. 0x0000000040000c60 r_co_list_push_back = 0x40000c60
  1985. 0x0000000040000c64 r_co_list_push_back_sublist = 0x40000c64
  1986. 0x0000000040000c68 r_co_list_push_front = 0x40000c68
  1987. 0x0000000040000c6c r_co_list_size = 0x40000c6c
  1988. 0x0000000040000c70 r_co_nb_good_le_channels = 0x40000c70
  1989. 0x0000000040000c74 r_co_util_pack = 0x40000c74
  1990. 0x0000000040000c78 r_co_util_read_array_size = 0x40000c78
  1991. 0x0000000040000c7c r_co_util_unpack = 0x40000c7c
  1992. 0x0000000040000c80 r_dbg_env_deinit = 0x40000c80
  1993. 0x0000000040000c84 r_dbg_env_init = 0x40000c84
  1994. 0x0000000040000c88 r_dbg_platform_reset_complete = 0x40000c88
  1995. 0x0000000040000c8c r_dl_upd_proc_start = 0x40000c8c
  1996. 0x0000000040000c90 r_dump_data = 0x40000c90
  1997. 0x0000000040000c94 r_ecc_abort_key256_generation = 0x40000c94
  1998. 0x0000000040000c98 r_ecc_gen_new_public_key = 0x40000c98
  1999. 0x0000000040000c9c r_ecc_gen_new_secret_key = 0x40000c9c
  2000. 0x0000000040000ca0 r_ecc_generate_key256 = 0x40000ca0
  2001. 0x0000000040000ca4 r_ecc_get_debug_Keys = 0x40000ca4
  2002. 0x0000000040000ca8 r_ecc_init = 0x40000ca8
  2003. 0x0000000040000cac r_ecc_is_valid_point = 0x40000cac
  2004. 0x0000000040000cb0 r_ecc_multiplication_event_handler = 0x40000cb0
  2005. 0x0000000040000cb4 r_ecc_point_multiplication_win_256 = 0x40000cb4
  2006. 0x0000000040000cb8 r_emi_alloc_em_mapping_by_offset = 0x40000cb8
  2007. 0x0000000040000cbc r_emi_base_reg_lut_show = 0x40000cbc
  2008. 0x0000000040000cc0 r_emi_em_base_reg_show = 0x40000cc0
  2009. 0x0000000040000cc4 r_emi_free_em_mapping_by_offset = 0x40000cc4
  2010. 0x0000000040000cc8 r_emi_get_em_mapping_idx_by_offset = 0x40000cc8
  2011. 0x0000000040000ccc r_emi_get_mem_addr_by_offset = 0x40000ccc
  2012. 0x0000000040000cd0 r_emi_overwrite_em_mapping_by_offset = 0x40000cd0
  2013. 0x0000000040000cd4 r_esp_vendor_hci_command_handler = 0x40000cd4
  2014. 0x0000000040000cd8 r_get_stack_usage = 0x40000cd8
  2015. 0x0000000040000cdc r_h4tl_acl_hdr_rx_evt_handler = 0x40000cdc
  2016. 0x0000000040000ce0 r_h4tl_cmd_hdr_rx_evt_handler = 0x40000ce0
  2017. 0x0000000040000ce4 r_h4tl_cmd_pld_rx_evt_handler = 0x40000ce4
  2018. 0x0000000040000ce8 r_h4tl_eif_io_event_post = 0x40000ce8
  2019. 0x0000000040000cec r_h4tl_eif_register = 0x40000cec
  2020. 0x0000000040000cf0 r_h4tl_init = 0x40000cf0
  2021. 0x0000000040000cf4 r_h4tl_out_of_sync = 0x40000cf4
  2022. 0x0000000040000cf8 r_h4tl_out_of_sync_check = 0x40000cf8
  2023. 0x0000000040000cfc r_h4tl_read_hdr = 0x40000cfc
  2024. 0x0000000040000d00 r_h4tl_read_next_out_of_sync = 0x40000d00
  2025. 0x0000000040000d04 r_h4tl_read_payl = 0x40000d04
  2026. 0x0000000040000d08 r_h4tl_read_start = 0x40000d08
  2027. 0x0000000040000d0c r_h4tl_rx_acl_hdr_extract = 0x40000d0c
  2028. 0x0000000040000d10 r_h4tl_rx_cmd_hdr_extract = 0x40000d10
  2029. 0x0000000040000d14 r_h4tl_rx_done = 0x40000d14
  2030. 0x0000000040000d18 r_h4tl_start = 0x40000d18
  2031. 0x0000000040000d1c r_h4tl_stop = 0x40000d1c
  2032. 0x0000000040000d20 r_h4tl_tx_done = 0x40000d20
  2033. 0x0000000040000d24 r_h4tl_tx_evt_handler = 0x40000d24
  2034. 0x0000000040000d28 r_h4tl_write = 0x40000d28
  2035. 0x0000000040000d2c r_hci_acl_tx_data_alloc = 0x40000d2c
  2036. 0x0000000040000d30 r_hci_acl_tx_data_received = 0x40000d30
  2037. 0x0000000040000d34 r_hci_basic_cmd_send_2_controller = 0x40000d34
  2038. 0x0000000040000d38 r_hci_ble_adv_report_filter_check = 0x40000d38
  2039. 0x0000000040000d3c r_hci_ble_adv_report_tx_check = 0x40000d3c
  2040. 0x0000000040000d40 r_hci_ble_conhdl_register = 0x40000d40
  2041. 0x0000000040000d44 r_hci_ble_conhdl_unregister = 0x40000d44
  2042. 0x0000000040000d48 r_hci_build_acl_data = 0x40000d48
  2043. 0x0000000040000d4c r_hci_build_cc_evt = 0x40000d4c
  2044. 0x0000000040000d50 r_hci_build_cs_evt = 0x40000d50
  2045. 0x0000000040000d54 r_hci_build_evt = 0x40000d54
  2046. 0x0000000040000d58 r_hci_build_le_evt = 0x40000d58
  2047. 0x0000000040000d5c r_hci_cmd_get_max_param_size = 0x40000d5c
  2048. 0x0000000040000d60 r_hci_cmd_received = 0x40000d60
  2049. 0x0000000040000d64 r_hci_cmd_reject = 0x40000d64
  2050. 0x0000000040000d68 r_hci_evt_mask_check = 0x40000d68
  2051. 0x0000000040000d6c r_hci_evt_mask_set = 0x40000d6c
  2052. 0x0000000040000d70 r_hci_fc_acl_buf_size_set = 0x40000d70
  2053. 0x0000000040000d74 r_hci_fc_acl_en = 0x40000d74
  2054. 0x0000000040000d78 r_hci_fc_acl_packet_sent = 0x40000d78
  2055. 0x0000000040000d7c r_hci_fc_check_host_available_nb_acl_packets = 0x40000d7c
  2056. 0x0000000040000d80 r_hci_fc_host_nb_acl_pkts_complete = 0x40000d80
  2057. 0x0000000040000d84 r_hci_fc_init = 0x40000d84
  2058. 0x0000000040000d88 r_hci_look_for_cmd_desc = 0x40000d88
  2059. 0x0000000040000d8c r_hci_look_for_evt_desc = 0x40000d8c
  2060. 0x0000000040000d90 r_hci_look_for_le_evt_desc = 0x40000d90
  2061. 0x0000000040000d94 r_hci_look_for_le_evt_desc_esp = 0x40000d94
  2062. 0x0000000040000d98 r_hci_pack_bytes = 0x40000d98
  2063. 0x0000000040000d9c r_hci_register_vendor_desc_tab = 0x40000d9c
  2064. 0x0000000040000da0 r_hci_send_2_controller = 0x40000da0
  2065. 0x0000000040000da4 r_hci_send_2_host = 0x40000da4
  2066. 0x0000000040000da8 r_hci_tl_c2h_data_flow_on = 0x40000da8
  2067. 0x0000000040000dac r_hci_tl_cmd_hdr_rx_evt_handler = 0x40000dac
  2068. 0x0000000040000db0 r_hci_tl_cmd_pld_rx_evt_handler = 0x40000db0
  2069. 0x0000000040000db4 r_hci_tl_get_pkt = 0x40000db4
  2070. 0x0000000040000db8 r_hci_tl_hci_pkt_handler = 0x40000db8
  2071. 0x0000000040000dbc r_hci_tl_hci_tx_done_evt_handler = 0x40000dbc
  2072. 0x0000000040000dc0 r_hci_tl_inc_nb_h2c_cmd_pkts = 0x40000dc0
  2073. 0x0000000040000dc4 r_hci_tl_save_pkt = 0x40000dc4
  2074. 0x0000000040000dc8 r_hci_tl_send = 0x40000dc8
  2075. 0x0000000040000dcc r_hci_tx_done = 0x40000dcc
  2076. 0x0000000040000dd0 r_hci_tx_start = 0x40000dd0
  2077. 0x0000000040000dd4 r_hci_tx_trigger = 0x40000dd4
  2078. 0x0000000040000dd8 r_isValidSecretKey_256 = 0x40000dd8
  2079. 0x0000000040000ddc r_ke_check_malloc = 0x40000ddc
  2080. 0x0000000040000de0 r_ke_event_callback_set = 0x40000de0
  2081. 0x0000000040000de4 r_ke_event_clear = 0x40000de4
  2082. 0x0000000040000de8 r_ke_event_flush = 0x40000de8
  2083. 0x0000000040000dec r_ke_event_get = 0x40000dec
  2084. 0x0000000040000df0 r_ke_event_get_all = 0x40000df0
  2085. 0x0000000040000df4 r_ke_event_init = 0x40000df4
  2086. 0x0000000040000df8 r_ke_event_schedule = 0x40000df8
  2087. 0x0000000040000dfc r_ke_event_set = 0x40000dfc
  2088. 0x0000000040000e00 r_ke_flush = 0x40000e00
  2089. 0x0000000040000e04 r_ke_free = 0x40000e04
  2090. 0x0000000040000e08 r_ke_handler_search = 0x40000e08
  2091. 0x0000000040000e0c r_ke_init = 0x40000e0c
  2092. 0x0000000040000e10 r_ke_is_free = 0x40000e10
  2093. 0x0000000040000e14 r_ke_malloc = 0x40000e14
  2094. 0x0000000040000e18 r_ke_mem_init = 0x40000e18
  2095. 0x0000000040000e1c r_ke_mem_is_empty = 0x40000e1c
  2096. 0x0000000040000e20 r_ke_mem_is_in_heap = 0x40000e20
  2097. 0x0000000040000e24 r_ke_msg_alloc = 0x40000e24
  2098. 0x0000000040000e28 r_ke_msg_dest_id_get = 0x40000e28
  2099. 0x0000000040000e2c r_ke_msg_discard = 0x40000e2c
  2100. 0x0000000040000e30 r_ke_msg_forward = 0x40000e30
  2101. 0x0000000040000e34 r_ke_msg_forward_new_id = 0x40000e34
  2102. 0x0000000040000e38 r_ke_msg_free = 0x40000e38
  2103. 0x0000000040000e3c r_ke_msg_in_queue = 0x40000e3c
  2104. 0x0000000040000e40 r_ke_msg_save = 0x40000e40
  2105. 0x0000000040000e44 r_ke_msg_send = 0x40000e44
  2106. 0x0000000040000e48 r_ke_msg_send_basic = 0x40000e48
  2107. 0x0000000040000e4c r_ke_msg_src_id_get = 0x40000e4c
  2108. 0x0000000040000e50 r_ke_queue_extract = 0x40000e50
  2109. 0x0000000040000e54 r_ke_queue_insert = 0x40000e54
  2110. 0x0000000040000e58 r_ke_sleep_check = 0x40000e58
  2111. 0x0000000040000e5c r_ke_state_get = 0x40000e5c
  2112. 0x0000000040000e60 r_ke_state_set = 0x40000e60
  2113. 0x0000000040000e64 r_ke_task_check = 0x40000e64
  2114. 0x0000000040000e68 r_ke_task_create = 0x40000e68
  2115. 0x0000000040000e6c r_ke_task_delete = 0x40000e6c
  2116. 0x0000000040000e70 r_ke_task_handler_get = 0x40000e70
  2117. 0x0000000040000e74 r_ke_task_init = 0x40000e74
  2118. 0x0000000040000e78 r_ke_task_msg_flush = 0x40000e78
  2119. 0x0000000040000e7c r_ke_task_saved_update = 0x40000e7c
  2120. 0x0000000040000e80 r_ke_task_schedule = 0x40000e80
  2121. 0x0000000040000e84 r_ke_time = 0x40000e84
  2122. 0x0000000040000e88 r_ke_time_cmp = 0x40000e88
  2123. 0x0000000040000e8c r_ke_time_past = 0x40000e8c
  2124. 0x0000000040000e90 r_ke_timer_active = 0x40000e90
  2125. 0x0000000040000e94 r_ke_timer_adjust_all = 0x40000e94
  2126. 0x0000000040000e98 r_ke_timer_clear = 0x40000e98
  2127. 0x0000000040000e9c r_ke_timer_init = 0x40000e9c
  2128. 0x0000000040000ea0 r_ke_timer_schedule = 0x40000ea0
  2129. 0x0000000040000ea4 r_ke_timer_set = 0x40000ea4
  2130. 0x0000000040000ea8 r_led_init = 0x40000ea8
  2131. 0x0000000040000eac r_led_set_all = 0x40000eac
  2132. 0x0000000040000eb0 r_llc_aes_res_cb = 0x40000eb0
  2133. 0x0000000040000eb4 r_llc_ch_map_up_proc_err_cb = 0x40000eb4
  2134. 0x0000000040000eb8 r_llc_cleanup = 0x40000eb8
  2135. 0x0000000040000ebc r_llc_cmd_cmp_send = 0x40000ebc
  2136. 0x0000000040000ec0 r_llc_cmd_stat_send = 0x40000ec0
  2137. 0x0000000040000ec4 r_llc_con_move_cbk = 0x40000ec4
  2138. 0x0000000040000ec8 r_llc_con_plan_set_update = 0x40000ec8
  2139. 0x0000000040000ecc r_llc_con_upd_param_in_range = 0x40000ecc
  2140. 0x0000000040000ed0 r_llc_disconnect = 0x40000ed0
  2141. 0x0000000040000ed4 r_llc_disconnect_end = 0x40000ed4
  2142. 0x0000000040000ed8 r_llc_disconnect_proc_continue = 0x40000ed8
  2143. 0x0000000040000edc r_llc_disconnect_proc_err_cb = 0x40000edc
  2144. 0x0000000040000ee0 r_llc_dl_chg_check = 0x40000ee0
  2145. 0x0000000040000ee4 r_llc_dle_proc_err_cb = 0x40000ee4
  2146. 0x0000000040000ee8 r_llc_feats_exch_proc_err_cb = 0x40000ee8
  2147. 0x0000000040000eec r_llc_hci_cmd_handler_tab_p_get = 0x40000eec
  2148. 0x0000000040000ef0 r_llc_hci_command_handler = 0x40000ef0
  2149. 0x0000000040000ef4 r_llc_hci_con_param_req_evt_send = 0x40000ef4
  2150. 0x0000000040000ef8 r_llc_hci_con_upd_info_send = 0x40000ef8
  2151. 0x0000000040000efc r_llc_hci_disconnected_dis = 0x40000efc
  2152. 0x0000000040000f00 r_llc_hci_dl_upd_info_send = 0x40000f00
  2153. 0x0000000040000f04 r_llc_hci_enc_evt_send = 0x40000f04
  2154. 0x0000000040000f08 r_llc_hci_feats_info_send = 0x40000f08
  2155. 0x0000000040000f0c r_llc_hci_le_phy_upd_cmp_evt_send = 0x40000f0c
  2156. 0x0000000040000f10 r_llc_hci_ltk_request_evt_send = 0x40000f10
  2157. 0x0000000040000f14 r_llc_hci_nb_cmp_pkts_evt_send = 0x40000f14
  2158. 0x0000000040000f18 r_llc_hci_version_info_send = 0x40000f18
  2159. 0x0000000040000f1c r_llc_init_term_proc = 0x40000f1c
  2160. 0x0000000040000f20 r_llc_iv_skd_rand_gen = 0x40000f20
  2161. 0x0000000040000f24 r_llc_le_ping_proc_continue = 0x40000f24
  2162. 0x0000000040000f28 r_llc_le_ping_proc_err_cb = 0x40000f28
  2163. 0x0000000040000f2c r_llc_le_ping_restart = 0x40000f2c
  2164. 0x0000000040000f30 r_llc_le_ping_set = 0x40000f30
  2165. 0x0000000040000f34 r_llc_ll_pause_enc_rsp_ack_handler = 0x40000f34
  2166. 0x0000000040000f38 r_llc_ll_reject_ind_ack_handler = 0x40000f38
  2167. 0x0000000040000f3c r_llc_ll_reject_ind_pdu_send = 0x40000f3c
  2168. 0x0000000040000f40 r_llc_ll_start_enc_rsp_ack_handler = 0x40000f40
  2169. 0x0000000040000f44 r_llc_ll_terminate_ind_ack = 0x40000f44
  2170. 0x0000000040000f48 r_llc_ll_unknown_ind_handler = 0x40000f48
  2171. 0x0000000040000f4c r_llc_llcp_send = 0x40000f4c
  2172. 0x0000000040000f50 r_llc_llcp_state_set = 0x40000f50
  2173. 0x0000000040000f54 r_llc_llcp_trans_timer_set = 0x40000f54
  2174. 0x0000000040000f58 r_llc_llcp_tx_check = 0x40000f58
  2175. 0x0000000040000f5c r_llc_loc_ch_map_proc_continue = 0x40000f5c
  2176. 0x0000000040000f60 r_llc_loc_con_upd_proc_continue = 0x40000f60
  2177. 0x0000000040000f64 r_llc_loc_con_upd_proc_err_cb = 0x40000f64
  2178. 0x0000000040000f68 r_llc_loc_dl_upd_proc_continue = 0x40000f68
  2179. 0x0000000040000f6c r_llc_loc_encrypt_proc_continue = 0x40000f6c
  2180. 0x0000000040000f70 r_llc_loc_encrypt_proc_err_cb = 0x40000f70
  2181. 0x0000000040000f74 r_llc_loc_feats_exch_proc_continue = 0x40000f74
  2182. 0x0000000040000f78 r_llc_loc_phy_upd_proc_continue = 0x40000f78
  2183. 0x0000000040000f7c r_llc_loc_phy_upd_proc_err_cb = 0x40000f7c
  2184. 0x0000000040000f80 r_llc_msg_handler_tab_p_get = 0x40000f80
  2185. 0x0000000040000f84 r_llc_pref_param_compute = 0x40000f84
  2186. 0x0000000040000f88 r_llc_proc_collision_check = 0x40000f88
  2187. 0x0000000040000f8c r_llc_proc_err_ind = 0x40000f8c
  2188. 0x0000000040000f90 r_llc_proc_get = 0x40000f90
  2189. 0x0000000040000f94 r_llc_proc_id_get = 0x40000f94
  2190. 0x0000000040000f98 r_llc_proc_reg = 0x40000f98
  2191. 0x0000000040000f9c r_llc_proc_state_get = 0x40000f9c
  2192. 0x0000000040000fa0 r_llc_proc_state_set = 0x40000fa0
  2193. 0x0000000040000fa4 r_llc_proc_timer_pause_set = 0x40000fa4
  2194. 0x0000000040000fa8 r_llc_proc_timer_set = 0x40000fa8
  2195. 0x0000000040000fac r_llc_proc_unreg = 0x40000fac
  2196. 0x0000000040000fb0 r_llc_rem_ch_map_proc_continue = 0x40000fb0
  2197. 0x0000000040000fb4 r_llc_rem_con_upd_proc_continue = 0x40000fb4
  2198. 0x0000000040000fb8 r_llc_rem_con_upd_proc_err_cb = 0x40000fb8
  2199. 0x0000000040000fbc r_llc_rem_dl_upd_proc = 0x40000fbc
  2200. 0x0000000040000fc0 r_llc_rem_encrypt_proc_continue = 0x40000fc0
  2201. 0x0000000040000fc4 r_llc_rem_encrypt_proc_err_cb = 0x40000fc4
  2202. 0x0000000040000fc8 r_llc_rem_phy_upd_proc_continue = 0x40000fc8
  2203. 0x0000000040000fcc r_llc_rem_phy_upd_proc_err_cb = 0x40000fcc
  2204. 0x0000000040000fd0 r_llc_role_get = 0x40000fd0
  2205. 0x0000000040000fd4 r_llc_sk_gen = 0x40000fd4
  2206. 0x0000000040000fd8 r_llc_start = 0x40000fd8
  2207. 0x0000000040000fdc r_llc_stop = 0x40000fdc
  2208. 0x0000000040000fe0 r_llc_ver_exch_loc_proc_continue = 0x40000fe0
  2209. 0x0000000040000fe4 r_llc_ver_proc_err_cb = 0x40000fe4
  2210. 0x0000000040000fe8 r_llcp_pdu_handler_tab_p_get = 0x40000fe8
  2211. 0x0000000040000fec r_lld_aa_gen = 0x40000fec
  2212. 0x0000000040000ff0 r_lld_adv_adv_data_set = 0x40000ff0
  2213. 0x0000000040000ff4 r_lld_adv_adv_data_update = 0x40000ff4
  2214. 0x0000000040000ff8 r_lld_adv_aux_ch_idx_set = 0x40000ff8
  2215. 0x0000000040000ffc r_lld_adv_aux_evt_canceled_cbk = 0x40000ffc
  2216. 0x0000000040001000 r_lld_adv_aux_evt_start_cbk = 0x40001000
  2217. 0x0000000040001004 r_lld_adv_coex_check_ext_adv_synced = 0x40001004
  2218. 0x0000000040001008 r_lld_adv_coex_env_reset = 0x40001008
  2219. 0x000000004000100c r_lld_adv_duration_update = 0x4000100c
  2220. 0x0000000040001010 r_lld_adv_dynamic_pti_process = 0x40001010
  2221. 0x0000000040001014 r_lld_adv_end = 0x40001014
  2222. 0x0000000040001018 r_lld_adv_evt_canceled_cbk = 0x40001018
  2223. 0x000000004000101c r_lld_adv_evt_start_cbk = 0x4000101c
  2224. 0x0000000040001020 r_lld_adv_ext_chain_construct = 0x40001020
  2225. 0x0000000040001024 r_lld_adv_ext_pkt_prepare = 0x40001024
  2226. 0x0000000040001028 r_lld_adv_frm_cbk = 0x40001028
  2227. 0x000000004000102c r_lld_adv_frm_isr = 0x4000102c
  2228. 0x0000000040001030 r_lld_adv_frm_skip_isr = 0x40001030
  2229. 0x0000000040001034 r_lld_adv_init = 0x40001034
  2230. 0x0000000040001038 r_lld_adv_pkt_rx = 0x40001038
  2231. 0x000000004000103c r_lld_adv_pkt_rx_connect_ind = 0x4000103c
  2232. 0x0000000040001040 r_lld_adv_pkt_rx_send_scan_req_evt = 0x40001040
  2233. 0x0000000040001044 r_lld_adv_rand_addr_update = 0x40001044
  2234. 0x0000000040001048 r_lld_adv_restart = 0x40001048
  2235. 0x000000004000104c r_lld_adv_scan_rsp_data_set = 0x4000104c
  2236. 0x0000000040001050 r_lld_adv_scan_rsp_data_update = 0x40001050
  2237. 0x0000000040001054 r_lld_adv_set_tx_power = 0x40001054
  2238. 0x0000000040001058 r_lld_adv_start = 0x40001058
  2239. 0x000000004000105c r_lld_adv_stop = 0x4000105c
  2240. 0x0000000040001060 r_lld_adv_sync_info_set = 0x40001060
  2241. 0x0000000040001064 r_lld_adv_sync_info_update = 0x40001064
  2242. 0x0000000040001068 r_lld_calc_aux_rx = 0x40001068
  2243. 0x000000004000106c r_lld_cca_alloc = 0x4000106c
  2244. 0x0000000040001070 r_lld_cca_data_reset = 0x40001070
  2245. 0x0000000040001074 r_lld_cca_free = 0x40001074
  2246. 0x0000000040001078 r_lld_ch_assess_data_get = 0x40001078
  2247. 0x000000004000107c r_lld_ch_idx_get = 0x4000107c
  2248. 0x0000000040001080 r_lld_ch_map_set = 0x40001080
  2249. 0x0000000040001084 r_lld_channel_assess = 0x40001084
  2250. 0x0000000040001088 r_lld_con_activity_act_offset_compute = 0x40001088
  2251. 0x000000004000108c r_lld_con_activity_offset_compute = 0x4000108c
  2252. 0x0000000040001090 r_lld_con_ch_map_update = 0x40001090
  2253. 0x0000000040001094 r_lld_con_cleanup = 0x40001094
  2254. 0x0000000040001098 r_lld_con_current_tx_power_get = 0x40001098
  2255. 0x000000004000109c r_lld_con_data_flow_set = 0x4000109c
  2256. 0x00000000400010a0 r_lld_con_data_len_update = 0x400010a0
  2257. 0x00000000400010a4 r_lld_con_data_tx = 0x400010a4
  2258. 0x00000000400010a8 r_lld_con_enc_key_load = 0x400010a8
  2259. 0x00000000400010ac r_lld_con_event_counter_get = 0x400010ac
  2260. 0x00000000400010b0 r_lld_con_evt_canceled_cbk = 0x400010b0
  2261. 0x00000000400010b4 r_lld_con_evt_duration_min_get = 0x400010b4
  2262. 0x00000000400010b8 r_lld_con_evt_max_eff_time_cal = 0x400010b8
  2263. 0x00000000400010bc r_lld_con_evt_sd_evt_time_get = 0x400010bc
  2264. 0x00000000400010c0 r_lld_con_evt_start_cbk = 0x400010c0
  2265. 0x00000000400010c4 r_lld_con_evt_time_update = 0x400010c4
  2266. 0x00000000400010c8 r_lld_con_free_all_tx_buf = 0x400010c8
  2267. 0x00000000400010cc r_lld_con_frm_cbk = 0x400010cc
  2268. 0x00000000400010d0 r_lld_con_frm_isr = 0x400010d0
  2269. 0x00000000400010d4 r_lld_con_frm_skip_isr = 0x400010d4
  2270. 0x00000000400010d8 r_lld_con_init = 0x400010d8
  2271. 0x00000000400010dc r_lld_con_llcp_tx = 0x400010dc
  2272. 0x00000000400010e0 r_lld_con_max_lat_calc = 0x400010e0
  2273. 0x00000000400010e4 r_lld_con_offset_get = 0x400010e4
  2274. 0x00000000400010e8 r_lld_con_param_update = 0x400010e8
  2275. 0x00000000400010ec r_lld_con_phys_update = 0x400010ec
  2276. 0x00000000400010f0 r_lld_con_pref_slave_evt_dur_set = 0x400010f0
  2277. 0x00000000400010f4 r_lld_con_pref_slave_latency_set = 0x400010f4
  2278. 0x00000000400010f8 r_lld_con_rssi_get = 0x400010f8
  2279. 0x00000000400010fc r_lld_con_rx = 0x400010fc
  2280. 0x0000000040001100 r_lld_con_rx_channel_assess = 0x40001100
  2281. 0x0000000040001104 r_lld_con_rx_enc = 0x40001104
  2282. 0x0000000040001108 r_lld_con_rx_isr = 0x40001108
  2283. 0x000000004000110c r_lld_con_rx_link_info_check = 0x4000110c
  2284. 0x0000000040001110 r_lld_con_rx_llcp_check = 0x40001110
  2285. 0x0000000040001114 r_lld_con_rx_sync_time_update = 0x40001114
  2286. 0x0000000040001118 r_lld_con_sched = 0x40001118
  2287. 0x000000004000111c r_lld_con_set_tx_power = 0x4000111c
  2288. 0x0000000040001120 r_lld_con_start = 0x40001120
  2289. 0x0000000040001124 r_lld_con_stop = 0x40001124
  2290. 0x0000000040001128 r_lld_con_tx = 0x40001128
  2291. 0x000000004000112c r_lld_con_tx_enc = 0x4000112c
  2292. 0x0000000040001130 r_lld_con_tx_isr = 0x40001130
  2293. 0x0000000040001134 r_lld_con_tx_len_update = 0x40001134
  2294. 0x0000000040001138 r_lld_con_tx_len_update_for_intv = 0x40001138
  2295. 0x000000004000113c r_lld_con_tx_len_update_for_rate = 0x4000113c
  2296. 0x0000000040001140 r_lld_con_tx_prog = 0x40001140
  2297. 0x0000000040001144 r_lld_conn_dynamic_pti_process = 0x40001144
  2298. 0x0000000040001148 r_lld_continue_scan_rx_isr_end_process = 0x40001148
  2299. 0x000000004000114c r_lld_ext_scan_dynamic_pti_process = 0x4000114c
  2300. 0x0000000040001150 r_lld_hw_cca_end_isr = 0x40001150
  2301. 0x0000000040001154 r_lld_hw_cca_evt_handler = 0x40001154
  2302. 0x0000000040001158 r_lld_hw_cca_isr = 0x40001158
  2303. 0x000000004000115c r_lld_init_cal_anchor_point = 0x4000115c
  2304. 0x0000000040001160 r_lld_init_compute_winoffset = 0x40001160
  2305. 0x0000000040001164 r_lld_init_connect_req_pack = 0x40001164
  2306. 0x0000000040001168 r_lld_init_end = 0x40001168
  2307. 0x000000004000116c r_lld_init_evt_canceled_cbk = 0x4000116c
  2308. 0x0000000040001170 r_lld_init_evt_start_cbk = 0x40001170
  2309. 0x0000000040001174 r_lld_init_frm_cbk = 0x40001174
  2310. 0x0000000040001178 r_lld_init_frm_eof_isr = 0x40001178
  2311. 0x000000004000117c r_lld_init_frm_skip_isr = 0x4000117c
  2312. 0x0000000040001180 r_lld_init_init = 0x40001180
  2313. 0x0000000040001184 r_lld_init_process_pkt_rx = 0x40001184
  2314. 0x0000000040001188 r_lld_init_process_pkt_rx_adv_ext_ind = 0x40001188
  2315. 0x000000004000118c r_lld_init_process_pkt_rx_adv_ind_or_direct_ind = 0x4000118c
  2316. 0x0000000040001190 r_lld_init_process_pkt_rx_aux_connect_rsp = 0x40001190
  2317. 0x0000000040001194 r_lld_init_process_pkt_tx = 0x40001194
  2318. 0x0000000040001198 r_lld_init_process_pkt_tx_cal_con_timestamp = 0x40001198
  2319. 0x000000004000119c r_lld_init_sched = 0x4000119c
  2320. 0x00000000400011a0 r_lld_init_set_tx_power = 0x400011a0
  2321. 0x00000000400011a4 r_lld_init_start = 0x400011a4
  2322. 0x00000000400011a8 r_lld_init_stop = 0x400011a8
  2323. 0x00000000400011ac r_lld_instant_proc_end = 0x400011ac
  2324. 0x00000000400011b0 r_lld_llcp_rx_ind_handler = 0x400011b0
  2325. 0x00000000400011b4 r_lld_per_adv_ch_map_update = 0x400011b4
  2326. 0x00000000400011b8 r_lld_per_adv_chain_construct = 0x400011b8
  2327. 0x00000000400011bc r_lld_per_adv_cleanup = 0x400011bc
  2328. 0x00000000400011c0 r_lld_per_adv_coex_env_reset = 0x400011c0
  2329. 0x00000000400011c4 r_lld_per_adv_data_set = 0x400011c4
  2330. 0x00000000400011c8 r_lld_per_adv_data_update = 0x400011c8
  2331. 0x00000000400011cc r_lld_per_adv_dynamic_pti_process = 0x400011cc
  2332. 0x00000000400011d0 r_lld_per_adv_evt_canceled_cbk = 0x400011d0
  2333. 0x00000000400011d4 r_lld_per_adv_evt_start_cbk = 0x400011d4
  2334. 0x00000000400011d8 r_lld_per_adv_ext_pkt_prepare = 0x400011d8
  2335. 0x00000000400011dc r_lld_per_adv_frm_cbk = 0x400011dc
  2336. 0x00000000400011e0 r_lld_per_adv_frm_isr = 0x400011e0
  2337. 0x00000000400011e4 r_lld_per_adv_frm_skip_isr = 0x400011e4
  2338. 0x00000000400011e8 r_lld_per_adv_init = 0x400011e8
  2339. 0x00000000400011ec r_lld_per_adv_init_info_get = 0x400011ec
  2340. 0x00000000400011f0 r_lld_per_adv_list_add = 0x400011f0
  2341. 0x00000000400011f4 r_lld_per_adv_list_rem = 0x400011f4
  2342. 0x00000000400011f8 r_lld_per_adv_sched = 0x400011f8
  2343. 0x00000000400011fc r_lld_per_adv_set_tx_power = 0x400011fc
  2344. 0x0000000040001200 r_lld_per_adv_start = 0x40001200
  2345. 0x0000000040001204 r_lld_per_adv_stop = 0x40001204
  2346. 0x0000000040001208 r_lld_per_adv_sync_info_get = 0x40001208
  2347. 0x000000004000120c r_lld_process_cca_data = 0x4000120c
  2348. 0x0000000040001210 r_lld_ral_search = 0x40001210
  2349. 0x0000000040001214 r_lld_read_clock = 0x40001214
  2350. 0x0000000040001218 r_lld_res_list_add = 0x40001218
  2351. 0x000000004000121c r_lld_res_list_clear = 0x4000121c
  2352. 0x0000000040001220 r_lld_res_list_is_empty = 0x40001220
  2353. 0x0000000040001224 r_lld_res_list_local_rpa_get = 0x40001224
  2354. 0x0000000040001228 r_lld_res_list_peer_rpa_get = 0x40001228
  2355. 0x000000004000122c r_lld_res_list_peer_update = 0x4000122c
  2356. 0x0000000040001230 r_lld_res_list_priv_mode_update = 0x40001230
  2357. 0x0000000040001234 r_lld_res_list_rem = 0x40001234
  2358. 0x0000000040001238 r_lld_reset_reg = 0x40001238
  2359. 0x000000004000123c r_lld_rpa_renew = 0x4000123c
  2360. 0x0000000040001240 r_lld_rpa_renew_evt_canceled_cbk = 0x40001240
  2361. 0x0000000040001244 r_lld_rpa_renew_evt_start_cbk = 0x40001244
  2362. 0x0000000040001248 r_lld_rpa_renew_instant_cbk = 0x40001248
  2363. 0x000000004000124c r_lld_rxdesc_check = 0x4000124c
  2364. 0x0000000040001250 r_lld_rxdesc_free = 0x40001250
  2365. 0x0000000040001254 r_lld_scan_create_sync = 0x40001254
  2366. 0x0000000040001258 r_lld_scan_create_sync_cancel = 0x40001258
  2367. 0x000000004000125c r_lld_scan_end = 0x4000125c
  2368. 0x0000000040001260 r_lld_scan_evt_canceled_cbk = 0x40001260
  2369. 0x0000000040001264 r_lld_scan_evt_start_cbk = 0x40001264
  2370. 0x0000000040001268 r_lld_scan_frm_cbk = 0x40001268
  2371. 0x000000004000126c r_lld_scan_frm_eof_isr = 0x4000126c
  2372. 0x0000000040001270 r_lld_scan_frm_rx_isr = 0x40001270
  2373. 0x0000000040001274 r_lld_scan_frm_skip_isr = 0x40001274
  2374. 0x0000000040001278 r_lld_scan_init = 0x40001278
  2375. 0x000000004000127c r_lld_scan_params_update = 0x4000127c
  2376. 0x0000000040001280 r_lld_scan_process_pkt_rx = 0x40001280
  2377. 0x0000000040001284 r_lld_scan_process_pkt_rx_adv_rep = 0x40001284
  2378. 0x0000000040001288 r_lld_scan_process_pkt_rx_aux_adv_ind = 0x40001288
  2379. 0x000000004000128c r_lld_scan_process_pkt_rx_aux_chain_ind = 0x4000128c
  2380. 0x0000000040001290 r_lld_scan_process_pkt_rx_aux_scan_rsp = 0x40001290
  2381. 0x0000000040001294 r_lld_scan_process_pkt_rx_ext_adv = 0x40001294
  2382. 0x0000000040001298 r_lld_scan_process_pkt_rx_ext_adv_ind = 0x40001298
  2383. 0x000000004000129c r_lld_scan_process_pkt_rx_legacy_adv = 0x4000129c
  2384. 0x00000000400012a0 r_lld_scan_restart = 0x400012a0
  2385. 0x00000000400012a4 r_lld_scan_sched = 0x400012a4
  2386. 0x00000000400012a8 r_lld_scan_set_tx_power = 0x400012a8
  2387. 0x00000000400012ac r_lld_scan_start = 0x400012ac
  2388. 0x00000000400012b0 r_lld_scan_stop = 0x400012b0
  2389. 0x00000000400012b4 r_lld_scan_sync_accept = 0x400012b4
  2390. 0x00000000400012b8 r_lld_scan_sync_info_unpack = 0x400012b8
  2391. 0x00000000400012bc r_lld_scan_trunc_ind = 0x400012bc
  2392. 0x00000000400012c0 r_lld_sw_cca_evt_handler = 0x400012c0
  2393. 0x00000000400012c4 r_lld_sw_cca_isr = 0x400012c4
  2394. 0x00000000400012c8 r_lld_sync_ch_map_update = 0x400012c8
  2395. 0x00000000400012cc r_lld_sync_cleanup = 0x400012cc
  2396. 0x00000000400012d0 r_lld_sync_evt_canceled_cbk = 0x400012d0
  2397. 0x00000000400012d4 r_lld_sync_evt_start_cbk = 0x400012d4
  2398. 0x00000000400012d8 r_lld_sync_frm_cbk = 0x400012d8
  2399. 0x00000000400012dc r_lld_sync_frm_eof_isr = 0x400012dc
  2400. 0x00000000400012e0 r_lld_sync_frm_rx_isr = 0x400012e0
  2401. 0x00000000400012e4 r_lld_sync_frm_skip_isr = 0x400012e4
  2402. 0x00000000400012e8 r_lld_sync_init = 0x400012e8
  2403. 0x00000000400012ec r_lld_sync_process_pkt_rx = 0x400012ec
  2404. 0x00000000400012f0 r_lld_sync_process_pkt_rx_aux_sync_ind = 0x400012f0
  2405. 0x00000000400012f4 r_lld_sync_process_pkt_rx_pkt_check = 0x400012f4
  2406. 0x00000000400012f8 r_lld_sync_scan_dynamic_pti_process = 0x400012f8
  2407. 0x00000000400012fc r_lld_sync_sched = 0x400012fc
  2408. 0x0000000040001300 r_lld_sync_start = 0x40001300
  2409. 0x0000000040001304 r_lld_sync_stop = 0x40001304
  2410. 0x0000000040001308 r_lld_sync_trunc_ind = 0x40001308
  2411. 0x000000004000130c r_lld_test_cleanup = 0x4000130c
  2412. 0x0000000040001310 r_lld_test_evt_canceled_cbk = 0x40001310
  2413. 0x0000000040001314 r_lld_test_evt_start_cbk = 0x40001314
  2414. 0x0000000040001318 r_lld_test_freq2chnl = 0x40001318
  2415. 0x000000004000131c r_lld_test_frm_cbk = 0x4000131c
  2416. 0x0000000040001320 r_lld_test_frm_isr = 0x40001320
  2417. 0x0000000040001324 r_lld_test_init = 0x40001324
  2418. 0x0000000040001328 r_lld_test_rx_isr = 0x40001328
  2419. 0x000000004000132c r_lld_test_set_tx_power = 0x4000132c
  2420. 0x0000000040001330 r_lld_test_start = 0x40001330
  2421. 0x0000000040001334 r_lld_test_stop = 0x40001334
  2422. 0x0000000040001338 r_lld_update_rxbuf = 0x40001338
  2423. 0x000000004000133c r_lld_update_rxbuf_isr = 0x4000133c
  2424. 0x0000000040001340 r_lld_white_list_add = 0x40001340
  2425. 0x0000000040001344 r_lld_white_list_rem = 0x40001344
  2426. 0x0000000040001348 r_llm_activity_free_get = 0x40001348
  2427. 0x000000004000134c r_llm_activity_free_set = 0x4000134c
  2428. 0x0000000040001350 r_llm_activity_syncing_get = 0x40001350
  2429. 0x0000000040001354 r_llm_adv_con_len_check = 0x40001354
  2430. 0x0000000040001358 r_llm_adv_hdl_to_id = 0x40001358
  2431. 0x000000004000135c r_llm_adv_rep_flow_control_check = 0x4000135c
  2432. 0x0000000040001360 r_llm_adv_rep_flow_control_update = 0x40001360
  2433. 0x0000000040001364 r_llm_adv_reports_list_check = 0x40001364
  2434. 0x0000000040001368 r_llm_adv_set_all_release = 0x40001368
  2435. 0x000000004000136c r_llm_adv_set_dft_params = 0x4000136c
  2436. 0x0000000040001370 r_llm_adv_set_release = 0x40001370
  2437. 0x0000000040001374 r_llm_aes_res_cb = 0x40001374
  2438. 0x0000000040001378 r_llm_ble_update_adv_flow_control = 0x40001378
  2439. 0x000000004000137c r_llm_ch_map_update = 0x4000137c
  2440. 0x0000000040001380 r_llm_cmd_cmp_send = 0x40001380
  2441. 0x0000000040001384 r_llm_cmd_stat_send = 0x40001384
  2442. 0x0000000040001388 r_llm_dev_list_empty_entry = 0x40001388
  2443. 0x000000004000138c r_llm_dev_list_search = 0x4000138c
  2444. 0x0000000040001390 r_llm_env_adv_dup_filt_deinit = 0x40001390
  2445. 0x0000000040001394 r_llm_env_adv_dup_filt_init = 0x40001394
  2446. 0x0000000040001398 r_llm_init_ble_adv_report_flow_contol = 0x40001398
  2447. 0x000000004000139c r_llm_is_dev_connected = 0x4000139c
  2448. 0x00000000400013a0 r_llm_is_dev_synced = 0x400013a0
  2449. 0x00000000400013a4 r_llm_is_non_con_act_ongoing_check = 0x400013a4
  2450. 0x00000000400013a8 r_llm_is_wl_accessible = 0x400013a8
  2451. 0x00000000400013ac r_llm_le_evt_mask_check = 0x400013ac
  2452. 0x00000000400013b0 r_llm_le_features_get = 0x400013b0
  2453. 0x00000000400013b4 r_llm_link_disc = 0x400013b4
  2454. 0x00000000400013b8 r_llm_master_ch_map_get = 0x400013b8
  2455. 0x00000000400013bc r_llm_msg_handler_tab_p_get = 0x400013bc
  2456. 0x00000000400013c0 r_llm_no_activity = 0x400013c0
  2457. 0x00000000400013c4 r_llm_per_adv_slot_dur = 0x400013c4
  2458. 0x00000000400013c8 r_llm_plan_elt_get = 0x400013c8
  2459. 0x00000000400013cc r_llm_rx_path_comp_get = 0x400013cc
  2460. 0x00000000400013d0 r_llm_scan_start = 0x400013d0
  2461. 0x00000000400013d4 r_llm_scan_sync_acad_attach = 0x400013d4
  2462. 0x00000000400013d8 r_llm_scan_sync_acad_detach = 0x400013d8
  2463. 0x00000000400013dc r_llm_send_adv_lost_event_to_host = 0x400013dc
  2464. 0x00000000400013e0 r_llm_tx_path_comp_get = 0x400013e0
  2465. 0x00000000400013e4 r_misc_deinit = 0x400013e4
  2466. 0x00000000400013e8 r_misc_free_em_buf_in_isr = 0x400013e8
  2467. 0x00000000400013ec r_misc_init = 0x400013ec
  2468. 0x00000000400013f0 r_misc_msg_handler_tab_p_get = 0x400013f0
  2469. 0x00000000400013f4 r_notEqual256 = 0x400013f4
  2470. 0x00000000400013f8 r_phy_upd_proc_start = 0x400013f8
  2471. 0x00000000400013fc r_platform_reset = 0x400013fc
  2472. 0x0000000040001400 r_register_esp_vendor_cmd_handler = 0x40001400
  2473. 0x0000000040001404 r_rf_em_init = 0x40001404
  2474. 0x0000000040001408 r_rf_force_agc_enable = 0x40001408
  2475. 0x000000004000140c r_rf_reg_rd = 0x4000140c
  2476. 0x0000000040001410 r_rf_reg_wr = 0x40001410
  2477. 0x0000000040001414 r_rf_reset = 0x40001414
  2478. 0x0000000040001418 r_rf_rssi_convert = 0x40001418
  2479. 0x000000004000141c r_rf_rw_v9_le_disable = 0x4000141c
  2480. 0x0000000040001420 r_rf_rw_v9_le_enable = 0x40001420
  2481. 0x0000000040001424 r_rf_sleep = 0x40001424
  2482. 0x0000000040001428 r_rf_txpwr_cs_get = 0x40001428
  2483. 0x000000004000142c r_rf_txpwr_dbm_get = 0x4000142c
  2484. 0x0000000040001430 r_rf_util_cs_fmt_convert = 0x40001430
  2485. 0x0000000040001434 r_rw_crypto_aes_ccm = 0x40001434
  2486. 0x0000000040001438 r_rw_crypto_aes_encrypt = 0x40001438
  2487. 0x000000004000143c r_rw_crypto_aes_init = 0x4000143c
  2488. 0x0000000040001440 r_rw_crypto_aes_k1 = 0x40001440
  2489. 0x0000000040001444 r_rw_crypto_aes_k2 = 0x40001444
  2490. 0x0000000040001448 r_rw_crypto_aes_k3 = 0x40001448
  2491. 0x000000004000144c r_rw_crypto_aes_k4 = 0x4000144c
  2492. 0x0000000040001450 r_rw_crypto_aes_rand = 0x40001450
  2493. 0x0000000040001454 r_rw_crypto_aes_result_handler = 0x40001454
  2494. 0x0000000040001458 r_rw_crypto_aes_s1 = 0x40001458
  2495. 0x000000004000145c r_rw_cryto_aes_cmac = 0x4000145c
  2496. 0x0000000040001460 r_rw_v9_init_em_radio_table = 0x40001460
  2497. 0x0000000040001464 r_rwble_isr = 0x40001464
  2498. 0x0000000040001468 r_rwble_sleep_enter = 0x40001468
  2499. 0x000000004000146c r_rwble_sleep_wakeup_end = 0x4000146c
  2500. 0x0000000040001470 r_rwbtdm_isr_wrapper = 0x40001470
  2501. 0x0000000040001474 r_rwip_active_check = 0x40001474
  2502. 0x0000000040001478 r_rwip_aes_encrypt = 0x40001478
  2503. 0x000000004000147c r_rwip_assert = 0x4000147c
  2504. 0x0000000040001480 r_rwip_crypt_evt_handler = 0x40001480
  2505. 0x0000000040001484 r_rwip_crypt_isr_handler = 0x40001484
  2506. 0x0000000040001488 r_rwip_eif_get = 0x40001488
  2507. 0x000000004000148c r_rwip_half_slot_2_lpcycles = 0x4000148c
  2508. 0x0000000040001490 r_rwip_hus_2_lpcycles = 0x40001490
  2509. 0x0000000040001494 r_rwip_isr = 0x40001494
  2510. 0x0000000040001498 r_rwip_lpcycles_2_hus = 0x40001498
  2511. 0x000000004000149c r_rwip_prevent_sleep_clear = 0x4000149c
  2512. 0x00000000400014a0 r_rwip_prevent_sleep_set = 0x400014a0
  2513. 0x00000000400014a4 r_rwip_schedule = 0x400014a4
  2514. 0x00000000400014a8 r_rwip_sleep = 0x400014a8
  2515. 0x00000000400014ac r_rwip_sw_int_handler = 0x400014ac
  2516. 0x00000000400014b0 r_rwip_sw_int_req = 0x400014b0
  2517. 0x00000000400014b4 r_rwip_time_get = 0x400014b4
  2518. 0x00000000400014b8 r_rwip_timer_10ms_handler = 0x400014b8
  2519. 0x00000000400014bc r_rwip_timer_10ms_set = 0x400014bc
  2520. 0x00000000400014c0 r_rwip_timer_hs_handler = 0x400014c0
  2521. 0x00000000400014c4 r_rwip_timer_hs_set = 0x400014c4
  2522. 0x00000000400014c8 r_rwip_timer_hus_handler = 0x400014c8
  2523. 0x00000000400014cc r_rwip_timer_hus_set = 0x400014cc
  2524. 0x00000000400014d0 r_rwip_wakeup = 0x400014d0
  2525. 0x00000000400014d4 r_rwip_wakeup_end = 0x400014d4
  2526. 0x00000000400014d8 r_rwip_wlcoex_set = 0x400014d8
  2527. 0x00000000400014dc r_sch_alarm_clear = 0x400014dc
  2528. 0x00000000400014e0 r_sch_alarm_init = 0x400014e0
  2529. 0x00000000400014e4 r_sch_alarm_prog = 0x400014e4
  2530. 0x00000000400014e8 r_sch_alarm_set = 0x400014e8
  2531. 0x00000000400014ec r_sch_alarm_timer_isr = 0x400014ec
  2532. 0x00000000400014f0 r_sch_arb_conflict_check = 0x400014f0
  2533. 0x00000000400014f4 r_sch_arb_elt_cancel = 0x400014f4
  2534. 0x00000000400014f8 r_sch_arb_event_start_isr = 0x400014f8
  2535. 0x00000000400014fc r_sch_arb_init = 0x400014fc
  2536. 0x0000000040001500 r_sch_arb_insert = 0x40001500
  2537. 0x0000000040001504 r_sch_arb_prog_timer = 0x40001504
  2538. 0x0000000040001508 r_sch_arb_remove = 0x40001508
  2539. 0x000000004000150c r_sch_arb_sw_isr = 0x4000150c
  2540. 0x0000000040001510 r_sch_plan_chk = 0x40001510
  2541. 0x0000000040001514 r_sch_plan_clock_wrap_offset_update = 0x40001514
  2542. 0x0000000040001518 r_sch_plan_init = 0x40001518
  2543. 0x000000004000151c r_sch_plan_interval_req = 0x4000151c
  2544. 0x0000000040001520 r_sch_plan_offset_max_calc = 0x40001520
  2545. 0x0000000040001524 r_sch_plan_offset_req = 0x40001524
  2546. 0x0000000040001528 r_sch_plan_position_range_compute = 0x40001528
  2547. 0x000000004000152c r_sch_plan_rem = 0x4000152c
  2548. 0x0000000040001530 r_sch_plan_req = 0x40001530
  2549. 0x0000000040001534 r_sch_plan_set = 0x40001534
  2550. 0x0000000040001538 r_sch_prog_end_isr = 0x40001538
  2551. 0x000000004000153c r_sch_prog_init = 0x4000153c
  2552. 0x0000000040001540 r_sch_prog_push = 0x40001540
  2553. 0x0000000040001544 r_sch_prog_rx_isr = 0x40001544
  2554. 0x0000000040001548 r_sch_prog_skip_isr = 0x40001548
  2555. 0x000000004000154c r_sch_prog_tx_isr = 0x4000154c
  2556. 0x0000000040001550 r_sch_slice_bg_add = 0x40001550
  2557. 0x0000000040001554 r_sch_slice_bg_remove = 0x40001554
  2558. 0x0000000040001558 r_sch_slice_compute = 0x40001558
  2559. 0x000000004000155c r_sch_slice_fg_add = 0x4000155c
  2560. 0x0000000040001560 r_sch_slice_fg_remove = 0x40001560
  2561. 0x0000000040001564 r_sch_slice_init = 0x40001564
  2562. 0x0000000040001568 r_sch_slice_per_add = 0x40001568
  2563. 0x000000004000156c r_sch_slice_per_remove = 0x4000156c
  2564. 0x0000000040001570 r_sdk_config_get_bt_sleep_enable = 0x40001570
  2565. 0x0000000040001574 r_sdk_config_get_hl_derived_opts = 0x40001574
  2566. 0x0000000040001578 r_sdk_config_get_opts = 0x40001578
  2567. 0x000000004000157c r_sdk_config_get_priv_opts = 0x4000157c
  2568. 0x0000000040001580 r_sdk_config_set_bt_sleep_enable = 0x40001580
  2569. 0x0000000040001584 r_sdk_config_set_hl_derived_opts = 0x40001584
  2570. 0x0000000040001588 r_sdk_config_set_opts = 0x40001588
  2571. 0x000000004000158c r_specialModP256 = 0x4000158c
  2572. 0x0000000040001590 r_unloaded_area_init = 0x40001590
  2573. 0x0000000040001594 r_vhci_flow_off = 0x40001594
  2574. 0x0000000040001598 r_vhci_flow_on = 0x40001598
  2575. 0x000000004000159c r_vhci_notify_host_send_available = 0x4000159c
  2576. 0x00000000400015a0 r_vhci_send_to_host = 0x400015a0
  2577. 0x00000000400015a4 r_vnd_hci_command_handler = 0x400015a4
  2578. 0x00000000400015a8 r_vshci_init = 0x400015a8
  2579. 0x00000000400015ac vnd_hci_command_handler_wrapper = 0x400015ac
  2580. 0x000000003fcdffcc bt_rf_coex_cfg_p = 0x3fcdffcc
  2581. 0x000000003fcdffc8 bt_rf_coex_hooks_p = 0x3fcdffc8
  2582. 0x000000003fcdffc4 btdm_env_p = 0x3fcdffc4
  2583. 0x000000003fcdffc0 g_rw_controller_task_handle = 0x3fcdffc0
  2584. 0x000000003fcdffbc g_rw_init_sem = 0x3fcdffbc
  2585. 0x000000003fcdffb8 g_rw_schd_queue = 0x3fcdffb8
  2586. 0x000000003fcdffb4 lld_init_env = 0x3fcdffb4
  2587. 0x000000003fcdffb0 lld_rpa_renew_env = 0x3fcdffb0
  2588. 0x000000003fcdffac lld_scan_env = 0x3fcdffac
  2589. 0x000000003fcdffa8 lld_scan_sync_env = 0x3fcdffa8
  2590. 0x000000003fcdffa4 lld_test_env = 0x3fcdffa4
  2591. 0x000000003fcdffa0 p_ble_util_buf_env = 0x3fcdffa0
  2592. 0x000000003fcdff9c p_lld_env = 0x3fcdff9c
  2593. 0x000000003fcdff98 p_llm_env = 0x3fcdff98
  2594. 0x000000003fcdff94 r_h4tl_eif_p = 0x3fcdff94
  2595. 0x000000003fcdff90 r_hli_funcs_p = 0x3fcdff90
  2596. 0x000000003fcdff8c r_ip_funcs_p = 0x3fcdff8c
  2597. 0x000000003fcdff88 r_modules_funcs_p = 0x3fcdff88
  2598. 0x000000003fcdff84 r_osi_funcs_p = 0x3fcdff84
  2599. 0x000000003fcdff80 r_plf_funcs_p = 0x3fcdff80
  2600. 0x000000003fcdff7c vhci_env_p = 0x3fcdff7c
  2601. 0x000000003fcdff78 aa_gen = 0x3fcdff78
  2602. 0x000000003fcdff6c aes_env = 0x3fcdff6c
  2603. 0x000000003fcdff1c bt_rf_coex_cfg_cb = 0x3fcdff1c
  2604. 0x000000003fcdff18 btdm_pwr_state = 0x3fcdff18
  2605. 0x000000003fcdff14 btdm_slp_err = 0x3fcdff14
  2606. 0x000000003fcdff0c ecc_env = 0x3fcdff0c
  2607. 0x000000003fcdff04 esp_handler = 0x3fcdff04
  2608. 0x000000003fcdfefc esp_vendor_cmd = 0x3fcdfefc
  2609. 0x000000003fcdfef8 g_adv_delay_dis = 0x3fcdfef8
  2610. 0x000000003fcdfef4 g_conflict_elt = 0x3fcdfef4
  2611. 0x000000003fcdfee4 g_eif_api = 0x3fcdfee4
  2612. 0x000000003fcdfed8 g_event_empty = 0x3fcdfed8
  2613. 0x000000003fcdfecc g_llc_state = 0x3fcdfecc
  2614. 0x000000003fcdfec8 g_llm_state = 0x3fcdfec8
  2615. 0x000000003fcdfec4 g_max_evt_env = 0x3fcdfec4
  2616. 0x000000003fcdfec0 g_misc_state = 0x3fcdfec0
  2617. 0x000000003fcdfea4 g_rma_rule_db = 0x3fcdfea4
  2618. 0x000000003fcdfe88 g_rtp_rule_db = 0x3fcdfe88
  2619. 0x000000003fcdfe85 g_scan_forever = 0x3fcdfe85
  2620. 0x000000003fcdfe84 g_time_msb = 0x3fcdfe84
  2621. 0x000000003fcdfe5c h4tl_env = 0x3fcdfe5c
  2622. 0x000000003fcdfe38 hci_env = 0x3fcdfe38
  2623. 0x000000003fcdfe34 hci_ext_host = 0x3fcdfe34
  2624. 0x000000003fcdfe2c hci_fc_env = 0x3fcdfe2c
  2625. 0x000000003fcdfe00 hci_tl_env = 0x3fcdfe00
  2626. 0x000000003fcdfdd0 ke_env = 0x3fcdfdd0
  2627. 0x000000003fcdfd90 ke_event_env = 0x3fcdfd90
  2628. 0x000000003fcdfd14 ke_task_env = 0x3fcdfd14
  2629. 0x000000003fcdfcec llc_env = 0x3fcdfcec
  2630. 0x000000003fcdfcc4 lld_adv_env = 0x3fcdfcc4
  2631. 0x000000003fcdfc9c lld_con_env = 0x3fcdfc9c
  2632. 0x000000003fcdfc94 lld_exp_sync_pos_tab = 0x3fcdfc94
  2633. 0x000000003fcdfc6c lld_per_adv_env = 0x3fcdfc6c
  2634. 0x000000003fcdfc44 lld_sync_env = 0x3fcdfc44
  2635. 0x000000003fcdfc38 llm_le_adv_flow_env = 0x3fcdfc38
  2636. 0x000000003fcdfc34 rw_sleep_enable = 0x3fcdfc34
  2637. 0x000000003fcdfc2c rwble_env = 0x3fcdfc2c
  2638. 0x000000003fcdfc10 rwip_env = 0x3fcdfc10
  2639. 0x000000003fcdfc04 rwip_param = 0x3fcdfc04
  2640. 0x000000003fcdfc00 rwip_prog_delay = 0x3fcdfc00
  2641. 0x000000003fcdfbc8 rwip_rf = 0x3fcdfbc8
  2642. 0x000000003fcdfbc0 sch_alarm_env = 0x3fcdfbc0
  2643. 0x000000003fcdfbac sch_arb_env = 0x3fcdfbac
  2644. 0x000000003fcdfba4 sch_plan_env = 0x3fcdfba4
  2645. 0x000000003fcdfaa0 sch_prog_env = 0x3fcdfaa0
  2646. 0x000000003fcdfa40 sch_slice_env = 0x3fcdfa40
  2647. 0x000000003fcdfa38 sch_slice_params = 0x3fcdfa38
  2648. 0x000000003fcdfa30 timer_env = 0x3fcdfa30
  2649. 0x000000003fcdfa2c unloaded_area = 0x3fcdfa2c
  2650. 0x000000003fcdfa28 vshci_state = 0x3fcdfa28
  2651. 0x000000003fcdfa1c TASK_DESC_LLC = 0x3fcdfa1c
  2652. 0x000000003fcdfa10 TASK_DESC_LLM = 0x3fcdfa10
  2653. 0x000000003fcdfa04 TASK_DESC_VSHCI = 0x3fcdfa04
  2654. 0x000000003fcdf9fc co_default_bdaddr = 0x3fcdf9fc
  2655. 0x000000003fcdf9f8 dbg_assert_block = 0x3fcdf9f8
  2656. 0x000000003fcdf9f4 g_bt_plf_log_level = 0x3fcdf9f4
  2657. 0x000000003fcdf9d0 hci_cmd_desc_tab_vs_esp = 0x3fcdf9d0
  2658. 0x000000003fcdf9b8 hci_command_handler_tab_esp = 0x3fcdf9b8
  2659. 0x000000003fcdf9b4 privacy_en = 0x3fcdf9b4
  2660. 0x000000003fcdf96c sdk_cfg_priv_opts = 0x3fcdf96c
  2661. 0x000000003ff1ffdc BasePoint_x_256 = 0x3ff1ffdc
  2662. 0x000000003ff1ffbc BasePoint_y_256 = 0x3ff1ffbc
  2663. 0x000000003ff1ff9c DebugE256PublicKey_x = 0x3ff1ff9c
  2664. 0x000000003ff1ff7c DebugE256PublicKey_y = 0x3ff1ff7c
  2665. 0x000000003ff1ff5c DebugE256SecretKey = 0x3ff1ff5c
  2666. 0x000000003ff1f7a0 ECC_4Win_Look_up_table = 0x3ff1f7a0
  2667. 0x000000003ff1f79c LLM_AA_CT1 = 0x3ff1f79c
  2668. 0x000000003ff1f798 LLM_AA_CT2 = 0x3ff1f798
  2669. 0x000000003ff1f790 RF_TX_PW_CONV_TBL = 0x3ff1f790
  2670. 0x000000003ff1f784 TASK_DESC_MISC = 0x3ff1f784
  2671. 0x000000003ff1f768 adv_evt_prop2type = 0x3ff1f768
  2672. 0x000000003ff1f760 adv_evt_type2prop = 0x3ff1f760
  2673. 0x000000003ff1f750 aes_cmac_zero = 0x3ff1f750
  2674. 0x000000003ff1f740 aes_k2_salt = 0x3ff1f740
  2675. 0x000000003ff1f738 aes_k3_id64 = 0x3ff1f738
  2676. 0x000000003ff1f728 aes_k3_salt = 0x3ff1f728
  2677. 0x000000003ff1f724 aes_k4_id6 = 0x3ff1f724
  2678. 0x000000003ff1f714 aes_k4_salt = 0x3ff1f714
  2679. 0x000000003ff1f6e8 bigHexP256 = 0x3ff1f6e8
  2680. 0x000000003ff1f6e0 byte_tx_time = 0x3ff1f6e0
  2681. 0x000000003ff1f6d8 co_null_bdaddr = 0x3ff1f6d8
  2682. 0x000000003ff1f6d0 co_phy_mask_to_rate = 0x3ff1f6d0
  2683. 0x000000003ff1f6c8 co_phy_mask_to_value = 0x3ff1f6c8
  2684. 0x000000003ff1f6c4 co_phy_to_rate = 0x3ff1f6c4
  2685. 0x000000003ff1f6c0 co_phy_value_to_mask = 0x3ff1f6c0
  2686. 0x000000003ff1f6b8 co_rate_to_byte_dur_us = 0x3ff1f6b8
  2687. 0x000000003ff1f6b0 co_rate_to_phy = 0x3ff1f6b0
  2688. 0x000000003ff1f6ac co_rate_to_phy_mask = 0x3ff1f6ac
  2689. 0x000000003ff1f69c co_sca2ppm = 0x3ff1f69c
  2690. 0x000000003ff1f670 coef_B = 0x3ff1f670
  2691. 0x000000003ff1f668 connect_req_dur_tab = 0x3ff1f668
  2692. 0x000000003ff1f5e4 ecc_Jacobian_InfinityPoint256 = 0x3ff1f5e4
  2693. 0x000000003ff1f518 em_base_reg_lut = 0x3ff1f518
  2694. 0x000000003ff1f510 fixed_tx_time = 0x3ff1f510
  2695. 0x000000003ff1f508 h4tl_msgtype2hdrlen = 0x3ff1f508
  2696. 0x000000003ff1f4d8 hci_cmd_desc_root_tab = 0x3ff1f4d8
  2697. 0x000000003ff1f46c hci_cmd_desc_tab_ctrl_bb = 0x3ff1f46c
  2698. 0x000000003ff1f43c hci_cmd_desc_tab_info_par = 0x3ff1f43c
  2699. 0x000000003ff1f0a0 hci_cmd_desc_tab_le = 0x3ff1f0a0
  2700. 0x000000003ff1f088 hci_cmd_desc_tab_lk_ctrl = 0x3ff1f088
  2701. 0x000000003ff1f07c hci_cmd_desc_tab_stat_par = 0x3ff1f07c
  2702. 0x000000003ff1f040 hci_cmd_desc_tab_vs = 0x3ff1f040
  2703. 0x000000003ff1eff8 hci_evt_desc_tab = 0x3ff1eff8
  2704. 0x000000003ff1ef58 hci_evt_le_desc_tab = 0x3ff1ef58
  2705. 0x000000003ff1ef50 hci_evt_le_desc_tab_esp = 0x3ff1ef50
  2706. 0x000000003ff1ef48 hci_rsvd_evt_msk = 0x3ff1ef48
  2707. 0x000000003ff1ef44 lld_aux_phy_to_rate = 0x3ff1ef44
  2708. 0x000000003ff1ef3c lld_init_max_aux_dur_tab = 0x3ff1ef3c
  2709. 0x000000003ff1ef34 lld_scan_map_legacy_pdu_to_evt_type = 0x3ff1ef34
  2710. 0x000000003ff1ef2c lld_scan_max_aux_dur_tab = 0x3ff1ef2c
  2711. 0x000000003ff1ef24 lld_sync_max_aux_dur_tab = 0x3ff1ef24
  2712. 0x000000003ff1ef1c llm_local_le_feats = 0x3ff1ef1c
  2713. 0x000000003ff1ef14 llm_local_le_states = 0x3ff1ef14
  2714. 0x000000003ff1eeec llm_local_supp_cmds = 0x3ff1eeec
  2715. 0x000000003ff1eecc maxSecretKey_256 = 0x3ff1eecc
  2716. 0x000000003ff1eec4 max_data_tx_time = 0x3ff1eec4
  2717. 0x000000003ff1eeb4 one_bits = 0x3ff1eeb4
  2718. 0x000000003ff1eeac rwip_coex_cfg = 0x3ff1eeac
  2719. 0x000000003ff1ee94 rwip_priority = 0x3ff1ee94
  2720. 0x000000003ff1ee48 veryBigHexP256 = 0x3ff1ee48
  2721. 0x00000000400015b0 esp_pp_rom_version_get = 0x400015b0
  2722. 0x00000000400015b4 RC_GetBlockAckTime = 0x400015b4
  2723. 0x00000000400015b8 ebuf_list_remove = 0x400015b8
  2724. 0x00000000400015bc esf_buf_alloc = 0x400015bc
  2725. 0x00000000400015c8 GetAccess = 0x400015c8
  2726. 0x00000000400015cc hal_mac_is_low_rate_enabled = 0x400015cc
  2727. 0x00000000400015d0 hal_mac_tx_get_blockack = 0x400015d0
  2728. 0x00000000400015d8 ic_get_trc = 0x400015d8
  2729. 0x00000000400015dc ic_mac_deinit = 0x400015dc
  2730. 0x00000000400015e0 ic_mac_init = 0x400015e0
  2731. 0x00000000400015e4 ic_interface_enabled = 0x400015e4
  2732. 0x00000000400015e8 is_lmac_idle = 0x400015e8
  2733. 0x00000000400015ec lmacAdjustTimestamp = 0x400015ec
  2734. 0x00000000400015f0 lmacDiscardAgedMSDU = 0x400015f0
  2735. 0x00000000400015f4 lmacDiscardMSDU = 0x400015f4
  2736. 0x00000000400015f8 lmacEndFrameExchangeSequence = 0x400015f8
  2737. 0x00000000400015fc lmacIsIdle = 0x400015fc
  2738. 0x0000000040001600 lmacIsLongFrame = 0x40001600
  2739. 0x0000000040001604 lmacMSDUAged = 0x40001604
  2740. 0x0000000040001608 lmacPostTxComplete = 0x40001608
  2741. 0x000000004000160c lmacProcessAllTxTimeout = 0x4000160c
  2742. 0x0000000040001610 lmacProcessCollisions = 0x40001610
  2743. 0x0000000040001614 lmacProcessRxSucData = 0x40001614
  2744. 0x0000000040001618 lmacReachLongLimit = 0x40001618
  2745. 0x000000004000161c lmacReachShortLimit = 0x4000161c
  2746. 0x0000000040001620 lmacRecycleMPDU = 0x40001620
  2747. 0x0000000040001624 lmacRxDone = 0x40001624
  2748. 0x0000000040001628 lmacSetTxFrame = 0x40001628
  2749. 0x0000000040001634 mac_tx_set_duration = 0x40001634
  2750. 0x000000004000163c mac_tx_set_plcp0 = 0x4000163c
  2751. 0x0000000040001644 mac_tx_set_plcp2 = 0x40001644
  2752. 0x0000000040001648 pm_check_state = 0x40001648
  2753. 0x000000004000164c pm_disable_dream_timer = 0x4000164c
  2754. 0x0000000040001650 pm_disable_sleep_delay_timer = 0x40001650
  2755. 0x0000000040001654 pm_dream = 0x40001654
  2756. 0x0000000040001658 pm_mac_wakeup = 0x40001658
  2757. 0x000000004000165c pm_mac_sleep = 0x4000165c
  2758. 0x0000000040001660 pm_enable_active_timer = 0x40001660
  2759. 0x0000000040001664 pm_enable_sleep_delay_timer = 0x40001664
  2760. 0x0000000040001668 pm_local_tsf_process = 0x40001668
  2761. 0x000000004000166c pm_set_beacon_filter = 0x4000166c
  2762. 0x0000000040001670 pm_is_in_wifi_slice_threshold = 0x40001670
  2763. 0x0000000040001674 pm_is_waked = 0x40001674
  2764. 0x0000000040001678 pm_keep_alive = 0x40001678
  2765. 0x0000000040001680 pm_on_data_rx = 0x40001680
  2766. 0x0000000040001684 pm_on_tbtt = 0x40001684
  2767. 0x000000004000168c pm_process_tim = 0x4000168c
  2768. 0x0000000040001694 pm_rx_data_process = 0x40001694
  2769. 0x000000004000169c pm_sleep_for = 0x4000169c
  2770. 0x00000000400016a4 ppAMPDU2Normal = 0x400016a4
  2771. 0x00000000400016a8 ppAssembleAMPDU = 0x400016a8
  2772. 0x00000000400016ac ppCalFrameTimes = 0x400016ac
  2773. 0x00000000400016b0 ppCalSubFrameLength = 0x400016b0
  2774. 0x00000000400016b4 ppCalTxAMPDULength = 0x400016b4
  2775. 0x00000000400016b8 ppCheckTxAMPDUlength = 0x400016b8
  2776. 0x00000000400016bc ppDequeueRxq_Locked = 0x400016bc
  2777. 0x00000000400016c0 ppDequeueTxQ = 0x400016c0
  2778. 0x00000000400016c4 ppEmptyDelimiterLength = 0x400016c4
  2779. 0x00000000400016c8 ppEnqueueRxq = 0x400016c8
  2780. 0x00000000400016cc ppEnqueueTxDone = 0x400016cc
  2781. 0x00000000400016d0 ppGetTxQFirstAvail_Locked = 0x400016d0
  2782. 0x00000000400016d4 ppGetTxframe = 0x400016d4
  2783. 0x00000000400016e0 ppProcessRxPktHdr = 0x400016e0
  2784. 0x00000000400016e4 ppProcessTxQ = 0x400016e4
  2785. 0x00000000400016e8 ppRecordBarRRC = 0x400016e8
  2786. 0x00000000400016ec lmacRequestTxopQueue = 0x400016ec
  2787. 0x00000000400016f0 lmacReleaseTxopQueue = 0x400016f0
  2788. 0x00000000400016f4 ppRecycleAmpdu = 0x400016f4
  2789. 0x00000000400016f8 ppRecycleRxPkt = 0x400016f8
  2790. 0x00000000400016fc ppResortTxAMPDU = 0x400016fc
  2791. 0x0000000040001700 ppResumeTxAMPDU = 0x40001700
  2792. 0x0000000040001708 ppRxPkt = 0x40001708
  2793. 0x000000004000170c ppRxProtoProc = 0x4000170c
  2794. 0x0000000040001710 ppSearchTxQueue = 0x40001710
  2795. 0x0000000040001714 ppSearchTxframe = 0x40001714
  2796. 0x0000000040001718 ppSelectNextQueue = 0x40001718
  2797. 0x000000004000171c ppSubFromAMPDU = 0x4000171c
  2798. 0x0000000040001720 ppTask = 0x40001720
  2799. 0x0000000040001724 ppTxPkt = 0x40001724
  2800. 0x0000000040001728 ppTxProtoProc = 0x40001728
  2801. 0x000000004000172c ppTxqUpdateBitmap = 0x4000172c
  2802. 0x0000000040001730 pp_coex_tx_request = 0x40001730
  2803. 0x0000000040001734 pp_hdrsize = 0x40001734
  2804. 0x0000000040001738 pp_post = 0x40001738
  2805. 0x000000004000173c pp_process_hmac_waiting_txq = 0x4000173c
  2806. 0x0000000040001740 rcGetAmpduSched = 0x40001740
  2807. 0x0000000040001744 rcUpdateRxDone = 0x40001744
  2808. 0x0000000040001748 rc_get_trc = 0x40001748
  2809. 0x000000004000174c rc_get_trc_by_index = 0x4000174c
  2810. 0x0000000040001750 rcAmpduLowerRate = 0x40001750
  2811. 0x0000000040001754 rcampduuprate = 0x40001754
  2812. 0x0000000040001758 rcClearCurAMPDUSched = 0x40001758
  2813. 0x000000004000175c rcClearCurSched = 0x4000175c
  2814. 0x0000000040001760 rcClearCurStat = 0x40001760
  2815. 0x0000000040001768 rcLowerSched = 0x40001768
  2816. 0x000000004000176c rcSetTxAmpduLimit = 0x4000176c
  2817. 0x0000000040001770 rcTxUpdatePer = 0x40001770
  2818. 0x0000000040001774 rcUpdateAckSnr = 0x40001774
  2819. 0x0000000040001778 rcUpdateRate = 0x40001778
  2820. 0x0000000040001780 rcUpdateTxDoneAmpdu2 = 0x40001780
  2821. 0x0000000040001784 rcUpSched = 0x40001784
  2822. 0x0000000040001788 rssi_margin = 0x40001788
  2823. 0x000000004000178c rx11NRate2AMPDULimit = 0x4000178c
  2824. 0x0000000040001790 TRC_AMPDU_PER_DOWN_THRESHOLD = 0x40001790
  2825. 0x0000000040001794 TRC_AMPDU_PER_UP_THRESHOLD = 0x40001794
  2826. 0x0000000040001798 trc_calc_duration = 0x40001798
  2827. 0x000000004000179c trc_isTxAmpduOperational = 0x4000179c
  2828. 0x00000000400017a0 trc_onAmpduOp = 0x400017a0
  2829. 0x00000000400017a4 TRC_PER_IS_GOOD = 0x400017a4
  2830. 0x00000000400017a8 trc_SetTxAmpduState = 0x400017a8
  2831. 0x00000000400017ac trc_tid_isTxAmpduOperational = 0x400017ac
  2832. 0x00000000400017b0 trcAmpduSetState = 0x400017b0
  2833. 0x00000000400017b8 wDev_AppendRxBlocks = 0x400017b8
  2834. 0x00000000400017bc wDev_DiscardFrame = 0x400017bc
  2835. 0x00000000400017c0 wDev_GetNoiseFloor = 0x400017c0
  2836. 0x00000000400017c4 wDev_IndicateAmpdu = 0x400017c4
  2837. 0x00000000400017c8 wDev_IndicateFrame = 0x400017c8
  2838. 0x00000000400017cc wdev_bank_store = 0x400017cc
  2839. 0x00000000400017d0 wdev_bank_load = 0x400017d0
  2840. 0x00000000400017d4 wdev_mac_reg_load = 0x400017d4
  2841. 0x00000000400017d8 wdev_mac_reg_store = 0x400017d8
  2842. 0x00000000400017dc wdev_mac_special_reg_load = 0x400017dc
  2843. 0x00000000400017e0 wdev_mac_special_reg_store = 0x400017e0
  2844. 0x00000000400017e4 wdev_mac_wakeup = 0x400017e4
  2845. 0x00000000400017e8 wdev_mac_sleep = 0x400017e8
  2846. 0x00000000400017ec hal_mac_is_dma_enable = 0x400017ec
  2847. 0x00000000400017f4 wDev_ProcessRxSucData = 0x400017f4
  2848. 0x00000000400017f8 wdevProcessRxSucDataAll = 0x400017f8
  2849. 0x00000000400017fc wdev_csi_len_align = 0x400017fc
  2850. 0x0000000040001800 ppDequeueTxDone_Locked = 0x40001800
  2851. 0x000000004000180c config_is_cache_tx_buf_enabled = 0x4000180c
  2852. 0x0000000040001810 ppMapWaitTxq = 0x40001810
  2853. 0x0000000040001814 ppProcessWaitingQueue = 0x40001814
  2854. 0x0000000040001818 ppDisableQueue = 0x40001818
  2855. 0x000000004000181c pm_allow_tx = 0x4000181c
  2856. 0x000000003ff1ee44 our_instances_ptr = 0x3ff1ee44
  2857. 0x000000003fcdf968 pTxRx = 0x3fcdf968
  2858. 0x000000003fcdf964 lmacConfMib_ptr = 0x3fcdf964
  2859. 0x000000003fcdf960 our_wait_eb = 0x3fcdf960
  2860. 0x000000003fcdf95c our_tx_eb = 0x3fcdf95c
  2861. 0x000000003fcdf958 pp_wdev_funcs = 0x3fcdf958
  2862. 0x000000003fcdf954 g_osi_funcs_p = 0x3fcdf954
  2863. 0x000000003fcdf950 wDevCtrl_ptr = 0x3fcdf950
  2864. 0x000000003ff1ee40 g_wdev_last_desc_reset_ptr = 0x3ff1ee40
  2865. 0x000000003fcdf94c wDevMacSleep_ptr = 0x3fcdf94c
  2866. 0x000000003fcdf948 g_lmac_cnt_ptr = 0x3fcdf948
  2867. 0x000000003ff1ee3c our_controls_ptr = 0x3ff1ee3c
  2868. 0x000000003fcdf944 pp_sig_cnt_ptr = 0x3fcdf944
  2869. 0x000000003fcdf940 g_eb_list_desc_ptr = 0x3fcdf940
  2870. 0x000000003fcdf93c s_fragment_ptr = 0x3fcdf93c
  2871. 0x000000003fcdf938 if_ctrl_ptr = 0x3fcdf938
  2872. 0x000000003fcdf934 g_intr_lock_mux = 0x3fcdf934
  2873. 0x000000003fcdf930 g_wifi_global_lock = 0x3fcdf930
  2874. 0x000000003fcdf92c s_wifi_queue = 0x3fcdf92c
  2875. 0x000000003fcdf928 pp_task_hdl = 0x3fcdf928
  2876. 0x000000003fcdf924 s_pp_task_create_sem = 0x3fcdf924
  2877. 0x000000003fcdf920 s_pp_task_del_sem = 0x3fcdf920
  2878. 0x000000003fcdf91c g_wifi_menuconfig_ptr = 0x3fcdf91c
  2879. 0x000000003fcdf918 xphyQueue = 0x3fcdf918
  2880. 0x000000003fcdf914 ap_no_lr_ptr = 0x3fcdf914
  2881. 0x000000003fcdf910 rc11BSchedTbl_ptr = 0x3fcdf910
  2882. 0x000000003fcdf90c rc11NSchedTbl_ptr = 0x3fcdf90c
  2883. 0x000000003fcdf908 rcLoRaSchedTbl_ptr = 0x3fcdf908
  2884. 0x000000003fcdf904 BasicOFDMSched_ptr = 0x3fcdf904
  2885. 0x000000003fcdf900 trc_ctl_ptr = 0x3fcdf900
  2886. 0x000000003fcdf8fc g_pm_cnt_ptr = 0x3fcdf8fc
  2887. 0x000000003fcdf8f8 g_pm_ptr = 0x3fcdf8f8
  2888. 0x000000003fcdf8f4 g_pm_cfg_ptr = 0x3fcdf8f4
  2889. 0x000000003fcdf8f0 g_esp_mesh_quick_funcs_ptr = 0x3fcdf8f0
  2890. 0x000000003fcdf8ec g_txop_queue_status_ptr = 0x3fcdf8ec
  2891. 0x000000003fcdf8e8 g_mac_sleep_en_ptr = 0x3fcdf8e8
  2892. 0x000000003fcdf8e4 g_mesh_is_root_ptr = 0x3fcdf8e4
  2893. 0x000000003fcdf8e0 g_mesh_topology_ptr = 0x3fcdf8e0
  2894. 0x000000003fcdf8dc g_mesh_init_ps_type_ptr = 0x3fcdf8dc
  2895. 0x000000003fcdf8d8 g_mesh_is_started_ptr = 0x3fcdf8d8
  2896. 0x000000003fcdf8d4 g_config_func = 0x3fcdf8d4
  2897. 0x000000003fcdf8d0 g_net80211_tx_func = 0x3fcdf8d0
  2898. 0x000000003fcdf8cc g_timer_func = 0x3fcdf8cc
  2899. 0x000000003fcdf8c8 s_michael_mic_failure_cb = 0x3fcdf8c8
  2900. 0x000000003fcdf8c4 wifi_sta_rx_probe_req = 0x3fcdf8c4
  2901. 0x000000003fcdf8c0 g_tx_done_cb_func = 0x3fcdf8c0
  2902. 0x000000003fcdf874 g_per_conn_trc = 0x3fcdf874
  2903. 0x000000003fcdf870 s_encap_amsdu_func = 0x3fcdf870
  2904. 0x0000000040001820 esp_net80211_rom_version_get = 0x40001820
  2905. 0x0000000040001824 ampdu_dispatch = 0x40001824
  2906. 0x0000000040001828 ampdu_dispatch_all = 0x40001828
  2907. 0x000000004000182c ampdu_dispatch_as_many_as_possible = 0x4000182c
  2908. 0x0000000040001830 ampdu_dispatch_movement = 0x40001830
  2909. 0x0000000040001834 ampdu_dispatch_upto = 0x40001834
  2910. 0x0000000040001838 chm_is_at_home_channel = 0x40001838
  2911. 0x000000004000183c cnx_node_is_existing = 0x4000183c
  2912. 0x0000000040001840 cnx_node_search = 0x40001840
  2913. 0x0000000040001844 ic_ebuf_recycle_rx = 0x40001844
  2914. 0x0000000040001848 ic_ebuf_recycle_tx = 0x40001848
  2915. 0x000000004000184c ic_reset_rx_ba = 0x4000184c
  2916. 0x0000000040001850 ieee80211_align_eb = 0x40001850
  2917. 0x0000000040001854 ieee80211_ampdu_reorder = 0x40001854
  2918. 0x0000000040001858 ieee80211_ampdu_start_age_timer = 0x40001858
  2919. 0x0000000040001860 ieee80211_is_tx_allowed = 0x40001860
  2920. 0x0000000040001864 ieee80211_output_pending_eb = 0x40001864
  2921. 0x0000000040001868 ieee80211_output_process = 0x40001868
  2922. 0x000000004000186c ieee80211_set_tx_desc = 0x4000186c
  2923. 0x0000000040001870 rom_sta_input = 0x40001870
  2924. 0x0000000040001874 wifi_get_macaddr = 0x40001874
  2925. 0x0000000040001878 wifi_rf_phy_disable = 0x40001878
  2926. 0x000000004000187c wifi_rf_phy_enable = 0x4000187c
  2927. 0x0000000040001880 ic_ebuf_alloc = 0x40001880
  2928. 0x0000000040001884 ieee80211_classify = 0x40001884
  2929. 0x0000000040001888 ieee80211_copy_eb_header = 0x40001888
  2930. 0x000000004000188c ieee80211_recycle_cache_eb = 0x4000188c
  2931. 0x0000000040001890 ieee80211_search_node = 0x40001890
  2932. 0x0000000040001894 roundup2 = 0x40001894
  2933. 0x0000000040001898 ieee80211_crypto_encap = 0x40001898
  2934. 0x00000000400018a4 ieee80211_set_tx_pti = 0x400018a4
  2935. 0x00000000400018a8 wifi_is_started = 0x400018a8
  2936. 0x000000003fcdf86c net80211_funcs = 0x3fcdf86c
  2937. 0x000000003fcdf868 g_scan = 0x3fcdf868
  2938. 0x000000003fcdf864 g_chm = 0x3fcdf864
  2939. 0x000000003fcdf860 g_ic_ptr = 0x3fcdf860
  2940. 0x000000003fcdf85c g_hmac_cnt_ptr = 0x3fcdf85c
  2941. 0x000000003fcdf858 g_tx_cacheq_ptr = 0x3fcdf858
  2942. 0x000000003fcdf854 s_netstack_free = 0x3fcdf854
  2943. 0x000000003fcdf850 mesh_rxcb = 0x3fcdf850
  2944. 0x000000003fcdf84c sta_rxcb = 0x3fcdf84c
  2945. 0x00000000400018ac esp_coex_rom_version_get = 0x400018ac
  2946. 0x00000000400018b0 coex_bt_release = 0x400018b0
  2947. 0x00000000400018b4 coex_bt_request = 0x400018b4
  2948. 0x00000000400018b8 coex_core_ble_conn_dyn_prio_get = 0x400018b8
  2949. 0x00000000400018bc coex_core_event_duration_get = 0x400018bc
  2950. 0x00000000400018c0 coex_core_pti_get = 0x400018c0
  2951. 0x00000000400018c4 coex_core_release = 0x400018c4
  2952. 0x00000000400018c8 coex_core_request = 0x400018c8
  2953. 0x00000000400018cc coex_core_status_get = 0x400018cc
  2954. 0x00000000400018d4 coex_event_duration_get = 0x400018d4
  2955. 0x00000000400018d8 coex_hw_timer_disable = 0x400018d8
  2956. 0x00000000400018dc coex_hw_timer_enable = 0x400018dc
  2957. 0x00000000400018e0 coex_hw_timer_set = 0x400018e0
  2958. 0x00000000400018e4 coex_schm_interval_set = 0x400018e4
  2959. 0x00000000400018e8 coex_schm_lock = 0x400018e8
  2960. 0x00000000400018ec coex_schm_unlock = 0x400018ec
  2961. 0x00000000400018f0 coex_status_get = 0x400018f0
  2962. 0x00000000400018f4 coex_wifi_release = 0x400018f4
  2963. 0x00000000400018f8 esp_coex_ble_conn_dynamic_prio_get = 0x400018f8
  2964. 0x000000003fcdf848 coex_env_ptr = 0x3fcdf848
  2965. 0x000000003fcdf844 coex_pti_tab_ptr = 0x3fcdf844
  2966. 0x000000003fcdf840 coex_schm_env_ptr = 0x3fcdf840
  2967. 0x000000003fcdf83c coexist_funcs = 0x3fcdf83c
  2968. 0x000000003fcdf838 g_coa_funcs_p = 0x3fcdf838
  2969. 0x000000003fcdf834 g_coex_param_ptr = 0x3fcdf834
  2970. 0x00000000400018fc phy_get_romfuncs = 0x400018fc
  2971. 0x0000000040001900 rom_abs_temp = 0x40001900
  2972. 0x0000000040001904 rom_bb_bss_cbw40_dig = 0x40001904
  2973. 0x0000000040001908 rom_bb_wdg_test_en = 0x40001908
  2974. 0x000000004000190c rom_bb_wdt_get_status = 0x4000190c
  2975. 0x0000000040001910 rom_bb_wdt_int_enable = 0x40001910
  2976. 0x0000000040001914 rom_bb_wdt_rst_enable = 0x40001914
  2977. 0x0000000040001918 rom_bb_wdt_timeout_clear = 0x40001918
  2978. 0x000000004000191c rom_cbw2040_cfg = 0x4000191c
  2979. 0x0000000040001920 rom_check_noise_floor = 0x40001920
  2980. 0x0000000040001924 rom_chip_i2c_readReg = 0x40001924
  2981. 0x0000000040001928 rom_chip_i2c_writeReg = 0x40001928
  2982. 0x000000004000192c rom_correct_rf_ana_gain = 0x4000192c
  2983. 0x0000000040001930 rom_dc_iq_est = 0x40001930
  2984. 0x0000000040001934 rom_disable_agc = 0x40001934
  2985. 0x0000000040001938 rom_en_pwdet = 0x40001938
  2986. 0x000000004000193c rom_enable_agc = 0x4000193c
  2987. 0x0000000040001940 rom_get_bbgain_db = 0x40001940
  2988. 0x0000000040001944 rom_get_data_sat = 0x40001944
  2989. 0x0000000040001948 rom_get_i2c_read_mask = 0x40001948
  2990. 0x000000004000194c rom_get_pwctrl_correct = 0x4000194c
  2991. 0x0000000040001950 rom_get_rf_gain_qdb = 0x40001950
  2992. 0x0000000040001954 rom_i2c_readReg = 0x40001954
  2993. 0x0000000040001958 rom_i2c_readReg_Mask = 0x40001958
  2994. 0x000000004000195c rom_i2c_writeReg = 0x4000195c
  2995. 0x0000000040001960 rom_i2c_writeReg_Mask = 0x40001960
  2996. 0x0000000040001968 rom_iq_est_disable = 0x40001968
  2997. 0x000000004000196c rom_iq_est_enable = 0x4000196c
  2998. 0x0000000040001970 rom_linear_to_db = 0x40001970
  2999. 0x0000000040001974 rom_loopback_mode_en = 0x40001974
  3000. 0x0000000040001978 rom_mhz2ieee = 0x40001978
  3001. 0x000000004000197c rom_noise_floor_auto_set = 0x4000197c
  3002. 0x0000000040001980 rom_pbus_debugmode = 0x40001980
  3003. 0x0000000040001984 rom_pbus_force_mode = 0x40001984
  3004. 0x0000000040001988 rom_pbus_force_test = 0x40001988
  3005. 0x000000004000198c rom_pbus_rd = 0x4000198c
  3006. 0x0000000040001990 rom_pbus_rd_addr = 0x40001990
  3007. 0x0000000040001994 rom_pbus_rd_shift = 0x40001994
  3008. 0x0000000040001998 rom_pbus_set_dco = 0x40001998
  3009. 0x000000004000199c rom_pbus_set_rxgain = 0x4000199c
  3010. 0x00000000400019a0 rom_pbus_workmode = 0x400019a0
  3011. 0x00000000400019a4 rom_pbus_xpd_rx_off = 0x400019a4
  3012. 0x00000000400019a8 rom_pbus_xpd_rx_on = 0x400019a8
  3013. 0x00000000400019ac rom_pbus_xpd_tx_off = 0x400019ac
  3014. 0x00000000400019b4 rom_phy_byte_to_word = 0x400019b4
  3015. 0x00000000400019b8 rom_phy_disable_cca = 0x400019b8
  3016. 0x00000000400019bc rom_phy_enable_cca = 0x400019bc
  3017. 0x00000000400019c0 rom_phy_get_noisefloor = 0x400019c0
  3018. 0x00000000400019c4 rom_phy_get_rx_freq = 0x400019c4
  3019. 0x00000000400019c8 rom_phy_set_bbfreq_init = 0x400019c8
  3020. 0x00000000400019cc rom_pow_usr = 0x400019cc
  3021. 0x00000000400019d0 rom_pwdet_sar2_init = 0x400019d0
  3022. 0x00000000400019d4 rom_read_hw_noisefloor = 0x400019d4
  3023. 0x00000000400019d8 rom_read_sar_dout = 0x400019d8
  3024. 0x00000000400019dc rom_set_cal_rxdc = 0x400019dc
  3025. 0x00000000400019e0 rom_set_chan_cal_interp = 0x400019e0
  3026. 0x00000000400019e4 rom_set_loopback_gain = 0x400019e4
  3027. 0x00000000400019e8 rom_set_noise_floor = 0x400019e8
  3028. 0x00000000400019ec rom_set_rxclk_en = 0x400019ec
  3029. 0x00000000400019f8 rom_set_txclk_en = 0x400019f8
  3030. 0x00000000400019fc rom_spur_cal = 0x400019fc
  3031. 0x0000000040001a00 rom_spur_reg_write_one_tone = 0x40001a00
  3032. 0x0000000040001a04 rom_target_power_add_backoff = 0x40001a04
  3033. 0x0000000040001a08 rom_tx_pwctrl_bg_init = 0x40001a08
  3034. 0x0000000040001a10 rom_wifi_11g_rate_chg = 0x40001a10
  3035. 0x0000000040001a14 rom_write_gain_mem = 0x40001a14
  3036. 0x0000000040001a18 chip726_phyrom_version = 0x40001a18
  3037. 0x0000000040001a1c rom_disable_wifi_agc = 0x40001a1c
  3038. 0x0000000040001a20 rom_enable_wifi_agc = 0x40001a20
  3039. 0x0000000040001a24 rom_set_tx_gain_table = 0x40001a24
  3040. 0x0000000040001a28 rom_bt_index_to_bb = 0x40001a28
  3041. 0x0000000040001a2c rom_bt_bb_to_index = 0x40001a2c
  3042. 0x0000000040001a30 rom_wr_bt_tx_atten = 0x40001a30
  3043. 0x0000000040001a34 rom_wr_bt_tx_gain_mem = 0x40001a34
  3044. 0x0000000040001a38 rom_spur_coef_cfg = 0x40001a38
  3045. 0x0000000040001a3c rom_bb_bss_cbw40 = 0x40001a3c
  3046. 0x0000000040001a40 rom_set_cca = 0x40001a40
  3047. 0x0000000040001a44 rom_tx_paon_set = 0x40001a44
  3048. 0x0000000040001a48 rom_i2cmst_reg_init = 0x40001a48
  3049. 0x0000000040001a4c rom_iq_corr_enable = 0x40001a4c
  3050. 0x0000000040001a50 rom_fe_reg_init = 0x40001a50
  3051. 0x0000000040001a5c rom_mac_enable_bb = 0x40001a5c
  3052. 0x0000000040001a60 rom_bb_wdg_cfg = 0x40001a60
  3053. 0x0000000040001a64 rom_force_txon = 0x40001a64
  3054. 0x0000000040001a68 rom_fe_txrx_reset = 0x40001a68
  3055. 0x0000000040001a6c rom_set_rx_comp = 0x40001a6c
  3056. 0x0000000040001a74 rom_write_chan_freq = 0x40001a74
  3057. 0x0000000040001a7c rom_set_xpd_sar = 0x40001a7c
  3058. 0x0000000040001a80 rom_write_dac_gain2 = 0x40001a80
  3059. 0x0000000040001a84 rom_rtc_sar2_init = 0x40001a84
  3060. 0x0000000040001a88 rom_get_target_power_offset = 0x40001a88
  3061. 0x0000000040001a90 rom_get_rate_fcc_index = 0x40001a90
  3062. 0x0000000040001a94 rom_get_rate_target_power = 0x40001a94
  3063. 0x0000000040001a98 rom_write_wifi_dig_gain = 0x40001a98
  3064. 0x0000000040001a9c rom_bt_correct_rf_ana_gain = 0x40001a9c
  3065. 0x0000000040001aa0 rom_pkdet_vol_start = 0x40001aa0
  3066. 0x0000000040001aa4 rom_read_sar2_code = 0x40001aa4
  3067. 0x0000000040001aa8 rom_get_sar2_vol = 0x40001aa8
  3068. 0x0000000040001aac rom_get_pll_vol = 0x40001aac
  3069. 0x0000000040001ab0 rom_get_phy_target_power = 0x40001ab0
  3070. 0x0000000040001ab8 rom_phy_track_pll_cap = 0x40001ab8
  3071. 0x0000000040001abc rom_phy_pwdet_always_en = 0x40001abc
  3072. 0x0000000040001ac0 rom_phy_pwdet_onetime_en = 0x40001ac0
  3073. 0x0000000040001ac4 rom_get_i2c_mst0_mask = 0x40001ac4
  3074. 0x0000000040001ac8 rom_get_i2c_hostid = 0x40001ac8
  3075. 0x0000000040001acc rom_enter_critical_phy = 0x40001acc
  3076. 0x0000000040001ad0 rom_exit_critical_phy = 0x40001ad0
  3077. 0x0000000040001ad4 rom_chip_i2c_readReg_org = 0x40001ad4
  3078. 0x0000000040001ad8 rom_i2c_paral_set_mst0 = 0x40001ad8
  3079. 0x0000000040001adc rom_i2c_paral_set_read = 0x40001adc
  3080. 0x0000000040001ae0 rom_i2c_paral_read = 0x40001ae0
  3081. 0x0000000040001ae4 rom_i2c_paral_write = 0x40001ae4
  3082. 0x0000000040001ae8 rom_i2c_paral_write_num = 0x40001ae8
  3083. 0x0000000040001aec rom_i2c_paral_write_mask = 0x40001aec
  3084. 0x0000000040001af0 rom_bb_bss_cbw40_ana = 0x40001af0
  3085. 0x0000000040001af4 rom_chan_to_freq = 0x40001af4
  3086. 0x0000000040001afc rom_dac_rate_set = 0x40001afc
  3087. 0x0000000040001b08 rom_tsens_index_to_dac = 0x40001b08
  3088. 0x0000000040001b0c rom_tsens_index_to_offset = 0x40001b0c
  3089. 0x0000000040001b14 rom_code_to_temp = 0x40001b14
  3090. 0x0000000040001b18 rom_write_pll_cap_mem = 0x40001b18
  3091. 0x0000000040001b1c rom_pll_correct_dcap = 0x40001b1c
  3092. 0x0000000040001b20 rom_phy_en_hw_set_freq = 0x40001b20
  3093. 0x0000000040001b24 rom_phy_dis_hw_set_freq = 0x40001b24
  3094. 0x0000000040000628 PROVIDE (esp_rom_crc32_le = crc32_le)
  3095. [!provide] PROVIDE (esp_rom_crc16_le = crc16_le)
  3096. [!provide] PROVIDE (esp_rom_crc8_le = crc8_le)
  3097. [!provide] PROVIDE (esp_rom_crc32_be = crc32_be)
  3098. [!provide] PROVIDE (esp_rom_crc16_be = crc16_be)
  3099. [!provide] PROVIDE (esp_rom_crc8_be = crc8_be)
  3100. [!provide] PROVIDE (esp_rom_gpio_pad_select_gpio = gpio_pad_select_gpio)
  3101. [!provide] PROVIDE (esp_rom_gpio_pad_pullup_only = gpio_pad_pullup)
  3102. 0x00000000400005cc PROVIDE (esp_rom_gpio_pad_set_drv = gpio_pad_set_drv)
  3103. [!provide] PROVIDE (esp_rom_gpio_pad_unhold = gpio_pad_unhold)
  3104. [!provide] PROVIDE (esp_rom_gpio_connect_in_signal = gpio_matrix_in)
  3105. [!provide] PROVIDE (esp_rom_gpio_connect_out_signal = gpio_matrix_out)
  3106. [!provide] PROVIDE (esp_rom_efuse_mac_address_crc8 = esp_crc8)
  3107. 0x000000004000071c PROVIDE (esp_rom_efuse_get_flash_gpio_info = ets_efuse_get_spiconfig)
  3108. [!provide] PROVIDE (esp_rom_efuse_is_secure_boot_enabled = ets_efuse_secure_boot_enabled)
  3109. 0x000000004000072c PROVIDE (esp_rom_efuse_get_flash_wp_gpio = ets_efuse_get_wp_pad)
  3110. 0x0000000040000080 PROVIDE (esp_rom_uart_flush_tx = uart_tx_flush)
  3111. [!provide] PROVIDE (esp_rom_uart_tx_one_char = uart_tx_one_char)
  3112. 0x0000000040000084 PROVIDE (esp_rom_uart_tx_wait_idle = uart_tx_wait_idle)
  3113. [!provide] PROVIDE (esp_rom_uart_rx_one_char = uart_rx_one_char)
  3114. [!provide] PROVIDE (esp_rom_uart_rx_string = UartRxString)
  3115. [!provide] PROVIDE (esp_rom_uart_putc = ets_write_char_uart)
  3116. 0x0000000040000614 PROVIDE (esp_rom_md5_init = MD5Init)
  3117. 0x0000000040000618 PROVIDE (esp_rom_md5_update = MD5Update)
  3118. 0x000000004000061c PROVIDE (esp_rom_md5_final = MD5Final)
  3119. 0x0000000040000040 PROVIDE (esp_rom_printf = ets_printf)
  3120. 0x0000000040000050 PROVIDE (esp_rom_delay_us = ets_delay_us)
  3121. 0x0000000040000018 PROVIDE (esp_rom_get_reset_reason = rtc_get_reset_reason)
  3122. [!provide] PROVIDE (esp_rom_route_intr_matrix = intr_matrix_set)
  3123. 0x0000000040000584 PROVIDE (esp_rom_get_cpu_ticks_per_us = ets_get_cpu_frequency)
  3124. [!provide] PROVIDE (esp_rom_spiflash_clear_bp = esp_rom_spiflash_unlock)
  3125. [!provide] PROVIDE (esp_rom_spiflash_write_enable = SPI_write_enable)
  3126. [!provide] PROVIDE (esp_rom_spiflash_erase_area = SPIEraseArea)
  3127. [!provide] PROVIDE (esp_rom_spiflash_fix_dummylen = spi_dummy_len_fix)
  3128. [!provide] PROVIDE (esp_rom_spiflash_set_drvs = SetSpiDrvs)
  3129. [!provide] PROVIDE (esp_rom_spiflash_select_padsfunc = SelectSpiFunction)
  3130. [!provide] PROVIDE (esp_rom_spiflash_common_cmd = SPI_Common_Command)
  3131. [!provide] PROVIDE (esp_rom_regi2c_read = rom_i2c_readReg)
  3132. [!provide] PROVIDE (esp_rom_regi2c_read_mask = rom_i2c_readReg_Mask)
  3133. 0x000000004000195c PROVIDE (esp_rom_regi2c_write = rom_i2c_writeReg)
  3134. 0x0000000040001960 PROVIDE (esp_rom_regi2c_write_mask = rom_i2c_writeReg_Mask)
  3135. 0x0000000040000764 __absvdi2 = 0x40000764
  3136. 0x0000000040000768 __absvsi2 = 0x40000768
  3137. 0x000000004000076c __adddf3 = 0x4000076c
  3138. 0x0000000040000770 __addsf3 = 0x40000770
  3139. 0x0000000040000774 __addvdi3 = 0x40000774
  3140. 0x0000000040000778 __addvsi3 = 0x40000778
  3141. 0x000000004000077c __ashldi3 = 0x4000077c
  3142. 0x0000000040000780 __ashrdi3 = 0x40000780
  3143. 0x0000000040000784 __bswapdi2 = 0x40000784
  3144. 0x0000000040000788 __bswapsi2 = 0x40000788
  3145. 0x000000004000078c __clear_cache = 0x4000078c
  3146. 0x0000000040000790 __clrsbdi2 = 0x40000790
  3147. 0x0000000040000794 __clrsbsi2 = 0x40000794
  3148. 0x0000000040000798 __clzdi2 = 0x40000798
  3149. 0x000000004000079c __clzsi2 = 0x4000079c
  3150. 0x00000000400007a0 __cmpdi2 = 0x400007a0
  3151. 0x00000000400007a4 __ctzdi2 = 0x400007a4
  3152. 0x00000000400007a8 __ctzsi2 = 0x400007a8
  3153. 0x00000000400007ac __divdc3 = 0x400007ac
  3154. 0x00000000400007b0 __divdf3 = 0x400007b0
  3155. 0x00000000400007b4 __divdi3 = 0x400007b4
  3156. 0x00000000400007b8 __divsc3 = 0x400007b8
  3157. 0x00000000400007bc __divsf3 = 0x400007bc
  3158. 0x00000000400007c0 __divsi3 = 0x400007c0
  3159. 0x00000000400007c4 __eqdf2 = 0x400007c4
  3160. 0x00000000400007c8 __eqsf2 = 0x400007c8
  3161. 0x00000000400007cc __extendsfdf2 = 0x400007cc
  3162. 0x00000000400007d0 __ffsdi2 = 0x400007d0
  3163. 0x00000000400007d4 __ffssi2 = 0x400007d4
  3164. 0x00000000400007d8 __fixdfdi = 0x400007d8
  3165. 0x00000000400007dc __fixdfsi = 0x400007dc
  3166. 0x00000000400007e0 __fixsfdi = 0x400007e0
  3167. 0x00000000400007e4 __fixsfsi = 0x400007e4
  3168. 0x00000000400007e8 __fixunsdfsi = 0x400007e8
  3169. 0x00000000400007ec __fixunssfdi = 0x400007ec
  3170. 0x00000000400007f0 __fixunssfsi = 0x400007f0
  3171. 0x00000000400007f4 __floatdidf = 0x400007f4
  3172. 0x00000000400007f8 __floatdisf = 0x400007f8
  3173. 0x00000000400007fc __floatsidf = 0x400007fc
  3174. 0x0000000040000800 __floatsisf = 0x40000800
  3175. 0x0000000040000804 __floatundidf = 0x40000804
  3176. 0x0000000040000808 __floatundisf = 0x40000808
  3177. 0x000000004000080c __floatunsidf = 0x4000080c
  3178. 0x0000000040000810 __floatunsisf = 0x40000810
  3179. 0x0000000040000814 __gcc_bcmp = 0x40000814
  3180. 0x0000000040000818 __gedf2 = 0x40000818
  3181. 0x000000004000081c __gesf2 = 0x4000081c
  3182. 0x0000000040000820 __gtdf2 = 0x40000820
  3183. 0x0000000040000824 __gtsf2 = 0x40000824
  3184. 0x0000000040000828 __ledf2 = 0x40000828
  3185. 0x000000004000082c __lesf2 = 0x4000082c
  3186. 0x0000000040000830 __lshrdi3 = 0x40000830
  3187. 0x0000000040000834 __ltdf2 = 0x40000834
  3188. 0x0000000040000838 __ltsf2 = 0x40000838
  3189. 0x000000004000083c __moddi3 = 0x4000083c
  3190. 0x0000000040000840 __modsi3 = 0x40000840
  3191. 0x0000000040000844 __muldc3 = 0x40000844
  3192. 0x0000000040000848 __muldf3 = 0x40000848
  3193. 0x000000004000084c __muldi3 = 0x4000084c
  3194. 0x0000000040000850 __mulsc3 = 0x40000850
  3195. 0x0000000040000854 __mulsf3 = 0x40000854
  3196. 0x0000000040000858 __mulsi3 = 0x40000858
  3197. 0x000000004000085c __mulvdi3 = 0x4000085c
  3198. 0x0000000040000860 __mulvsi3 = 0x40000860
  3199. 0x0000000040000864 __nedf2 = 0x40000864
  3200. 0x0000000040000868 __negdf2 = 0x40000868
  3201. 0x000000004000086c __negdi2 = 0x4000086c
  3202. 0x0000000040000870 __negsf2 = 0x40000870
  3203. 0x0000000040000874 __negvdi2 = 0x40000874
  3204. 0x0000000040000878 __negvsi2 = 0x40000878
  3205. 0x000000004000087c __nesf2 = 0x4000087c
  3206. 0x0000000040000880 __paritysi2 = 0x40000880
  3207. 0x0000000040000884 __popcountdi2 = 0x40000884
  3208. 0x0000000040000888 __popcountsi2 = 0x40000888
  3209. 0x000000004000088c __powidf2 = 0x4000088c
  3210. 0x0000000040000890 __powisf2 = 0x40000890
  3211. 0x0000000040000894 __subdf3 = 0x40000894
  3212. 0x0000000040000898 __subsf3 = 0x40000898
  3213. 0x000000004000089c __subvdi3 = 0x4000089c
  3214. 0x00000000400008a0 __subvsi3 = 0x400008a0
  3215. 0x00000000400008a4 __truncdfsf2 = 0x400008a4
  3216. 0x00000000400008a8 __ucmpdi2 = 0x400008a8
  3217. 0x00000000400008ac __udivdi3 = 0x400008ac
  3218. 0x00000000400008b0 __udivmoddi4 = 0x400008b0
  3219. 0x00000000400008b4 __udivsi3 = 0x400008b4
  3220. 0x00000000400008b8 __udiv_w_sdiv = 0x400008b8
  3221. 0x00000000400008bc __umoddi3 = 0x400008bc
  3222. 0x00000000400008c0 __umodsi3 = 0x400008c0
  3223. 0x00000000400008c4 __unorddf2 = 0x400008c4
  3224. 0x00000000400008c8 __unordsf2 = 0x400008c8
  3225. 0x0000000040000350 esp_rom_newlib_init_common_mutexes = 0x40000350
  3226. 0x0000000040000354 memset = 0x40000354
  3227. 0x0000000040000358 memcpy = 0x40000358
  3228. 0x000000004000035c memmove = 0x4000035c
  3229. 0x0000000040000360 memcmp = 0x40000360
  3230. 0x0000000040000364 strcpy = 0x40000364
  3231. 0x0000000040000368 strncpy = 0x40000368
  3232. 0x000000004000036c strcmp = 0x4000036c
  3233. 0x0000000040000370 strncmp = 0x40000370
  3234. 0x0000000040000374 strlen = 0x40000374
  3235. 0x0000000040000378 strstr = 0x40000378
  3236. 0x000000004000037c bzero = 0x4000037c
  3237. 0x0000000040000384 sbrk = 0x40000384
  3238. 0x0000000040000388 isalnum = 0x40000388
  3239. 0x000000004000038c isalpha = 0x4000038c
  3240. 0x0000000040000390 isascii = 0x40000390
  3241. 0x0000000040000394 isblank = 0x40000394
  3242. 0x0000000040000398 iscntrl = 0x40000398
  3243. 0x000000004000039c isdigit = 0x4000039c
  3244. 0x00000000400003a0 islower = 0x400003a0
  3245. 0x00000000400003a4 isgraph = 0x400003a4
  3246. 0x00000000400003a8 isprint = 0x400003a8
  3247. 0x00000000400003ac ispunct = 0x400003ac
  3248. 0x00000000400003b0 isspace = 0x400003b0
  3249. 0x00000000400003b4 isupper = 0x400003b4
  3250. 0x00000000400003b8 toupper = 0x400003b8
  3251. 0x00000000400003bc tolower = 0x400003bc
  3252. 0x00000000400003c0 toascii = 0x400003c0
  3253. 0x00000000400003c4 memccpy = 0x400003c4
  3254. 0x00000000400003c8 memchr = 0x400003c8
  3255. 0x00000000400003cc memrchr = 0x400003cc
  3256. 0x00000000400003d0 strcasecmp = 0x400003d0
  3257. 0x00000000400003d4 strcasestr = 0x400003d4
  3258. 0x00000000400003d8 strcat = 0x400003d8
  3259. 0x00000000400003dc strdup = 0x400003dc
  3260. 0x00000000400003e0 strchr = 0x400003e0
  3261. 0x00000000400003e4 strcspn = 0x400003e4
  3262. 0x00000000400003e8 strcoll = 0x400003e8
  3263. 0x00000000400003ec strlcat = 0x400003ec
  3264. 0x00000000400003f0 strlcpy = 0x400003f0
  3265. 0x00000000400003f4 strlwr = 0x400003f4
  3266. 0x00000000400003f8 strncasecmp = 0x400003f8
  3267. 0x00000000400003fc strncat = 0x400003fc
  3268. 0x0000000040000400 strndup = 0x40000400
  3269. 0x0000000040000404 strnlen = 0x40000404
  3270. 0x0000000040000408 strrchr = 0x40000408
  3271. 0x000000004000040c strsep = 0x4000040c
  3272. 0x0000000040000410 strspn = 0x40000410
  3273. 0x0000000040000414 strtok_r = 0x40000414
  3274. 0x0000000040000418 strupr = 0x40000418
  3275. 0x000000004000041c longjmp = 0x4000041c
  3276. 0x0000000040000420 setjmp = 0x40000420
  3277. 0x0000000040000424 abs = 0x40000424
  3278. 0x0000000040000428 div = 0x40000428
  3279. 0x000000004000042c labs = 0x4000042c
  3280. 0x0000000040000430 ldiv = 0x40000430
  3281. 0x0000000040000434 qsort = 0x40000434
  3282. 0x0000000040000438 rand_r = 0x40000438
  3283. 0x000000004000043c rand = 0x4000043c
  3284. 0x0000000040000440 srand = 0x40000440
  3285. 0x0000000040000444 utoa = 0x40000444
  3286. 0x0000000040000448 itoa = 0x40000448
  3287. 0x000000004000044c atoi = 0x4000044c
  3288. 0x0000000040000450 atol = 0x40000450
  3289. 0x0000000040000454 strtol = 0x40000454
  3290. 0x0000000040000458 strtoul = 0x40000458
  3291. [!provide] PROVIDE (fflush = 0x4000045c)
  3292. [!provide] PROVIDE (_fflush_r = 0x40000460)
  3293. [!provide] PROVIDE (_fwalk = 0x40000464)
  3294. [!provide] PROVIDE (_fwalk_reent = 0x40000468)
  3295. [!provide] PROVIDE (__swbuf_r = 0x40000474)
  3296. 0x0000000040000478 __swbuf = 0x40000478
  3297. 0x000000003fcdffe0 syscall_table_ptr = 0x3fcdffe0
  3298. 0x000000003fcdffdc _global_impure_ptr = 0x3fcdffdc
  3299. 0x0000000000700000 iram_dram_offset = 0x700000
  3300. 0x000000003fcdc710 bootloader_usable_dram_end = 0x3fcdc710
  3301. 0x0000000000002000 bootloader_stack_overhead = 0x2000
  3302. 0x0000000000005000 bootloader_dram_seg_len = 0x5000
  3303. 0x0000000000007000 bootloader_iram_loader_seg_len = 0x7000
  3304. 0x0000000000002000 bootloader_iram_seg_len = 0x2000
  3305. 0x000000003fcda710 bootloader_dram_seg_end = (bootloader_usable_dram_end - bootloader_stack_overhead)
  3306. 0x000000003fcd5710 bootloader_dram_seg_start = (bootloader_dram_seg_end - bootloader_dram_seg_len)
  3307. 0x00000000403ce710 bootloader_iram_loader_seg_start = ((bootloader_dram_seg_start - bootloader_iram_loader_seg_len) + iram_dram_offset)
  3308. 0x00000000403cc710 bootloader_iram_seg_start = (bootloader_iram_loader_seg_start - bootloader_iram_seg_len)
  3309. .iram_loader.text
  3310. 0x00000000403ce710 0x2e76
  3311. 0x00000000403ce710 . = ALIGN (0x10)
  3312. 0x00000000403ce710 _loader_text_start = ABSOLUTE (.)
  3313. *(.stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
  3314. *(.iram1 .iram1.*)
  3315. .iram1.0 0x00000000403ce710 0x22 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  3316. 0x00000000403ce710 esp_flash_encryption_enabled
  3317. .iram1.0 0x00000000403ce732 0xce esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  3318. 0x00000000403ce732 bootloader_configure_spi_pins
  3319. .iram1.5 0x00000000403ce800 0x52 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3320. .iram1.1 0x00000000403ce852 0x19a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3321. 0x00000000403ce852 bootloader_flash_execute_command_common
  3322. .iram1.2 0x00000000403ce9ec 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3323. 0x00000000403ce9ec bootloader_execute_flash_command
  3324. .iram1.0 0x00000000403ce9fa 0x154 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3325. 0x00000000403ce9fa bootloader_flash_unlock
  3326. .iram1.3 0x00000000403ceb4e 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3327. 0x00000000403ceb4e bootloader_flash_read_sfdp
  3328. .iram1.4 0x00000000403ceb8e 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3329. 0x00000000403ceb8e bootloader_read_flash_id
  3330. .iram1.6 0x00000000403cebc2 0xbe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3331. 0x00000000403cebc2 bootloader_flash_xmc_startup
  3332. .iram1.0 0x00000000403cec80 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  3333. 0x00000000403cec80 bootloader_flash_cs_timing_config
  3334. .iram1.2 0x00000000403cecba 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  3335. 0x00000000403cecba bootloader_flash_set_dummy_out
  3336. .iram1.3 0x00000000403cecd6 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  3337. 0x00000000403cecd6 bootloader_flash_dummy_config
  3338. .iram1.1 0x00000000403cece4 0x1a esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  3339. 0x00000000403cece4 esp_rom_install_uart_printf
  3340. .iram1.0 0x00000000403cecfe 0x7a esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  3341. 0x00000000403cecfe esp_rom_uart_set_clock_baudrate
  3342. .iram1.0 0x00000000403ced78 0x1e esp-idf/hal/libhal.a(efuse_hal.c.obj)
  3343. 0x00000000403ced78 efuse_hal_chip_revision
  3344. .iram1.0 0x00000000403ced96 0x10 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  3345. 0x00000000403ced96 efuse_hal_get_major_chip_version
  3346. .iram1.1 0x00000000403ceda6 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  3347. 0x00000000403ceda6 efuse_hal_get_minor_chip_version
  3348. *liblog.a:(.literal .text .literal.* .text.*)
  3349. .text.esp_log_early_timestamp
  3350. 0x00000000403cedbe 0x26 esp-idf/log/liblog.a(log_noos.c.obj)
  3351. 0x00000000403cedbe esp_log_early_timestamp
  3352. 0x00000000403cedbe esp_log_timestamp
  3353. *libgcc.a:(.literal .text .literal.* .text.*)
  3354. *libbootloader_support.a:bootloader_clock_loader.*(.literal .text .literal.* .text.*)
  3355. *libbootloader_support.a:bootloader_common_loader.*(.literal .text .literal.* .text.*)
  3356. .text.bootloader_common_ota_select_crc
  3357. 0x00000000403cede4 0xe esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  3358. 0x00000000403cede4 bootloader_common_ota_select_crc
  3359. .text.bootloader_common_ota_select_invalid
  3360. 0x00000000403cedf2 0x16 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  3361. 0x00000000403cedf2 bootloader_common_ota_select_invalid
  3362. .text.bootloader_common_ota_select_valid
  3363. 0x00000000403cee08 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  3364. 0x00000000403cee08 bootloader_common_ota_select_valid
  3365. .text.bootloader_common_check_chip_validity
  3366. 0x00000000403cee32 0x11c esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  3367. 0x00000000403cee32 bootloader_common_check_chip_validity
  3368. .text.bootloader_common_select_otadata
  3369. 0x00000000403cef4e 0x3a esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  3370. 0x00000000403cef4e bootloader_common_select_otadata
  3371. .text.bootloader_common_get_active_otadata
  3372. 0x00000000403cef88 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  3373. 0x00000000403cef88 bootloader_common_get_active_otadata
  3374. *libbootloader_support.a:bootloader_flash.*(.literal .text .literal.* .text.*)
  3375. .text.spi_to_esp_err
  3376. 0x00000000403cefb6 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3377. .text.bootloader_mmap_get_free_pages
  3378. 0x00000000403cefd8 0x6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3379. 0x00000000403cefd8 bootloader_mmap_get_free_pages
  3380. .text.bootloader_mmap
  3381. 0x00000000403cefde 0xcc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3382. 0x00000000403cefde bootloader_mmap
  3383. .text.bootloader_munmap
  3384. 0x00000000403cf0aa 0x34 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3385. 0x00000000403cf0aa bootloader_munmap
  3386. .text.bootloader_flash_read
  3387. 0x00000000403cf0de 0x134 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3388. 0x00000000403cf0de bootloader_flash_read
  3389. .text.bootloader_flash_erase_sector
  3390. 0x00000000403cf212 0x12 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3391. 0x00000000403cf212 bootloader_flash_erase_sector
  3392. .text.bootloader_flash_write
  3393. 0x00000000403cf224 0xca esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3394. 0x00000000403cf224 bootloader_flash_write
  3395. .text.bootloader_enable_wp
  3396. 0x00000000403cf2ee 0xc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3397. 0x00000000403cf2ee bootloader_enable_wp
  3398. *libbootloader_support.a:bootloader_random.*(.literal .text .literal.* .text.*)
  3399. .text.bootloader_fill_random
  3400. 0x00000000403cf2fa 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  3401. 0x00000000403cf2fa bootloader_fill_random
  3402. *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_disable .text.bootloader_random_disable)
  3403. .text.bootloader_random_disable
  3404. 0x00000000403cf36a 0x72 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  3405. 0x00000000403cf36a bootloader_random_disable
  3406. *libbootloader_support.a:bootloader_random*.*(.literal.bootloader_random_enable .text.bootloader_random_enable)
  3407. .text.bootloader_random_enable
  3408. 0x00000000403cf3dc 0x182 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  3409. 0x00000000403cf3dc bootloader_random_enable
  3410. *libbootloader_support.a:bootloader_efuse.*(.literal .text .literal.* .text.*)
  3411. *libbootloader_support.a:bootloader_utility.*(.literal .text .literal.* .text.*)
  3412. .text.log_invalid_app_partition
  3413. 0x00000000403cf55e 0x84 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3414. .text.index_to_partition
  3415. 0x00000000403cf5e2 0x42 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3416. .text.try_load_partition
  3417. 0x00000000403cf624 0x44 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3418. .text.cache_ll_l1_enable_bus.constprop.0
  3419. 0x00000000403cf668 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3420. .text.set_actual_ota_seq
  3421. 0x00000000403cf698 0xaa esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3422. .text.load_image
  3423. 0x00000000403cf742 0x192 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3424. .text.bootloader_utility_load_partition_table
  3425. 0x00000000403cf8d4 0x22e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3426. 0x00000000403cf8d4 bootloader_utility_load_partition_table
  3427. .text.bootloader_utility_get_selected_boot_partition
  3428. 0x00000000403cfb02 0x192 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3429. 0x00000000403cfb02 bootloader_utility_get_selected_boot_partition
  3430. .text.bootloader_reset
  3431. 0x00000000403cfc94 0x1e esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3432. 0x00000000403cfc94 bootloader_reset
  3433. .text.bootloader_utility_load_boot_image
  3434. 0x00000000403cfcb2 0x11c esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3435. 0x00000000403cfcb2 bootloader_utility_load_boot_image
  3436. .text.bootloader_debug_buffer
  3437. 0x00000000403cfdce 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3438. 0x00000000403cfdce bootloader_debug_buffer
  3439. *libbootloader_support.a:bootloader_sha.*(.literal .text .literal.* .text.*)
  3440. .text.bootloader_sha256_start
  3441. 0x00000000403cfdd0 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  3442. 0x00000000403cfdd0 bootloader_sha256_start
  3443. .text.bootloader_sha256_data
  3444. 0x00000000403cfdfc 0x52 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  3445. 0x00000000403cfdfc bootloader_sha256_data
  3446. .text.bootloader_sha256_finish
  3447. 0x00000000403cfe4e 0x46 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  3448. 0x00000000403cfe4e bootloader_sha256_finish
  3449. *libbootloader_support.a:bootloader_console_loader.*(.literal .text .literal.* .text.*)
  3450. .text.bootloader_console_deinit
  3451. 0x00000000403cfe94 0xa esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  3452. 0x00000000403cfe94 bootloader_console_deinit
  3453. *libbootloader_support.a:bootloader_panic.*(.literal .text .literal.* .text.*)
  3454. .text.__assert_func
  3455. 0x00000000403cfe9e 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3456. 0x00000000403cfe9e __assert_func
  3457. .text.unlikely.abort
  3458. 0x00000000403cfebe 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3459. 0x00000000403cfebe abort
  3460. *libbootloader_support.a:bootloader_soc.*(.literal .text .literal.* .text.*)
  3461. .text.bootloader_ana_super_wdt_reset_config
  3462. 0x00000000403cfee6 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  3463. 0x00000000403cfee6 bootloader_ana_super_wdt_reset_config
  3464. .text.bootloader_ana_bod_reset_config
  3465. 0x00000000403cff0e 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  3466. 0x00000000403cff0e bootloader_ana_bod_reset_config
  3467. .text.bootloader_ana_clock_glitch_reset_config
  3468. 0x00000000403cff38 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  3469. 0x00000000403cff38 bootloader_ana_clock_glitch_reset_config
  3470. *libbootloader_support.a:esp_image_format.*(.literal .text .literal.* .text.*)
  3471. .text.bootloader_util_regions_overlap
  3472. 0x00000000403cff5e 0x4e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3473. .text.should_load
  3474. 0x00000000403cffac 0x5a esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3475. .text.process_segments
  3476. 0x00000000403d0006 0x4aa esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3477. .text.image_load
  3478. 0x00000000403d04b0 0x3ea esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3479. .text.bootloader_load_image
  3480. 0x00000000403d089a 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3481. 0x00000000403d089a bootloader_load_image
  3482. *libbootloader_support.a:flash_encrypt.*(.literal .text .literal.* .text.*)
  3483. *libbootloader_support.a:flash_encryption_secure_features.*(.literal .text .literal.* .text.*)
  3484. *libbootloader_support.a:flash_partitions.*(.literal .text .literal.* .text.*)
  3485. .text.esp_partition_table_verify
  3486. 0x00000000403d08a2 0x186 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  3487. 0x00000000403d08a2 esp_partition_table_verify
  3488. *libbootloader_support.a:secure_boot.*(.literal .text .literal.* .text.*)
  3489. *libbootloader_support.a:secure_boot_secure_features.*(.literal .text .literal.* .text.*)
  3490. *libbootloader_support.a:secure_boot_signatures_bootloader.*(.literal .text .literal.* .text.*)
  3491. *libmicro-ecc.a:*.*(.literal .text .literal.* .text.*)
  3492. *libspi_flash.a:*.*(.literal .text .literal.* .text.*)
  3493. *libhal.a:wdt_hal_iram.*(.literal .text .literal.* .text.*)
  3494. .text.wdt_hal_init
  3495. 0x00000000403d0a28 0x1aa esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  3496. 0x00000000403d0a28 wdt_hal_init
  3497. .text.wdt_hal_config_stage
  3498. 0x00000000403d0bd2 0x10c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  3499. 0x00000000403d0bd2 wdt_hal_config_stage
  3500. .text.wdt_hal_write_protect_disable
  3501. 0x00000000403d0cde 0x18 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  3502. 0x00000000403d0cde wdt_hal_write_protect_disable
  3503. .text.wdt_hal_write_protect_enable
  3504. 0x00000000403d0cf6 0x12 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  3505. 0x00000000403d0cf6 wdt_hal_write_protect_enable
  3506. .text.wdt_hal_enable
  3507. 0x00000000403d0d08 0x2c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  3508. 0x00000000403d0d08 wdt_hal_enable
  3509. .text.wdt_hal_set_flashboot_en
  3510. 0x00000000403d0d34 0x36 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  3511. 0x00000000403d0d34 wdt_hal_set_flashboot_en
  3512. *libhal.a:mmu_hal.*(.literal .text .literal.* .text.*)
  3513. .text.mmu_hal_init
  3514. 0x00000000403d0d6a 0x16 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  3515. 0x00000000403d0d6a mmu_hal_init
  3516. .text.mmu_hal_map_region
  3517. 0x00000000403d0d80 0x82 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  3518. 0x00000000403d0d80 mmu_hal_map_region
  3519. *libhal.a:cache_hal.*(.literal .text .literal.* .text.*)
  3520. .text.cache_hal_init
  3521. 0x00000000403d0e02 0x3a esp-idf/hal/libhal.a(cache_hal.c.obj)
  3522. 0x00000000403d0e02 cache_hal_init
  3523. .text.cache_hal_disable
  3524. 0x00000000403d0e3c 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj)
  3525. 0x00000000403d0e3c cache_hal_disable
  3526. .text.cache_hal_enable
  3527. 0x00000000403d0e44 0x12 esp-idf/hal/libhal.a(cache_hal.c.obj)
  3528. 0x00000000403d0e44 cache_hal_enable
  3529. *libhal.a:efuse_hal.*(.literal .text .literal.* .text.*)
  3530. *libesp_hw_support.a:rtc_clk.*(.literal .text .literal.* .text.*)
  3531. .text.clk_ll_rtc_slow_get_src
  3532. 0x00000000403d0e56 0x1a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3533. .text.rtc_clk_bbpll_disable
  3534. 0x00000000403d0e70 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3535. .text.rtc_clk_cpu_freq_to_pll_mhz
  3536. 0x00000000403d0e86 0x64 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3537. .text.clk_ll_xtal32k_enable.constprop.0
  3538. 0x00000000403d0eea 0x4a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3539. .text.rtc_clk_32k_enable
  3540. 0x00000000403d0f34 0x1c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3541. 0x00000000403d0f34 rtc_clk_32k_enable
  3542. .text.rtc_clk_8m_enable
  3543. 0x00000000403d0f50 0x66 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3544. 0x00000000403d0f50 rtc_clk_8m_enable
  3545. .text.rtc_clk_slow_src_set
  3546. 0x00000000403d0fb6 0x68 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3547. 0x00000000403d0fb6 rtc_clk_slow_src_set
  3548. .text.rtc_clk_slow_src_get
  3549. 0x00000000403d101e 0x2 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3550. 0x00000000403d101e rtc_clk_slow_src_get
  3551. .text.rtc_clk_slow_freq_get_hz
  3552. 0x00000000403d1020 0x30 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3553. 0x00000000403d1020 rtc_clk_slow_freq_get_hz
  3554. .text.rtc_clk_fast_src_set
  3555. 0x00000000403d1050 0x3a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3556. 0x00000000403d1050 rtc_clk_fast_src_set
  3557. .text.rtc_clk_fast_src_get
  3558. 0x00000000403d108a 0xc esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3559. 0x00000000403d108a rtc_clk_fast_src_get
  3560. .text.rtc_clk_xtal_freq_get
  3561. 0x00000000403d1096 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3562. 0x00000000403d1096 rtc_clk_xtal_freq_get
  3563. 0x00000000403d1096 rtc_get_xtal
  3564. .text.rtc_clk_cpu_freq_mhz_to_config
  3565. 0x00000000403d10e4 0x60 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3566. 0x00000000403d10e4 rtc_clk_cpu_freq_mhz_to_config
  3567. .text.rtc_clk_cpu_freq_get_config
  3568. 0x00000000403d1144 0xd8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3569. 0x00000000403d1144 rtc_clk_cpu_freq_get_config
  3570. .text.rtc_clk_xtal_freq_update
  3571. 0x00000000403d121c 0x14 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3572. 0x00000000403d121c rtc_clk_xtal_freq_update
  3573. .text.rtc_clk_apb_freq_update
  3574. 0x00000000403d1230 0x16 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3575. 0x00000000403d1230 rtc_clk_apb_freq_update
  3576. .text.rtc_clk_cpu_freq_to_xtal
  3577. 0x00000000403d1246 0x58 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3578. .text.rtc_clk_cpu_freq_set_config
  3579. 0x00000000403d129e 0x248 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3580. 0x00000000403d129e rtc_clk_cpu_freq_set_config
  3581. .text.rtc_clk_apb_freq_get
  3582. 0x00000000403d14e6 0x2c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3583. 0x00000000403d14e6 rtc_clk_apb_freq_get
  3584. .text.rtc_clk_divider_set
  3585. 0x00000000403d1512 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3586. 0x00000000403d1512 rtc_clk_divider_set
  3587. .text.rtc_clk_8m_divider_set
  3588. 0x00000000403d1552 0x34 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3589. 0x00000000403d1552 rtc_clk_8m_divider_set
  3590. *libesp_hw_support.a:rtc_time.*(.literal .text .literal.* .text.*)
  3591. *libesp_hw_support.a:regi2c_ctrl.*(.literal .text .literal.* .text.*)
  3592. *libefuse.a:*.*(.literal .text .literal.* .text.*)
  3593. *(.fini.literal)
  3594. *(.fini)
  3595. *(.gnu.version)
  3596. 0x00000000403d1586 _loader_text_end = ABSOLUTE (.)
  3597. .iram.text 0x00000000403cc710 0x966
  3598. 0x00000000403cc710 . = ALIGN (0x10)
  3599. *(.entry.text)
  3600. *(.init.literal)
  3601. *(.init)
  3602. 0x00000000403cc710 _stext = .
  3603. 0x00000000403cc710 _text_start = ABSOLUTE (.)
  3604. *(.literal .text .literal.* .text.* .stub .gnu.warning .gnu.linkonce.literal.* .gnu.linkonce.t.*.literal .gnu.linkonce.t.*)
  3605. .text.call_start_cpu0
  3606. 0x00000000403cc710 0x82 esp-idf/main/libmain.a(bootloader_start.c.obj)
  3607. 0x00000000403cc710 call_start_cpu0
  3608. .text.bootloader_init
  3609. 0x00000000403cc792 0x3a2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  3610. 0x00000000403cc792 bootloader_init
  3611. .text.bootloader_clock_configure
  3612. 0x00000000403ccb34 0xd0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  3613. 0x00000000403ccb34 bootloader_clock_configure
  3614. .text.bootloader_init_mem
  3615. 0x00000000403ccc04 0x2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  3616. 0x00000000403ccc04 bootloader_init_mem
  3617. .text.bootloader_flash_update_id
  3618. 0x00000000403ccc06 0x1c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  3619. 0x00000000403ccc06 bootloader_flash_update_id
  3620. .text.bootloader_clear_bss_section
  3621. 0x00000000403ccc22 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3622. 0x00000000403ccc22 bootloader_clear_bss_section
  3623. .text.bootloader_read_bootloader_header
  3624. 0x00000000403ccc44 0x3e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3625. 0x00000000403ccc44 bootloader_read_bootloader_header
  3626. .text.bootloader_check_bootloader_validity
  3627. 0x00000000403ccc82 0x54 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3628. 0x00000000403ccc82 bootloader_check_bootloader_validity
  3629. .text.bootloader_config_wdt
  3630. 0x00000000403cccd6 0x9c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3631. 0x00000000403cccd6 bootloader_config_wdt
  3632. .text.bootloader_enable_random
  3633. 0x00000000403ccd72 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3634. 0x00000000403ccd72 bootloader_enable_random
  3635. .text.bootloader_print_banner
  3636. 0x00000000403ccd9c 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3637. 0x00000000403ccd9c bootloader_print_banner
  3638. .text.bootloader_console_init
  3639. 0x00000000403ccde8 0x36 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  3640. 0x00000000403ccde8 bootloader_console_init
  3641. .text.esp_cpu_configure_region_protection
  3642. 0x00000000403cce1e 0xfa esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  3643. 0x00000000403cce1e esp_cpu_configure_region_protection
  3644. .text.rtc_clk_init
  3645. 0x00000000403ccf18 0x14e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  3646. 0x00000000403ccf18 rtc_clk_init
  3647. *(.iram .iram.*)
  3648. *(.fini.literal)
  3649. *(.fini)
  3650. *(.gnu.version)
  3651. 0x00000000403cd076 . = (. + 0x10)
  3652. *fill* 0x00000000403cd066 0x10
  3653. 0x00000000403cd076 _text_end = ABSOLUTE (.)
  3654. 0x00000000403cd076 _etext = .
  3655. .dram0.bss 0x000000003fcd5710 0x110
  3656. 0x000000003fcd5710 . = ALIGN (0x8)
  3657. 0x000000003fcd5710 _dram_start = ABSOLUTE (.)
  3658. 0x000000003fcd5710 _bss_start = ABSOLUTE (.)
  3659. *(.dynsbss)
  3660. *(.sbss)
  3661. *(.sbss.*)
  3662. .sbss.ota_has_initial_contents
  3663. 0x000000003fcd5710 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3664. *fill* 0x000000003fcd5711 0x3
  3665. .sbss.ram_obfs_value
  3666. 0x000000003fcd5714 0x8 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3667. .sbss.mapped 0x000000003fcd571c 0x1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3668. *fill* 0x000000003fcd571d 0x3
  3669. .sbss.s_cur_pll_freq
  3670. 0x000000003fcd5720 0x4 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3671. .sbss.ctx 0x000000003fcd5724 0x8 esp-idf/hal/libhal.a(cache_hal.c.obj)
  3672. *(.gnu.linkonce.sb.*)
  3673. *(.scommon)
  3674. *(.sbss2)
  3675. *(.sbss2.*)
  3676. *(.gnu.linkonce.sb2.*)
  3677. *(.dynbss)
  3678. *(.bss)
  3679. *(.bss.*)
  3680. .bss.ctx 0x000000003fcd572c 0xd8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  3681. .bss.bootloader_image_hdr
  3682. 0x000000003fcd5804 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3683. 0x000000003fcd5804 bootloader_image_hdr
  3684. *(.gnu.linkonce.b.*)
  3685. *(COMMON)
  3686. 0x000000003fcd5820 . = ALIGN (0x8)
  3687. *fill* 0x000000003fcd581c 0x4
  3688. 0x000000003fcd5820 _bss_end = ABSOLUTE (.)
  3689. .dram0.data 0x000000003fcd5820 0x4
  3690. 0x000000003fcd5820 _data_start = ABSOLUTE (.)
  3691. *(.data)
  3692. *(.data.*)
  3693. *(.gnu.linkonce.d.*)
  3694. *(.data1)
  3695. *(.sdata)
  3696. *(.sdata.*)
  3697. .sdata.current_read_mapping
  3698. 0x000000003fcd5820 0x4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3699. *(.gnu.linkonce.s.*)
  3700. *(.gnu.linkonce.s2.*)
  3701. *(.jcr)
  3702. 0x000000003fcd5824 _data_end = ABSOLUTE (.)
  3703. .dram0.rodata 0x000000003fcd5824 0x169c
  3704. 0x000000003fcd5824 _rodata_start = ABSOLUTE (.)
  3705. *(.rodata)
  3706. *(.rodata.*)
  3707. .rodata.__assert_func.str1.4
  3708. 0x000000003fcd5824 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3709. *fill* 0x000000003fcd5846 0x2
  3710. .rodata.abort.str1.4
  3711. 0x000000003fcd5848 0x22 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3712. *fill* 0x000000003fcd586a 0x2
  3713. .rodata.call_start_cpu0.str1.4
  3714. 0x000000003fcd586c 0x3c esp-idf/main/libmain.a(bootloader_start.c.obj)
  3715. .rodata.log_invalid_app_partition.str1.4
  3716. 0x000000003fcd58a8 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3717. 0xb8 (size before relaxing)
  3718. .rodata.try_load_partition.str1.4
  3719. 0x000000003fcd5958 0x41 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3720. *fill* 0x000000003fcd5999 0x3
  3721. .rodata.set_actual_ota_seq.str1.4
  3722. 0x000000003fcd599c 0x84 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3723. .rodata.load_image.str1.4
  3724. 0x000000003fcd5a20 0xad esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3725. *fill* 0x000000003fcd5acd 0x3
  3726. .rodata.bootloader_common_get_partition_description.str1.4
  3727. 0x000000003fcd5ad0 0x3b esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3728. *fill* 0x000000003fcd5b0b 0x1
  3729. .rodata.bootloader_utility_load_partition_table.str1.4
  3730. 0x000000003fcd5b0c 0x19f esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3731. *fill* 0x000000003fcd5cab 0x1
  3732. .rodata.bootloader_utility_get_selected_boot_partition.str1.4
  3733. 0x000000003fcd5cac 0x167 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3734. *fill* 0x000000003fcd5e13 0x1
  3735. .rodata.bootloader_utility_load_boot_image.str1.4
  3736. 0x000000003fcd5e14 0xe2 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3737. *fill* 0x000000003fcd5ef6 0x2
  3738. .rodata.bootloader_util_regions_overlap.str1.4
  3739. 0x000000003fcd5ef8 0x5e esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3740. *fill* 0x000000003fcd5f56 0x2
  3741. .rodata.process_segments.str1.4
  3742. 0x000000003fcd5f58 0x25d esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3743. 0x29d (size before relaxing)
  3744. *fill* 0x000000003fcd61b5 0x3
  3745. .rodata.image_load.str1.4
  3746. 0x000000003fcd61b8 0x1d6 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3747. *fill* 0x000000003fcd638e 0x2
  3748. .rodata.__func__.0
  3749. 0x000000003fcd6390 0x20 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3750. .rodata.__func__.1
  3751. 0x000000003fcd63b0 0x16 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3752. *fill* 0x000000003fcd63c6 0x2
  3753. .rodata.esp_partition_table_verify.str1.4
  3754. 0x000000003fcd63c8 0x168 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  3755. .rodata.bootloader_sha256_data.str1.4
  3756. 0x000000003fcd6530 0x66 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  3757. *fill* 0x000000003fcd6596 0x2
  3758. .rodata.__func__.0
  3759. 0x000000003fcd6598 0x19 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  3760. *fill* 0x000000003fcd65b1 0x3
  3761. .rodata.__func__.1
  3762. 0x000000003fcd65b4 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  3763. *fill* 0x000000003fcd65cb 0x1
  3764. .rodata.bootloader_init.str1.4
  3765. 0x000000003fcd65cc 0x1fb esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  3766. *fill* 0x000000003fcd67c7 0x1
  3767. .rodata.__func__.0
  3768. 0x000000003fcd67c8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  3769. .rodata.bootloader_common_check_chip_validity.str1.4
  3770. 0x000000003fcd67d8 0xea esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  3771. *fill* 0x000000003fcd68c2 0x2
  3772. .rodata.bootloader_mmap.str1.4
  3773. 0x000000003fcd68c4 0xac esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3774. .rodata.bootloader_flash_read.str1.4
  3775. 0x000000003fcd6970 0xe7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3776. *fill* 0x000000003fcd6a57 0x1
  3777. .rodata.str1.4
  3778. 0x000000003fcd6a58 0xdf esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3779. *fill* 0x000000003fcd6b37 0x1
  3780. .rodata.bootloader_flash_write.str1.4
  3781. 0x000000003fcd6b38 0xef esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3782. *fill* 0x000000003fcd6c27 0x1
  3783. .rodata.__func__.0
  3784. 0x000000003fcd6c28 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3785. *fill* 0x000000003fcd6c43 0x1
  3786. .rodata.__func__.1
  3787. 0x000000003fcd6c44 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3788. .rodata.bootloader_fill_random.str1.4
  3789. 0x000000003fcd6c6c 0x4c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  3790. .rodata.__func__.0
  3791. 0x000000003fcd6cb8 0x17 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  3792. *fill* 0x000000003fcd6ccf 0x1
  3793. .rodata.bootloader_read_bootloader_header.str1.4
  3794. 0x000000003fcd6cd0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3795. 0x48 (size before relaxing)
  3796. .rodata.bootloader_check_bootloader_validity.str1.4
  3797. 0x000000003fcd6d10 0x2e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3798. *fill* 0x000000003fcd6d3e 0x2
  3799. .rodata.bootloader_enable_random.str1.4
  3800. 0x000000003fcd6d40 0x3d esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3801. *fill* 0x000000003fcd6d7d 0x3
  3802. .rodata.bootloader_print_banner.str1.4
  3803. 0x000000003fcd6d80 0x6e esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3804. *fill* 0x000000003fcd6dee 0x2
  3805. .rodata.rtc_clk_init.str1.4
  3806. 0x000000003fcd6df0 0x44 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  3807. .rodata.rtc_clk_xtal_freq_get.str1.4
  3808. 0x000000003fcd6e34 0x4e esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3809. *fill* 0x000000003fcd6e82 0x2
  3810. .rodata.rtc_clk_cpu_freq_get_config.str1.4
  3811. 0x000000003fcd6e84 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3812. *(.gnu.linkonce.r.*)
  3813. *(.rodata1)
  3814. *(.sdata2 .sdata2.* .srodata .srodata.*)
  3815. 0x000000003fcd6ec0 __XT_EXCEPTION_TABLE_ = ABSOLUTE (.)
  3816. *(.xt_except_table)
  3817. *(.gcc_except_table)
  3818. *(.gnu.linkonce.e.*)
  3819. *(.gnu.version_r)
  3820. *(.eh_frame)
  3821. 0x000000003fcd6ec0 . = ((. + 0x3) & 0xfffffffffffffffc)
  3822. 0x000000003fcd6ec0 __init_array_start = ABSOLUTE (.)
  3823. *crtbegin.*(.ctors)
  3824. *(EXCLUDE_FILE(*crtend.*) .ctors)
  3825. *(SORT_BY_NAME(.ctors.*))
  3826. *(.ctors)
  3827. 0x000000003fcd6ec0 __init_array_end = ABSOLUTE (.)
  3828. *crtbegin.*(.dtors)
  3829. *(EXCLUDE_FILE(*crtend.*) .dtors)
  3830. *(SORT_BY_NAME(.dtors.*))
  3831. *(.dtors)
  3832. 0x000000003fcd6ec0 __XT_EXCEPTION_DESCS_ = ABSOLUTE (.)
  3833. *(.xt_except_desc)
  3834. *(.gnu.linkonce.h.*)
  3835. 0x000000003fcd6ec0 __XT_EXCEPTION_DESCS_END__ = ABSOLUTE (.)
  3836. *(.xt_except_desc_end)
  3837. *(.dynamic)
  3838. *(.gnu.version_d)
  3839. 0x000000003fcd6ec0 _rodata_end = ABSOLUTE (.)
  3840. 0x000000003fcd6ec0 _lit4_start = ABSOLUTE (.)
  3841. *(*.lit4)
  3842. *(.lit4.*)
  3843. *(.gnu.linkonce.lit4.*)
  3844. 0x000000003fcd6ec0 _lit4_end = ABSOLUTE (.)
  3845. 0x000000003fcd6ec0 . = ALIGN (0x4)
  3846. 0x000000003fcd6ec0 _dram_end = ABSOLUTE (.)
  3847. OUTPUT(bootloader.elf elf32-littleriscv)
  3848. .rela.dyn 0x000000003fcd6ec0 0x0
  3849. .rela.text.__assert_func
  3850. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3851. .rela.text.unlikely.abort
  3852. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3853. .rela.text.call_start_cpu0
  3854. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3855. .rela.text.log_invalid_app_partition
  3856. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3857. .rela.text.try_load_partition
  3858. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3859. .rela.text.set_actual_ota_seq
  3860. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3861. .rela.text.load_image
  3862. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3863. .rela.text.bootloader_utility_load_partition_table
  3864. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3865. .rela.text.bootloader_utility_get_selected_boot_partition
  3866. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3867. .rela.text.bootloader_reset
  3868. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3869. .rela.text.bootloader_utility_load_boot_image
  3870. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3871. .rela.text.should_load
  3872. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3873. .rela.text.process_segments
  3874. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3875. .rela.text.image_load
  3876. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3877. .rela.iram1.0 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3878. .rela.text.esp_partition_table_verify
  3879. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3880. .rela.text.bootloader_console_deinit
  3881. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3882. .rela.text.bootloader_sha256_start
  3883. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3884. .rela.text.bootloader_sha256_data
  3885. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3886. .rela.text.bootloader_sha256_finish
  3887. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3888. .rela.text.bootloader_init
  3889. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3890. .rela.text.bootloader_common_ota_select_crc
  3891. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3892. .rela.text.bootloader_common_check_chip_validity
  3893. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3894. .rela.text.bootloader_clock_configure
  3895. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3896. .rela.text.bootloader_mmap
  3897. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3898. .rela.text.bootloader_flash_read
  3899. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3900. .rela.text.bootloader_flash_erase_sector
  3901. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3902. .rela.iram1.1 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3903. .rela.text.bootloader_flash_write
  3904. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3905. .rela.iram1.6 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3906. .rela.text.bootloader_random_enable
  3907. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3908. .rela.text.bootloader_random_disable
  3909. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3910. .rela.text.bootloader_flash_update_id
  3911. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3912. .rela.text.bootloader_clear_bss_section
  3913. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3914. .rela.text.bootloader_read_bootloader_header
  3915. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3916. .rela.text.bootloader_check_bootloader_validity
  3917. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3918. .rela.text.bootloader_config_wdt
  3919. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3920. .rela.text.bootloader_enable_random
  3921. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3922. .rela.text.bootloader_print_banner
  3923. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3924. .rela.text.bootloader_console_init
  3925. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3926. .rela.text.rtc_clk_init
  3927. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3928. .rela.text.rtc_clk_cpu_freq_to_pll_mhz
  3929. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3930. .rela.text.rtc_clk_8m_enable
  3931. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3932. .rela.text.rtc_clk_slow_src_set
  3933. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3934. .rela.text.rtc_clk_fast_src_set
  3935. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3936. .rela.text.rtc_clk_xtal_freq_get
  3937. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3938. .rela.text.rtc_clk_cpu_freq_get_config
  3939. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3940. .rela.text.rtc_clk_cpu_freq_to_xtal
  3941. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3942. .rela.text.rtc_clk_cpu_freq_set_config
  3943. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3944. .rela.text.esp_log_early_timestamp
  3945. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3946. .rela.text.wdt_hal_init
  3947. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3948. .rela.text.wdt_hal_config_stage
  3949. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3950. .rela.text.cache_hal_init
  3951. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3952. .rela.text.cache_hal_disable
  3953. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3954. .rela.text.cache_hal_enable
  3955. 0x000000003fcd6ec0 0x0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3956. .debug_info 0x0000000000000000 0x23012
  3957. .debug_info 0x0000000000000000 0x203 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3958. .debug_info 0x0000000000000203 0xc95 esp-idf/main/libmain.a(bootloader_start.c.obj)
  3959. .debug_info 0x0000000000000e98 0x1ce0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3960. .debug_info 0x0000000000002b78 0x21fe esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3961. .debug_info 0x0000000000004d76 0x2153 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  3962. .debug_info 0x0000000000006ec9 0x5ae esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  3963. .debug_info 0x0000000000007477 0xbf esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  3964. .debug_info 0x0000000000007536 0x425 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  3965. .debug_info 0x000000000000795b 0x104 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  3966. .debug_info 0x0000000000007a5f 0xd98 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  3967. .debug_info 0x00000000000087f7 0x2335 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  3968. .debug_info 0x000000000000ab2c 0x349 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  3969. .debug_info 0x000000000000ae75 0x31f7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  3970. .debug_info 0x000000000000e06c 0x9f esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  3971. .debug_info 0x000000000000e10b 0x26b esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  3972. .debug_info 0x000000000000e376 0x1d8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  3973. .debug_info 0x000000000000e54e 0x428 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  3974. .debug_info 0x000000000000e976 0x43c6 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  3975. .debug_info 0x0000000000012d3c 0x19a esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  3976. .debug_info 0x0000000000012ed6 0xe7f esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  3977. .debug_info 0x0000000000013d55 0x8af esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  3978. .debug_info 0x0000000000014604 0x23bf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  3979. .debug_info 0x00000000000169c3 0x160 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  3980. .debug_info 0x0000000000016b23 0x16c5 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  3981. .debug_info 0x00000000000181e8 0x281 esp-idf/log/liblog.a(log_noos.c.obj)
  3982. .debug_info 0x0000000000018469 0x1cf3 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  3983. .debug_info 0x000000000001a15c 0x201d esp-idf/hal/libhal.a(efuse_hal.c.obj)
  3984. .debug_info 0x000000000001c179 0x51c esp-idf/hal/libhal.a(mmu_hal.c.obj)
  3985. .debug_info 0x000000000001c695 0x66e6 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  3986. .debug_info 0x0000000000022d7b 0x297 esp-idf/hal/libhal.a(cache_hal.c.obj)
  3987. .debug_abbrev 0x0000000000000000 0x4aa8
  3988. .debug_abbrev 0x0000000000000000 0x11f esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  3989. .debug_abbrev 0x000000000000011f 0x309 esp-idf/main/libmain.a(bootloader_start.c.obj)
  3990. .debug_abbrev 0x0000000000000428 0x4dc esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  3991. .debug_abbrev 0x0000000000000904 0x512 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  3992. .debug_abbrev 0x0000000000000e16 0x364 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  3993. .debug_abbrev 0x000000000000117a 0x1fd esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  3994. .debug_abbrev 0x0000000000001377 0x89 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  3995. .debug_abbrev 0x0000000000001400 0x1ca esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  3996. .debug_abbrev 0x00000000000015ca 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  3997. .debug_abbrev 0x000000000000164a 0x368 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  3998. .debug_abbrev 0x00000000000019b2 0x385 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  3999. .debug_abbrev 0x0000000000001d37 0x12e esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4000. .debug_abbrev 0x0000000000001e65 0x560 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4001. .debug_abbrev 0x00000000000023c5 0x65 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4002. .debug_abbrev 0x000000000000242a 0x16d esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4003. .debug_abbrev 0x0000000000002597 0xaf esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4004. .debug_abbrev 0x0000000000002646 0x1d9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4005. .debug_abbrev 0x000000000000281f 0x33f esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4006. .debug_abbrev 0x0000000000002b5e 0x123 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4007. .debug_abbrev 0x0000000000002c81 0x3ce esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4008. .debug_abbrev 0x000000000000304f 0x306 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4009. .debug_abbrev 0x0000000000003355 0x580 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4010. .debug_abbrev 0x00000000000038d5 0xd3 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4011. .debug_abbrev 0x00000000000039a8 0x274 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4012. .debug_abbrev 0x0000000000003c1c 0x1a5 esp-idf/log/liblog.a(log_noos.c.obj)
  4013. .debug_abbrev 0x0000000000003dc1 0x1de esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4014. .debug_abbrev 0x0000000000003f9f 0x367 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4015. .debug_abbrev 0x0000000000004306 0x245 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4016. .debug_abbrev 0x000000000000454b 0x3dc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4017. .debug_abbrev 0x0000000000004927 0x181 esp-idf/hal/libhal.a(cache_hal.c.obj)
  4018. .debug_loc 0x0000000000000000 0x70af
  4019. .debug_loc 0x0000000000000000 0xb0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4020. .debug_loc 0x00000000000000b0 0xc7 esp-idf/main/libmain.a(bootloader_start.c.obj)
  4021. .debug_loc 0x0000000000000177 0x113d esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4022. .debug_loc 0x00000000000012b4 0x1ca1 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4023. .debug_loc 0x0000000000002f55 0x81 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4024. .debug_loc 0x0000000000002fd6 0x1f7 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4025. .debug_loc 0x00000000000031cd 0x16d esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4026. .debug_loc 0x000000000000333a 0x2b9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4027. .debug_loc 0x00000000000035f3 0x308 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4028. .debug_loc 0x00000000000038fb 0x1b5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4029. .debug_loc 0x0000000000003ab0 0xf52 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4030. .debug_loc 0x0000000000004a02 0xf1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4031. .debug_loc 0x0000000000004af3 0x80 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4032. .debug_loc 0x0000000000004b73 0xae esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4033. .debug_loc 0x0000000000004c21 0x1b esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4034. .debug_loc 0x0000000000004c3c 0x594 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4035. .debug_loc 0x00000000000051d0 0xee esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4036. .debug_loc 0x00000000000052be 0xbd9 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4037. .debug_loc 0x0000000000005e97 0x7f esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4038. .debug_loc 0x0000000000005f16 0x227 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4039. .debug_loc 0x000000000000613d 0x1b1 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4040. .debug_loc 0x00000000000062ee 0x457 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4041. .debug_loc 0x0000000000006745 0x8d8 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4042. .debug_loc 0x000000000000701d 0x92 esp-idf/hal/libhal.a(cache_hal.c.obj)
  4043. .debug_aranges 0x0000000000000000 0x7f8
  4044. .debug_aranges
  4045. 0x0000000000000000 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4046. .debug_aranges
  4047. 0x0000000000000028 0x28 esp-idf/main/libmain.a(bootloader_start.c.obj)
  4048. .debug_aranges
  4049. 0x0000000000000050 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4050. .debug_aranges
  4051. 0x00000000000000e0 0x70 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4052. .debug_aranges
  4053. 0x0000000000000150 0x38 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4054. .debug_aranges
  4055. 0x0000000000000188 0x20 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4056. .debug_aranges
  4057. 0x00000000000001a8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  4058. .debug_aranges
  4059. 0x00000000000001c8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4060. .debug_aranges
  4061. 0x00000000000001f8 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4062. .debug_aranges
  4063. 0x0000000000000228 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4064. .debug_aranges
  4065. 0x0000000000000250 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4066. .debug_aranges
  4067. 0x0000000000000298 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4068. .debug_aranges
  4069. 0x00000000000002b8 0xa8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4070. .debug_aranges
  4071. 0x0000000000000360 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4072. .debug_aranges
  4073. 0x0000000000000380 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4074. .debug_aranges
  4075. 0x00000000000003a0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4076. .debug_aranges
  4077. 0x00000000000003c8 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4078. .debug_aranges
  4079. 0x0000000000000408 0x48 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4080. .debug_aranges
  4081. 0x0000000000000450 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4082. .debug_aranges
  4083. 0x0000000000000470 0x78 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4084. .debug_aranges
  4085. 0x00000000000004e8 0x20 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4086. .debug_aranges
  4087. 0x0000000000000508 0x110 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4088. .debug_aranges
  4089. 0x0000000000000618 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4090. .debug_aranges
  4091. 0x0000000000000640 0x28 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4092. .debug_aranges
  4093. 0x0000000000000668 0x38 esp-idf/log/liblog.a(log_noos.c.obj)
  4094. .debug_aranges
  4095. 0x00000000000006a0 0x28 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4096. .debug_aranges
  4097. 0x00000000000006c8 0x58 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4098. .debug_aranges
  4099. 0x0000000000000720 0x38 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4100. .debug_aranges
  4101. 0x0000000000000758 0x70 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4102. .debug_aranges
  4103. 0x00000000000007c8 0x30 esp-idf/hal/libhal.a(cache_hal.c.obj)
  4104. .debug_ranges 0x0000000000000000 0x1398
  4105. .debug_ranges 0x0000000000000000 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4106. .debug_ranges 0x0000000000000018 0x30 esp-idf/main/libmain.a(bootloader_start.c.obj)
  4107. .debug_ranges 0x0000000000000048 0x210 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4108. .debug_ranges 0x0000000000000258 0x398 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4109. .debug_ranges 0x00000000000005f0 0x70 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4110. .debug_ranges 0x0000000000000660 0x88 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4111. .debug_ranges 0x00000000000006e8 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  4112. .debug_ranges 0x00000000000006f8 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4113. .debug_ranges 0x0000000000000718 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4114. .debug_ranges 0x0000000000000738 0x90 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4115. .debug_ranges 0x00000000000007c8 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4116. .debug_ranges 0x0000000000000850 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4117. .debug_ranges 0x0000000000000860 0x150 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4118. .debug_ranges 0x00000000000009b0 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4119. .debug_ranges 0x00000000000009c0 0x28 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4120. .debug_ranges 0x00000000000009e8 0x18 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4121. .debug_ranges 0x0000000000000a00 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4122. .debug_ranges 0x0000000000000a30 0x38 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4123. .debug_ranges 0x0000000000000a68 0x10 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4124. .debug_ranges 0x0000000000000a78 0xf8 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4125. .debug_ranges 0x0000000000000b70 0x40 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4126. .debug_ranges 0x0000000000000bb0 0x3b0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4127. .debug_ranges 0x0000000000000f60 0x18 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4128. .debug_ranges 0x0000000000000f78 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4129. .debug_ranges 0x0000000000000fa8 0x60 esp-idf/log/liblog.a(log_noos.c.obj)
  4130. .debug_ranges 0x0000000000001008 0x18 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4131. .debug_ranges 0x0000000000001020 0x80 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4132. .debug_ranges 0x00000000000010a0 0x88 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4133. .debug_ranges 0x0000000000001128 0x238 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4134. .debug_ranges 0x0000000000001360 0x38 esp-idf/hal/libhal.a(cache_hal.c.obj)
  4135. .debug_line 0x0000000000000000 0x10e25
  4136. .debug_line 0x0000000000000000 0x3f4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4137. .debug_line 0x00000000000003f4 0x5f7 esp-idf/main/libmain.a(bootloader_start.c.obj)
  4138. .debug_line 0x00000000000009eb 0x1e63 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4139. .debug_line 0x000000000000284e 0x1ea2 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4140. .debug_line 0x00000000000046f0 0x89f esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4141. .debug_line 0x0000000000004f8f 0x6fa esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4142. .debug_line 0x0000000000005689 0x1ea esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  4143. .debug_line 0x0000000000005873 0x489 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4144. .debug_line 0x0000000000005cfc 0x2d9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4145. .debug_line 0x0000000000005fd5 0xca4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4146. .debug_line 0x0000000000006c79 0x82f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4147. .debug_line 0x00000000000074a8 0x393 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4148. .debug_line 0x000000000000783b 0x1828 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4149. .debug_line 0x0000000000009063 0xd5 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4150. .debug_line 0x0000000000009138 0x4f9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4151. .debug_line 0x0000000000009631 0x647 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4152. .debug_line 0x0000000000009c78 0x545 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4153. .debug_line 0x000000000000a1bd 0x8d3 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4154. .debug_line 0x000000000000aa90 0x2b4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4155. .debug_line 0x000000000000ad44 0x1011 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4156. .debug_line 0x000000000000bd55 0x6d7 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4157. .debug_line 0x000000000000c42c 0x1b17 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4158. .debug_line 0x000000000000df43 0x10c esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4159. .debug_line 0x000000000000e04f 0x402 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4160. .debug_line 0x000000000000e451 0x415 esp-idf/log/liblog.a(log_noos.c.obj)
  4161. .debug_line 0x000000000000e866 0x2eb esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4162. .debug_line 0x000000000000eb51 0x70e esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4163. .debug_line 0x000000000000f25f 0x574 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4164. .debug_line 0x000000000000f7d3 0x125c esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4165. .debug_line 0x0000000000010a2f 0x3f6 esp-idf/hal/libhal.a(cache_hal.c.obj)
  4166. .debug_str 0x0000000000000000 0xa204
  4167. .debug_str 0x0000000000000000 0x25d esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4168. 0x2b2 (size before relaxing)
  4169. .debug_str 0x000000000000025d 0x800 esp-idf/main/libmain.a(bootloader_start.c.obj)
  4170. 0xa37 (size before relaxing)
  4171. .debug_str 0x0000000000000a5d 0xa4a esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4172. 0xee9 (size before relaxing)
  4173. .debug_str 0x00000000000014a7 0x760 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4174. 0xf88 (size before relaxing)
  4175. .debug_str 0x0000000000001c07 0x14eb esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4176. 0x189f (size before relaxing)
  4177. .debug_str 0x00000000000030f2 0x16f esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4178. 0x48b (size before relaxing)
  4179. .debug_str 0x0000000000003261 0x70 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  4180. 0x239 (size before relaxing)
  4181. .debug_str 0x00000000000032d1 0x112 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4182. 0x3ad (size before relaxing)
  4183. .debug_str 0x00000000000033e3 0x9d esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4184. 0x289 (size before relaxing)
  4185. .debug_str 0x0000000000003480 0x5a9 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4186. 0xefb (size before relaxing)
  4187. .debug_str 0x0000000000003a29 0x11f esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4188. 0x18ef (size before relaxing)
  4189. .debug_str 0x0000000000003b48 0x290 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4190. 0x6a7 (size before relaxing)
  4191. .debug_str 0x0000000000003dd8 0x14bf esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4192. 0x1c8a (size before relaxing)
  4193. .debug_str 0x0000000000005297 0x73 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4194. 0x229 (size before relaxing)
  4195. .debug_str 0x000000000000530a 0xac esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4196. 0x2c4 (size before relaxing)
  4197. .debug_str 0x00000000000053b6 0x73 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4198. 0x26f (size before relaxing)
  4199. .debug_str 0x0000000000005429 0xdc esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4200. 0x608 (size before relaxing)
  4201. .debug_str 0x0000000000005505 0x22de esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4202. 0x2dc7 (size before relaxing)
  4203. .debug_str 0x00000000000077e3 0xb7 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4204. 0x2fa (size before relaxing)
  4205. .debug_str 0x000000000000789a 0x39b esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4206. 0x61d (size before relaxing)
  4207. .debug_str 0x0000000000007c35 0x4c0 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4208. 0xc70 (size before relaxing)
  4209. .debug_str 0x00000000000080f5 0xfd8 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4210. 0x1be5 (size before relaxing)
  4211. .debug_str 0x00000000000090cd 0xbf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4212. 0x27c (size before relaxing)
  4213. .debug_str 0x000000000000918c 0x62b esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4214. 0x994 (size before relaxing)
  4215. .debug_str 0x00000000000097b7 0xb2 esp-idf/log/liblog.a(log_noos.c.obj)
  4216. 0x2d2 (size before relaxing)
  4217. .debug_str 0x0000000000009869 0xaf esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4218. 0x144a (size before relaxing)
  4219. .debug_str 0x0000000000009918 0x329 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4220. 0x1705 (size before relaxing)
  4221. .debug_str 0x0000000000009c41 0x15d esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4222. 0x3d7 (size before relaxing)
  4223. .debug_str 0x0000000000009d9e 0x3cc esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4224. 0x3d3f (size before relaxing)
  4225. .debug_str 0x000000000000a16a 0x9a esp-idf/hal/libhal.a(cache_hal.c.obj)
  4226. 0x37a (size before relaxing)
  4227. .comment 0x0000000000000000 0x26
  4228. .comment 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4229. 0x27 (size before relaxing)
  4230. .comment 0x0000000000000026 0x27 esp-idf/main/libmain.a(bootloader_start.c.obj)
  4231. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4232. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4233. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4234. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4235. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  4236. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4237. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4238. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4239. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4240. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4241. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4242. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4243. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4244. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4245. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4246. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4247. .comment 0x0000000000000026 0x27 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4248. .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4249. .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4250. .comment 0x0000000000000026 0x27 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4251. .comment 0x0000000000000026 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4252. .comment 0x0000000000000026 0x27 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4253. .comment 0x0000000000000026 0x27 esp-idf/log/liblog.a(log_noos.c.obj)
  4254. .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4255. .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4256. .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4257. .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4258. .comment 0x0000000000000026 0x27 esp-idf/hal/libhal.a(cache_hal.c.obj)
  4259. .riscv.attributes
  4260. 0x0000000000000000 0x2a
  4261. .riscv.attributes
  4262. 0x0000000000000000 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4263. .riscv.attributes
  4264. 0x0000000000000026 0x26 esp-idf/main/libmain.a(bootloader_start.c.obj)
  4265. .riscv.attributes
  4266. 0x000000000000004c 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4267. .riscv.attributes
  4268. 0x0000000000000072 0x26 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4269. .riscv.attributes
  4270. 0x0000000000000098 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4271. .riscv.attributes
  4272. 0x00000000000000be 0x26 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4273. .riscv.attributes
  4274. 0x00000000000000e4 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  4275. .riscv.attributes
  4276. 0x000000000000010a 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4277. .riscv.attributes
  4278. 0x0000000000000130 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4279. .riscv.attributes
  4280. 0x0000000000000156 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4281. .riscv.attributes
  4282. 0x000000000000017c 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4283. .riscv.attributes
  4284. 0x00000000000001a2 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4285. .riscv.attributes
  4286. 0x00000000000001c8 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4287. .riscv.attributes
  4288. 0x00000000000001ee 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4289. .riscv.attributes
  4290. 0x0000000000000214 0x2a esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4291. .riscv.attributes
  4292. 0x000000000000023e 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4293. .riscv.attributes
  4294. 0x0000000000000264 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4295. .riscv.attributes
  4296. 0x000000000000028a 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4297. .riscv.attributes
  4298. 0x00000000000002b0 0x26 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4299. .riscv.attributes
  4300. 0x00000000000002d6 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4301. .riscv.attributes
  4302. 0x0000000000000300 0x2a esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4303. .riscv.attributes
  4304. 0x000000000000032a 0x26 esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4305. .riscv.attributes
  4306. 0x0000000000000350 0x26 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4307. .riscv.attributes
  4308. 0x0000000000000376 0x26 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4309. .riscv.attributes
  4310. 0x000000000000039c 0x2a esp-idf/log/liblog.a(log_noos.c.obj)
  4311. .riscv.attributes
  4312. 0x00000000000003c6 0x26 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4313. .riscv.attributes
  4314. 0x00000000000003ec 0x26 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4315. .riscv.attributes
  4316. 0x0000000000000412 0x26 esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4317. .riscv.attributes
  4318. 0x0000000000000438 0x26 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4319. .riscv.attributes
  4320. 0x000000000000045e 0x26 esp-idf/hal/libhal.a(cache_hal.c.obj)
  4321. .debug_frame 0x0000000000000000 0x1454
  4322. .debug_frame 0x0000000000000000 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4323. .debug_frame 0x0000000000000040 0x38 esp-idf/main/libmain.a(bootloader_start.c.obj)
  4324. .debug_frame 0x0000000000000078 0x254 esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4325. .debug_frame 0x00000000000002cc 0x198 esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4326. .debug_frame 0x0000000000000464 0x80 esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4327. .debug_frame 0x00000000000004e4 0x54 esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4328. .debug_frame 0x0000000000000538 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  4329. .debug_frame 0x0000000000000558 0x68 esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4330. .debug_frame 0x00000000000005c0 0x40 esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4331. .debug_frame 0x0000000000000600 0x88 esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4332. .debug_frame 0x0000000000000688 0xc4 esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4333. .debug_frame 0x000000000000074c 0x30 esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4334. .debug_frame 0x000000000000077c 0x298 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4335. .debug_frame 0x0000000000000a14 0x20 esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4336. .debug_frame 0x0000000000000a34 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4337. .debug_frame 0x0000000000000a60 0x50 esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4338. .debug_frame 0x0000000000000ab0 0x7c esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4339. .debug_frame 0x0000000000000b2c 0xb8 esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4340. .debug_frame 0x0000000000000be4 0x2c esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4341. .debug_frame 0x0000000000000c10 0x178 esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4342. .debug_frame 0x0000000000000d88 0x3c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4343. .debug_frame 0x0000000000000dc4 0x31c esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4344. .debug_frame 0x00000000000010e0 0x30 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4345. .debug_frame 0x0000000000001110 0x50 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4346. .debug_frame 0x0000000000001160 0x84 esp-idf/log/liblog.a(log_noos.c.obj)
  4347. .debug_frame 0x00000000000011e4 0x40 esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4348. .debug_frame 0x0000000000001224 0x9c esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4349. .debug_frame 0x00000000000012c0 0x5c esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4350. .debug_frame 0x000000000000131c 0xec esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4351. .debug_frame 0x0000000000001408 0x4c esp-idf/hal/libhal.a(cache_hal.c.obj)
  4352. Cross Reference Table
  4353. Symbol File
  4354. Cache_Disable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj)
  4355. Cache_Enable_ICache esp-idf/hal/libhal.a(cache_hal.c.obj)
  4356. EFUSE esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4357. esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4358. esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4359. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4360. esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4361. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4362. ESP_EFUSE_ADC1_CAL_VOL_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4363. ESP_EFUSE_ADC1_CAL_VOL_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4364. ESP_EFUSE_ADC1_CAL_VOL_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4365. ESP_EFUSE_ADC1_CAL_VOL_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4366. ESP_EFUSE_ADC1_INIT_CODE_ATTEN0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4367. ESP_EFUSE_ADC1_INIT_CODE_ATTEN1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4368. ESP_EFUSE_ADC1_INIT_CODE_ATTEN2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4369. ESP_EFUSE_ADC1_INIT_CODE_ATTEN3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4370. ESP_EFUSE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4371. ESP_EFUSE_BLK_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4372. ESP_EFUSE_BTLC_GPIO_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4373. ESP_EFUSE_DIG_DBIAS_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4374. ESP_EFUSE_DISABLE_BLK_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4375. ESP_EFUSE_DISABLE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4376. ESP_EFUSE_DIS_CAN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4377. ESP_EFUSE_DIS_DIRECT_BOOT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4378. ESP_EFUSE_DIS_DOWNLOAD_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4379. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4380. ESP_EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4381. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4382. ESP_EFUSE_DIS_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4383. esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4384. ESP_EFUSE_DIS_FORCE_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4385. ESP_EFUSE_DIS_ICACHE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4386. ESP_EFUSE_DIS_PAD_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4387. ESP_EFUSE_DIS_USB_DEVICE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4388. ESP_EFUSE_DIS_USB_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4389. ESP_EFUSE_DIS_USB_SERIAL_JTAG_DOWNLOAD_MODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4390. ESP_EFUSE_DIS_USB_SERIAL_JTAG_ROM_PRINT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4391. ESP_EFUSE_ENABLE_SECURITY_DOWNLOAD esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4392. esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4393. ESP_EFUSE_ERR_RST_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4394. ESP_EFUSE_FLASH_TPUW esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4395. ESP_EFUSE_FORCE_SEND_RESUME esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4396. ESP_EFUSE_JTAG_SEL_ENABLE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4397. ESP_EFUSE_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4398. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4399. ESP_EFUSE_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4400. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4401. ESP_EFUSE_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4402. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4403. ESP_EFUSE_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4404. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4405. ESP_EFUSE_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4406. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4407. ESP_EFUSE_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4408. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4409. ESP_EFUSE_KEY_PURPOSE_0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4410. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4411. ESP_EFUSE_KEY_PURPOSE_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4412. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4413. ESP_EFUSE_KEY_PURPOSE_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4414. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4415. ESP_EFUSE_KEY_PURPOSE_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4416. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4417. ESP_EFUSE_KEY_PURPOSE_4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4418. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4419. ESP_EFUSE_KEY_PURPOSE_5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4420. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4421. ESP_EFUSE_K_DIG_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4422. ESP_EFUSE_K_RTC_LDO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4423. ESP_EFUSE_MAC_FACTORY esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4424. ESP_EFUSE_OCODE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4425. ESP_EFUSE_OPTIONAL_UNIQUE_ID esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4426. ESP_EFUSE_PKG_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4427. esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4428. ESP_EFUSE_POWERGLITCH_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4429. ESP_EFUSE_POWER_GLITCH_DSENSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4430. ESP_EFUSE_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4431. ESP_EFUSE_RD_DIS_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4432. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4433. ESP_EFUSE_RD_DIS_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4434. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4435. ESP_EFUSE_RD_DIS_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4436. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4437. ESP_EFUSE_RD_DIS_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4438. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4439. ESP_EFUSE_RD_DIS_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4440. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4441. ESP_EFUSE_RD_DIS_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4442. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4443. ESP_EFUSE_RD_DIS_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4444. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4445. ESP_EFUSE_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4446. ESP_EFUSE_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4447. ESP_EFUSE_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4448. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4449. ESP_EFUSE_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4450. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4451. ESP_EFUSE_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4452. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4453. ESP_EFUSE_SECURE_VERSION esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4454. ESP_EFUSE_SOFT_DIS_JTAG esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4455. ESP_EFUSE_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4456. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4457. ESP_EFUSE_SPI_PAD_CONFIG_CLK esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4458. ESP_EFUSE_SPI_PAD_CONFIG_CS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4459. ESP_EFUSE_SPI_PAD_CONFIG_D4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4460. ESP_EFUSE_SPI_PAD_CONFIG_D5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4461. ESP_EFUSE_SPI_PAD_CONFIG_D6 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4462. ESP_EFUSE_SPI_PAD_CONFIG_D7 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4463. ESP_EFUSE_SPI_PAD_CONFIG_DQS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4464. ESP_EFUSE_SPI_PAD_CONFIG_D_D0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4465. ESP_EFUSE_SPI_PAD_CONFIG_HD_D3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4466. ESP_EFUSE_SPI_PAD_CONFIG_Q_D1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4467. ESP_EFUSE_SPI_PAD_CONFIG_WP_D2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4468. ESP_EFUSE_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4469. ESP_EFUSE_TEMP_CALIB esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4470. ESP_EFUSE_THRES_HVT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4471. ESP_EFUSE_UART_PRINT_CONTROL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4472. esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4473. ESP_EFUSE_USB_DREFH esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4474. ESP_EFUSE_USB_DREFL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4475. ESP_EFUSE_USB_EXCHG_PINS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4476. ESP_EFUSE_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4477. ESP_EFUSE_USER_DATA_MAC_CUSTOM esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4478. ESP_EFUSE_VDD_SPI_AS_GPIO esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4479. ESP_EFUSE_V_DIG_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4480. ESP_EFUSE_V_RTC_DBIAS20 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4481. ESP_EFUSE_WAFER_VERSION_MAJOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4482. ESP_EFUSE_WAFER_VERSION_MINOR esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4483. ESP_EFUSE_WDT_DELAY_SEL esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4484. ESP_EFUSE_WR_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4485. ESP_EFUSE_WR_DIS_BLK1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4486. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4487. ESP_EFUSE_WR_DIS_GROUP_1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4488. ESP_EFUSE_WR_DIS_GROUP_2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4489. ESP_EFUSE_WR_DIS_GROUP_3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4490. ESP_EFUSE_WR_DIS_KEY0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4491. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4492. ESP_EFUSE_WR_DIS_KEY0_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4493. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4494. ESP_EFUSE_WR_DIS_KEY1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4495. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4496. ESP_EFUSE_WR_DIS_KEY1_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4497. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4498. ESP_EFUSE_WR_DIS_KEY2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4499. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4500. ESP_EFUSE_WR_DIS_KEY2_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4501. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4502. ESP_EFUSE_WR_DIS_KEY3 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4503. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4504. ESP_EFUSE_WR_DIS_KEY3_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4505. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4506. ESP_EFUSE_WR_DIS_KEY4 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4507. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4508. ESP_EFUSE_WR_DIS_KEY4_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4509. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4510. ESP_EFUSE_WR_DIS_KEY5 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4511. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4512. ESP_EFUSE_WR_DIS_KEY5_PURPOSE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4513. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4514. ESP_EFUSE_WR_DIS_RD_DIS esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4515. ESP_EFUSE_WR_DIS_SECURE_BOOT_AGGRESSIVE_REVOKE esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4516. ESP_EFUSE_WR_DIS_SECURE_BOOT_EN esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4517. ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE0 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4518. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4519. ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4520. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4521. ESP_EFUSE_WR_DIS_SECURE_BOOT_KEY_REVOKE2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4522. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4523. ESP_EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4524. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4525. ESP_EFUSE_WR_DIS_SYS_DATA_PART1 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4526. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4527. ESP_EFUSE_WR_DIS_SYS_DATA_PART2 esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4528. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4529. ESP_EFUSE_WR_DIS_USER_DATA esp-idf/efuse/libefuse.a(esp_efuse_table.c.obj)
  4530. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4531. RTCCNTL esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4532. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4533. SPIMEM0 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4534. SPIMEM1 esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4535. TIMERG0 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4536. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4537. TIMERG1 esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4538. UART0 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4539. UART1 esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4540. USB_SERIAL_JTAG esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4541. __ashldi3 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_ashldi3.o)
  4542. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4543. __assert_func esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4544. esp-idf/log/liblog.a(log_noos.c.obj)
  4545. esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4546. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4547. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4548. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4549. esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4550. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4551. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4552. esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4553. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4554. __clz_tab d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_clz.o)
  4555. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  4556. d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  4557. __divdi3 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_divdi3.o)
  4558. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4559. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4560. __getreent esp-idf/main/libmain.a(bootloader_start.c.obj)
  4561. __lshrdi3 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_lshrdi3.o)
  4562. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4563. __popcountsi2 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_popcountsi2.o)
  4564. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4565. __udivdi3 d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/rv32imc/ilp32/no-rtti\libgcc.a(_udivdi3.o)
  4566. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4567. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4568. _bss_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4569. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4570. _bss_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4571. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4572. _data_end esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4573. _data_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4574. _dram_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4575. _dram_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4576. _global_impure_ptr d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-impure.o)
  4577. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4578. _interrupt_handler esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4579. _loader_text_end esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4580. _loader_text_start esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4581. _vector_table esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4582. abort esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4583. esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4584. esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4585. esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4586. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4587. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4588. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4589. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4590. bootloader_after_init esp-idf/main/libmain.a(bootloader_start.c.obj)
  4591. bootloader_ana_bod_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4592. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4593. bootloader_ana_clock_glitch_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4594. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4595. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4596. bootloader_ana_super_wdt_reset_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_soc.c.obj)
  4597. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4598. bootloader_atexit esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4599. bootloader_before_init esp-idf/main/libmain.a(bootloader_start.c.obj)
  4600. bootloader_check_bootloader_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4601. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4602. bootloader_clear_bss_section esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4603. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4604. bootloader_clock_configure esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4605. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4606. bootloader_common_check_chip_validity esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4607. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4608. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4609. bootloader_common_get_active_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4610. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4611. bootloader_common_get_partition_description esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4612. bootloader_common_ota_select_crc esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4613. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4614. bootloader_common_ota_select_invalid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4615. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4616. bootloader_common_ota_select_valid esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4617. bootloader_common_select_otadata esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4618. bootloader_config_wdt esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4619. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4620. bootloader_configure_spi_pins esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4621. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4622. bootloader_console_deinit esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  4623. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4624. bootloader_console_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4625. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4626. bootloader_debug_buffer esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4627. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4628. bootloader_enable_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4629. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4630. bootloader_enable_wp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4631. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4632. bootloader_execute_flash_command esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4633. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4634. bootloader_fill_random esp-idf/bootloader_support/libbootloader_support.a(bootloader_random.c.obj)
  4635. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4636. bootloader_flash_clock_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4637. bootloader_flash_cs_timing_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4638. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4639. bootloader_flash_dummy_config esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4640. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4641. bootloader_flash_erase_range esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4642. bootloader_flash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4643. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4644. bootloader_flash_execute_command_common esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4645. bootloader_flash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4646. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4647. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4648. bootloader_flash_read_sfdp esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4649. bootloader_flash_reset_chip esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4650. bootloader_flash_set_dummy_out esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4651. bootloader_flash_unlock esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4652. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4653. bootloader_flash_update_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4654. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4655. bootloader_flash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4656. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4657. bootloader_flash_xmc_startup esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4658. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4659. bootloader_image_hdr esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4660. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4661. bootloader_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4662. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4663. bootloader_init_mem esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4664. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4665. bootloader_load_image esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4666. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4667. bootloader_load_image_no_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4668. bootloader_mmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4669. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4670. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4671. bootloader_mmap_get_free_pages esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4672. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4673. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4674. bootloader_munmap esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4675. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4676. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4677. bootloader_print_banner esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4678. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4679. bootloader_random_disable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4680. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4681. bootloader_random_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4682. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4683. bootloader_read_bootloader_header esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4684. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4685. bootloader_read_flash_id esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4686. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4687. bootloader_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4688. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4689. bootloader_sha256_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4690. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4691. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4692. bootloader_sha256_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4693. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4694. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4695. bootloader_sha256_flash_contents esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4696. bootloader_sha256_hex_to_str esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4697. bootloader_sha256_start esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4698. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4699. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4700. bootloader_spi_flash_reset esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4701. bootloader_utility_get_selected_boot_partition esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4702. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4703. bootloader_utility_load_boot_image esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4704. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4705. bootloader_utility_load_partition_table esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4706. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4707. cache_hal_disable esp-idf/hal/libhal.a(cache_hal.c.obj)
  4708. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4709. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4710. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4711. cache_hal_enable esp-idf/hal/libhal.a(cache_hal.c.obj)
  4712. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4713. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4714. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4715. cache_hal_init esp-idf/hal/libhal.a(cache_hal.c.obj)
  4716. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4717. call_start_cpu0 esp-idf/main/libmain.a(bootloader_start.c.obj)
  4718. efuse_hal_chip_revision esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4719. esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4720. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4721. esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4722. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4723. efuse_hal_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4724. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4725. efuse_hal_get_mac esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4726. efuse_hal_get_major_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4727. esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4728. efuse_hal_get_minor_chip_version esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4729. esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4730. efuse_hal_is_coding_error_in_block esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4731. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4732. efuse_hal_program esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4733. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4734. efuse_hal_read esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4735. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4736. efuse_hal_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4737. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4738. efuse_hal_set_timing esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4739. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4740. esp_cpu_clear_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4741. esp_cpu_clear_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4742. esp_cpu_compare_and_set esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4743. esp_cpu_configure_region_protection esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4744. esp-idf/bootloader_support/libbootloader_support.a(bootloader_mem.c.obj)
  4745. esp_cpu_intr_get_desc esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4746. esp_cpu_reset esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4747. esp_cpu_set_breakpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4748. esp_cpu_set_watchpoint esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4749. esp_cpu_stall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4750. esp_cpu_unstall esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4751. esp_cpu_wait_for_intr esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4752. esp_efuse_batch_write_begin esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4753. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4754. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4755. esp_efuse_batch_write_cancel esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4756. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4757. esp_efuse_batch_write_commit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4758. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4759. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4760. esp_efuse_block_is_empty esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4761. esp_efuse_check_errors esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4762. esp_efuse_count_unused_key_blocks esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4763. esp_efuse_disable_rom_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4764. esp_efuse_enable_rom_secure_download_mode esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4765. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4766. esp_efuse_find_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4767. esp_efuse_find_unused_key_block esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4768. esp_efuse_get_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4769. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4770. esp_efuse_get_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4771. esp_efuse_get_field_size esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4772. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4773. esp_efuse_get_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4774. esp_efuse_get_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4775. esp_efuse_get_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4776. esp_efuse_get_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4777. esp_efuse_get_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4778. esp_efuse_get_pkg_ver esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4779. esp_efuse_get_purpose_field esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4780. esp_efuse_get_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4781. esp_efuse_key_block_unused esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4782. esp_efuse_read_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4783. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4784. esp_efuse_read_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4785. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4786. esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4787. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4788. esp_efuse_read_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4789. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4790. esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4791. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4792. esp_efuse_read_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4793. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4794. esp_efuse_read_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4795. esp_efuse_set_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4796. esp_efuse_set_key_dis_read esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4797. esp_efuse_set_key_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4798. esp_efuse_set_key_purpose esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4799. esp_efuse_set_keypurpose_dis_write esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4800. esp_efuse_set_read_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4801. esp_efuse_set_rom_log_scheme esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4802. esp_efuse_set_write_protect esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4803. esp_efuse_set_write_protect_of_digest_revoke esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4804. esp_efuse_utility_apply_new_coding_scheme esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4805. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4806. esp_efuse_utility_burn_chip esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4807. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4808. esp_efuse_utility_burn_efuses esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4809. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4810. esp_efuse_utility_check_errors esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4811. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4812. esp_efuse_utility_clear_program_registers esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4813. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4814. esp_efuse_utility_count_once esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4815. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4816. esp_efuse_utility_debug_dump_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4817. esp_efuse_utility_erase_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4818. esp_efuse_utility_fill_buff esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4819. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4820. esp_efuse_utility_get_number_of_items esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4821. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4822. esp_efuse_utility_get_read_register_address esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4823. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4824. esp_efuse_utility_is_correct_written_data esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4825. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4826. esp_efuse_utility_process esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4827. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4828. esp_efuse_utility_read_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4829. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4830. esp_efuse_utility_reset esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4831. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4832. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4833. esp_efuse_utility_update_virt_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4834. esp_efuse_utility_write_blob esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4835. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4836. esp_efuse_utility_write_cnt esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4837. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4838. esp_efuse_utility_write_reg esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4839. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4840. esp_efuse_write_block esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4841. esp_efuse_write_field_bit esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4842. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4843. esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4844. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4845. esp_efuse_write_field_blob esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4846. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4847. esp-idf/efuse/libefuse.a(esp_efuse_fields.c.obj)
  4848. esp_efuse_write_field_cnt esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4849. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4850. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4851. esp_efuse_write_key esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4852. esp_efuse_write_keys esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4853. esp_efuse_write_reg esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4854. esp_flash_encryption_enabled esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4855. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4856. esp_flash_encryption_set_release_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4857. esp_flash_write_protect_crypt_cnt esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4858. esp_get_flash_encryption_mode esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4859. esp_image_get_flash_size esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4860. esp_image_get_metadata esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4861. esp_image_verify esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4862. esp_image_verify_bootloader esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4863. esp_image_verify_bootloader_data esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4864. esp_log_early_timestamp esp-idf/log/liblog.a(log_noos.c.obj)
  4865. esp_log_impl_lock esp-idf/log/liblog.a(log_noos.c.obj)
  4866. esp_log_impl_unlock esp-idf/log/liblog.a(log_noos.c.obj)
  4867. esp_log_lock_impl_timeout esp-idf/log/liblog.a(log_noos.c.obj)
  4868. esp_log_timestamp esp-idf/log/liblog.a(log_noos.c.obj)
  4869. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4870. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4871. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4872. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4873. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4874. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4875. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4876. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4877. esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4878. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4879. esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4880. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4881. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4882. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4883. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4884. esp_partition_table_verify esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4885. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4886. esp_rom_crc32_le esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4887. esp_rom_delay_us esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4888. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4889. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4890. esp_rom_efuse_get_flash_gpio_info esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4891. esp_rom_efuse_get_flash_wp_gpio esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4892. esp_rom_get_cpu_ticks_per_us esp-idf/log/liblog.a(log_noos.c.obj)
  4893. esp_rom_get_reset_reason esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4894. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4895. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4896. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4897. esp_rom_gpio_pad_set_drv esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4898. esp_rom_install_channel_putc esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4899. esp_rom_install_uart_printf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4900. esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4901. esp_rom_md5_final esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4902. esp_rom_md5_init esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4903. esp_rom_md5_update esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4904. esp_rom_printf esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4905. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4906. esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4907. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4908. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4909. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4910. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4911. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4912. esp-idf/bootloader_support/libbootloader_support.a(bootloader_common_loader.c.obj)
  4913. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4914. esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4915. esp-idf/bootloader_support/libbootloader_support.a(flash_encrypt.c.obj)
  4916. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4917. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4918. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4919. esp-idf/bootloader_support/libbootloader_support.a(bootloader_panic.c.obj)
  4920. esp_rom_regi2c_write esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4921. esp_rom_regi2c_write_mask esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4922. esp-idf/bootloader_support/libbootloader_support.a(bootloader_random_esp32c3.c.obj)
  4923. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4924. esp_rom_spiflash_config_clk esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4925. esp_rom_spiflash_config_param esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4926. esp_rom_spiflash_erase_block esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4927. esp_rom_spiflash_erase_sector esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4928. esp_rom_spiflash_read esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4929. esp_rom_spiflash_wait_idle esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4930. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4931. esp_rom_spiflash_write esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4932. esp_rom_spiflash_write_encrypted esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4933. esp_rom_uart_flush_tx esp-idf/bootloader_support/libbootloader_support.a(bootloader_console_loader.c.obj)
  4934. esp_rom_uart_set_as_console esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4935. esp_rom_uart_set_clock_baudrate esp-idf/esp_rom/libesp_rom.a(esp_rom_uart.c.obj)
  4936. esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4937. esp_rom_uart_tx_wait_idle esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4938. esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  4939. esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  4940. esp_secure_boot_read_key_digests esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  4941. ets_efuse_clear_program_registers esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4942. ets_efuse_rs_calculate esp-idf/hal/libhal.a(efuse_hal.c.obj)
  4943. ets_install_putc1 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4944. ets_install_putc2 esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4945. ets_install_uart_printf esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4946. ets_sha_enable esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4947. ets_sha_finish esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4948. ets_sha_init esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4949. ets_sha_update esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4950. ets_update_cpu_frequency esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4951. g_uart_print esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4952. g_usb_print esp-idf/esp_rom/libesp_rom.a(esp_rom_sys.c.obj)
  4953. memcmp d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcmp.o)
  4954. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4955. esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4956. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4957. memcpy d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memcpy.o)
  4958. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4959. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4960. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4961. memset d:/software/esp/.espressif/tools/riscv32-esp-elf/esp-2022r1-11.2.0/riscv32-esp-elf/bin/../lib/gcc/riscv32-esp-elf/11.2.0/../../../../riscv32-esp-elf/lib/rv32imc/ilp32/no-rtti\libc.a(lib_a-memset.o)
  4962. esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  4963. esp-idf/efuse/libefuse.a(esp_efuse_api.c.obj)
  4964. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  4965. esp-idf/bootloader_support/libbootloader_support.a(bootloader_sha.c.obj)
  4966. esp-idf/bootloader_support/libbootloader_support.a(esp_image_format.c.obj)
  4967. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4968. esp-idf/main/libmain.a(bootloader_start.c.obj)
  4969. mmu_hal_bytes_to_pages esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4970. mmu_hal_init esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4971. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4972. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4973. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4974. mmu_hal_map_region esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4975. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4976. esp-idf/bootloader_support/libbootloader_support.a(bootloader_utility.c.obj)
  4977. mmu_hal_pages_to_bytes esp-idf/hal/libhal.a(mmu_hal.c.obj)
  4978. range_read_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4979. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4980. range_write_addr_blocks esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4981. esp-idf/efuse/libefuse.a(esp_efuse_utility.c.obj)
  4982. riscv_decode_offset_from_jal_instruction esp-idf/esp_hw_support/libesp_hw_support.a(cpu.c.obj)
  4983. rom_spiflash_legacy_data esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash_config_esp32c3.c.obj)
  4984. esp-idf/bootloader_support/libbootloader_support.a(bootloader_flash.c.obj)
  4985. esp-idf/bootloader_support/libbootloader_support.a(bootloader_esp32c3.c.obj)
  4986. esp-idf/bootloader_support/libbootloader_support.a(flash_partitions.c.obj)
  4987. rtc_clk_32k_bootstrap esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4988. rtc_clk_32k_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4989. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4990. rtc_clk_32k_enable_external esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4991. rtc_clk_32k_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4992. rtc_clk_8m_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4993. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4994. rtc_clk_8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4995. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  4996. rtc_clk_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4997. rtc_clk_8md256_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4998. rtc_clk_apb_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  4999. esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  5000. esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  5001. rtc_clk_apb_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5002. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  5003. rtc_clk_cpu_freq_get_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5004. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  5005. rtc_clk_cpu_freq_mhz_to_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5006. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  5007. rtc_clk_cpu_freq_set_config esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5008. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  5009. rtc_clk_cpu_freq_set_config_fast esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5010. rtc_clk_cpu_freq_set_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5011. rtc_clk_divider_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5012. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  5013. rtc_clk_fast_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5014. esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  5015. rtc_clk_fast_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5016. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  5017. rtc_clk_init esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  5018. esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  5019. rtc_clk_slow_freq_get_hz esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5020. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  5021. rtc_clk_slow_src_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5022. esp-idf/bootloader_support/libbootloader_support.a(bootloader_clock_init.c.obj)
  5023. rtc_clk_slow_src_set esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5024. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  5025. rtc_clk_xtal_freq_get esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5026. esp-idf/bootloader_support/libbootloader_support.a(bootloader_console.c.obj)
  5027. rtc_clk_xtal_freq_update esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5028. esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk_init.c.obj)
  5029. rtc_dig_8m_enabled esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5030. rtc_dig_clk8m_disable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5031. rtc_dig_clk8m_enable esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5032. rtc_get_xtal esp-idf/esp_hw_support/libesp_hw_support.a(rtc_clk.c.obj)
  5033. s_revoke_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  5034. s_table esp-idf/efuse/libefuse.a(esp_efuse_api_key.c.obj)
  5035. wdt_hal_config_stage esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5036. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  5037. wdt_hal_deinit esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5038. wdt_hal_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5039. wdt_hal_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5040. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  5041. wdt_hal_feed esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5042. wdt_hal_handle_intr esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5043. wdt_hal_init esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5044. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  5045. wdt_hal_is_enabled esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5046. wdt_hal_set_flashboot_en esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5047. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  5048. wdt_hal_write_protect_disable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5049. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)
  5050. wdt_hal_write_protect_enable esp-idf/hal/libhal.a(wdt_hal_iram.c.obj)
  5051. esp-idf/bootloader_support/libbootloader_support.a(bootloader_init.c.obj)