| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571 |
- Archive member included to satisfy reference by file (symbol)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
- ./APP/peripheral.o (memcpy)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memset.o)
- ./HAL/MCU.o (memset)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
- ./HAL/MCU.o (printf)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- ./HAL/MCU.o (puts)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o) (__swbuf_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o) (__swsetup_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o) (_fflush_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o) (__sinit)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o) (_fwalk)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o) (_global_impure_ptr)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o) (__smakebuf_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o) (_free_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o) (_malloc_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o) (_vfprintf_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o) (_printf_i)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o) (_sbrk_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o) (__sread)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o) (_write_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o) (_close_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o) (_fstat_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o) (__sfvwrite_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o) (_isatty_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o) (_lseek_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o) (memchr)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o) (memmove)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o) (__malloc_lock)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o) (_realloc_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o) (_read_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o) (errno)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o) (_malloc_usable_size_r)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o) (_close)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o) (_fstat)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o) (_isatty)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o) (_lseek)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
- d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o) (_read)
- Allocating common symbols
- Common symbol size file
- errno 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- Discarded input sections
- .text 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
- .data 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
- .bss 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_StructInit
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_DMACmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ITConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ResetCalibration
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetResetCalibrationStatus
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_StartCalibration
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetCalibrationStatus
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetSoftwareStartConvStatus
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_DiscModeChannelCountConfig
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_DiscModeCmd
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ExternalTrigConvCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetDualModeConversionValue
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_AutoInjectedConvCmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_InjectedDiscModeCmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ExternalTrigInjectedConvConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ExternalTrigInjectedConvCmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_SoftwareStartInjectedConvCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetSoftwareStartInjectedConvCmdStatus
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_InjectedChannelConfig
- 0x0000000000000000 0x7a ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_InjectedSequencerLengthConfig
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_SetInjectedOffset
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetInjectedConversionValue
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_AnalogWatchdogCmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_AnalogWatchdogThresholdsConfig
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_AnalogWatchdogSingleChannelConfig
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ClearFlag
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_GetITStatus
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.ADC_ClearITPendingBit
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.TempSensor_Volt_To_Temper
- 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text.Get_CalibrationValue
- 0x0000000000000000 0x142 ./SRC/Peripheral/src/ch32v20x_adc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_DeInit
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_TamperPinLevelConfig
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_TamperPinCmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_ITConfig
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_RTCOutputConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_SetRTCCalibrationValue
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_WriteBackupRegister
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_ReadBackupRegister
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_GetFlagStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_ClearFlag
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_GetITStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text.BKP_ClearITPendingBit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_info 0x0000000000000000 0x109c ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_abbrev 0x0000000000000000 0x2cf ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_loc 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_aranges
- 0x0000000000000000 0x78 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_ranges 0x0000000000000000 0x68 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_line 0x0000000000000000 0x7ea ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_str 0x0000000000000000 0xb3b ./SRC/Peripheral/src/ch32v20x_bkp.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_bkp.o
- .debug_frame 0x0000000000000000 0xec ./SRC/Peripheral/src/ch32v20x_bkp.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_DeInit
- 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_Init
- 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_FilterInit
- 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_StructInit
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_SlaveStartBank
- 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_DBGFreeze
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_TTComModeCmd
- 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_Transmit
- 0x0000000000000000 0xbc ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_TransmitStatus
- 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_CancelTransmit
- 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_Receive
- 0x0000000000000000 0x8c ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_FIFORelease
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_MessagePending
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_OperatingModeRequest
- 0x0000000000000000 0x72 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_Sleep
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_WakeUp
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_GetLastErrorCode
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_GetReceiveErrorCounter
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_GetLSBTransmitErrorCounter
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_ITConfig
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_GetFlagStatus
- 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_ClearFlag
- 0x0000000000000000 0x40 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_GetITStatus
- 0x0000000000000000 0xd0 ./SRC/Peripheral/src/ch32v20x_can.o
- .text.CAN_ClearITPendingBit
- 0x0000000000000000 0x94 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_info 0x0000000000000000 0x1806 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_abbrev 0x0000000000000000 0x3ee ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_loc 0x0000000000000000 0x999 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_aranges
- 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_ranges 0x0000000000000000 0xf8 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_line 0x0000000000000000 0x1b80 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_str 0x0000000000000000 0xc51 ./SRC/Peripheral/src/ch32v20x_can.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_can.o
- .debug_frame 0x0000000000000000 0x1a0 ./SRC/Peripheral/src/ch32v20x_can.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_ResetDR
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_CalcCRC
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_CalcBlockCRC
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_GetCRC
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_SetIDRegister
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text.CRC_GetIDRegister
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_info 0x0000000000000000 0xab3 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_abbrev 0x0000000000000000 0x25f ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_loc 0x0000000000000000 0x75 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_aranges
- 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_ranges 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_line 0x0000000000000000 0x4e2 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_str 0x0000000000000000 0x711 ./SRC/Peripheral/src/ch32v20x_crc.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_crc.o
- .debug_frame 0x0000000000000000 0x70 ./SRC/Peripheral/src/ch32v20x_crc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.DBGMCU_GetREVID
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.DBGMCU_GetDEVID
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.__get_DEBUG_CR
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.__set_DEBUG_CR
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text.DBGMCU_Config
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_DeInit
- 0x0000000000000000 0x9c ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_Init
- 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_StructInit
- 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_Cmd 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_ITConfig
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_SetCurrDataCounter
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_GetCurrDataCounter
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_GetFlagStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_ClearFlag
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_GetITStatus
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text.DMA_ClearITPendingBit
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_info 0x0000000000000000 0xd21 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_abbrev 0x0000000000000000 0x302 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_loc 0x0000000000000000 0x155 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_aranges
- 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_ranges 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_line 0x0000000000000000 0x8fd ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_str 0x0000000000000000 0x889 ./SRC/Peripheral/src/ch32v20x_dma.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_dma.o
- .debug_frame 0x0000000000000000 0xc0 ./SRC/Peripheral/src/ch32v20x_dma.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_DeInit
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_Init
- 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_StructInit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_GenerateSWInterrupt
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_GetFlagStatus
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_ClearFlag
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
- .text.EXTI_GetITStatus
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_exti.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.ROM_ERASE
- 0x0000000000000000 0xa0 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_UnlockBank1
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_LockBank1
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetUserOptionByte
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetWriteProtectionOptionByte
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetReadOutProtectionStatus
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ITConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetFlagStatus
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ClearFlag
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_GetStatus
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EraseAllPages
- 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EraseAllBank1Pages
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EraseOptionBytes
- 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ProgramWord
- 0x0000000000000000 0x6e ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ProgramHalfWord
- 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ProgramOptionByteData
- 0x0000000000000000 0x114 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EnableWriteProtection
- 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ReadOutProtection
- 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_UserOptionByteConfig
- 0x0000000000000000 0x10a ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_WaitForLastBank1Operation
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_EraseBlock_32K_Fast
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_Access_Clock_Cfg
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_Enhance_Mode
- 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ROM_ERASE
- 0x0000000000000000 0x1ba ./SRC/Peripheral/src/ch32v20x_flash.o
- .text.FLASH_ROM_WRITE
- 0x0000000000000000 0xce ./SRC/Peripheral/src/ch32v20x_flash.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_DeInit
- 0x0000000000000000 0xa2 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_AFIODeInit
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_StructInit
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ReadInputDataBit
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ReadInputData
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ReadOutputDataBit
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ReadOutputData
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_SetBits
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ResetBits
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_Write
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_PinLockConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_EventOutputConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_EventOutputCmd
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_PinRemapConfig
- 0x0000000000000000 0xf2 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_EXTILineConfig
- 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_ETH_MediaInterfaceConfig
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text.GPIO_IPD_Unused
- 0x0000000000000000 0x10e ./SRC/Peripheral/src/ch32v20x_gpio.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_DeInit
- 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_Init
- 0x0000000000000000 0x104 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_StructInit
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_DMACmd
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_DMALastTransferCmd
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GenerateSTART
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GenerateSTOP
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_AcknowledgeConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_OwnAddress2Config
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_DualAddressCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GeneralCallCmd
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ITConfig
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_SendData
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ReceiveData
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_Send7bitAddress
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ReadRegister
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_SoftwareResetCmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_NACKPositionConfig
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_SMBusAlertConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_TransmitPEC
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_PECPositionConfig
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_CalculatePEC
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GetPEC
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ARPCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_StretchClockCmd
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_FastModeDutyCycleConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_CheckEvent
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GetLastEvent
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GetFlagStatus
- 0x0000000000000000 0x32 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ClearFlag
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_GetITStatus
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text.I2C_ClearITPendingBit
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_info 0x0000000000000000 0x147f ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_abbrev 0x0000000000000000 0x3aa ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_loc 0x0000000000000000 0x6a8 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_aranges
- 0x0000000000000000 0x110 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_ranges 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_line 0x0000000000000000 0x12cb ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_str 0x0000000000000000 0xb76 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_i2c.o
- .debug_frame 0x0000000000000000 0x25c ./SRC/Peripheral/src/ch32v20x_i2c.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .text.IWDG_GetFlagStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
- .text.NVIC_PriorityGroupConfig
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_misc.o
- .text.NVIC_Init
- 0x0000000000000000 0x5a ./SRC/Peripheral/src/ch32v20x_misc.o
- .sbss.NVIC_Priority_Group
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_info 0x0000000000000000 0xe96 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_abbrev 0x0000000000000000 0x2ea ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_loc 0x0000000000000000 0x2d ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_aranges
- 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_line 0x0000000000000000 0x523 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_str 0x0000000000000000 0xb65 ./SRC/Peripheral/src/ch32v20x_misc.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_misc.o
- .debug_frame 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_misc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
- .text.OPA_DeInit
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_opa.o
- .text.OPA_Init
- 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_opa.o
- .text.OPA_StructInit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_opa.o
- .text.OPA_Cmd 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_info 0x0000000000000000 0xb28 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_abbrev 0x0000000000000000 0x252 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_loc 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_aranges
- 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_ranges 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_line 0x0000000000000000 0x5a4 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_str 0x0000000000000000 0x751 ./SRC/Peripheral/src/ch32v20x_opa.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_opa.o
- .debug_frame 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_opa.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_DeInit
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_PVDCmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_PVDLevelConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_WakeUpPinCmd
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTOPMode
- 0x0000000000000000 0x90 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode
- 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_GetFlagStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_ClearFlag
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode_RAM
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode_RAM_LV
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode_RAM_VBAT_EN
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTANDBYMode_RAM_LV_VBAT_EN
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text.PWR_EnterSTOPMode_RAM_LV
- 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_DeInit
- 0x0000000000000000 0x42 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_HSEConfig
- 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_AdjustHSICalibrationValue
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_HSICmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_PLLConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_PLLCmd
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_SYSCLKConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_GetSYSCLKSource
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_HCLKConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_PCLK1Config
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_PCLK2Config
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ITConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_USBCLKConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_LSICmd
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_APB1PeriphResetCmd
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_BackupResetCmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ClockSecuritySystemCmd
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_MCOConfig
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_WaitForHSEStartUp
- 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ClearFlag
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_GetITStatus
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ClearITPendingBit
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ADCCLKADJcmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_ETHDIVConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text.RCC_USB5PRE_JUDGE
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_ITConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_SetAlarm
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_GetDivider
- 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_WaitForSynchro
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_GetFlagStatus
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.RTC_GetITStatus
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text.Calibration_LSI
- 0x0000000000000000 0x4f4 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_DeInit
- 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_Init
- 0x0000000000000000 0x3e ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.I2S_Init
- 0x0000000000000000 0xc8 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_StructInit
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.I2S_StructInit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.I2S_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_ITConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_DMACmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_SendData
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_ReceiveData
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_NSSInternalSoftwareConfig
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_SSOutputCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_DataSizeConfig
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_TransmitCRC
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_CalculateCRC
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_GetCRC
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_GetCRCPolynomial
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_BiDirectionalLineConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_GetFlagStatus
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_ClearFlag
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_GetITStatus
- 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text.SPI_I2S_ClearITPendingBit
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_info 0x0000000000000000 0x12c1 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_abbrev 0x0000000000000000 0x325 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_loc 0x0000000000000000 0x5c9 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_aranges
- 0x0000000000000000 0xd0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_ranges 0x0000000000000000 0xc0 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_line 0x0000000000000000 0xee7 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_str 0x0000000000000000 0xb25 ./SRC/Peripheral/src/ch32v20x_spi.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_spi.o
- .debug_frame 0x0000000000000000 0x1b8 ./SRC/Peripheral/src/ch32v20x_spi.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TI1_Config
- 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TI2_Config
- 0x0000000000000000 0x82 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_DeInit
- 0x0000000000000000 0xb6 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_TimeBaseInit
- 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC1Init
- 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC2Init
- 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3Init
- 0x0000000000000000 0x94 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC4Init
- 0x0000000000000000 0x6c ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_BDTRConfig
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_TimeBaseStructInit
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OCStructInit
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ICStructInit
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_BDTRStructInit
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CtrlPWMOutputs
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ITConfig
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GenerateEvent
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_DMAConfig
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_DMACmd
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_InternalClockConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ITRxExternalClockConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_TIxExternalClockConfig
- 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ETRConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ETRClockMode1Config
- 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ETRClockMode2Config
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_PrescalerConfig
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CounterModeConfig
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectInputTrigger
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_EncoderInterfaceConfig
- 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ForcedOC1Config
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ForcedOC2Config
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ForcedOC3Config
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ForcedOC4Config
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ARRPreloadConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectCOM
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectCCDMA
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CCPreloadControl
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC1PreloadConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC2PreloadConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3PreloadConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC4PreloadConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC1FastConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC2FastConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3FastConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC4FastConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearOC1Ref
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearOC2Ref
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearOC3Ref
- 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearOC4Ref
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC1PolarityConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC1NPolarityConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC2PolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC2NPolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3PolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC3NPolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_OC4PolarityConfig
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CCxCmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_CCxNCmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectOCxM
- 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_UpdateDisableConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_UpdateRequestConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectHallSensor
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectOnePulseMode
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectOutputTrigger
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectSlaveMode
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SelectMasterSlaveMode
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetCounter
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetAutoreload
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetCompare1
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetCompare2
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetCompare3
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetCompare4
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetIC1Prescaler
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetIC2Prescaler
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_PWMIConfig
- 0x0000000000000000 0xa4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetIC3Prescaler
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetIC4Prescaler
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ICInit
- 0x0000000000000000 0x194 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_SetClockDivision
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCapture1
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCapture2
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCapture3
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCapture4
- 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetCounter
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetPrescaler
- 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetFlagStatus
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearFlag
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_GetITStatus
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- .text.TIM_ClearITPendingBit
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TI1_Config
- 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TI2_Config
- 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_DeInit
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3Init
- 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC4Init
- 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_TimeBaseStructInit
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OCStructInit
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ICStructInit
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_BDTRStructInit
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_Cmd
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CtrlPWMOutputs
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ITConfig
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GenerateEvent
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_DMAConfig
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_DMACmd
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_InternalClockConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ITRxExternalClockConfig
- 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_TIxExternalClockConfig
- 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ETRClockMode1Config
- 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ETRClockMode2Config
- 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ETRConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_PrescalerConfig
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CounterModeConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectInputTrigger
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_EncoderInterfaceConfig
- 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ForcedOC1Config
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ForcedOC2Config
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ForcedOC3Config
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ForcedOC4Config
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ARRPreloadConfig
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectCOM
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectCCDMA
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CCPreloadControl
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3PreloadConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC4PreloadConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC1FastConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC2FastConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3FastConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC4FastConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearOC1Ref
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearOC2Ref
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearOC3Ref
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearOC4Ref
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC1PolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC1NPolarityConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC2PolarityConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC2NPolarityConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3PolarityConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC3NPolarityConfig
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_OC4PolarityConfig
- 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CCxCmd
- 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_CCxNCmd
- 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectOCxM
- 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_UpdateDisableConfig
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_UpdateRequestConfig
- 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectHallSensor
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectOnePulseMode
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectOutputTrigger
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectSlaveMode
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SelectMasterSlaveMode
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetCounter
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetAutoreload
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetCompare3
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetCompare4
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetIC1Prescaler
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetIC2Prescaler
- 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_PWMIConfig
- 0x0000000000000000 0x8e ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetIC3Prescaler
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetIC4Prescaler
- 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ICInit
- 0x0000000000000000 0x10c ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_SetClockDivision
- 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCapture1
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCapture2
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCapture3
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCapture4
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetCounter
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetPrescaler
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetFlagStatus
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearFlag
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_GetITStatus
- 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text.TIM5_ClearITPendingBit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_DeInit
- 0x0000000000000000 0x9e ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_StructInit
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ClockInit
- 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ClockStructInit
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ITConfig
- 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_DMACmd
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SetAddress
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_WakeUpConfig
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ReceiverWakeUpCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_LINBreakDetectLengthConfig
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_LINCmd
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ReceiveData
- 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SendBreak
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SetGuardTime
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SetPrescaler
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SmartCardCmd
- 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_SmartCardNACKCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_HalfDuplexCmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_IrDAConfig
- 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_IrDACmd
- 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ClearFlag
- 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_GetITStatus
- 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_usart.o
- .text.USART_ClearITPendingBit
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
- .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_DeInit
- 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_SetPrescaler
- 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_SetWindowValue
- 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_EnableIT
- 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_SetCounter
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_Enable
- 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_GetFlagStatus
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text.WWDG_ClearFlag
- 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_info 0x0000000000000000 0xb27 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_abbrev 0x0000000000000000 0x2a0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_loc 0x0000000000000000 0xae ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_aranges
- 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_line 0x0000000000000000 0x619 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_str 0x0000000000000000 0x748 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .debug_frame 0x0000000000000000 0xa8 ./SRC/Peripheral/src/ch32v20x_wwdg.o
- .text 0x0000000000000000 0x0 ./SRC/Debug/debug.o
- .data 0x0000000000000000 0x0 ./SRC/Debug/debug.o
- .bss 0x0000000000000000 0x0 ./SRC/Debug/debug.o
- .text.SDI_Printf_Enable
- 0x0000000000000000 0x22 ./SRC/Debug/debug.o
- .text 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
- .data 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
- .bss 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
- .text.__get_MSTATUS
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MSTATUS
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MISA
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MISA
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MTVEC
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MTVEC
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MSCRATCH
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MSCRATCH
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MEPC
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MEPC
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MCAUSE
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MCAUSE
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MTVAL
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__set_MTVAL
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MVENDORID
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MARCHID
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MIMPID
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_MHARTID
- 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
- .text.__get_SP
- 0x0000000000000000 0x4 ./SRC/Core/core_riscv.o
- .debug_info 0x0000000000000000 0x376 ./SRC/Core/core_riscv.o
- .debug_abbrev 0x0000000000000000 0xe0 ./SRC/Core/core_riscv.o
- .debug_aranges
- 0x0000000000000000 0xb0 ./SRC/Core/core_riscv.o
- .debug_ranges 0x0000000000000000 0xa0 ./SRC/Core/core_riscv.o
- .debug_line 0x0000000000000000 0x4f3 ./SRC/Core/core_riscv.o
- .debug_str 0x0000000000000000 0x332 ./SRC/Core/core_riscv.o
- .comment 0x0000000000000000 0x34 ./SRC/Core/core_riscv.o
- .debug_frame 0x0000000000000000 0x140 ./SRC/Core/core_riscv.o
- .text 0x0000000000000000 0x0 ./Profile/OTAprofile.o
- .data 0x0000000000000000 0x0 ./Profile/OTAprofile.o
- .bss 0x0000000000000000 0x0 ./Profile/OTAprofile.o
- .text 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
- .data 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
- .bss 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
- .text 0x0000000000000000 0x0 ./HAL/MCU.o
- .data 0x0000000000000000 0x0 ./HAL/MCU.o
- .bss 0x0000000000000000 0x0 ./HAL/MCU.o
- .text.Lib_Calibration_LSI
- 0x0000000000000000 0xa ./HAL/MCU.o
- .text 0x0000000000000000 0x0 ./HAL/RTC.o
- .data 0x0000000000000000 0x0 ./HAL/RTC.o
- .bss 0x0000000000000000 0x0 ./HAL/RTC.o
- .text.RTC_SetTignTime
- 0x0000000000000000 0x2e ./HAL/RTC.o
- .text 0x0000000000000000 0x0 ./HAL/SLEEP.o
- .data 0x0000000000000000 0x0 ./HAL/SLEEP.o
- .bss 0x0000000000000000 0x0 ./HAL/SLEEP.o
- .text.BLE_LowPower
- 0x0000000000000000 0x4 ./HAL/SLEEP.o
- .text.HAL_SleepInit
- 0x0000000000000000 0x2 ./HAL/SLEEP.o
- .debug_info 0x0000000000000000 0xa12 ./HAL/SLEEP.o
- .debug_abbrev 0x0000000000000000 0x211 ./HAL/SLEEP.o
- .debug_loc 0x0000000000000000 0x21 ./HAL/SLEEP.o
- .debug_aranges
- 0x0000000000000000 0x28 ./HAL/SLEEP.o
- .debug_ranges 0x0000000000000000 0x18 ./HAL/SLEEP.o
- .debug_line 0x0000000000000000 0x402 ./HAL/SLEEP.o
- .debug_str 0x0000000000000000 0x68d ./HAL/SLEEP.o
- .comment 0x0000000000000000 0x34 ./HAL/SLEEP.o
- .debug_frame 0x0000000000000000 0x30 ./HAL/SLEEP.o
- .text 0x0000000000000000 0x0 ./APP/ch32v20x_it.o
- .data 0x0000000000000000 0x0 ./APP/ch32v20x_it.o
- .bss 0x0000000000000000 0x0 ./APP/ch32v20x_it.o
- .text 0x0000000000000000 0x0 ./APP/led.o
- .data 0x0000000000000000 0x0 ./APP/led.o
- .bss 0x0000000000000000 0x0 ./APP/led.o
- .text 0x0000000000000000 0x0 ./APP/peripheral.o
- .data 0x0000000000000000 0x0 ./APP/peripheral.o
- .bss 0x0000000000000000 0x0 ./APP/peripheral.o
- .text.PeripheralParamUpdate
- 0x0000000000000000 0x16 ./APP/peripheral.o
- .text.DisableAllIRQ
- 0x0000000000000000 0xa ./APP/peripheral.o
- .text.Upgrade_IAP_Erase
- 0x0000000000000000 0x26 ./APP/peripheral.o
- .text.Upgrade_IAP_Program
- 0x0000000000000000 0x3a ./APP/peripheral.o
- .text.Upgrade_IAP_End
- 0x0000000000000000 0x14 ./APP/peripheral.o
- .text.IAP_FLASH_read
- 0x0000000000000000 0x8 ./APP/peripheral.o
- .rodata.PeripheralParamUpdate.str1.4
- 0x0000000000000000 0x12 ./APP/peripheral.o
- .sbss.PeripheralParamUpdate_t
- 0x0000000000000000 0x4 ./APP/peripheral.o
- .sbss.user_image_tasks
- 0x0000000000000000 0x4 ./APP/peripheral.o
- .text 0x0000000000000000 0x0 ./APP/peripheral_main.o
- .data 0x0000000000000000 0x0 ./APP/peripheral_main.o
- .bss 0x0000000000000000 0x0 ./APP/peripheral_main.o
- .text 0x0000000000000000 0x0 ./APP/system_ch32v20x.o
- .data 0x0000000000000000 0x0 ./APP/system_ch32v20x.o
- .bss 0x0000000000000000 0x0 ./APP/system_ch32v20x.o
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
- .text.memcpy 0x0000000000000000 0xb2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
- .debug_frame 0x0000000000000000 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memcpy.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memset.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memset.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
- .text._printf_r
- 0x0000000000000000 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
- .text.__swbuf 0x0000000000000000 0x16 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- .text.fflush 0x0000000000000000 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text.__fp_lock
- 0x0000000000000000 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text.__fp_unlock
- 0x0000000000000000 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text._cleanup
- 0x0000000000000000 0x12 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text.__sfp_lock_acquire
- 0x0000000000000000 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text.__sfp_lock_release
- 0x0000000000000000 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text.__sinit_lock_acquire
- 0x0000000000000000 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text.__sinit_lock_release
- 0x0000000000000000 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text.__fp_lock_all
- 0x0000000000000000 0x1a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text.__fp_unlock_all
- 0x0000000000000000 0x1a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
- .text._fwalk 0x0000000000000000 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- .text.__sprint_r
- 0x0000000000000000 0x2c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- .text.vfprintf
- 0x0000000000000000 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- .text.__seofread
- 0x0000000000000000 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
- .text.__sfvwrite_r
- 0x0000000000000000 0x306 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
- .debug_frame 0x0000000000000000 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fvwrite.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
- .text.memmove 0x0000000000000000 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
- .debug_frame 0x0000000000000000 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memmove.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
- .text._realloc_r
- 0x0000000000000000 0x72 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
- .debug_frame 0x0000000000000000 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-reallocr.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- .text.cleanup_glue
- 0x0000000000000000 0x2c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- .text._reclaim_reent
- 0x0000000000000000 0x10c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
- .text._malloc_usable_size_r
- 0x0000000000000000 0x14 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
- .debug_frame 0x0000000000000000 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-msizer.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
- .text 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
- .data 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
- .bss 0x0000000000000000 0x0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
- Memory Configuration
- Name Origin Length Attributes
- FLASH 0x0000000000000000 0x0000000000005000 xr
- RAM 0x0000000020004000 0x000000000000c000 xrw
- *default* 0x0000000000000000 0xffffffffffffffff
- Linker script and memory map
- LOAD ./Startup/startup_ch32v20x_D8W.o
- LOAD ./SRC/Peripheral/src/ch32v20x_adc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_bkp.o
- LOAD ./SRC/Peripheral/src/ch32v20x_can.o
- LOAD ./SRC/Peripheral/src/ch32v20x_crc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- LOAD ./SRC/Peripheral/src/ch32v20x_dma.o
- LOAD ./SRC/Peripheral/src/ch32v20x_exti.o
- LOAD ./SRC/Peripheral/src/ch32v20x_flash.o
- LOAD ./SRC/Peripheral/src/ch32v20x_gpio.o
- LOAD ./SRC/Peripheral/src/ch32v20x_i2c.o
- LOAD ./SRC/Peripheral/src/ch32v20x_iwdg.o
- LOAD ./SRC/Peripheral/src/ch32v20x_misc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_opa.o
- LOAD ./SRC/Peripheral/src/ch32v20x_pwr.o
- LOAD ./SRC/Peripheral/src/ch32v20x_rcc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_rtc.o
- LOAD ./SRC/Peripheral/src/ch32v20x_spi.o
- LOAD ./SRC/Peripheral/src/ch32v20x_tim.o
- LOAD ./SRC/Peripheral/src/ch32v20x_tim5.o
- LOAD ./SRC/Peripheral/src/ch32v20x_usart.o
- LOAD ./SRC/Peripheral/src/ch32v20x_wwdg.o
- LOAD ./SRC/Debug/debug.o
- LOAD ./SRC/Core/core_riscv.o
- LOAD ./Profile/OTAprofile.o
- LOAD ./LIB/ble_task_scheduler.o
- LOAD ./HAL/MCU.o
- LOAD ./HAL/RTC.o
- LOAD ./HAL/SLEEP.o
- LOAD ./APP/ch32v20x_it.o
- LOAD ./APP/led.o
- LOAD ./APP/peripheral.o
- LOAD ./APP/peripheral_main.o
- LOAD ./APP/system_ch32v20x.o
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libc_nano.a
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a
- START GROUP
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libc_nano.a
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a
- END GROUP
- START GROUP
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/rv32imacxw/ilp32\libgcc.a
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libc_nano.a
- LOAD d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a
- END GROUP
- 0x0000000000000800 __stack_size = 0x800
- [!provide] PROVIDE (_stack_size = __stack_size)
- 0x0000000020004000 PROVIDE (__global_pointer$ = 0x20004000)
- .init 0x0000000000000000 0x38
- 0x0000000000000000 _sinit = .
- 0x0000000000000000 . = ALIGN (0x4)
- *(SORT_NONE(.init))
- .init 0x0000000000000000 0x38 ./Startup/startup_ch32v20x_D8W.o
- 0x0000000000000000 _start
- 0x0000000000000038 . = ALIGN (0x4)
- 0x0000000000000038 _einit = .
- .vector 0x0000000000000038 0x148
- *(.vector)
- .vector 0x0000000000000038 0x118 ./Startup/startup_ch32v20x_D8W.o
- 0x0000000000000180 . = ALIGN (0x40)
- *fill* 0x0000000000000150 0x30
- *(SORT_NONE(.handle_reset))
- .highcode 0x0000000000000180 0xe8
- 0x0000000000000180 . = ALIGN (0x4)
- *(.highcode)
- .highcode 0x0000000000000180 0x4e ./LIB/ble_task_scheduler.o
- 0x0000000000000180 Ecall_U_Mode_Handler
- 0x0000000000000180 Ecall_M_Mode_Handler
- .highcode 0x00000000000001ce 0x10 ./APP/peripheral_main.o
- 0x00000000000001ce Main_Circulation
- *(.highcode.*)
- *fill* 0x00000000000001de 0x2
- .highcode.LLE_IRQHandler
- 0x00000000000001e0 0x86 ./LIB/ble_task_scheduler.o
- 0x00000000000001e0 LLE_IRQHandler
- 0x0000000000000268 . = ALIGN (0x4)
- *fill* 0x0000000000000266 0x2
- .text 0x0000000000000268 0x3430
- 0x0000000000000268 . = ALIGN (0x4)
- *(.text)
- .text 0x0000000000000268 0xa8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memset.o)
- 0x0000000000000268 memset
- *(.text.*)
- .text.vector_handler
- 0x0000000000000310 0x7a ./Startup/startup_ch32v20x_D8W.o
- 0x0000000000000318 Break_Point_Handler
- 0x000000000000031a SysTick_Handler
- 0x000000000000031c SW_Handler
- 0x000000000000031e WWDG_IRQHandler
- 0x0000000000000320 PVD_IRQHandler
- 0x0000000000000322 TAMPER_IRQHandler
- 0x0000000000000324 RTC_IRQHandler
- 0x0000000000000326 FLASH_IRQHandler
- 0x0000000000000328 RCC_IRQHandler
- 0x000000000000032a EXTI0_IRQHandler
- 0x000000000000032c EXTI1_IRQHandler
- 0x000000000000032e EXTI2_IRQHandler
- 0x0000000000000330 EXTI3_IRQHandler
- 0x0000000000000332 EXTI4_IRQHandler
- 0x0000000000000334 DMA1_Channel1_IRQHandler
- 0x0000000000000336 DMA1_Channel2_IRQHandler
- 0x0000000000000338 DMA1_Channel3_IRQHandler
- 0x000000000000033a DMA1_Channel4_IRQHandler
- 0x000000000000033c DMA1_Channel5_IRQHandler
- 0x000000000000033e DMA1_Channel6_IRQHandler
- 0x0000000000000340 DMA1_Channel7_IRQHandler
- 0x0000000000000342 ADC1_2_IRQHandler
- 0x0000000000000344 USB_HP_CAN1_TX_IRQHandler
- 0x0000000000000346 USB_LP_CAN1_RX0_IRQHandler
- 0x0000000000000348 CAN1_RX1_IRQHandler
- 0x000000000000034a CAN1_SCE_IRQHandler
- 0x000000000000034c EXTI9_5_IRQHandler
- 0x000000000000034e TIM1_BRK_IRQHandler
- 0x0000000000000350 TIM1_UP_IRQHandler
- 0x0000000000000352 TIM1_TRG_COM_IRQHandler
- 0x0000000000000354 TIM1_CC_IRQHandler
- 0x0000000000000356 TIM2_IRQHandler
- 0x0000000000000358 TIM3_IRQHandler
- 0x000000000000035a TIM4_IRQHandler
- 0x000000000000035c I2C1_EV_IRQHandler
- 0x000000000000035e I2C1_ER_IRQHandler
- 0x0000000000000360 I2C2_EV_IRQHandler
- 0x0000000000000362 I2C2_ER_IRQHandler
- 0x0000000000000364 SPI1_IRQHandler
- 0x0000000000000366 SPI2_IRQHandler
- 0x0000000000000368 USART1_IRQHandler
- 0x000000000000036a USART2_IRQHandler
- 0x000000000000036c USART3_IRQHandler
- 0x000000000000036e EXTI15_10_IRQHandler
- 0x0000000000000372 USBWakeUp_IRQHandler
- 0x0000000000000374 USBHD_IRQHandler
- 0x0000000000000376 USBHDWakeUp_IRQHandler
- 0x0000000000000378 ETH_IRQHandler
- 0x000000000000037a ETHWakeUp_IRQHandler
- 0x0000000000000380 TIM5_IRQHandler
- 0x0000000000000382 UART4_IRQHandler
- 0x0000000000000384 DMA1_Channel8_IRQHandler
- 0x0000000000000386 OSC32KCal_IRQHandler
- 0x0000000000000388 OSCWakeUp_IRQHandler
- .text.handle_reset
- 0x000000000000038a 0x8e ./Startup/startup_ch32v20x_D8W.o
- 0x000000000000038a handle_reset
- .text.ADC_DeInit
- 0x0000000000000418 0x46 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x0000000000000418 ADC_DeInit
- .text.ADC_Init
- 0x000000000000045e 0x56 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000045e ADC_Init
- .text.ADC_Cmd 0x00000000000004b4 0x10 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x00000000000004b4 ADC_Cmd
- .text.ADC_SoftwareStartConvCmd
- 0x00000000000004c4 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x00000000000004c4 ADC_SoftwareStartConvCmd
- .text.ADC_RegularChannelConfig
- 0x00000000000004dc 0xb8 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x00000000000004dc ADC_RegularChannelConfig
- .text.ADC_GetConversionValue
- 0x0000000000000594 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x0000000000000594 ADC_GetConversionValue
- .text.ADC_TempSensorVrefintCmd
- 0x000000000000059c 0x20 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x000000000000059c ADC_TempSensorVrefintCmd
- .text.ADC_GetFlagStatus
- 0x00000000000005bc 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x00000000000005bc ADC_GetFlagStatus
- .text.ADC_BufferCmd
- 0x00000000000005c6 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x00000000000005c6 ADC_BufferCmd
- .text.DBGMCU_GetCHIPID
- 0x00000000000005de 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- 0x00000000000005de DBGMCU_GetCHIPID
- .text.EXTI_ClearITPendingBit
- 0x00000000000005e8 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
- 0x00000000000005e8 EXTI_ClearITPendingBit
- .text.FLASH_Unlock
- 0x00000000000005f2 0x1a ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x00000000000005f2 FLASH_Unlock
- .text.FLASH_Lock
- 0x000000000000060c 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000060c FLASH_Lock
- .text.FLASH_GetBank1Status
- 0x000000000000061a 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000061a FLASH_GetBank1Status
- .text.FLASH_WaitForLastOperation
- 0x0000000000000632 0x2a ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x0000000000000632 FLASH_WaitForLastOperation
- .text.FLASH_ErasePage
- 0x000000000000065c 0x42 ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000065c FLASH_ErasePage
- .text.FLASH_Unlock_Fast
- 0x000000000000069e 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000069e FLASH_Unlock_Fast
- .text.FLASH_Lock_Fast
- 0x00000000000006bc 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x00000000000006bc FLASH_Lock_Fast
- .text.FLASH_ErasePage_Fast
- 0x00000000000006ca 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x00000000000006ca FLASH_ErasePage_Fast
- .text.FLASH_ProgramPage_Fast
- 0x00000000000006f8 0x64 ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x00000000000006f8 FLASH_ProgramPage_Fast
- .text.FLASH_GetMACAddress
- 0x000000000000075c 0x26 ./SRC/Peripheral/src/ch32v20x_flash.o
- 0x000000000000075c FLASH_GetMACAddress
- .text.GPIO_Init
- 0x0000000000000782 0xc0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- 0x0000000000000782 GPIO_Init
- .text.GPIO_WriteBit
- 0x0000000000000842 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
- 0x0000000000000842 GPIO_WriteBit
- .text.IWDG_WriteAccessCmd
- 0x000000000000084c 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- 0x000000000000084c IWDG_WriteAccessCmd
- .text.IWDG_SetPrescaler
- 0x0000000000000854 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- 0x0000000000000854 IWDG_SetPrescaler
- .text.IWDG_SetReload
- 0x000000000000085c 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- 0x000000000000085c IWDG_SetReload
- .text.IWDG_ReloadCounter
- 0x0000000000000864 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
- 0x0000000000000864 IWDG_ReloadCounter
- .text.IWDG_Enable
- 0x0000000000000872 0x18 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- 0x0000000000000872 IWDG_Enable
- .text.PWR_BackupAccessCmd
- 0x000000000000088a 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
- 0x000000000000088a PWR_BackupAccessCmd
- .text.RCC_ADCCLKConfig
- 0x00000000000008a0 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x00000000000008a0 RCC_ADCCLKConfig
- .text.RCC_LSEConfig
- 0x00000000000008b2 0x28 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x00000000000008b2 RCC_LSEConfig
- .text.RCC_RTCCLKConfig
- 0x00000000000008da 0xc ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x00000000000008da RCC_RTCCLKConfig
- .text.RCC_RTCCLKCmd
- 0x00000000000008e6 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x00000000000008e6 RCC_RTCCLKCmd
- .text.RCC_GetClocksFreq
- 0x0000000000000906 0xd8 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x0000000000000906 RCC_GetClocksFreq
- .text.RCC_AHBPeriphClockCmd
- 0x00000000000009de 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x00000000000009de RCC_AHBPeriphClockCmd
- .text.RCC_APB2PeriphClockCmd
- 0x00000000000009fc 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x00000000000009fc RCC_APB2PeriphClockCmd
- .text.RCC_APB1PeriphClockCmd
- 0x0000000000000a1a 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x0000000000000a1a RCC_APB1PeriphClockCmd
- .text.RCC_APB2PeriphResetCmd
- 0x0000000000000a38 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x0000000000000a38 RCC_APB2PeriphResetCmd
- .text.RCC_GetFlagStatus
- 0x0000000000000a56 0x2e ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0x0000000000000a56 RCC_GetFlagStatus
- .text.RTC_EnterConfigMode
- 0x0000000000000a84 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x0000000000000a84 RTC_EnterConfigMode
- .text.RTC_ExitConfigMode
- 0x0000000000000a96 0x18 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x0000000000000a96 RTC_ExitConfigMode
- .text.RTC_GetCounter
- 0x0000000000000aae 0x5a ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x0000000000000aae RTC_GetCounter
- .text.RTC_SetCounter
- 0x0000000000000b08 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x0000000000000b08 RTC_SetCounter
- .text.RTC_SetPrescaler
- 0x0000000000000b2c 0x26 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x0000000000000b2c RTC_SetPrescaler
- .text.RTC_WaitForLastTask
- 0x0000000000000b52 0x10 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x0000000000000b52 RTC_WaitForLastTask
- .text.RTC_ClearFlag
- 0x0000000000000b62 0x14 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x0000000000000b62 RTC_ClearFlag
- .text.RTC_ClearITPendingBit
- 0x0000000000000b76 0x2 ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x0000000000000b76 RTC_ClearITPendingBit
- .text.TIM_Cmd 0x0000000000000b78 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x0000000000000b78 TIM_Cmd
- .text.TIM5_TimeBaseInit
- 0x0000000000000b90 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
- 0x0000000000000b90 TIM5_TimeBaseInit
- .text.TIM5_OC1Init
- 0x0000000000000bc4 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
- 0x0000000000000bc4 TIM5_OC1Init
- .text.TIM5_OC2Init
- 0x0000000000000c1c 0x66 ./SRC/Peripheral/src/ch32v20x_tim5.o
- 0x0000000000000c1c TIM5_OC2Init
- .text.TIM5_BDTRConfig
- 0x0000000000000c82 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
- 0x0000000000000c82 TIM5_BDTRConfig
- .text.TIM5_OC1PreloadConfig
- 0x0000000000000ca6 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
- 0x0000000000000ca6 TIM5_OC1PreloadConfig
- .text.TIM5_OC2PreloadConfig
- 0x0000000000000cbc 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
- 0x0000000000000cbc TIM5_OC2PreloadConfig
- .text.TIM5_SetCompare1
- 0x0000000000000cda 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- 0x0000000000000cda TIM5_SetCompare1
- .text.TIM5_SetCompare2
- 0x0000000000000ce4 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
- 0x0000000000000ce4 TIM5_SetCompare2
- .text.USART_Init
- 0x0000000000000cee 0x90 ./SRC/Peripheral/src/ch32v20x_usart.o
- 0x0000000000000cee USART_Init
- .text.USART_Cmd
- 0x0000000000000d7e 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
- 0x0000000000000d7e USART_Cmd
- .text.USART_SendData
- 0x0000000000000d94 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
- 0x0000000000000d94 USART_SendData
- .text.USART_GetFlagStatus
- 0x0000000000000d9c 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
- 0x0000000000000d9c USART_GetFlagStatus
- .text.Delay_Init
- 0x0000000000000da6 0x28 ./SRC/Debug/debug.o
- 0x0000000000000da6 Delay_Init
- .text.Delay_Us
- 0x0000000000000dce 0x36 ./SRC/Debug/debug.o
- 0x0000000000000dce Delay_Us
- .text.Delay_Ms
- 0x0000000000000e04 0x36 ./SRC/Debug/debug.o
- 0x0000000000000e04 Delay_Ms
- .text.USART_Printf_Init
- 0x0000000000000e3a 0x54 ./SRC/Debug/debug.o
- 0x0000000000000e3a USART_Printf_Init
- .text._write 0x0000000000000e8e 0x4c ./SRC/Debug/debug.o
- 0x0000000000000e8e _write
- .text._sbrk 0x0000000000000eda 0x2c ./SRC/Debug/debug.o
- 0x0000000000000eda _sbrk
- .text.OTAProfile_WriteAttrCB
- 0x0000000000000f06 0x7a ./Profile/OTAprofile.o
- .text.OTAProfile_ReadAttrCB
- 0x0000000000000f80 0x6c ./Profile/OTAprofile.o
- .text.OTAProfile_AddService
- 0x0000000000000fec 0x1e ./Profile/OTAprofile.o
- 0x0000000000000fec OTAProfile_AddService
- .text.OTAProfile_RegisterAppCBs
- 0x000000000000100a 0xe ./Profile/OTAprofile.o
- 0x000000000000100a OTAProfile_RegisterAppCBs
- .text.OTAProfile_SendData
- 0x0000000000001018 0x28 ./Profile/OTAprofile.o
- 0x0000000000001018 OTAProfile_SendData
- .text.Lib_Read_Flash
- 0x0000000000001040 0x1e ./HAL/MCU.o
- 0x0000000000001040 Lib_Read_Flash
- .text.Lib_Write_Flash
- 0x000000000000105e 0x30 ./HAL/MCU.o
- 0x000000000000105e Lib_Write_Flash
- .text.HAL_GetInterTempValue
- 0x000000000000108e 0x16a ./HAL/MCU.o
- 0x000000000000108e HAL_GetInterTempValue
- .text.HAL_ProcessEvent
- 0x00000000000011f8 0x8e ./HAL/MCU.o
- 0x00000000000011f8 HAL_ProcessEvent
- .text.WCHBLE_Init
- 0x0000000000001286 0x136 ./HAL/MCU.o
- 0x0000000000001286 WCHBLE_Init
- .text.HAL_Init
- 0x00000000000013bc 0x3c ./HAL/MCU.o
- 0x00000000000013bc HAL_Init
- .text.HAL_TimeInit
- 0x00000000000013f8 0xb0 ./HAL/RTC.o
- 0x00000000000013f8 HAL_TimeInit
- .text.RTCAlarm_IRQHandler
- 0x00000000000014a8 0x1c ./HAL/RTC.o
- 0x00000000000014a8 RTCAlarm_IRQHandler
- .text.NMI_Handler
- 0x00000000000014c4 0x4 ./APP/ch32v20x_it.o
- 0x00000000000014c4 NMI_Handler
- .text.HardFault_Handler
- 0x00000000000014c8 0x10 ./APP/ch32v20x_it.o
- 0x00000000000014c8 HardFault_Handler
- .text.BB_IRQHandler
- 0x00000000000014d8 0xc ./APP/ch32v20x_it.o
- 0x00000000000014d8 BB_IRQHandler
- .text.led_dev_duty
- 0x00000000000014e4 0x48 ./APP/led.o
- .text.led_task_process_event
- 0x000000000000152c 0x11a ./APP/led.o
- .text.set_led_indication
- 0x0000000000001646 0xb0 ./APP/led.o
- 0x0000000000001646 set_led_indication
- .text.led_task_init
- 0x00000000000016f6 0x10a ./APP/led.o
- 0x00000000000016f6 led_task_init
- .text.led_task_start
- 0x0000000000001800 0x12 ./APP/led.o
- 0x0000000000001800 led_task_start
- .text.vUser_led_set_view_stat
- 0x0000000000001812 0x3a ./APP/led.o
- 0x0000000000001812 vUser_led_set_view_stat
- .text.OTA_IAPReadDataComplete
- 0x000000000000184c 0xc ./APP/peripheral.o
- 0x000000000000184c OTA_IAPReadDataComplete
- .text.peripheralStateNotificationCB
- 0x0000000000001858 0xba ./APP/peripheral.o
- .text.Peripheral_Init
- 0x0000000000001912 0xb0 ./APP/peripheral.o
- 0x0000000000001912 Peripheral_Init
- .text.OTA_IAP_SendData
- 0x00000000000019c2 0xa ./APP/peripheral.o
- 0x00000000000019c2 OTA_IAP_SendData
- .text.OTA_IAP_SendCMDDealSta
- 0x00000000000019cc 0x16 ./APP/peripheral.o
- 0x00000000000019cc OTA_IAP_SendCMDDealSta
- .text.Peripheral_ProcessEvent
- 0x00000000000019e2 0x100 ./APP/peripheral.o
- 0x00000000000019e2 Peripheral_ProcessEvent
- .text.OTA_IAP_CMDErrDeal
- 0x0000000000001ae2 0x6 ./APP/peripheral.o
- 0x0000000000001ae2 OTA_IAP_CMDErrDeal
- .text.IWDG_Feed_Init
- 0x0000000000001ae8 0x32 ./APP/peripheral.o
- 0x0000000000001ae8 IWDG_Feed_Init
- .text.app_start
- 0x0000000000001b1a 0x16 ./APP/peripheral.o
- 0x0000000000001b1a app_start
- .text.FLASH_read
- 0x0000000000001b30 0x18 ./APP/peripheral.o
- 0x0000000000001b30 FLASH_read
- .text.SwitchImageFlag
- 0x0000000000001b48 0x48 ./APP/peripheral.o
- 0x0000000000001b48 SwitchImageFlag
- .text.Rec_OTA_IAP_DataDeal
- 0x0000000000001b90 0x254 ./APP/peripheral.o
- 0x0000000000001b90 Rec_OTA_IAP_DataDeal
- .text.OTA_IAPWriteData
- 0x0000000000001de4 0x1c ./APP/peripheral.o
- 0x0000000000001de4 OTA_IAPWriteData
- .text.ReadImageFlag
- 0x0000000000001e00 0x4a ./APP/peripheral_main.o
- 0x0000000000001e00 ReadImageFlag
- .text.startup.main
- 0x0000000000001e4a 0x1a0 ./APP/peripheral_main.o
- 0x0000000000001e4a main
- .text.SystemInit
- 0x0000000000001fea 0xea ./APP/system_ch32v20x.o
- 0x0000000000001fea SystemInit
- .text.SystemCoreClockUpdate
- 0x00000000000020d4 0xac ./APP/system_ch32v20x.o
- 0x00000000000020d4 SystemCoreClockUpdate
- .text.printf 0x0000000000002180 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
- 0x0000000000002180 iprintf
- 0x0000000000002180 printf
- .text._puts_r 0x00000000000021c0 0xd4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- 0x00000000000021c0 _puts_r
- .text.puts 0x0000000000002294 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- 0x0000000000002294 puts
- .text.__swbuf_r
- 0x000000000000229e 0xbc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
- 0x000000000000229e __swbuf_r
- .text.__swsetup_r
- 0x000000000000235a 0xfc d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
- 0x000000000000235a __swsetup_r
- .text.__sflush_r
- 0x0000000000002456 0x130 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- 0x0000000000002456 __sflush_r
- .text._fflush_r
- 0x0000000000002586 0x64 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- 0x0000000000002586 _fflush_r
- .text.std 0x00000000000025ea 0x66 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .text._cleanup_r
- 0x0000000000002650 0xa d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x0000000000002650 _cleanup_r
- .text.__sfmoreglue
- 0x000000000000265a 0x46 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x000000000000265a __sfmoreglue
- .text.__sinit 0x00000000000026a0 0x6a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x00000000000026a0 __sinit
- .text.__sfp 0x000000000000270a 0xa0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x000000000000270a __sfp
- .text._fwalk_reent
- 0x00000000000027aa 0x6a d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
- 0x00000000000027aa _fwalk_reent
- .text.__swhatbuf_r
- 0x0000000000002814 0x58 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- 0x0000000000002814 __swhatbuf_r
- .text.__smakebuf_r
- 0x000000000000286c 0x90 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- 0x000000000000286c __smakebuf_r
- .text._free_r 0x00000000000028fc 0xa8 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
- 0x00000000000028fc _free_r
- .text._malloc_r
- 0x00000000000029a4 0xd4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- 0x00000000000029a4 _malloc_r
- .text.__sfputc_r
- 0x0000000000002a78 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- .text.__sfputs_r
- 0x0000000000002aa0 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- 0x0000000000002aa0 __sfputs_r
- .text._vfprintf_r
- 0x0000000000002ae0 0x286 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- 0x0000000000002ae0 _vfprintf_r
- 0x0000000000002ae0 _vfiprintf_r
- .text._printf_common
- 0x0000000000002d66 0x10c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- 0x0000000000002d66 _printf_common
- .text._printf_i
- 0x0000000000002e72 0x2a0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- 0x0000000000002e72 _printf_i
- .text._sbrk_r 0x0000000000003112 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
- 0x0000000000003112 _sbrk_r
- .text.__sread 0x0000000000003144 0x2c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- 0x0000000000003144 __sread
- .text.__swrite
- 0x0000000000003170 0x48 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- 0x0000000000003170 __swrite
- .text.__sseek 0x00000000000031b8 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- 0x00000000000031b8 __sseek
- .text.__sclose
- 0x00000000000031e8 0x6 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- 0x00000000000031e8 __sclose
- .text._write_r
- 0x00000000000031ee 0x36 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
- 0x00000000000031ee _write_r
- .text._close_r
- 0x0000000000003224 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
- 0x0000000000003224 _close_r
- .text._fstat_r
- 0x0000000000003254 0x32 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
- 0x0000000000003254 _fstat_r
- .text._isatty_r
- 0x0000000000003286 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
- 0x0000000000003286 _isatty_r
- .text._lseek_r
- 0x00000000000032b6 0x34 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
- 0x00000000000032b6 _lseek_r
- .text.memchr 0x00000000000032ea 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
- 0x00000000000032ea memchr
- .text.__malloc_lock
- 0x0000000000003302 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- 0x0000000000003302 __malloc_lock
- .text.__malloc_unlock
- 0x0000000000003304 0x2 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- 0x0000000000003304 __malloc_unlock
- .text._read_r 0x0000000000003306 0x34 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
- 0x0000000000003306 _read_r
- .text._close 0x000000000000333a 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
- 0x000000000000333a _close
- .text._fstat 0x000000000000334a 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
- 0x000000000000334a _fstat
- .text._isatty 0x000000000000335a 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
- 0x000000000000335a _isatty
- .text._lseek 0x000000000000336a 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
- 0x000000000000336a _lseek
- .text._read 0x000000000000337a 0x10 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
- 0x000000000000337a _read
- *(.rodata)
- *(.rodata*)
- *fill* 0x000000000000338a 0x2
- .rodata.HAL_ProcessEvent.str1.4
- 0x000000000000338c 0x3 ./HAL/MCU.o
- *fill* 0x000000000000338f 0x1
- .rodata.WCHBLE_Init.str1.4
- 0x0000000000003390 0x49 ./HAL/MCU.o
- *fill* 0x00000000000033d9 0x3
- .rodata.HAL_TimeInit.str1.4
- 0x00000000000033dc 0x27 ./HAL/RTC.o
- *fill* 0x0000000000003403 0x1
- .rodata.led_task_init.str1.4
- 0x0000000000003404 0x10 ./APP/led.o
- .rodata.peripheralStateNotificationCB
- 0x0000000000003414 0x18 ./APP/peripheral.o
- .rodata.Rec_OTA_IAP_DataDeal
- 0x000000000000342c 0x14 ./APP/peripheral.o
- .rodata.OTA_IAPReadDataComplete.str1.4
- 0x0000000000003440 0x10 ./APP/peripheral.o
- .rodata.Peripheral_ProcessEvent.str1.4
- 0x0000000000003450 0x24 ./APP/peripheral.o
- .rodata.Rec_OTA_IAP_DataDeal.str1.4
- 0x0000000000003474 0x8f ./APP/peripheral.o
- *fill* 0x0000000000003503 0x1
- .rodata.peripheralStateNotificationCB.str1.4
- 0x0000000000003504 0x70 ./APP/peripheral.o
- .rodata.ReadImageFlag.str1.4
- 0x0000000000003574 0x11 ./APP/peripheral_main.o
- *fill* 0x0000000000003585 0x3
- .rodata.main.str1.4
- 0x0000000000003588 0x5f ./APP/peripheral_main.o
- *fill* 0x00000000000035e7 0x1
- .rodata.__sf_fake_stderr
- 0x00000000000035e8 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x00000000000035e8 __sf_fake_stderr
- .rodata.__sf_fake_stdin
- 0x0000000000003608 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x0000000000003608 __sf_fake_stdin
- .rodata.__sf_fake_stdout
- 0x0000000000003628 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- 0x0000000000003628 __sf_fake_stdout
- .rodata._vfprintf_r.str1.4
- 0x0000000000003648 0x13 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- *fill* 0x000000000000365b 0x1
- .rodata._printf_i.str1.4
- 0x000000000000365c 0x28 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- 0x25 (size before relaxing)
- *(.sdata2.*)
- .sdata2.OTAProfileServUUID
- 0x0000000000003684 0x2 ./Profile/OTAprofile.o
- 0x0000000000003684 OTAProfileServUUID
- *fill* 0x0000000000003686 0x2
- .sdata2.OTAProfileService
- 0x0000000000003688 0x8 ./Profile/OTAprofile.o
- .sdata2.OTAProfilechar1UUID
- 0x0000000000003690 0x2 ./Profile/OTAprofile.o
- 0x0000000000003690 OTAProfilechar1UUID
- *fill* 0x0000000000003692 0x2
- .sdata2._global_impure_ptr
- 0x0000000000003694 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- 0x0000000000003694 _global_impure_ptr
- *(.gnu.linkonce.t.*)
- 0x0000000000003698 . = ALIGN (0x4)
- .rela.dyn 0x0000000000003698 0x0
- .rela.init 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.vector 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text.handle_reset
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._sbrk
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.sdata.curbrk.4953
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._vfprintf_r
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._sbrk_r
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._write_r
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._close_r
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._fstat_r
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._isatty_r
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._lseek_r
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._read_r
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._close
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._fstat
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._isatty
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._lseek
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .rela.text._read
- 0x0000000000003698 0x0 ./Startup/startup_ch32v20x_D8W.o
- .fini 0x0000000000003698 0x0
- *(SORT_NONE(.fini))
- 0x0000000000003698 . = ALIGN (0x4)
- [!provide] PROVIDE (_etext = .)
- [!provide] PROVIDE (_eitcm = .)
- .preinit_array 0x0000000000003698 0x0
- [!provide] PROVIDE (__preinit_array_start = .)
- *(.preinit_array)
- [!provide] PROVIDE (__preinit_array_end = .)
- .init_array 0x0000000000003698 0x0
- [!provide] PROVIDE (__init_array_start = .)
- *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))
- *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors)
- [!provide] PROVIDE (__init_array_end = .)
- .fini_array 0x0000000000003698 0x0
- [!provide] PROVIDE (__fini_array_start = .)
- *(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))
- *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors)
- [!provide] PROVIDE (__fini_array_end = .)
- .ctors
- *crtbegin.o(.ctors)
- *crtbegin?.o(.ctors)
- *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
- *(SORT_BY_NAME(.ctors.*))
- *(.ctors)
- .dtors
- *crtbegin.o(.dtors)
- *crtbegin?.o(.dtors)
- *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
- *(SORT_BY_NAME(.dtors.*))
- *(.dtors)
- .dalign 0x0000000020004000 0x0 load address 0x0000000000003698
- 0x0000000020004000 . = ALIGN (0x4)
- 0x0000000020004000 PROVIDE (_data_vma = .)
- .dlalign 0x0000000000003698 0x0
- 0x0000000000003698 . = ALIGN (0x4)
- 0x0000000000003698 PROVIDE (_data_lma = .)
- .data 0x0000000020004000 0x180 load address 0x0000000000003698
- *(.gnu.linkonce.r.*)
- *(.data .data.*)
- .data.APBAHBPrescTable
- 0x0000000020004000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .data.OTAProfileAttrTbl
- 0x0000000020004010 0x40 ./Profile/OTAprofile.o
- .data.OTAProfileCBs
- 0x0000000020004050 0xc ./Profile/OTAprofile.o
- 0x0000000020004050 OTAProfileCBs
- .data.OTAProfileCharUserDesp
- 0x000000002000405c 0xc ./Profile/OTAprofile.o
- .data.led_work
- 0x0000000020004068 0x3c ./APP/led.o
- .data.Peripheral_PeripheralCBs
- 0x00000000200040a4 0xc ./APP/peripheral.o
- .data.attDeviceName
- 0x00000000200040b0 0x15 ./APP/peripheral.o
- *fill* 0x00000000200040c5 0x3
- .data.scanRspData
- 0x00000000200040c8 0x1f ./APP/peripheral.o
- *fill* 0x00000000200040e7 0x1
- .data.AHBPrescTable
- 0x00000000200040e8 0x10 ./APP/system_ch32v20x.o
- 0x00000000200040e8 AHBPrescTable
- .data.impure_data
- 0x00000000200040f8 0x60 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- *(.gnu.linkonce.d.*)
- 0x0000000020004158 . = ALIGN (0x8)
- [!provide] PROVIDE (__global_pointer$ = (. + 0x800))
- *(.sdata .sdata.*)
- .sdata.ADCPrescTable
- 0x0000000020004158 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .sdata.curbrk.4953
- 0x000000002000415c 0x4 ./SRC/Debug/debug.o
- .sdata.OTAProfileCharProps
- 0x0000000020004160 0x1 ./Profile/OTAprofile.o
- .sdata.led_task_id
- 0x0000000020004161 0x1 ./APP/led.o
- 0x0000000020004161 led_task_id
- *fill* 0x0000000020004162 0x2
- .sdata.Peripheral_OTA_IAPProfileCBs
- 0x0000000020004164 0x8 ./APP/peripheral.o
- .sdata.Peripheral_TaskID
- 0x000000002000416c 0x1 ./APP/peripheral.o
- *fill* 0x000000002000416d 0x3
- .sdata.advertData
- 0x0000000020004170 0x7 ./APP/peripheral.o
- .sdata.CurrImageFlag
- 0x0000000020004177 0x1 ./APP/peripheral_main.o
- 0x0000000020004177 CurrImageFlag
- .sdata.SystemCoreClock
- 0x0000000020004178 0x4 ./APP/system_ch32v20x.o
- 0x0000000020004178 SystemCoreClock
- .sdata._impure_ptr
- 0x000000002000417c 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-impure.o)
- 0x000000002000417c _impure_ptr
- *(.gnu.linkonce.s.*)
- 0x0000000020004180 . = ALIGN (0x8)
- *(.srodata.cst16)
- *(.srodata.cst8)
- *(.srodata.cst4)
- *(.srodata.cst2)
- *(.srodata .srodata.*)
- 0x0000000020004180 . = ALIGN (0x4)
- 0x0000000020004180 PROVIDE (_edata = .)
- .bss 0x0000000020004180 0x2134 load address 0x0000000000003818
- 0x0000000020004180 . = ALIGN (0x4)
- 0x0000000020004180 PROVIDE (_sbss = .)
- *(.sbss*)
- .sbss.p_ms 0x0000000020004180 0x2 ./SRC/Debug/debug.o
- .sbss.p_us 0x0000000020004182 0x1 ./SRC/Debug/debug.o
- .sbss.OTAProfileChar
- 0x0000000020004183 0x1 ./Profile/OTAprofile.o
- .sbss.OTAProfileReadLen
- 0x0000000020004184 0x1 ./Profile/OTAprofile.o
- .sbss.OTAProfileWriteLen
- 0x0000000020004185 0x1 ./Profile/OTAprofile.o
- *fill* 0x0000000020004186 0x2
- .sbss.OTAProfile_AppCBs
- 0x0000000020004188 0x4 ./Profile/OTAprofile.o
- .sbss.g_LLE_IRQLibHandlerLocation
- 0x000000002000418c 0x4 ./HAL/MCU.o
- 0x000000002000418c g_LLE_IRQLibHandlerLocation
- .sbss.halTaskID
- 0x0000000020004190 0x1 ./HAL/MCU.o
- 0x0000000020004190 halTaskID
- *fill* 0x0000000020004191 0x3
- .sbss.RTCTigFlag
- 0x0000000020004194 0x4 ./HAL/RTC.o
- 0x0000000020004194 RTCTigFlag
- .sbss.EraseAdd
- 0x0000000020004198 0x4 ./APP/peripheral.o
- 0x0000000020004198 EraseAdd
- .sbss.EraseBlockCnt
- 0x000000002000419c 0x4 ./APP/peripheral.o
- 0x000000002000419c EraseBlockCnt
- .sbss.EraseBlockNum
- 0x00000000200041a0 0x4 ./APP/peripheral.o
- 0x00000000200041a0 EraseBlockNum
- .sbss.OpAdd 0x00000000200041a4 0x4 ./APP/peripheral.o
- 0x00000000200041a4 OpAdd
- .sbss.OpParaDataLen
- 0x00000000200041a8 0x4 ./APP/peripheral.o
- 0x00000000200041a8 OpParaDataLen
- .sbss.VerifyStatus
- 0x00000000200041ac 0x1 ./APP/peripheral.o
- 0x00000000200041ac VerifyStatus
- *fill* 0x00000000200041ad 0x1
- .sbss.block_buf_len
- 0x00000000200041ae 0x2 ./APP/peripheral.o
- 0x00000000200041ae block_buf_len
- .sbss.prom_addr
- 0x00000000200041b0 0x4 ./APP/peripheral.o
- 0x00000000200041b0 prom_addr
- .sbss.__malloc_free_list
- 0x00000000200041b4 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- 0x00000000200041b4 __malloc_free_list
- .sbss.__malloc_sbrk_start
- 0x00000000200041b8 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- 0x00000000200041b8 __malloc_sbrk_start
- *(.gnu.linkonce.sb.*)
- *(.bss*)
- .bss.OTAProfileReadBuf
- 0x00000000200041bc 0xf7 ./Profile/OTAprofile.o
- *fill* 0x00000000200042b3 0x1
- .bss.OTAProfileWriteBuf
- 0x00000000200042b4 0xf7 ./Profile/OTAprofile.o
- *fill* 0x00000000200043ab 0x1
- .bss.Peripheral_BondMgrCBs
- 0x00000000200043ac 0xc ./APP/peripheral.o
- .bss.block_buf
- 0x00000000200043b8 0x200 ./APP/peripheral.o
- 0x00000000200043b8 block_buf
- .bss.iap_rec_data
- 0x00000000200045b8 0xf7 ./APP/peripheral.o
- 0x00000000200045b8 iap_rec_data
- *fill* 0x00000000200046af 0x1
- .bss.MEM_BUF 0x00000000200046b0 0x1c00 ./APP/peripheral_main.o
- 0x00000000200046b0 MEM_BUF
- *(.gnu.linkonce.b.*)
- *(COMMON*)
- COMMON 0x00000000200062b0 0x4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- 0x00000000200062b0 errno
- 0x00000000200062b4 . = ALIGN (0x4)
- 0x00000000200062b4 PROVIDE (_ebss = .)
- 0x00000000200062b4 PROVIDE (_end = _ebss)
- [!provide] PROVIDE (end = .)
- .stack 0x0000000020010000 0x0
- 0x0000000020010000 PROVIDE (_heap_end = .)
- 0x0000000020010000 . = ALIGN (0x4)
- 0x0000000020010000 PROVIDE (_eusrstack = .)
- OUTPUT(OnlyUpdateApp_IAP.elf elf32-littleriscv)
- .debug_line 0x0000000000000000 0x16fbb
- .debug_line 0x0000000000000000 0x290 ./Startup/startup_ch32v20x_D8W.o
- .debug_line 0x0000000000000290 0x19ee ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_line 0x0000000000001c7e 0x4a5 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_line 0x0000000000002123 0x71c ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_line 0x000000000000283f 0x26a9 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_line 0x0000000000004ee8 0x11e7 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_line 0x00000000000060cf 0x53b ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_line 0x000000000000660a 0xcfb ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_line 0x0000000000007305 0x1333 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_line 0x0000000000008638 0x16f3 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_line 0x0000000000009d2b 0x335b ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_line 0x000000000000d086 0x2c91 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_line 0x000000000000fd17 0x100b ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_line 0x0000000000010d22 0x8b3 ./SRC/Debug/debug.o
- .debug_line 0x00000000000115d5 0x7e1 ./Profile/OTAprofile.o
- .debug_line 0x0000000000011db6 0x2ef ./LIB/ble_task_scheduler.o
- .debug_line 0x00000000000120a5 0xf7c ./HAL/MCU.o
- .debug_line 0x0000000000013021 0x7e7 ./HAL/RTC.o
- .debug_line 0x0000000000013808 0x459 ./APP/ch32v20x_it.o
- .debug_line 0x0000000000013c61 0xe94 ./APP/led.o
- .debug_line 0x0000000000014af5 0x131d ./APP/peripheral.o
- .debug_line 0x0000000000015e12 0x9c0 ./APP/peripheral_main.o
- .debug_line 0x00000000000167d2 0x7e9 ./APP/system_ch32v20x.o
- .debug_info 0x0000000000000000 0x1a59c
- .debug_info 0x0000000000000000 0x22 ./Startup/startup_ch32v20x_D8W.o
- .debug_info 0x0000000000000022 0x16e8 ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_info 0x000000000000170a 0xa94 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_info 0x000000000000219e 0xc0d ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_info 0x0000000000002dab 0x15dd ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_info 0x0000000000004388 0x11a4 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_info 0x000000000000552c 0xb74 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_info 0x00000000000060a0 0x1054 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_info 0x00000000000070f4 0x1279 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_info 0x000000000000836d 0xfc2 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_info 0x000000000000932f 0x2ac0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_info 0x000000000000bdef 0x2413 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_info 0x000000000000e202 0x1340 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_info 0x000000000000f542 0xf2d ./SRC/Debug/debug.o
- .debug_info 0x000000000001046f 0x1066 ./Profile/OTAprofile.o
- .debug_info 0x00000000000114d5 0x22 ./LIB/ble_task_scheduler.o
- .debug_info 0x00000000000114f7 0x1a85 ./HAL/MCU.o
- .debug_info 0x0000000000012f7c 0xd55 ./HAL/RTC.o
- .debug_info 0x0000000000013cd1 0xc2c ./APP/ch32v20x_it.o
- .debug_info 0x00000000000148fd 0x17a3 ./APP/led.o
- .debug_info 0x00000000000160a0 0x289e ./APP/peripheral.o
- .debug_info 0x000000000001893e 0x10d5 ./APP/peripheral_main.o
- .debug_info 0x0000000000019a13 0xb89 ./APP/system_ch32v20x.o
- .debug_abbrev 0x0000000000000000 0x4890
- .debug_abbrev 0x0000000000000000 0x12 ./Startup/startup_ch32v20x_D8W.o
- .debug_abbrev 0x0000000000000012 0x3ac ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_abbrev 0x00000000000003be 0x2f7 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_abbrev 0x00000000000006b5 0x2da ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_abbrev 0x000000000000098f 0x468 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_abbrev 0x0000000000000df7 0x354 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_abbrev 0x000000000000114b 0x282 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_abbrev 0x00000000000013cd 0x39c ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_abbrev 0x0000000000001769 0x374 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_abbrev 0x0000000000001add 0x32a ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_abbrev 0x0000000000001e07 0x431 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_abbrev 0x0000000000002238 0x447 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_abbrev 0x000000000000267f 0x325 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_abbrev 0x00000000000029a4 0x2f0 ./SRC/Debug/debug.o
- .debug_abbrev 0x0000000000002c94 0x36d ./Profile/OTAprofile.o
- .debug_abbrev 0x0000000000003001 0x12 ./LIB/ble_task_scheduler.o
- .debug_abbrev 0x0000000000003013 0x43e ./HAL/MCU.o
- .debug_abbrev 0x0000000000003451 0x2b4 ./HAL/RTC.o
- .debug_abbrev 0x0000000000003705 0x24b ./APP/ch32v20x_it.o
- .debug_abbrev 0x0000000000003950 0x452 ./APP/led.o
- .debug_abbrev 0x0000000000003da2 0x50f ./APP/peripheral.o
- .debug_abbrev 0x00000000000042b1 0x31f ./APP/peripheral_main.o
- .debug_abbrev 0x00000000000045d0 0x2c0 ./APP/system_ch32v20x.o
- .debug_aranges 0x0000000000000000 0xfa0
- .debug_aranges
- 0x0000000000000000 0x30 ./Startup/startup_ch32v20x_D8W.o
- .debug_aranges
- 0x0000000000000030 0x150 ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_aranges
- 0x0000000000000180 0x48 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_aranges
- 0x00000000000001c8 0x50 ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_aranges
- 0x0000000000000218 0x110 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_aranges
- 0x0000000000000328 0xb0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_aranges
- 0x00000000000003d8 0x48 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_aranges
- 0x0000000000000420 0x88 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_aranges
- 0x00000000000004a8 0x130 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_aranges
- 0x00000000000005d8 0x88 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_aranges
- 0x0000000000000660 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_aranges
- 0x0000000000000930 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_aranges
- 0x0000000000000c00 0xf0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_aranges
- 0x0000000000000cf0 0x50 ./SRC/Debug/debug.o
- .debug_aranges
- 0x0000000000000d40 0x40 ./Profile/OTAprofile.o
- .debug_aranges
- 0x0000000000000d80 0x28 ./LIB/ble_task_scheduler.o
- .debug_aranges
- 0x0000000000000da8 0x50 ./HAL/MCU.o
- .debug_aranges
- 0x0000000000000df8 0x30 ./HAL/RTC.o
- .debug_aranges
- 0x0000000000000e28 0x30 ./APP/ch32v20x_it.o
- .debug_aranges
- 0x0000000000000e58 0x48 ./APP/led.o
- .debug_aranges
- 0x0000000000000ea0 0xa8 ./APP/peripheral.o
- .debug_aranges
- 0x0000000000000f48 0x30 ./APP/peripheral_main.o
- .debug_aranges
- 0x0000000000000f78 0x28 ./APP/system_ch32v20x.o
- .debug_str 0x0000000000000000 0x551d
- .debug_str 0x0000000000000000 0x8c ./Startup/startup_ch32v20x_D8W.o
- .debug_str 0x000000000000008c 0xb6b ./SRC/Peripheral/src/ch32v20x_adc.o
- 0xcad (size before relaxing)
- .debug_str 0x0000000000000bf7 0xe0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- 0x6dc (size before relaxing)
- .debug_str 0x0000000000000cd7 0x205 ./SRC/Peripheral/src/ch32v20x_exti.o
- 0x823 (size before relaxing)
- .debug_str 0x0000000000000edc 0x52c ./SRC/Peripheral/src/ch32v20x_flash.o
- 0xbb5 (size before relaxing)
- .debug_str 0x0000000000001408 0x3ff ./SRC/Peripheral/src/ch32v20x_gpio.o
- 0xa46 (size before relaxing)
- .debug_str 0x0000000000001807 0x180 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- 0x79a (size before relaxing)
- .debug_str 0x0000000000001987 0x299 ./SRC/Peripheral/src/ch32v20x_pwr.o
- 0x8f2 (size before relaxing)
- .debug_str 0x0000000000001c20 0x454 ./SRC/Peripheral/src/ch32v20x_rcc.o
- 0xb64 (size before relaxing)
- .debug_str 0x0000000000002074 0x31b ./SRC/Peripheral/src/ch32v20x_rtc.o
- 0x9cb (size before relaxing)
- .debug_str 0x000000000000238f 0xc1a ./SRC/Peripheral/src/ch32v20x_tim.o
- 0x134f (size before relaxing)
- .debug_str 0x0000000000002fa9 0x760 ./SRC/Peripheral/src/ch32v20x_tim5.o
- 0x13b4 (size before relaxing)
- .debug_str 0x0000000000003709 0x42d ./SRC/Peripheral/src/ch32v20x_usart.o
- 0xb80 (size before relaxing)
- .debug_str 0x0000000000003b36 0x108 ./SRC/Debug/debug.o
- 0x9a7 (size before relaxing)
- .debug_str 0x0000000000003c3e 0x314 ./Profile/OTAprofile.o
- 0x92c (size before relaxing)
- .debug_str 0x0000000000003f52 0x69 ./LIB/ble_task_scheduler.o
- 0xd3 (size before relaxing)
- .debug_str 0x0000000000003fbb 0x6d6 ./HAL/MCU.o
- 0x117f (size before relaxing)
- .debug_str 0x0000000000004691 0xe3 ./HAL/RTC.o
- 0x858 (size before relaxing)
- .debug_str 0x0000000000004774 0x52 ./APP/ch32v20x_it.o
- 0x6ef (size before relaxing)
- .debug_str 0x00000000000047c6 0x35c ./APP/led.o
- 0xeca (size before relaxing)
- .debug_str 0x0000000000004b22 0x91e ./APP/peripheral.o
- 0x12e8 (size before relaxing)
- .debug_str 0x0000000000005440 0x91 ./APP/peripheral_main.o
- 0x9aa (size before relaxing)
- .debug_str 0x00000000000054d1 0x4c ./APP/system_ch32v20x.o
- 0x710 (size before relaxing)
- .debug_ranges 0x0000000000000000 0x10b0
- .debug_ranges 0x0000000000000000 0x28 ./Startup/startup_ch32v20x_D8W.o
- .debug_ranges 0x0000000000000028 0x140 ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_ranges 0x0000000000000168 0x50 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_ranges 0x00000000000001b8 0x40 ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_ranges 0x00000000000001f8 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_ranges 0x00000000000002f8 0xa0 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_ranges 0x0000000000000398 0x38 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_ranges 0x00000000000003d0 0x78 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_ranges 0x0000000000000448 0x120 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_ranges 0x0000000000000568 0x78 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_ranges 0x00000000000005e0 0x308 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_ranges 0x00000000000008e8 0x300 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_ranges 0x0000000000000be8 0xe0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_ranges 0x0000000000000cc8 0x40 ./SRC/Debug/debug.o
- .debug_ranges 0x0000000000000d08 0x98 ./Profile/OTAprofile.o
- .debug_ranges 0x0000000000000da0 0x20 ./LIB/ble_task_scheduler.o
- .debug_ranges 0x0000000000000dc0 0x88 ./HAL/MCU.o
- .debug_ranges 0x0000000000000e48 0x20 ./HAL/RTC.o
- .debug_ranges 0x0000000000000e68 0x20 ./APP/ch32v20x_it.o
- .debug_ranges 0x0000000000000e88 0x108 ./APP/led.o
- .debug_ranges 0x0000000000000f90 0xc8 ./APP/peripheral.o
- .debug_ranges 0x0000000000001058 0x20 ./APP/peripheral_main.o
- .debug_ranges 0x0000000000001078 0x38 ./APP/system_ch32v20x.o
- .debug_loc 0x0000000000000000 0x7ea3
- .debug_loc 0x0000000000000000 0xada ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_loc 0x0000000000000ada 0x6e ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_loc 0x0000000000000b48 0x181 ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_loc 0x0000000000000cc9 0xcc2 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_loc 0x000000000000198b 0x707 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_loc 0x0000000000002092 0x68 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_loc 0x00000000000020fa 0x29e ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_loc 0x0000000000002398 0x7ad ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_loc 0x0000000000002b45 0x54f ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_loc 0x0000000000003094 0x1abc ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_loc 0x0000000000004b50 0x15a6 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_loc 0x00000000000060f6 0x752 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_loc 0x0000000000006848 0x1a8 ./SRC/Debug/debug.o
- .debug_loc 0x00000000000069f0 0x59c ./Profile/OTAprofile.o
- .debug_loc 0x0000000000006f8c 0x40c ./HAL/MCU.o
- .debug_loc 0x0000000000007398 0x8b ./HAL/RTC.o
- .debug_loc 0x0000000000007423 0x49a ./APP/led.o
- .debug_loc 0x00000000000078bd 0x524 ./APP/peripheral.o
- .debug_loc 0x0000000000007de1 0xc2 ./APP/system_ch32v20x.o
- .comment 0x0000000000000000 0x33
- .comment 0x0000000000000000 0x33 ./SRC/Peripheral/src/ch32v20x_adc.o
- 0x34 (size before relaxing)
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_exti.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_flash.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_usart.o
- .comment 0x0000000000000033 0x34 ./SRC/Debug/debug.o
- .comment 0x0000000000000033 0x34 ./Profile/OTAprofile.o
- .comment 0x0000000000000033 0x34 ./HAL/MCU.o
- .comment 0x0000000000000033 0x34 ./HAL/RTC.o
- .comment 0x0000000000000033 0x34 ./APP/ch32v20x_it.o
- .comment 0x0000000000000033 0x34 ./APP/led.o
- .comment 0x0000000000000033 0x34 ./APP/peripheral.o
- .comment 0x0000000000000033 0x34 ./APP/peripheral_main.o
- .comment 0x0000000000000033 0x34 ./APP/system_ch32v20x.o
- .debug_frame 0x0000000000000000 0x2c00
- .debug_frame 0x0000000000000000 0x2bc ./SRC/Peripheral/src/ch32v20x_adc.o
- .debug_frame 0x00000000000002bc 0x70 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
- .debug_frame 0x000000000000032c 0x90 ./SRC/Peripheral/src/ch32v20x_exti.o
- .debug_frame 0x00000000000003bc 0x350 ./SRC/Peripheral/src/ch32v20x_flash.o
- .debug_frame 0x000000000000070c 0x178 ./SRC/Peripheral/src/ch32v20x_gpio.o
- .debug_frame 0x0000000000000884 0x70 ./SRC/Peripheral/src/ch32v20x_iwdg.o
- .debug_frame 0x00000000000008f4 0xfc ./SRC/Peripheral/src/ch32v20x_pwr.o
- .debug_frame 0x00000000000009f0 0x250 ./SRC/Peripheral/src/ch32v20x_rcc.o
- .debug_frame 0x0000000000000c40 0x168 ./SRC/Peripheral/src/ch32v20x_rtc.o
- .debug_frame 0x0000000000000da8 0x668 ./SRC/Peripheral/src/ch32v20x_tim.o
- .debug_frame 0x0000000000001410 0x648 ./SRC/Peripheral/src/ch32v20x_tim5.o
- .debug_frame 0x0000000000001a58 0x1f0 ./SRC/Peripheral/src/ch32v20x_usart.o
- .debug_frame 0x0000000000001c48 0xc0 ./SRC/Debug/debug.o
- .debug_frame 0x0000000000001d08 0x8c ./Profile/OTAprofile.o
- .debug_frame 0x0000000000001d94 0x11c ./HAL/MCU.o
- .debug_frame 0x0000000000001eb0 0x60 ./HAL/RTC.o
- .debug_frame 0x0000000000001f10 0x40 ./APP/ch32v20x_it.o
- .debug_frame 0x0000000000001f50 0xe8 ./APP/led.o
- .debug_frame 0x0000000000002038 0x218 ./APP/peripheral.o
- .debug_frame 0x0000000000002250 0x60 ./APP/peripheral_main.o
- .debug_frame 0x00000000000022b0 0x3c ./APP/system_ch32v20x.o
- .debug_frame 0x00000000000022ec 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-printf.o)
- .debug_frame 0x0000000000002340 0x54 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-puts.o)
- .debug_frame 0x0000000000002394 0x50 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wbuf.o)
- .debug_frame 0x00000000000023e4 0x3c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-wsetup.o)
- .debug_frame 0x0000000000002420 0x7c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fflush.o)
- .debug_frame 0x000000000000249c 0x148 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-findfp.o)
- .debug_frame 0x00000000000025e4 0x88 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fwalk.o)
- .debug_frame 0x000000000000266c 0x64 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-makebuf.o)
- .debug_frame 0x00000000000026d0 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-freer.o)
- .debug_frame 0x0000000000002710 0x40 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-mallocr.o)
- .debug_frame 0x0000000000002750 0xd0 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf.o)
- .debug_frame 0x0000000000002820 0x8c d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-nano-vfprintf_i.o)
- .debug_frame 0x00000000000028ac 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-sbrkr.o)
- .debug_frame 0x00000000000028dc 0xa4 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-stdio.o)
- .debug_frame 0x0000000000002980 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-writer.o)
- .debug_frame 0x00000000000029b0 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-closer.o)
- .debug_frame 0x00000000000029e0 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-fstatr.o)
- .debug_frame 0x0000000000002a10 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-isattyr.o)
- .debug_frame 0x0000000000002a40 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-lseekr.o)
- .debug_frame 0x0000000000002a70 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-memchr.o)
- .debug_frame 0x0000000000002a90 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-mlock.o)
- .debug_frame 0x0000000000002ac0 0x30 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-readr.o)
- .debug_frame 0x0000000000002af0 0x70 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libg_nano.a(lib_a-reent.o)
- .debug_frame 0x0000000000002b60 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
- .debug_frame 0x0000000000002b80 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
- .debug_frame 0x0000000000002ba0 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
- .debug_frame 0x0000000000002bc0 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
- .debug_frame 0x0000000000002be0 0x20 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
- .stab 0x0000000000000000 0x84
- .stab 0x0000000000000000 0x24 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
- .stab 0x0000000000000024 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(fstat.o)
- 0x24 (size before relaxing)
- .stab 0x000000000000003c 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(isatty.o)
- 0x24 (size before relaxing)
- .stab 0x0000000000000054 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(lseek.o)
- 0x24 (size before relaxing)
- .stab 0x000000000000006c 0x18 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(read.o)
- 0x24 (size before relaxing)
- .stabstr 0x0000000000000000 0x117
- .stabstr 0x0000000000000000 0x117 d:/mounriver/mounriver_studio2/resources/app/resources/win32/components/wch/toolchain/risc-v embedded gcc/bin/../lib/gcc/riscv-none-embed/8.2.0/../../../../riscv-none-embed/lib/rv32imacxw/ilp32\libnosys.a(close.o)
|