OnlyUpdateApp_IAP.map 200 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562
  1. Archive member included to satisfy reference by file (symbol)
  2. d:/mounriver/mounriver_studio2/resources/app/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)
  3. ./APP/peripheral.o (memcpy)
  4. d:/mounriver/mounriver_studio2/resources/app/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)
  5. ./HAL/MCU.o (memset)
  6. d:/mounriver/mounriver_studio2/resources/app/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)
  7. ./HAL/MCU.o (printf)
  8. d:/mounriver/mounriver_studio2/resources/app/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)
  9. ./HAL/MCU.o (puts)
  10. d:/mounriver/mounriver_studio2/resources/app/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)
  11. d:/mounriver/mounriver_studio2/resources/app/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)
  12. d:/mounriver/mounriver_studio2/resources/app/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)
  13. d:/mounriver/mounriver_studio2/resources/app/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)
  14. d:/mounriver/mounriver_studio2/resources/app/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)
  15. d:/mounriver/mounriver_studio2/resources/app/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)
  16. d:/mounriver/mounriver_studio2/resources/app/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)
  17. d:/mounriver/mounriver_studio2/resources/app/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)
  18. d:/mounriver/mounriver_studio2/resources/app/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)
  19. d:/mounriver/mounriver_studio2/resources/app/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)
  20. d:/mounriver/mounriver_studio2/resources/app/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)
  21. d:/mounriver/mounriver_studio2/resources/app/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)
  22. d:/mounriver/mounriver_studio2/resources/app/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)
  23. d:/mounriver/mounriver_studio2/resources/app/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)
  24. d:/mounriver/mounriver_studio2/resources/app/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)
  25. d:/mounriver/mounriver_studio2/resources/app/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)
  26. d:/mounriver/mounriver_studio2/resources/app/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)
  27. d:/mounriver/mounriver_studio2/resources/app/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)
  28. d:/mounriver/mounriver_studio2/resources/app/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)
  29. d:/mounriver/mounriver_studio2/resources/app/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)
  30. d:/mounriver/mounriver_studio2/resources/app/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)
  31. d:/mounriver/mounriver_studio2/resources/app/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)
  32. d:/mounriver/mounriver_studio2/resources/app/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)
  33. d:/mounriver/mounriver_studio2/resources/app/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)
  34. d:/mounriver/mounriver_studio2/resources/app/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)
  35. d:/mounriver/mounriver_studio2/resources/app/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)
  36. d:/mounriver/mounriver_studio2/resources/app/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)
  37. d:/mounriver/mounriver_studio2/resources/app/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)
  38. d:/mounriver/mounriver_studio2/resources/app/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)
  39. d:/mounriver/mounriver_studio2/resources/app/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)
  40. d:/mounriver/mounriver_studio2/resources/app/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)
  41. d:/mounriver/mounriver_studio2/resources/app/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)
  42. d:/mounriver/mounriver_studio2/resources/app/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)
  43. d:/mounriver/mounriver_studio2/resources/app/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)
  44. d:/mounriver/mounriver_studio2/resources/app/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)
  45. d:/mounriver/mounriver_studio2/resources/app/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)
  46. d:/mounriver/mounriver_studio2/resources/app/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)
  47. d:/mounriver/mounriver_studio2/resources/app/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)
  48. d:/mounriver/mounriver_studio2/resources/app/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)
  49. d:/mounriver/mounriver_studio2/resources/app/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)
  50. d:/mounriver/mounriver_studio2/resources/app/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)
  51. d:/mounriver/mounriver_studio2/resources/app/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)
  52. d:/mounriver/mounriver_studio2/resources/app/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)
  53. d:/mounriver/mounriver_studio2/resources/app/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)
  54. d:/mounriver/mounriver_studio2/resources/app/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)
  55. d:/mounriver/mounriver_studio2/resources/app/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)
  56. d:/mounriver/mounriver_studio2/resources/app/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)
  57. d:/mounriver/mounriver_studio2/resources/app/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)
  58. d:/mounriver/mounriver_studio2/resources/app/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)
  59. d:/mounriver/mounriver_studio2/resources/app/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)
  60. d:/mounriver/mounriver_studio2/resources/app/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)
  61. d:/mounriver/mounriver_studio2/resources/app/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)
  62. d:/mounriver/mounriver_studio2/resources/app/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)
  63. d:/mounriver/mounriver_studio2/resources/app/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)
  64. d:/mounriver/mounriver_studio2/resources/app/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)
  65. d:/mounriver/mounriver_studio2/resources/app/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)
  66. d:/mounriver/mounriver_studio2/resources/app/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)
  67. d:/mounriver/mounriver_studio2/resources/app/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)
  68. d:/mounriver/mounriver_studio2/resources/app/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)
  69. d:/mounriver/mounriver_studio2/resources/app/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)
  70. d:/mounriver/mounriver_studio2/resources/app/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)
  71. d:/mounriver/mounriver_studio2/resources/app/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)
  72. Allocating common symbols
  73. Common symbol size file
  74. 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)
  75. Discarded input sections
  76. .text 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  77. .data 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  78. .bss 0x0000000000000000 0x0 ./Startup/startup_ch32v20x_D8W.o
  79. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  80. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  81. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_adc.o
  82. .text.ADC_StructInit
  83. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  84. .text.ADC_DMACmd
  85. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  86. .text.ADC_ITConfig
  87. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_adc.o
  88. .text.ADC_ResetCalibration
  89. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  90. .text.ADC_GetResetCalibrationStatus
  91. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  92. .text.ADC_StartCalibration
  93. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  94. .text.ADC_GetCalibrationStatus
  95. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  96. .text.ADC_GetSoftwareStartConvStatus
  97. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  98. .text.ADC_DiscModeChannelCountConfig
  99. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  100. .text.ADC_DiscModeCmd
  101. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_adc.o
  102. .text.ADC_ExternalTrigConvCmd
  103. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  104. .text.ADC_GetDualModeConversionValue
  105. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  106. .text.ADC_AutoInjectedConvCmd
  107. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  108. .text.ADC_InjectedDiscModeCmd
  109. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  110. .text.ADC_ExternalTrigInjectedConvConfig
  111. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_adc.o
  112. .text.ADC_ExternalTrigInjectedConvCmd
  113. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  114. .text.ADC_SoftwareStartInjectedConvCmd
  115. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  116. .text.ADC_GetSoftwareStartInjectedConvCmdStatus
  117. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  118. .text.ADC_InjectedChannelConfig
  119. 0x0000000000000000 0x7a ./SRC/Peripheral/src/ch32v20x_adc.o
  120. .text.ADC_InjectedSequencerLengthConfig
  121. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  122. .text.ADC_SetInjectedOffset
  123. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_adc.o
  124. .text.ADC_GetInjectedConversionValue
  125. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  126. .text.ADC_AnalogWatchdogCmd
  127. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_adc.o
  128. .text.ADC_AnalogWatchdogThresholdsConfig
  129. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_adc.o
  130. .text.ADC_AnalogWatchdogSingleChannelConfig
  131. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  132. .text.ADC_ClearFlag
  133. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  134. .text.ADC_GetITStatus
  135. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_adc.o
  136. .text.ADC_ClearITPendingBit
  137. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  138. .text.TempSensor_Volt_To_Temper
  139. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_adc.o
  140. .text.Get_CalibrationValue
  141. 0x0000000000000000 0x142 ./SRC/Peripheral/src/ch32v20x_adc.o
  142. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  143. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  144. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_bkp.o
  145. .text.BKP_DeInit
  146. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  147. .text.BKP_TamperPinLevelConfig
  148. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  149. .text.BKP_TamperPinCmd
  150. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  151. .text.BKP_ITConfig
  152. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_bkp.o
  153. .text.BKP_RTCOutputConfig
  154. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  155. .text.BKP_SetRTCCalibrationValue
  156. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_bkp.o
  157. .text.BKP_WriteBackupRegister
  158. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  159. .text.BKP_ReadBackupRegister
  160. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_bkp.o
  161. .text.BKP_GetFlagStatus
  162. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  163. .text.BKP_ClearFlag
  164. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  165. .text.BKP_GetITStatus
  166. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_bkp.o
  167. .text.BKP_ClearITPendingBit
  168. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_bkp.o
  169. .debug_info 0x0000000000000000 0x109c ./SRC/Peripheral/src/ch32v20x_bkp.o
  170. .debug_abbrev 0x0000000000000000 0x2cf ./SRC/Peripheral/src/ch32v20x_bkp.o
  171. .debug_loc 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_bkp.o
  172. .debug_aranges
  173. 0x0000000000000000 0x78 ./SRC/Peripheral/src/ch32v20x_bkp.o
  174. .debug_ranges 0x0000000000000000 0x68 ./SRC/Peripheral/src/ch32v20x_bkp.o
  175. .debug_line 0x0000000000000000 0x7ea ./SRC/Peripheral/src/ch32v20x_bkp.o
  176. .debug_str 0x0000000000000000 0xb3b ./SRC/Peripheral/src/ch32v20x_bkp.o
  177. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_bkp.o
  178. .debug_frame 0x0000000000000000 0xec ./SRC/Peripheral/src/ch32v20x_bkp.o
  179. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  180. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  181. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_can.o
  182. .text.CAN_DeInit
  183. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_can.o
  184. .text.CAN_Init
  185. 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_can.o
  186. .text.CAN_FilterInit
  187. 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_can.o
  188. .text.CAN_StructInit
  189. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_can.o
  190. .text.CAN_SlaveStartBank
  191. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_can.o
  192. .text.CAN_DBGFreeze
  193. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_can.o
  194. .text.CAN_TTComModeCmd
  195. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_can.o
  196. .text.CAN_Transmit
  197. 0x0000000000000000 0xbc ./SRC/Peripheral/src/ch32v20x_can.o
  198. .text.CAN_TransmitStatus
  199. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_can.o
  200. .text.CAN_CancelTransmit
  201. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_can.o
  202. .text.CAN_Receive
  203. 0x0000000000000000 0x8c ./SRC/Peripheral/src/ch32v20x_can.o
  204. .text.CAN_FIFORelease
  205. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  206. .text.CAN_MessagePending
  207. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  208. .text.CAN_OperatingModeRequest
  209. 0x0000000000000000 0x72 ./SRC/Peripheral/src/ch32v20x_can.o
  210. .text.CAN_Sleep
  211. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_can.o
  212. .text.CAN_WakeUp
  213. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_can.o
  214. .text.CAN_GetLastErrorCode
  215. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_can.o
  216. .text.CAN_GetReceiveErrorCounter
  217. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_can.o
  218. .text.CAN_GetLSBTransmitErrorCounter
  219. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_can.o
  220. .text.CAN_ITConfig
  221. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_can.o
  222. .text.CAN_GetFlagStatus
  223. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_can.o
  224. .text.CAN_ClearFlag
  225. 0x0000000000000000 0x40 ./SRC/Peripheral/src/ch32v20x_can.o
  226. .text.CAN_GetITStatus
  227. 0x0000000000000000 0xd0 ./SRC/Peripheral/src/ch32v20x_can.o
  228. .text.CAN_ClearITPendingBit
  229. 0x0000000000000000 0x94 ./SRC/Peripheral/src/ch32v20x_can.o
  230. .debug_info 0x0000000000000000 0x1806 ./SRC/Peripheral/src/ch32v20x_can.o
  231. .debug_abbrev 0x0000000000000000 0x3ee ./SRC/Peripheral/src/ch32v20x_can.o
  232. .debug_loc 0x0000000000000000 0x999 ./SRC/Peripheral/src/ch32v20x_can.o
  233. .debug_aranges
  234. 0x0000000000000000 0xd8 ./SRC/Peripheral/src/ch32v20x_can.o
  235. .debug_ranges 0x0000000000000000 0xf8 ./SRC/Peripheral/src/ch32v20x_can.o
  236. .debug_line 0x0000000000000000 0x1b80 ./SRC/Peripheral/src/ch32v20x_can.o
  237. .debug_str 0x0000000000000000 0xc51 ./SRC/Peripheral/src/ch32v20x_can.o
  238. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_can.o
  239. .debug_frame 0x0000000000000000 0x1a0 ./SRC/Peripheral/src/ch32v20x_can.o
  240. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  241. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  242. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_crc.o
  243. .text.CRC_ResetDR
  244. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  245. .text.CRC_CalcCRC
  246. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_crc.o
  247. .text.CRC_CalcBlockCRC
  248. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_crc.o
  249. .text.CRC_GetCRC
  250. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  251. .text.CRC_SetIDRegister
  252. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  253. .text.CRC_GetIDRegister
  254. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_crc.o
  255. .debug_info 0x0000000000000000 0xab3 ./SRC/Peripheral/src/ch32v20x_crc.o
  256. .debug_abbrev 0x0000000000000000 0x25f ./SRC/Peripheral/src/ch32v20x_crc.o
  257. .debug_loc 0x0000000000000000 0x75 ./SRC/Peripheral/src/ch32v20x_crc.o
  258. .debug_aranges
  259. 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_crc.o
  260. .debug_ranges 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_crc.o
  261. .debug_line 0x0000000000000000 0x4e2 ./SRC/Peripheral/src/ch32v20x_crc.o
  262. .debug_str 0x0000000000000000 0x711 ./SRC/Peripheral/src/ch32v20x_crc.o
  263. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_crc.o
  264. .debug_frame 0x0000000000000000 0x70 ./SRC/Peripheral/src/ch32v20x_crc.o
  265. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  266. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  267. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  268. .text.DBGMCU_GetREVID
  269. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  270. .text.DBGMCU_GetDEVID
  271. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  272. .text.__get_DEBUG_CR
  273. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  274. .text.__set_DEBUG_CR
  275. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  276. .text.DBGMCU_Config
  277. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  278. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  279. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  280. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_dma.o
  281. .text.DMA_DeInit
  282. 0x0000000000000000 0x9c ./SRC/Peripheral/src/ch32v20x_dma.o
  283. .text.DMA_Init
  284. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_dma.o
  285. .text.DMA_StructInit
  286. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_dma.o
  287. .text.DMA_Cmd 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_dma.o
  288. .text.DMA_ITConfig
  289. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_dma.o
  290. .text.DMA_SetCurrDataCounter
  291. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_dma.o
  292. .text.DMA_GetCurrDataCounter
  293. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  294. .text.DMA_GetFlagStatus
  295. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_dma.o
  296. .text.DMA_ClearFlag
  297. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  298. .text.DMA_GetITStatus
  299. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  300. .text.DMA_ClearITPendingBit
  301. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_dma.o
  302. .debug_info 0x0000000000000000 0xd21 ./SRC/Peripheral/src/ch32v20x_dma.o
  303. .debug_abbrev 0x0000000000000000 0x302 ./SRC/Peripheral/src/ch32v20x_dma.o
  304. .debug_loc 0x0000000000000000 0x155 ./SRC/Peripheral/src/ch32v20x_dma.o
  305. .debug_aranges
  306. 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_dma.o
  307. .debug_ranges 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_dma.o
  308. .debug_line 0x0000000000000000 0x8fd ./SRC/Peripheral/src/ch32v20x_dma.o
  309. .debug_str 0x0000000000000000 0x889 ./SRC/Peripheral/src/ch32v20x_dma.o
  310. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_dma.o
  311. .debug_frame 0x0000000000000000 0xc0 ./SRC/Peripheral/src/ch32v20x_dma.o
  312. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  313. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  314. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_exti.o
  315. .text.EXTI_DeInit
  316. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_exti.o
  317. .text.EXTI_Init
  318. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_exti.o
  319. .text.EXTI_StructInit
  320. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  321. .text.EXTI_GenerateSWInterrupt
  322. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_exti.o
  323. .text.EXTI_GetFlagStatus
  324. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_exti.o
  325. .text.EXTI_ClearFlag
  326. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  327. .text.EXTI_GetITStatus
  328. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_exti.o
  329. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  330. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  331. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_flash.o
  332. .text.ROM_ERASE
  333. 0x0000000000000000 0xa0 ./SRC/Peripheral/src/ch32v20x_flash.o
  334. .text.FLASH_UnlockBank1
  335. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  336. .text.FLASH_LockBank1
  337. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  338. .text.FLASH_GetUserOptionByte
  339. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_flash.o
  340. .text.FLASH_GetWriteProtectionOptionByte
  341. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  342. .text.FLASH_GetReadOutProtectionStatus
  343. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_flash.o
  344. .text.FLASH_ITConfig
  345. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  346. .text.FLASH_GetFlagStatus
  347. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  348. .text.FLASH_ClearFlag
  349. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  350. .text.FLASH_GetStatus
  351. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  352. .text.FLASH_EraseAllPages
  353. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  354. .text.FLASH_EraseAllBank1Pages
  355. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  356. .text.FLASH_EraseOptionBytes
  357. 0x0000000000000000 0xe8 ./SRC/Peripheral/src/ch32v20x_flash.o
  358. .text.FLASH_ProgramWord
  359. 0x0000000000000000 0x6e ./SRC/Peripheral/src/ch32v20x_flash.o
  360. .text.FLASH_ProgramHalfWord
  361. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_flash.o
  362. .text.FLASH_ProgramOptionByteData
  363. 0x0000000000000000 0x114 ./SRC/Peripheral/src/ch32v20x_flash.o
  364. .text.FLASH_EnableWriteProtection
  365. 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  366. .text.FLASH_ReadOutProtection
  367. 0x0000000000000000 0xee ./SRC/Peripheral/src/ch32v20x_flash.o
  368. .text.FLASH_UserOptionByteConfig
  369. 0x0000000000000000 0x10a ./SRC/Peripheral/src/ch32v20x_flash.o
  370. .text.FLASH_WaitForLastBank1Operation
  371. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_flash.o
  372. .text.FLASH_EraseBlock_32K_Fast
  373. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_flash.o
  374. .text.FLASH_Access_Clock_Cfg
  375. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  376. .text.FLASH_Enhance_Mode
  377. 0x0000000000000000 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  378. .text.FLASH_ROM_ERASE
  379. 0x0000000000000000 0x1ba ./SRC/Peripheral/src/ch32v20x_flash.o
  380. .text.FLASH_ROM_WRITE
  381. 0x0000000000000000 0xce ./SRC/Peripheral/src/ch32v20x_flash.o
  382. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  383. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  384. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  385. .text.GPIO_DeInit
  386. 0x0000000000000000 0xa2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  387. .text.GPIO_AFIODeInit
  388. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_gpio.o
  389. .text.GPIO_StructInit
  390. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_gpio.o
  391. .text.GPIO_ReadInputDataBit
  392. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  393. .text.GPIO_ReadInputData
  394. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  395. .text.GPIO_ReadOutputDataBit
  396. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  397. .text.GPIO_ReadOutputData
  398. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_gpio.o
  399. .text.GPIO_WriteBit
  400. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_gpio.o
  401. .text.GPIO_Write
  402. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  403. .text.GPIO_PinLockConfig
  404. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_gpio.o
  405. .text.GPIO_EventOutputConfig
  406. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_gpio.o
  407. .text.GPIO_EventOutputCmd
  408. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_gpio.o
  409. .text.GPIO_PinRemapConfig
  410. 0x0000000000000000 0xf2 ./SRC/Peripheral/src/ch32v20x_gpio.o
  411. .text.GPIO_EXTILineConfig
  412. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_gpio.o
  413. .text.GPIO_ETH_MediaInterfaceConfig
  414. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_gpio.o
  415. .text.GPIO_IPD_Unused
  416. 0x0000000000000000 0x10e ./SRC/Peripheral/src/ch32v20x_gpio.o
  417. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  418. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  419. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_i2c.o
  420. .text.I2C_DeInit
  421. 0x0000000000000000 0x44 ./SRC/Peripheral/src/ch32v20x_i2c.o
  422. .text.I2C_Init
  423. 0x0000000000000000 0x104 ./SRC/Peripheral/src/ch32v20x_i2c.o
  424. .text.I2C_StructInit
  425. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  426. .text.I2C_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  427. .text.I2C_DMACmd
  428. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_i2c.o
  429. .text.I2C_DMALastTransferCmd
  430. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  431. .text.I2C_GenerateSTART
  432. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  433. .text.I2C_GenerateSTOP
  434. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  435. .text.I2C_AcknowledgeConfig
  436. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  437. .text.I2C_OwnAddress2Config
  438. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  439. .text.I2C_DualAddressCmd
  440. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  441. .text.I2C_GeneralCallCmd
  442. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  443. .text.I2C_ITConfig
  444. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  445. .text.I2C_SendData
  446. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_i2c.o
  447. .text.I2C_ReceiveData
  448. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  449. .text.I2C_Send7bitAddress
  450. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  451. .text.I2C_ReadRegister
  452. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_i2c.o
  453. .text.I2C_SoftwareResetCmd
  454. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_i2c.o
  455. .text.I2C_NACKPositionConfig
  456. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_i2c.o
  457. .text.I2C_SMBusAlertConfig
  458. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  459. .text.I2C_TransmitPEC
  460. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  461. .text.I2C_PECPositionConfig
  462. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  463. .text.I2C_CalculatePEC
  464. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  465. .text.I2C_GetPEC
  466. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_i2c.o
  467. .text.I2C_ARPCmd
  468. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_i2c.o
  469. .text.I2C_StretchClockCmd
  470. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  471. .text.I2C_FastModeDutyCycleConfig
  472. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_i2c.o
  473. .text.I2C_CheckEvent
  474. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_i2c.o
  475. .text.I2C_GetLastEvent
  476. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_i2c.o
  477. .text.I2C_GetFlagStatus
  478. 0x0000000000000000 0x32 ./SRC/Peripheral/src/ch32v20x_i2c.o
  479. .text.I2C_ClearFlag
  480. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  481. .text.I2C_GetITStatus
  482. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_i2c.o
  483. .text.I2C_ClearITPendingBit
  484. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_i2c.o
  485. .debug_info 0x0000000000000000 0x147f ./SRC/Peripheral/src/ch32v20x_i2c.o
  486. .debug_abbrev 0x0000000000000000 0x3aa ./SRC/Peripheral/src/ch32v20x_i2c.o
  487. .debug_loc 0x0000000000000000 0x6a8 ./SRC/Peripheral/src/ch32v20x_i2c.o
  488. .debug_aranges
  489. 0x0000000000000000 0x110 ./SRC/Peripheral/src/ch32v20x_i2c.o
  490. .debug_ranges 0x0000000000000000 0x100 ./SRC/Peripheral/src/ch32v20x_i2c.o
  491. .debug_line 0x0000000000000000 0x12cb ./SRC/Peripheral/src/ch32v20x_i2c.o
  492. .debug_str 0x0000000000000000 0xb76 ./SRC/Peripheral/src/ch32v20x_i2c.o
  493. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_i2c.o
  494. .debug_frame 0x0000000000000000 0x25c ./SRC/Peripheral/src/ch32v20x_i2c.o
  495. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  496. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  497. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  498. .text.IWDG_GetFlagStatus
  499. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  500. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  501. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  502. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_misc.o
  503. .text.NVIC_PriorityGroupConfig
  504. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_misc.o
  505. .text.NVIC_Init
  506. 0x0000000000000000 0x5a ./SRC/Peripheral/src/ch32v20x_misc.o
  507. .sbss.NVIC_Priority_Group
  508. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_misc.o
  509. .debug_info 0x0000000000000000 0xe96 ./SRC/Peripheral/src/ch32v20x_misc.o
  510. .debug_abbrev 0x0000000000000000 0x2ea ./SRC/Peripheral/src/ch32v20x_misc.o
  511. .debug_loc 0x0000000000000000 0x2d ./SRC/Peripheral/src/ch32v20x_misc.o
  512. .debug_aranges
  513. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_misc.o
  514. .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_misc.o
  515. .debug_line 0x0000000000000000 0x523 ./SRC/Peripheral/src/ch32v20x_misc.o
  516. .debug_str 0x0000000000000000 0xb65 ./SRC/Peripheral/src/ch32v20x_misc.o
  517. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_misc.o
  518. .debug_frame 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_misc.o
  519. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  520. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  521. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_opa.o
  522. .text.OPA_DeInit
  523. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_opa.o
  524. .text.OPA_Init
  525. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_opa.o
  526. .text.OPA_StructInit
  527. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_opa.o
  528. .text.OPA_Cmd 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_opa.o
  529. .debug_info 0x0000000000000000 0xb28 ./SRC/Peripheral/src/ch32v20x_opa.o
  530. .debug_abbrev 0x0000000000000000 0x252 ./SRC/Peripheral/src/ch32v20x_opa.o
  531. .debug_loc 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_opa.o
  532. .debug_aranges
  533. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_opa.o
  534. .debug_ranges 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_opa.o
  535. .debug_line 0x0000000000000000 0x5a4 ./SRC/Peripheral/src/ch32v20x_opa.o
  536. .debug_str 0x0000000000000000 0x751 ./SRC/Peripheral/src/ch32v20x_opa.o
  537. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_opa.o
  538. .debug_frame 0x0000000000000000 0x50 ./SRC/Peripheral/src/ch32v20x_opa.o
  539. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  540. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  541. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_pwr.o
  542. .text.PWR_DeInit
  543. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_pwr.o
  544. .text.PWR_PVDCmd
  545. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_pwr.o
  546. .text.PWR_PVDLevelConfig
  547. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_pwr.o
  548. .text.PWR_WakeUpPinCmd
  549. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  550. .text.PWR_EnterSTOPMode
  551. 0x0000000000000000 0x90 ./SRC/Peripheral/src/ch32v20x_pwr.o
  552. .text.PWR_EnterSTANDBYMode
  553. 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  554. .text.PWR_GetFlagStatus
  555. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  556. .text.PWR_ClearFlag
  557. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_pwr.o
  558. .text.PWR_EnterSTANDBYMode_RAM
  559. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  560. .text.PWR_EnterSTANDBYMode_RAM_LV
  561. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  562. .text.PWR_EnterSTANDBYMode_RAM_VBAT_EN
  563. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  564. .text.PWR_EnterSTANDBYMode_RAM_LV_VBAT_EN
  565. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_pwr.o
  566. .text.PWR_EnterSTOPMode_RAM_LV
  567. 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_pwr.o
  568. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  569. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  570. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rcc.o
  571. .text.RCC_DeInit
  572. 0x0000000000000000 0x42 ./SRC/Peripheral/src/ch32v20x_rcc.o
  573. .text.RCC_HSEConfig
  574. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  575. .text.RCC_AdjustHSICalibrationValue
  576. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  577. .text.RCC_HSICmd
  578. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  579. .text.RCC_PLLConfig
  580. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  581. .text.RCC_PLLCmd
  582. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  583. .text.RCC_SYSCLKConfig
  584. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  585. .text.RCC_GetSYSCLKSource
  586. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_rcc.o
  587. .text.RCC_HCLKConfig
  588. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  589. .text.RCC_PCLK1Config
  590. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  591. .text.RCC_PCLK2Config
  592. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  593. .text.RCC_ITConfig
  594. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_rcc.o
  595. .text.RCC_USBCLKConfig
  596. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  597. .text.RCC_LSICmd
  598. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_rcc.o
  599. .text.RCC_APB1PeriphResetCmd
  600. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  601. .text.RCC_BackupResetCmd
  602. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  603. .text.RCC_ClockSecuritySystemCmd
  604. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rcc.o
  605. .text.RCC_MCOConfig
  606. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  607. .text.RCC_WaitForHSEStartUp
  608. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_rcc.o
  609. .text.RCC_ClearFlag
  610. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  611. .text.RCC_GetITStatus
  612. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_rcc.o
  613. .text.RCC_ClearITPendingBit
  614. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  615. .text.RCC_ADCCLKADJcmd
  616. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_rcc.o
  617. .text.RCC_ETHDIVConfig
  618. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rcc.o
  619. .text.RCC_USB5PRE_JUDGE
  620. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  621. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  622. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  623. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_rtc.o
  624. .text.RTC_ITConfig
  625. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_rtc.o
  626. .text.RTC_SetAlarm
  627. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_rtc.o
  628. .text.RTC_GetDivider
  629. 0x0000000000000000 0x60 ./SRC/Peripheral/src/ch32v20x_rtc.o
  630. .text.RTC_WaitForSynchro
  631. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
  632. .text.RTC_GetFlagStatus
  633. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  634. .text.RTC_GetITStatus
  635. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_rtc.o
  636. .text.Calibration_LSI
  637. 0x0000000000000000 0x4f4 ./SRC/Peripheral/src/ch32v20x_rtc.o
  638. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  639. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  640. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_spi.o
  641. .text.SPI_I2S_DeInit
  642. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_spi.o
  643. .text.SPI_Init
  644. 0x0000000000000000 0x3e ./SRC/Peripheral/src/ch32v20x_spi.o
  645. .text.I2S_Init
  646. 0x0000000000000000 0xc8 ./SRC/Peripheral/src/ch32v20x_spi.o
  647. .text.SPI_StructInit
  648. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_spi.o
  649. .text.I2S_StructInit
  650. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  651. .text.SPI_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  652. .text.I2S_Cmd 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  653. .text.SPI_I2S_ITConfig
  654. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_spi.o
  655. .text.SPI_I2S_DMACmd
  656. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  657. .text.SPI_I2S_SendData
  658. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  659. .text.SPI_I2S_ReceiveData
  660. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  661. .text.SPI_NSSInternalSoftwareConfig
  662. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_spi.o
  663. .text.SPI_SSOutputCmd
  664. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_spi.o
  665. .text.SPI_DataSizeConfig
  666. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  667. .text.SPI_TransmitCRC
  668. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  669. .text.SPI_CalculateCRC
  670. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_spi.o
  671. .text.SPI_GetCRC
  672. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_spi.o
  673. .text.SPI_GetCRCPolynomial
  674. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_spi.o
  675. .text.SPI_BiDirectionalLineConfig
  676. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_spi.o
  677. .text.SPI_I2S_GetFlagStatus
  678. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_spi.o
  679. .text.SPI_I2S_ClearFlag
  680. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_spi.o
  681. .text.SPI_I2S_GetITStatus
  682. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_spi.o
  683. .text.SPI_I2S_ClearITPendingBit
  684. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_spi.o
  685. .debug_info 0x0000000000000000 0x12c1 ./SRC/Peripheral/src/ch32v20x_spi.o
  686. .debug_abbrev 0x0000000000000000 0x325 ./SRC/Peripheral/src/ch32v20x_spi.o
  687. .debug_loc 0x0000000000000000 0x5c9 ./SRC/Peripheral/src/ch32v20x_spi.o
  688. .debug_aranges
  689. 0x0000000000000000 0xd0 ./SRC/Peripheral/src/ch32v20x_spi.o
  690. .debug_ranges 0x0000000000000000 0xc0 ./SRC/Peripheral/src/ch32v20x_spi.o
  691. .debug_line 0x0000000000000000 0xee7 ./SRC/Peripheral/src/ch32v20x_spi.o
  692. .debug_str 0x0000000000000000 0xb25 ./SRC/Peripheral/src/ch32v20x_spi.o
  693. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_spi.o
  694. .debug_frame 0x0000000000000000 0x1b8 ./SRC/Peripheral/src/ch32v20x_spi.o
  695. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  696. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  697. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim.o
  698. .text.TI1_Config
  699. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  700. .text.TI2_Config
  701. 0x0000000000000000 0x82 ./SRC/Peripheral/src/ch32v20x_tim.o
  702. .text.TIM_DeInit
  703. 0x0000000000000000 0xb6 ./SRC/Peripheral/src/ch32v20x_tim.o
  704. .text.TIM_TimeBaseInit
  705. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  706. .text.TIM_OC1Init
  707. 0x0000000000000000 0x6a ./SRC/Peripheral/src/ch32v20x_tim.o
  708. .text.TIM_OC2Init
  709. 0x0000000000000000 0x96 ./SRC/Peripheral/src/ch32v20x_tim.o
  710. .text.TIM_OC3Init
  711. 0x0000000000000000 0x94 ./SRC/Peripheral/src/ch32v20x_tim.o
  712. .text.TIM_OC4Init
  713. 0x0000000000000000 0x6c ./SRC/Peripheral/src/ch32v20x_tim.o
  714. .text.TIM_BDTRConfig
  715. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  716. .text.TIM_TimeBaseStructInit
  717. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  718. .text.TIM_OCStructInit
  719. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim.o
  720. .text.TIM_ICStructInit
  721. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  722. .text.TIM_BDTRStructInit
  723. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim.o
  724. .text.TIM_Cmd 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  725. .text.TIM_CtrlPWMOutputs
  726. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  727. .text.TIM_ITConfig
  728. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  729. .text.TIM_GenerateEvent
  730. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  731. .text.TIM_DMAConfig
  732. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  733. .text.TIM_DMACmd
  734. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim.o
  735. .text.TIM_InternalClockConfig
  736. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  737. .text.TIM_ITRxExternalClockConfig
  738. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  739. .text.TIM_TIxExternalClockConfig
  740. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim.o
  741. .text.TIM_ETRConfig
  742. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  743. .text.TIM_ETRClockMode1Config
  744. 0x0000000000000000 0x28 ./SRC/Peripheral/src/ch32v20x_tim.o
  745. .text.TIM_ETRClockMode2Config
  746. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  747. .text.TIM_PrescalerConfig
  748. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  749. .text.TIM_CounterModeConfig
  750. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  751. .text.TIM_SelectInputTrigger
  752. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  753. .text.TIM_EncoderInterfaceConfig
  754. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_tim.o
  755. .text.TIM_ForcedOC1Config
  756. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  757. .text.TIM_ForcedOC2Config
  758. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  759. .text.TIM_ForcedOC3Config
  760. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  761. .text.TIM_ForcedOC4Config
  762. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  763. .text.TIM_ARRPreloadConfig
  764. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  765. .text.TIM_SelectCOM
  766. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  767. .text.TIM_SelectCCDMA
  768. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  769. .text.TIM_CCPreloadControl
  770. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  771. .text.TIM_OC1PreloadConfig
  772. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  773. .text.TIM_OC2PreloadConfig
  774. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  775. .text.TIM_OC3PreloadConfig
  776. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  777. .text.TIM_OC4PreloadConfig
  778. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  779. .text.TIM_OC1FastConfig
  780. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  781. .text.TIM_OC2FastConfig
  782. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  783. .text.TIM_OC3FastConfig
  784. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  785. .text.TIM_OC4FastConfig
  786. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  787. .text.TIM_ClearOC1Ref
  788. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  789. .text.TIM_ClearOC2Ref
  790. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  791. .text.TIM_ClearOC3Ref
  792. 0x0000000000000000 0x10 ./SRC/Peripheral/src/ch32v20x_tim.o
  793. .text.TIM_ClearOC4Ref
  794. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim.o
  795. .text.TIM_OC1PolarityConfig
  796. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  797. .text.TIM_OC1NPolarityConfig
  798. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim.o
  799. .text.TIM_OC2PolarityConfig
  800. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  801. .text.TIM_OC2NPolarityConfig
  802. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  803. .text.TIM_OC3PolarityConfig
  804. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  805. .text.TIM_OC3NPolarityConfig
  806. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  807. .text.TIM_OC4PolarityConfig
  808. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim.o
  809. .text.TIM_CCxCmd
  810. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  811. .text.TIM_CCxNCmd
  812. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim.o
  813. .text.TIM_SelectOCxM
  814. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim.o
  815. .text.TIM_UpdateDisableConfig
  816. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  817. .text.TIM_UpdateRequestConfig
  818. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  819. .text.TIM_SelectHallSensor
  820. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  821. .text.TIM_SelectOnePulseMode
  822. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  823. .text.TIM_SelectOutputTrigger
  824. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  825. .text.TIM_SelectSlaveMode
  826. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  827. .text.TIM_SelectMasterSlaveMode
  828. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  829. .text.TIM_SetCounter
  830. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  831. .text.TIM_SetAutoreload
  832. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  833. .text.TIM_SetCompare1
  834. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  835. .text.TIM_SetCompare2
  836. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  837. .text.TIM_SetCompare3
  838. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  839. .text.TIM_SetCompare4
  840. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  841. .text.TIM_SetIC1Prescaler
  842. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  843. .text.TIM_SetIC2Prescaler
  844. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  845. .text.TIM_PWMIConfig
  846. 0x0000000000000000 0xa4 ./SRC/Peripheral/src/ch32v20x_tim.o
  847. .text.TIM_SetIC3Prescaler
  848. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim.o
  849. .text.TIM_SetIC4Prescaler
  850. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim.o
  851. .text.TIM_ICInit
  852. 0x0000000000000000 0x194 ./SRC/Peripheral/src/ch32v20x_tim.o
  853. .text.TIM_SetClockDivision
  854. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  855. .text.TIM_GetCapture1
  856. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  857. .text.TIM_GetCapture2
  858. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  859. .text.TIM_GetCapture3
  860. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  861. .text.TIM_GetCapture4
  862. 0x0000000000000000 0x6 ./SRC/Peripheral/src/ch32v20x_tim.o
  863. .text.TIM_GetCounter
  864. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  865. .text.TIM_GetPrescaler
  866. 0x0000000000000000 0x4 ./SRC/Peripheral/src/ch32v20x_tim.o
  867. .text.TIM_GetFlagStatus
  868. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim.o
  869. .text.TIM_ClearFlag
  870. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  871. .text.TIM_GetITStatus
  872. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim.o
  873. .text.TIM_ClearITPendingBit
  874. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim.o
  875. .debug_info 0x0000000000000000 0x2ac0 ./SRC/Peripheral/src/ch32v20x_tim.o
  876. .debug_abbrev 0x0000000000000000 0x431 ./SRC/Peripheral/src/ch32v20x_tim.o
  877. .debug_loc 0x0000000000000000 0x1abc ./SRC/Peripheral/src/ch32v20x_tim.o
  878. .debug_aranges
  879. 0x0000000000000000 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim.o
  880. .debug_ranges 0x0000000000000000 0x308 ./SRC/Peripheral/src/ch32v20x_tim.o
  881. .debug_line 0x0000000000000000 0x335b ./SRC/Peripheral/src/ch32v20x_tim.o
  882. .debug_str 0x0000000000000000 0x134f ./SRC/Peripheral/src/ch32v20x_tim.o
  883. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim.o
  884. .debug_frame 0x0000000000000000 0x668 ./SRC/Peripheral/src/ch32v20x_tim.o
  885. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  886. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  887. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  888. .text.TI1_Config
  889. 0x0000000000000000 0x46 ./SRC/Peripheral/src/ch32v20x_tim5.o
  890. .text.TI2_Config
  891. 0x0000000000000000 0x56 ./SRC/Peripheral/src/ch32v20x_tim5.o
  892. .text.TIM5_DeInit
  893. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  894. .text.TIM5_TimeBaseInit
  895. 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  896. .text.TIM5_OC1Init
  897. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  898. .text.TIM5_OC2Init
  899. 0x0000000000000000 0x66 ./SRC/Peripheral/src/ch32v20x_tim5.o
  900. .text.TIM5_OC3Init
  901. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  902. .text.TIM5_OC4Init
  903. 0x0000000000000000 0x62 ./SRC/Peripheral/src/ch32v20x_tim5.o
  904. .text.TIM5_BDTRConfig
  905. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  906. .text.TIM5_TimeBaseStructInit
  907. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_tim5.o
  908. .text.TIM5_OCStructInit
  909. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  910. .text.TIM5_ICStructInit
  911. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  912. .text.TIM5_BDTRStructInit
  913. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  914. .text.TIM5_Cmd
  915. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  916. .text.TIM5_CtrlPWMOutputs
  917. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  918. .text.TIM5_ITConfig
  919. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  920. .text.TIM5_GenerateEvent
  921. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  922. .text.TIM5_DMAConfig
  923. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_tim5.o
  924. .text.TIM5_DMACmd
  925. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_tim5.o
  926. .text.TIM5_InternalClockConfig
  927. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  928. .text.TIM5_ITRxExternalClockConfig
  929. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  930. .text.TIM5_TIxExternalClockConfig
  931. 0x0000000000000000 0x4c ./SRC/Peripheral/src/ch32v20x_tim5.o
  932. .text.TIM5_ETRClockMode1Config
  933. 0x0000000000000000 0x38 ./SRC/Peripheral/src/ch32v20x_tim5.o
  934. .text.TIM5_ETRClockMode2Config
  935. 0x0000000000000000 0x30 ./SRC/Peripheral/src/ch32v20x_tim5.o
  936. .text.TIM5_ETRConfig
  937. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  938. .text.TIM5_PrescalerConfig
  939. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_tim5.o
  940. .text.TIM5_CounterModeConfig
  941. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  942. .text.TIM5_SelectInputTrigger
  943. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  944. .text.TIM5_EncoderInterfaceConfig
  945. 0x0000000000000000 0x4a ./SRC/Peripheral/src/ch32v20x_tim5.o
  946. .text.TIM5_ForcedOC1Config
  947. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  948. .text.TIM5_ForcedOC2Config
  949. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  950. .text.TIM5_ForcedOC3Config
  951. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  952. .text.TIM5_ForcedOC4Config
  953. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  954. .text.TIM5_ARRPreloadConfig
  955. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  956. .text.TIM5_SelectCOM
  957. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  958. .text.TIM5_SelectCCDMA
  959. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  960. .text.TIM5_CCPreloadControl
  961. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  962. .text.TIM5_OC1PreloadConfig
  963. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  964. .text.TIM5_OC2PreloadConfig
  965. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  966. .text.TIM5_OC3PreloadConfig
  967. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  968. .text.TIM5_OC4PreloadConfig
  969. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  970. .text.TIM5_OC1FastConfig
  971. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  972. .text.TIM5_OC2FastConfig
  973. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  974. .text.TIM5_OC3FastConfig
  975. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  976. .text.TIM5_OC4FastConfig
  977. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  978. .text.TIM5_ClearOC1Ref
  979. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  980. .text.TIM5_ClearOC2Ref
  981. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  982. .text.TIM5_ClearOC3Ref
  983. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_tim5.o
  984. .text.TIM5_ClearOC4Ref
  985. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_tim5.o
  986. .text.TIM5_OC1PolarityConfig
  987. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  988. .text.TIM5_OC1NPolarityConfig
  989. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_tim5.o
  990. .text.TIM5_OC2PolarityConfig
  991. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  992. .text.TIM5_OC2NPolarityConfig
  993. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  994. .text.TIM5_OC3PolarityConfig
  995. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  996. .text.TIM5_OC3NPolarityConfig
  997. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_tim5.o
  998. .text.TIM5_OC4PolarityConfig
  999. 0x0000000000000000 0x1c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1000. .text.TIM5_CCxCmd
  1001. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1002. .text.TIM5_CCxNCmd
  1003. 0x0000000000000000 0x2c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1004. .text.TIM5_SelectOCxM
  1005. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1006. .text.TIM5_UpdateDisableConfig
  1007. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1008. .text.TIM5_UpdateRequestConfig
  1009. 0x0000000000000000 0x20 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1010. .text.TIM5_SelectHallSensor
  1011. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1012. .text.TIM5_SelectOnePulseMode
  1013. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1014. .text.TIM5_SelectOutputTrigger
  1015. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1016. .text.TIM5_SelectSlaveMode
  1017. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1018. .text.TIM5_SelectMasterSlaveMode
  1019. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1020. .text.TIM5_SetCounter
  1021. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1022. .text.TIM5_SetAutoreload
  1023. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1024. .text.TIM5_SetCompare1
  1025. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1026. .text.TIM5_SetCompare2
  1027. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1028. .text.TIM5_SetCompare3
  1029. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1030. .text.TIM5_SetCompare4
  1031. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1032. .text.TIM5_SetIC1Prescaler
  1033. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1034. .text.TIM5_SetIC2Prescaler
  1035. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1036. .text.TIM5_PWMIConfig
  1037. 0x0000000000000000 0x8e ./SRC/Peripheral/src/ch32v20x_tim5.o
  1038. .text.TIM5_SetIC3Prescaler
  1039. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1040. .text.TIM5_SetIC4Prescaler
  1041. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1042. .text.TIM5_ICInit
  1043. 0x0000000000000000 0x10c ./SRC/Peripheral/src/ch32v20x_tim5.o
  1044. .text.TIM5_SetClockDivision
  1045. 0x0000000000000000 0x24 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1046. .text.TIM5_GetCapture1
  1047. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1048. .text.TIM5_GetCapture2
  1049. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1050. .text.TIM5_GetCapture3
  1051. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1052. .text.TIM5_GetCapture4
  1053. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1054. .text.TIM5_GetCounter
  1055. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1056. .text.TIM5_GetPrescaler
  1057. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_tim5.o
  1058. .text.TIM5_GetFlagStatus
  1059. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1060. .text.TIM5_ClearFlag
  1061. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1062. .text.TIM5_GetITStatus
  1063. 0x0000000000000000 0x22 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1064. .text.TIM5_ClearITPendingBit
  1065. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1066. .debug_info 0x0000000000000000 0x2413 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1067. .debug_abbrev 0x0000000000000000 0x447 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1068. .debug_loc 0x0000000000000000 0x15a6 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1069. .debug_aranges
  1070. 0x0000000000000000 0x2d0 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1071. .debug_ranges 0x0000000000000000 0x300 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1072. .debug_line 0x0000000000000000 0x2c91 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1073. .debug_str 0x0000000000000000 0x13b4 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1074. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1075. .debug_frame 0x0000000000000000 0x648 ./SRC/Peripheral/src/ch32v20x_tim5.o
  1076. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1077. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1078. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_usart.o
  1079. .text.USART_DeInit
  1080. 0x0000000000000000 0x9e ./SRC/Peripheral/src/ch32v20x_usart.o
  1081. .text.USART_StructInit
  1082. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1083. .text.USART_ClockInit
  1084. 0x0000000000000000 0x1e ./SRC/Peripheral/src/ch32v20x_usart.o
  1085. .text.USART_ClockStructInit
  1086. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1087. .text.USART_ITConfig
  1088. 0x0000000000000000 0x36 ./SRC/Peripheral/src/ch32v20x_usart.o
  1089. .text.USART_DMACmd
  1090. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1091. .text.USART_SetAddress
  1092. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1093. .text.USART_WakeUpConfig
  1094. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1095. .text.USART_ReceiverWakeUpCmd
  1096. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1097. .text.USART_LINBreakDetectLengthConfig
  1098. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1099. .text.USART_LINCmd
  1100. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1101. .text.USART_ReceiveData
  1102. 0x0000000000000000 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  1103. .text.USART_SendBreak
  1104. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  1105. .text.USART_SetGuardTime
  1106. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_usart.o
  1107. .text.USART_SetPrescaler
  1108. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1109. .text.USART_SmartCardCmd
  1110. 0x0000000000000000 0x1a ./SRC/Peripheral/src/ch32v20x_usart.o
  1111. .text.USART_SmartCardNACKCmd
  1112. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1113. .text.USART_HalfDuplexCmd
  1114. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1115. .text.USART_IrDAConfig
  1116. 0x0000000000000000 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1117. .text.USART_IrDACmd
  1118. 0x0000000000000000 0x18 ./SRC/Peripheral/src/ch32v20x_usart.o
  1119. .text.USART_ClearFlag
  1120. 0x0000000000000000 0xc ./SRC/Peripheral/src/ch32v20x_usart.o
  1121. .text.USART_GetITStatus
  1122. 0x0000000000000000 0x3c ./SRC/Peripheral/src/ch32v20x_usart.o
  1123. .text.USART_ClearITPendingBit
  1124. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_usart.o
  1125. .text 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1126. .data 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1127. .bss 0x0000000000000000 0x0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1128. .text.WWDG_DeInit
  1129. 0x0000000000000000 0x2a ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1130. .text.WWDG_SetPrescaler
  1131. 0x0000000000000000 0x14 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1132. .text.WWDG_SetWindowValue
  1133. 0x0000000000000000 0x26 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1134. .text.WWDG_EnableIT
  1135. 0x0000000000000000 0x12 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1136. .text.WWDG_SetCounter
  1137. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1138. .text.WWDG_Enable
  1139. 0x0000000000000000 0xe ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1140. .text.WWDG_GetFlagStatus
  1141. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1142. .text.WWDG_ClearFlag
  1143. 0x0000000000000000 0xa ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1144. .debug_info 0x0000000000000000 0xb27 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1145. .debug_abbrev 0x0000000000000000 0x2a0 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1146. .debug_loc 0x0000000000000000 0xae ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1147. .debug_aranges
  1148. 0x0000000000000000 0x58 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1149. .debug_ranges 0x0000000000000000 0x48 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1150. .debug_line 0x0000000000000000 0x619 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1151. .debug_str 0x0000000000000000 0x748 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1152. .comment 0x0000000000000000 0x34 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1153. .debug_frame 0x0000000000000000 0xa8 ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1154. .text 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1155. .data 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1156. .bss 0x0000000000000000 0x0 ./SRC/Debug/debug.o
  1157. .text.SDI_Printf_Enable
  1158. 0x0000000000000000 0x22 ./SRC/Debug/debug.o
  1159. .text 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1160. .data 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1161. .bss 0x0000000000000000 0x0 ./SRC/Core/core_riscv.o
  1162. .text.__get_MSTATUS
  1163. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1164. .text.__set_MSTATUS
  1165. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1166. .text.__get_MISA
  1167. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1168. .text.__set_MISA
  1169. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1170. .text.__get_MTVEC
  1171. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1172. .text.__set_MTVEC
  1173. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1174. .text.__get_MSCRATCH
  1175. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1176. .text.__set_MSCRATCH
  1177. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1178. .text.__get_MEPC
  1179. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1180. .text.__set_MEPC
  1181. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1182. .text.__get_MCAUSE
  1183. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1184. .text.__set_MCAUSE
  1185. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1186. .text.__get_MTVAL
  1187. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1188. .text.__set_MTVAL
  1189. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1190. .text.__get_MVENDORID
  1191. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1192. .text.__get_MARCHID
  1193. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1194. .text.__get_MIMPID
  1195. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1196. .text.__get_MHARTID
  1197. 0x0000000000000000 0x6 ./SRC/Core/core_riscv.o
  1198. .text.__get_SP
  1199. 0x0000000000000000 0x4 ./SRC/Core/core_riscv.o
  1200. .debug_info 0x0000000000000000 0x376 ./SRC/Core/core_riscv.o
  1201. .debug_abbrev 0x0000000000000000 0xe0 ./SRC/Core/core_riscv.o
  1202. .debug_aranges
  1203. 0x0000000000000000 0xb0 ./SRC/Core/core_riscv.o
  1204. .debug_ranges 0x0000000000000000 0xa0 ./SRC/Core/core_riscv.o
  1205. .debug_line 0x0000000000000000 0x4f3 ./SRC/Core/core_riscv.o
  1206. .debug_str 0x0000000000000000 0x332 ./SRC/Core/core_riscv.o
  1207. .comment 0x0000000000000000 0x34 ./SRC/Core/core_riscv.o
  1208. .debug_frame 0x0000000000000000 0x140 ./SRC/Core/core_riscv.o
  1209. .text 0x0000000000000000 0x0 ./Profile/OTAprofile.o
  1210. .data 0x0000000000000000 0x0 ./Profile/OTAprofile.o
  1211. .bss 0x0000000000000000 0x0 ./Profile/OTAprofile.o
  1212. .text 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1213. .data 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1214. .bss 0x0000000000000000 0x0 ./LIB/ble_task_scheduler.o
  1215. .text 0x0000000000000000 0x0 ./HAL/MCU.o
  1216. .data 0x0000000000000000 0x0 ./HAL/MCU.o
  1217. .bss 0x0000000000000000 0x0 ./HAL/MCU.o
  1218. .text.Lib_Calibration_LSI
  1219. 0x0000000000000000 0xa ./HAL/MCU.o
  1220. .text 0x0000000000000000 0x0 ./HAL/RTC.o
  1221. .data 0x0000000000000000 0x0 ./HAL/RTC.o
  1222. .bss 0x0000000000000000 0x0 ./HAL/RTC.o
  1223. .text.RTC_SetTignTime
  1224. 0x0000000000000000 0x2e ./HAL/RTC.o
  1225. .text 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1226. .data 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1227. .bss 0x0000000000000000 0x0 ./HAL/SLEEP.o
  1228. .text.BLE_LowPower
  1229. 0x0000000000000000 0x4 ./HAL/SLEEP.o
  1230. .text.HAL_SleepInit
  1231. 0x0000000000000000 0x2 ./HAL/SLEEP.o
  1232. .debug_info 0x0000000000000000 0xa12 ./HAL/SLEEP.o
  1233. .debug_abbrev 0x0000000000000000 0x211 ./HAL/SLEEP.o
  1234. .debug_loc 0x0000000000000000 0x21 ./HAL/SLEEP.o
  1235. .debug_aranges
  1236. 0x0000000000000000 0x28 ./HAL/SLEEP.o
  1237. .debug_ranges 0x0000000000000000 0x18 ./HAL/SLEEP.o
  1238. .debug_line 0x0000000000000000 0x402 ./HAL/SLEEP.o
  1239. .debug_str 0x0000000000000000 0x68d ./HAL/SLEEP.o
  1240. .comment 0x0000000000000000 0x34 ./HAL/SLEEP.o
  1241. .debug_frame 0x0000000000000000 0x30 ./HAL/SLEEP.o
  1242. .text 0x0000000000000000 0x0 ./APP/ch32v20x_it.o
  1243. .data 0x0000000000000000 0x0 ./APP/ch32v20x_it.o
  1244. .bss 0x0000000000000000 0x0 ./APP/ch32v20x_it.o
  1245. .text 0x0000000000000000 0x0 ./APP/led.o
  1246. .data 0x0000000000000000 0x0 ./APP/led.o
  1247. .bss 0x0000000000000000 0x0 ./APP/led.o
  1248. .text 0x0000000000000000 0x0 ./APP/peripheral.o
  1249. .data 0x0000000000000000 0x0 ./APP/peripheral.o
  1250. .bss 0x0000000000000000 0x0 ./APP/peripheral.o
  1251. .text.PeripheralParamUpdate
  1252. 0x0000000000000000 0x16 ./APP/peripheral.o
  1253. .text.DisableAllIRQ
  1254. 0x0000000000000000 0xa ./APP/peripheral.o
  1255. .text.Upgrade_IAP_Erase
  1256. 0x0000000000000000 0x26 ./APP/peripheral.o
  1257. .text.Upgrade_IAP_Program
  1258. 0x0000000000000000 0x3a ./APP/peripheral.o
  1259. .text.Upgrade_IAP_End
  1260. 0x0000000000000000 0x14 ./APP/peripheral.o
  1261. .text.IAP_FLASH_read
  1262. 0x0000000000000000 0x8 ./APP/peripheral.o
  1263. .rodata.PeripheralParamUpdate.str1.4
  1264. 0x0000000000000000 0x12 ./APP/peripheral.o
  1265. .sbss.PeripheralParamUpdate_t
  1266. 0x0000000000000000 0x4 ./APP/peripheral.o
  1267. .sbss.user_image_tasks
  1268. 0x0000000000000000 0x4 ./APP/peripheral.o
  1269. .text 0x0000000000000000 0x0 ./APP/peripheral_main.o
  1270. .data 0x0000000000000000 0x0 ./APP/peripheral_main.o
  1271. .bss 0x0000000000000000 0x0 ./APP/peripheral_main.o
  1272. .text 0x0000000000000000 0x0 ./APP/system_ch32v20x.o
  1273. .data 0x0000000000000000 0x0 ./APP/system_ch32v20x.o
  1274. .bss 0x0000000000000000 0x0 ./APP/system_ch32v20x.o
  1275. .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)
  1276. .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)
  1277. .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)
  1278. .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)
  1279. .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)
  1280. .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)
  1281. .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)
  1282. .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)
  1283. .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)
  1284. .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)
  1285. .text._printf_r
  1286. 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)
  1287. .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)
  1288. .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)
  1289. .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)
  1290. .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)
  1291. .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)
  1292. .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)
  1293. .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)
  1294. .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)
  1295. .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)
  1296. .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)
  1297. .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)
  1298. .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)
  1299. .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)
  1300. .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)
  1301. .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)
  1302. .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)
  1303. .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)
  1304. .text.__fp_lock
  1305. 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)
  1306. .text.__fp_unlock
  1307. 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)
  1308. .text._cleanup
  1309. 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)
  1310. .text.__sfp_lock_acquire
  1311. 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)
  1312. .text.__sfp_lock_release
  1313. 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)
  1314. .text.__sinit_lock_acquire
  1315. 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)
  1316. .text.__sinit_lock_release
  1317. 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)
  1318. .text.__fp_lock_all
  1319. 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)
  1320. .text.__fp_unlock_all
  1321. 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)
  1322. .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)
  1323. .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)
  1324. .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)
  1325. .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)
  1326. .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)
  1327. .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)
  1328. .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)
  1329. .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)
  1330. .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)
  1331. .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)
  1332. .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)
  1333. .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)
  1334. .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)
  1335. .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)
  1336. .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)
  1337. .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)
  1338. .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)
  1339. .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)
  1340. .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)
  1341. .text.__sprint_r
  1342. 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)
  1343. .text.vfprintf
  1344. 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)
  1345. .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)
  1346. .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)
  1347. .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)
  1348. .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)
  1349. .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)
  1350. .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)
  1351. .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)
  1352. .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)
  1353. .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)
  1354. .text.__seofread
  1355. 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)
  1356. .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)
  1357. .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)
  1358. .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)
  1359. .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)
  1360. .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)
  1361. .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)
  1362. .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)
  1363. .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)
  1364. .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)
  1365. .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)
  1366. .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)
  1367. .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)
  1368. .text.__sfvwrite_r
  1369. 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)
  1370. .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)
  1371. .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)
  1372. .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)
  1373. .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)
  1374. .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)
  1375. .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)
  1376. .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)
  1377. .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)
  1378. .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)
  1379. .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)
  1380. .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)
  1381. .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)
  1382. .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)
  1383. .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)
  1384. .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)
  1385. .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)
  1386. .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)
  1387. .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)
  1388. .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)
  1389. .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)
  1390. .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)
  1391. .text._realloc_r
  1392. 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)
  1393. .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)
  1394. .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)
  1395. .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)
  1396. .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)
  1397. .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)
  1398. .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)
  1399. .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)
  1400. .text.cleanup_glue
  1401. 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)
  1402. .text._reclaim_reent
  1403. 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)
  1404. .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)
  1405. .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)
  1406. .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)
  1407. .text._malloc_usable_size_r
  1408. 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)
  1409. .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)
  1410. .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)
  1411. .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)
  1412. .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)
  1413. .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)
  1414. .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)
  1415. .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)
  1416. .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)
  1417. .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)
  1418. .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)
  1419. .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)
  1420. .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)
  1421. .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)
  1422. .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)
  1423. .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)
  1424. .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)
  1425. Memory Configuration
  1426. Name Origin Length Attributes
  1427. FLASH 0x0000000000000000 0x0000000000004000 xr
  1428. RAM 0x0000000020004000 0x000000000000c000 xrw
  1429. *default* 0x0000000000000000 0xffffffffffffffff
  1430. Linker script and memory map
  1431. LOAD ./Startup/startup_ch32v20x_D8W.o
  1432. LOAD ./SRC/Peripheral/src/ch32v20x_adc.o
  1433. LOAD ./SRC/Peripheral/src/ch32v20x_bkp.o
  1434. LOAD ./SRC/Peripheral/src/ch32v20x_can.o
  1435. LOAD ./SRC/Peripheral/src/ch32v20x_crc.o
  1436. LOAD ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  1437. LOAD ./SRC/Peripheral/src/ch32v20x_dma.o
  1438. LOAD ./SRC/Peripheral/src/ch32v20x_exti.o
  1439. LOAD ./SRC/Peripheral/src/ch32v20x_flash.o
  1440. LOAD ./SRC/Peripheral/src/ch32v20x_gpio.o
  1441. LOAD ./SRC/Peripheral/src/ch32v20x_i2c.o
  1442. LOAD ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1443. LOAD ./SRC/Peripheral/src/ch32v20x_misc.o
  1444. LOAD ./SRC/Peripheral/src/ch32v20x_opa.o
  1445. LOAD ./SRC/Peripheral/src/ch32v20x_pwr.o
  1446. LOAD ./SRC/Peripheral/src/ch32v20x_rcc.o
  1447. LOAD ./SRC/Peripheral/src/ch32v20x_rtc.o
  1448. LOAD ./SRC/Peripheral/src/ch32v20x_spi.o
  1449. LOAD ./SRC/Peripheral/src/ch32v20x_tim.o
  1450. LOAD ./SRC/Peripheral/src/ch32v20x_tim5.o
  1451. LOAD ./SRC/Peripheral/src/ch32v20x_usart.o
  1452. LOAD ./SRC/Peripheral/src/ch32v20x_wwdg.o
  1453. LOAD ./SRC/Debug/debug.o
  1454. LOAD ./SRC/Core/core_riscv.o
  1455. LOAD ./Profile/OTAprofile.o
  1456. LOAD ./LIB/ble_task_scheduler.o
  1457. LOAD ./HAL/MCU.o
  1458. LOAD ./HAL/RTC.o
  1459. LOAD ./HAL/SLEEP.o
  1460. LOAD ./APP/ch32v20x_it.o
  1461. LOAD ./APP/led.o
  1462. LOAD ./APP/peripheral.o
  1463. LOAD ./APP/peripheral_main.o
  1464. LOAD ./APP/system_ch32v20x.o
  1465. 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
  1466. 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
  1467. 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
  1468. 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
  1469. START GROUP
  1470. 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
  1471. 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
  1472. 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
  1473. END GROUP
  1474. START GROUP
  1475. 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
  1476. 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
  1477. 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
  1478. END GROUP
  1479. 0x0000000000000800 __stack_size = 0x800
  1480. [!provide] PROVIDE (_stack_size = __stack_size)
  1481. 0x0000000020004000 PROVIDE (__global_pointer$ = 0x20004000)
  1482. .init 0x0000000000000000 0x38
  1483. 0x0000000000000000 _sinit = .
  1484. 0x0000000000000000 . = ALIGN (0x4)
  1485. *(SORT_NONE(.init))
  1486. .init 0x0000000000000000 0x38 ./Startup/startup_ch32v20x_D8W.o
  1487. 0x0000000000000000 _start
  1488. 0x0000000000000038 . = ALIGN (0x4)
  1489. 0x0000000000000038 _einit = .
  1490. .vector 0x0000000000000038 0x148
  1491. *(.vector)
  1492. .vector 0x0000000000000038 0x118 ./Startup/startup_ch32v20x_D8W.o
  1493. 0x0000000000000180 . = ALIGN (0x40)
  1494. *fill* 0x0000000000000150 0x30
  1495. *(SORT_NONE(.handle_reset))
  1496. .highcode 0x0000000000000180 0xe8
  1497. 0x0000000000000180 . = ALIGN (0x4)
  1498. *(.highcode)
  1499. .highcode 0x0000000000000180 0x4e ./LIB/ble_task_scheduler.o
  1500. 0x0000000000000180 Ecall_U_Mode_Handler
  1501. 0x0000000000000180 Ecall_M_Mode_Handler
  1502. .highcode 0x00000000000001ce 0x10 ./APP/peripheral_main.o
  1503. 0x00000000000001ce Main_Circulation
  1504. *(.highcode.*)
  1505. *fill* 0x00000000000001de 0x2
  1506. .highcode.LLE_IRQHandler
  1507. 0x00000000000001e0 0x86 ./LIB/ble_task_scheduler.o
  1508. 0x00000000000001e0 LLE_IRQHandler
  1509. 0x0000000000000268 . = ALIGN (0x4)
  1510. *fill* 0x0000000000000266 0x2
  1511. .text 0x0000000000000268 0x2fe0
  1512. 0x0000000000000268 . = ALIGN (0x4)
  1513. *(.text)
  1514. .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)
  1515. 0x0000000000000268 memset
  1516. *(.text.*)
  1517. .text.vector_handler
  1518. 0x0000000000000310 0x7a ./Startup/startup_ch32v20x_D8W.o
  1519. 0x0000000000000318 Break_Point_Handler
  1520. 0x000000000000031a SysTick_Handler
  1521. 0x000000000000031c SW_Handler
  1522. 0x000000000000031e WWDG_IRQHandler
  1523. 0x0000000000000320 PVD_IRQHandler
  1524. 0x0000000000000322 TAMPER_IRQHandler
  1525. 0x0000000000000324 RTC_IRQHandler
  1526. 0x0000000000000326 FLASH_IRQHandler
  1527. 0x0000000000000328 RCC_IRQHandler
  1528. 0x000000000000032a EXTI0_IRQHandler
  1529. 0x000000000000032c EXTI1_IRQHandler
  1530. 0x000000000000032e EXTI2_IRQHandler
  1531. 0x0000000000000330 EXTI3_IRQHandler
  1532. 0x0000000000000332 EXTI4_IRQHandler
  1533. 0x0000000000000334 DMA1_Channel1_IRQHandler
  1534. 0x0000000000000336 DMA1_Channel2_IRQHandler
  1535. 0x0000000000000338 DMA1_Channel3_IRQHandler
  1536. 0x000000000000033a DMA1_Channel4_IRQHandler
  1537. 0x000000000000033c DMA1_Channel5_IRQHandler
  1538. 0x000000000000033e DMA1_Channel6_IRQHandler
  1539. 0x0000000000000340 DMA1_Channel7_IRQHandler
  1540. 0x0000000000000342 ADC1_2_IRQHandler
  1541. 0x0000000000000344 USB_HP_CAN1_TX_IRQHandler
  1542. 0x0000000000000346 USB_LP_CAN1_RX0_IRQHandler
  1543. 0x0000000000000348 CAN1_RX1_IRQHandler
  1544. 0x000000000000034a CAN1_SCE_IRQHandler
  1545. 0x000000000000034c EXTI9_5_IRQHandler
  1546. 0x000000000000034e TIM1_BRK_IRQHandler
  1547. 0x0000000000000350 TIM1_UP_IRQHandler
  1548. 0x0000000000000352 TIM1_TRG_COM_IRQHandler
  1549. 0x0000000000000354 TIM1_CC_IRQHandler
  1550. 0x0000000000000356 TIM2_IRQHandler
  1551. 0x0000000000000358 TIM3_IRQHandler
  1552. 0x000000000000035a TIM4_IRQHandler
  1553. 0x000000000000035c I2C1_EV_IRQHandler
  1554. 0x000000000000035e I2C1_ER_IRQHandler
  1555. 0x0000000000000360 I2C2_EV_IRQHandler
  1556. 0x0000000000000362 I2C2_ER_IRQHandler
  1557. 0x0000000000000364 SPI1_IRQHandler
  1558. 0x0000000000000366 SPI2_IRQHandler
  1559. 0x0000000000000368 USART1_IRQHandler
  1560. 0x000000000000036a USART2_IRQHandler
  1561. 0x000000000000036c USART3_IRQHandler
  1562. 0x000000000000036e EXTI15_10_IRQHandler
  1563. 0x0000000000000372 USBWakeUp_IRQHandler
  1564. 0x0000000000000374 USBHD_IRQHandler
  1565. 0x0000000000000376 USBHDWakeUp_IRQHandler
  1566. 0x0000000000000378 ETH_IRQHandler
  1567. 0x000000000000037a ETHWakeUp_IRQHandler
  1568. 0x0000000000000380 TIM5_IRQHandler
  1569. 0x0000000000000382 UART4_IRQHandler
  1570. 0x0000000000000384 DMA1_Channel8_IRQHandler
  1571. 0x0000000000000386 OSC32KCal_IRQHandler
  1572. 0x0000000000000388 OSCWakeUp_IRQHandler
  1573. .text.handle_reset
  1574. 0x000000000000038a 0x8e ./Startup/startup_ch32v20x_D8W.o
  1575. 0x000000000000038a handle_reset
  1576. .text.ADC_DeInit
  1577. 0x0000000000000418 0x46 ./SRC/Peripheral/src/ch32v20x_adc.o
  1578. 0x0000000000000418 ADC_DeInit
  1579. .text.ADC_Init
  1580. 0x000000000000045e 0x56 ./SRC/Peripheral/src/ch32v20x_adc.o
  1581. 0x000000000000045e ADC_Init
  1582. .text.ADC_Cmd 0x00000000000004b4 0x10 ./SRC/Peripheral/src/ch32v20x_adc.o
  1583. 0x00000000000004b4 ADC_Cmd
  1584. .text.ADC_SoftwareStartConvCmd
  1585. 0x00000000000004c4 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  1586. 0x00000000000004c4 ADC_SoftwareStartConvCmd
  1587. .text.ADC_RegularChannelConfig
  1588. 0x00000000000004dc 0xb8 ./SRC/Peripheral/src/ch32v20x_adc.o
  1589. 0x00000000000004dc ADC_RegularChannelConfig
  1590. .text.ADC_GetConversionValue
  1591. 0x0000000000000594 0x8 ./SRC/Peripheral/src/ch32v20x_adc.o
  1592. 0x0000000000000594 ADC_GetConversionValue
  1593. .text.ADC_TempSensorVrefintCmd
  1594. 0x000000000000059c 0x20 ./SRC/Peripheral/src/ch32v20x_adc.o
  1595. 0x000000000000059c ADC_TempSensorVrefintCmd
  1596. .text.ADC_GetFlagStatus
  1597. 0x00000000000005bc 0xa ./SRC/Peripheral/src/ch32v20x_adc.o
  1598. 0x00000000000005bc ADC_GetFlagStatus
  1599. .text.ADC_BufferCmd
  1600. 0x00000000000005c6 0x18 ./SRC/Peripheral/src/ch32v20x_adc.o
  1601. 0x00000000000005c6 ADC_BufferCmd
  1602. .text.DBGMCU_GetCHIPID
  1603. 0x00000000000005de 0xa ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  1604. 0x00000000000005de DBGMCU_GetCHIPID
  1605. .text.EXTI_ClearITPendingBit
  1606. 0x00000000000005e8 0xa ./SRC/Peripheral/src/ch32v20x_exti.o
  1607. 0x00000000000005e8 EXTI_ClearITPendingBit
  1608. .text.FLASH_Unlock
  1609. 0x00000000000005f2 0x1a ./SRC/Peripheral/src/ch32v20x_flash.o
  1610. 0x00000000000005f2 FLASH_Unlock
  1611. .text.FLASH_Lock
  1612. 0x000000000000060c 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  1613. 0x000000000000060c FLASH_Lock
  1614. .text.FLASH_GetBank1Status
  1615. 0x000000000000061a 0x18 ./SRC/Peripheral/src/ch32v20x_flash.o
  1616. 0x000000000000061a FLASH_GetBank1Status
  1617. .text.FLASH_WaitForLastOperation
  1618. 0x0000000000000632 0x2a ./SRC/Peripheral/src/ch32v20x_flash.o
  1619. 0x0000000000000632 FLASH_WaitForLastOperation
  1620. .text.FLASH_ErasePage
  1621. 0x000000000000065c 0x42 ./SRC/Peripheral/src/ch32v20x_flash.o
  1622. 0x000000000000065c FLASH_ErasePage
  1623. .text.FLASH_Unlock_Fast
  1624. 0x000000000000069e 0x1e ./SRC/Peripheral/src/ch32v20x_flash.o
  1625. 0x000000000000069e FLASH_Unlock_Fast
  1626. .text.FLASH_Lock_Fast
  1627. 0x00000000000006bc 0xe ./SRC/Peripheral/src/ch32v20x_flash.o
  1628. 0x00000000000006bc FLASH_Lock_Fast
  1629. .text.FLASH_ErasePage_Fast
  1630. 0x00000000000006ca 0x2e ./SRC/Peripheral/src/ch32v20x_flash.o
  1631. 0x00000000000006ca FLASH_ErasePage_Fast
  1632. .text.FLASH_ProgramPage_Fast
  1633. 0x00000000000006f8 0x64 ./SRC/Peripheral/src/ch32v20x_flash.o
  1634. 0x00000000000006f8 FLASH_ProgramPage_Fast
  1635. .text.FLASH_GetMACAddress
  1636. 0x000000000000075c 0x26 ./SRC/Peripheral/src/ch32v20x_flash.o
  1637. 0x000000000000075c FLASH_GetMACAddress
  1638. .text.GPIO_Init
  1639. 0x0000000000000782 0xc0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  1640. 0x0000000000000782 GPIO_Init
  1641. .text.GPIO_SetBits
  1642. 0x0000000000000842 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  1643. 0x0000000000000842 GPIO_SetBits
  1644. .text.GPIO_ResetBits
  1645. 0x0000000000000846 0x4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  1646. 0x0000000000000846 GPIO_ResetBits
  1647. .text.IWDG_WriteAccessCmd
  1648. 0x000000000000084a 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1649. 0x000000000000084a IWDG_WriteAccessCmd
  1650. .text.IWDG_SetPrescaler
  1651. 0x0000000000000852 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1652. 0x0000000000000852 IWDG_SetPrescaler
  1653. .text.IWDG_SetReload
  1654. 0x000000000000085a 0x8 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1655. 0x000000000000085a IWDG_SetReload
  1656. .text.IWDG_ReloadCounter
  1657. 0x0000000000000862 0xe ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1658. 0x0000000000000862 IWDG_ReloadCounter
  1659. .text.IWDG_Enable
  1660. 0x0000000000000870 0x18 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  1661. 0x0000000000000870 IWDG_Enable
  1662. .text.PWR_BackupAccessCmd
  1663. 0x0000000000000888 0x16 ./SRC/Peripheral/src/ch32v20x_pwr.o
  1664. 0x0000000000000888 PWR_BackupAccessCmd
  1665. .text.RCC_ADCCLKConfig
  1666. 0x000000000000089e 0x12 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1667. 0x000000000000089e RCC_ADCCLKConfig
  1668. .text.RCC_LSEConfig
  1669. 0x00000000000008b0 0x28 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1670. 0x00000000000008b0 RCC_LSEConfig
  1671. .text.RCC_RTCCLKConfig
  1672. 0x00000000000008d8 0xc ./SRC/Peripheral/src/ch32v20x_rcc.o
  1673. 0x00000000000008d8 RCC_RTCCLKConfig
  1674. .text.RCC_RTCCLKCmd
  1675. 0x00000000000008e4 0x20 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1676. 0x00000000000008e4 RCC_RTCCLKCmd
  1677. .text.RCC_GetClocksFreq
  1678. 0x0000000000000904 0xd8 ./SRC/Peripheral/src/ch32v20x_rcc.o
  1679. 0x0000000000000904 RCC_GetClocksFreq
  1680. .text.RCC_AHBPeriphClockCmd
  1681. 0x00000000000009dc 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1682. 0x00000000000009dc RCC_AHBPeriphClockCmd
  1683. .text.RCC_APB2PeriphClockCmd
  1684. 0x00000000000009fa 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1685. 0x00000000000009fa RCC_APB2PeriphClockCmd
  1686. .text.RCC_APB1PeriphClockCmd
  1687. 0x0000000000000a18 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1688. 0x0000000000000a18 RCC_APB1PeriphClockCmd
  1689. .text.RCC_APB2PeriphResetCmd
  1690. 0x0000000000000a36 0x1e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1691. 0x0000000000000a36 RCC_APB2PeriphResetCmd
  1692. .text.RCC_GetFlagStatus
  1693. 0x0000000000000a54 0x2e ./SRC/Peripheral/src/ch32v20x_rcc.o
  1694. 0x0000000000000a54 RCC_GetFlagStatus
  1695. .text.RTC_EnterConfigMode
  1696. 0x0000000000000a82 0x12 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1697. 0x0000000000000a82 RTC_EnterConfigMode
  1698. .text.RTC_ExitConfigMode
  1699. 0x0000000000000a94 0x18 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1700. 0x0000000000000a94 RTC_ExitConfigMode
  1701. .text.RTC_GetCounter
  1702. 0x0000000000000aac 0x5a ./SRC/Peripheral/src/ch32v20x_rtc.o
  1703. 0x0000000000000aac RTC_GetCounter
  1704. .text.RTC_SetCounter
  1705. 0x0000000000000b06 0x24 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1706. 0x0000000000000b06 RTC_SetCounter
  1707. .text.RTC_SetPrescaler
  1708. 0x0000000000000b2a 0x26 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1709. 0x0000000000000b2a RTC_SetPrescaler
  1710. .text.RTC_WaitForLastTask
  1711. 0x0000000000000b50 0x10 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1712. 0x0000000000000b50 RTC_WaitForLastTask
  1713. .text.RTC_ClearFlag
  1714. 0x0000000000000b60 0x14 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1715. 0x0000000000000b60 RTC_ClearFlag
  1716. .text.RTC_ClearITPendingBit
  1717. 0x0000000000000b74 0x2 ./SRC/Peripheral/src/ch32v20x_rtc.o
  1718. 0x0000000000000b74 RTC_ClearITPendingBit
  1719. .text.USART_Init
  1720. 0x0000000000000b76 0x90 ./SRC/Peripheral/src/ch32v20x_usart.o
  1721. 0x0000000000000b76 USART_Init
  1722. .text.USART_Cmd
  1723. 0x0000000000000c06 0x16 ./SRC/Peripheral/src/ch32v20x_usart.o
  1724. 0x0000000000000c06 USART_Cmd
  1725. .text.USART_SendData
  1726. 0x0000000000000c1c 0x8 ./SRC/Peripheral/src/ch32v20x_usart.o
  1727. 0x0000000000000c1c USART_SendData
  1728. .text.USART_GetFlagStatus
  1729. 0x0000000000000c24 0xa ./SRC/Peripheral/src/ch32v20x_usart.o
  1730. 0x0000000000000c24 USART_GetFlagStatus
  1731. .text.Delay_Init
  1732. 0x0000000000000c2e 0x28 ./SRC/Debug/debug.o
  1733. 0x0000000000000c2e Delay_Init
  1734. .text.Delay_Us
  1735. 0x0000000000000c56 0x36 ./SRC/Debug/debug.o
  1736. 0x0000000000000c56 Delay_Us
  1737. .text.Delay_Ms
  1738. 0x0000000000000c8c 0x36 ./SRC/Debug/debug.o
  1739. 0x0000000000000c8c Delay_Ms
  1740. .text.USART_Printf_Init
  1741. 0x0000000000000cc2 0x54 ./SRC/Debug/debug.o
  1742. 0x0000000000000cc2 USART_Printf_Init
  1743. .text._write 0x0000000000000d16 0x4c ./SRC/Debug/debug.o
  1744. 0x0000000000000d16 _write
  1745. .text._sbrk 0x0000000000000d62 0x2c ./SRC/Debug/debug.o
  1746. 0x0000000000000d62 _sbrk
  1747. .text.OTAProfile_WriteAttrCB
  1748. 0x0000000000000d8e 0x7a ./Profile/OTAprofile.o
  1749. .text.OTAProfile_ReadAttrCB
  1750. 0x0000000000000e08 0x6c ./Profile/OTAprofile.o
  1751. .text.OTAProfile_AddService
  1752. 0x0000000000000e74 0x1e ./Profile/OTAprofile.o
  1753. 0x0000000000000e74 OTAProfile_AddService
  1754. .text.OTAProfile_RegisterAppCBs
  1755. 0x0000000000000e92 0xe ./Profile/OTAprofile.o
  1756. 0x0000000000000e92 OTAProfile_RegisterAppCBs
  1757. .text.OTAProfile_SendData
  1758. 0x0000000000000ea0 0x28 ./Profile/OTAprofile.o
  1759. 0x0000000000000ea0 OTAProfile_SendData
  1760. .text.Lib_Read_Flash
  1761. 0x0000000000000ec8 0x1e ./HAL/MCU.o
  1762. 0x0000000000000ec8 Lib_Read_Flash
  1763. .text.Lib_Write_Flash
  1764. 0x0000000000000ee6 0x30 ./HAL/MCU.o
  1765. 0x0000000000000ee6 Lib_Write_Flash
  1766. .text.HAL_GetInterTempValue
  1767. 0x0000000000000f16 0x168 ./HAL/MCU.o
  1768. 0x0000000000000f16 HAL_GetInterTempValue
  1769. .text.HAL_ProcessEvent
  1770. 0x000000000000107e 0x8e ./HAL/MCU.o
  1771. 0x000000000000107e HAL_ProcessEvent
  1772. .text.WCHBLE_Init
  1773. 0x000000000000110c 0x136 ./HAL/MCU.o
  1774. 0x000000000000110c WCHBLE_Init
  1775. .text.HAL_Init
  1776. 0x0000000000001242 0x3c ./HAL/MCU.o
  1777. 0x0000000000001242 HAL_Init
  1778. .text.HAL_TimeInit
  1779. 0x000000000000127e 0xb0 ./HAL/RTC.o
  1780. 0x000000000000127e HAL_TimeInit
  1781. .text.RTCAlarm_IRQHandler
  1782. 0x000000000000132e 0x1c ./HAL/RTC.o
  1783. 0x000000000000132e RTCAlarm_IRQHandler
  1784. .text.NMI_Handler
  1785. 0x000000000000134a 0x4 ./APP/ch32v20x_it.o
  1786. 0x000000000000134a NMI_Handler
  1787. .text.HardFault_Handler
  1788. 0x000000000000134e 0x10 ./APP/ch32v20x_it.o
  1789. 0x000000000000134e HardFault_Handler
  1790. .text.BB_IRQHandler
  1791. 0x000000000000135e 0xc ./APP/ch32v20x_it.o
  1792. 0x000000000000135e BB_IRQHandler
  1793. .text.stat_led_work_stat
  1794. 0x000000000000136a 0x1c ./APP/led.o
  1795. .text.led_task_process_event
  1796. 0x0000000000001386 0x88 ./APP/led.o
  1797. .text.set_led_indication
  1798. 0x000000000000140e 0x6c ./APP/led.o
  1799. 0x000000000000140e set_led_indication
  1800. .text.led_task_init
  1801. 0x000000000000147a 0x56 ./APP/led.o
  1802. 0x000000000000147a led_task_init
  1803. .text.led_task_start
  1804. 0x00000000000014d0 0x12 ./APP/led.o
  1805. 0x00000000000014d0 led_task_start
  1806. .text.led_enter_ota
  1807. 0x00000000000014e2 0x10 ./APP/led.o
  1808. 0x00000000000014e2 led_enter_ota
  1809. .text.led_data_ota
  1810. 0x00000000000014f2 0xc ./APP/led.o
  1811. 0x00000000000014f2 led_data_ota
  1812. .text.OTA_IAPReadDataComplete
  1813. 0x00000000000014fe 0xc ./APP/peripheral.o
  1814. 0x00000000000014fe OTA_IAPReadDataComplete
  1815. .text.peripheralStateNotificationCB
  1816. 0x000000000000150a 0xba ./APP/peripheral.o
  1817. .text.Peripheral_Init
  1818. 0x00000000000015c4 0xb0 ./APP/peripheral.o
  1819. 0x00000000000015c4 Peripheral_Init
  1820. .text.OTA_IAP_SendData
  1821. 0x0000000000001674 0xa ./APP/peripheral.o
  1822. 0x0000000000001674 OTA_IAP_SendData
  1823. .text.OTA_IAP_SendCMDDealSta
  1824. 0x000000000000167e 0x16 ./APP/peripheral.o
  1825. 0x000000000000167e OTA_IAP_SendCMDDealSta
  1826. .text.Peripheral_ProcessEvent
  1827. 0x0000000000001694 0x100 ./APP/peripheral.o
  1828. 0x0000000000001694 Peripheral_ProcessEvent
  1829. .text.OTA_IAP_CMDErrDeal
  1830. 0x0000000000001794 0x6 ./APP/peripheral.o
  1831. 0x0000000000001794 OTA_IAP_CMDErrDeal
  1832. .text.IWDG_Feed_Init
  1833. 0x000000000000179a 0x32 ./APP/peripheral.o
  1834. 0x000000000000179a IWDG_Feed_Init
  1835. .text.app_start
  1836. 0x00000000000017cc 0x16 ./APP/peripheral.o
  1837. 0x00000000000017cc app_start
  1838. .text.FLASH_read
  1839. 0x00000000000017e2 0x18 ./APP/peripheral.o
  1840. 0x00000000000017e2 FLASH_read
  1841. .text.SwitchImageFlag
  1842. 0x00000000000017fa 0x48 ./APP/peripheral.o
  1843. 0x00000000000017fa SwitchImageFlag
  1844. .text.Rec_OTA_IAP_DataDeal
  1845. 0x0000000000001842 0x254 ./APP/peripheral.o
  1846. 0x0000000000001842 Rec_OTA_IAP_DataDeal
  1847. .text.OTA_IAPWriteData
  1848. 0x0000000000001a96 0x1a ./APP/peripheral.o
  1849. 0x0000000000001a96 OTA_IAPWriteData
  1850. .text.ReadImageFlag
  1851. 0x0000000000001ab0 0x4a ./APP/peripheral_main.o
  1852. 0x0000000000001ab0 ReadImageFlag
  1853. .text.startup.main
  1854. 0x0000000000001afa 0xba ./APP/peripheral_main.o
  1855. 0x0000000000001afa main
  1856. .text.SystemInit
  1857. 0x0000000000001bb4 0xea ./APP/system_ch32v20x.o
  1858. 0x0000000000001bb4 SystemInit
  1859. .text.SystemCoreClockUpdate
  1860. 0x0000000000001c9e 0xac ./APP/system_ch32v20x.o
  1861. 0x0000000000001c9e SystemCoreClockUpdate
  1862. .text.printf 0x0000000000001d4a 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)
  1863. 0x0000000000001d4a iprintf
  1864. 0x0000000000001d4a printf
  1865. .text._puts_r 0x0000000000001d8a 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)
  1866. 0x0000000000001d8a _puts_r
  1867. .text.puts 0x0000000000001e5e 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)
  1868. 0x0000000000001e5e puts
  1869. .text.__swbuf_r
  1870. 0x0000000000001e68 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)
  1871. 0x0000000000001e68 __swbuf_r
  1872. .text.__swsetup_r
  1873. 0x0000000000001f24 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)
  1874. 0x0000000000001f24 __swsetup_r
  1875. .text.__sflush_r
  1876. 0x0000000000002020 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)
  1877. 0x0000000000002020 __sflush_r
  1878. .text._fflush_r
  1879. 0x0000000000002150 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)
  1880. 0x0000000000002150 _fflush_r
  1881. .text.std 0x00000000000021b4 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)
  1882. .text._cleanup_r
  1883. 0x000000000000221a 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)
  1884. 0x000000000000221a _cleanup_r
  1885. .text.__sfmoreglue
  1886. 0x0000000000002224 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)
  1887. 0x0000000000002224 __sfmoreglue
  1888. .text.__sinit 0x000000000000226a 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)
  1889. 0x000000000000226a __sinit
  1890. .text.__sfp 0x00000000000022d4 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)
  1891. 0x00000000000022d4 __sfp
  1892. .text._fwalk_reent
  1893. 0x0000000000002374 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)
  1894. 0x0000000000002374 _fwalk_reent
  1895. .text.__swhatbuf_r
  1896. 0x00000000000023de 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)
  1897. 0x00000000000023de __swhatbuf_r
  1898. .text.__smakebuf_r
  1899. 0x0000000000002436 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)
  1900. 0x0000000000002436 __smakebuf_r
  1901. .text._free_r 0x00000000000024c6 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)
  1902. 0x00000000000024c6 _free_r
  1903. .text._malloc_r
  1904. 0x000000000000256e 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)
  1905. 0x000000000000256e _malloc_r
  1906. .text.__sfputc_r
  1907. 0x0000000000002642 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)
  1908. .text.__sfputs_r
  1909. 0x000000000000266a 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)
  1910. 0x000000000000266a __sfputs_r
  1911. .text._vfprintf_r
  1912. 0x00000000000026aa 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)
  1913. 0x00000000000026aa _vfprintf_r
  1914. 0x00000000000026aa _vfiprintf_r
  1915. .text._printf_common
  1916. 0x0000000000002930 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)
  1917. 0x0000000000002930 _printf_common
  1918. .text._printf_i
  1919. 0x0000000000002a3c 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)
  1920. 0x0000000000002a3c _printf_i
  1921. .text._sbrk_r 0x0000000000002cdc 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)
  1922. 0x0000000000002cdc _sbrk_r
  1923. .text.__sread 0x0000000000002d0e 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)
  1924. 0x0000000000002d0e __sread
  1925. .text.__swrite
  1926. 0x0000000000002d3a 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)
  1927. 0x0000000000002d3a __swrite
  1928. .text.__sseek 0x0000000000002d82 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)
  1929. 0x0000000000002d82 __sseek
  1930. .text.__sclose
  1931. 0x0000000000002db2 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)
  1932. 0x0000000000002db2 __sclose
  1933. .text._write_r
  1934. 0x0000000000002db8 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)
  1935. 0x0000000000002db8 _write_r
  1936. .text._close_r
  1937. 0x0000000000002dee 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)
  1938. 0x0000000000002dee _close_r
  1939. .text._fstat_r
  1940. 0x0000000000002e1e 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)
  1941. 0x0000000000002e1e _fstat_r
  1942. .text._isatty_r
  1943. 0x0000000000002e50 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)
  1944. 0x0000000000002e50 _isatty_r
  1945. .text._lseek_r
  1946. 0x0000000000002e80 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)
  1947. 0x0000000000002e80 _lseek_r
  1948. .text.memchr 0x0000000000002eb4 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)
  1949. 0x0000000000002eb4 memchr
  1950. .text.__malloc_lock
  1951. 0x0000000000002ecc 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)
  1952. 0x0000000000002ecc __malloc_lock
  1953. .text.__malloc_unlock
  1954. 0x0000000000002ece 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)
  1955. 0x0000000000002ece __malloc_unlock
  1956. .text._read_r 0x0000000000002ed0 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)
  1957. 0x0000000000002ed0 _read_r
  1958. .text._close 0x0000000000002f04 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)
  1959. 0x0000000000002f04 _close
  1960. .text._fstat 0x0000000000002f14 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)
  1961. 0x0000000000002f14 _fstat
  1962. .text._isatty 0x0000000000002f24 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)
  1963. 0x0000000000002f24 _isatty
  1964. .text._lseek 0x0000000000002f34 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)
  1965. 0x0000000000002f34 _lseek
  1966. .text._read 0x0000000000002f44 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)
  1967. 0x0000000000002f44 _read
  1968. *(.rodata)
  1969. *(.rodata*)
  1970. *fill* 0x0000000000002f54 0x0
  1971. .rodata.HAL_ProcessEvent.str1.4
  1972. 0x0000000000002f54 0x3 ./HAL/MCU.o
  1973. *fill* 0x0000000000002f57 0x1
  1974. .rodata.WCHBLE_Init.str1.4
  1975. 0x0000000000002f58 0x49 ./HAL/MCU.o
  1976. *fill* 0x0000000000002fa1 0x3
  1977. .rodata.HAL_TimeInit.str1.4
  1978. 0x0000000000002fa4 0x27 ./HAL/RTC.o
  1979. *fill* 0x0000000000002fcb 0x1
  1980. .rodata.peripheralStateNotificationCB
  1981. 0x0000000000002fcc 0x18 ./APP/peripheral.o
  1982. .rodata.Rec_OTA_IAP_DataDeal
  1983. 0x0000000000002fe4 0x14 ./APP/peripheral.o
  1984. .rodata.OTA_IAPReadDataComplete.str1.4
  1985. 0x0000000000002ff8 0x10 ./APP/peripheral.o
  1986. .rodata.Peripheral_ProcessEvent.str1.4
  1987. 0x0000000000003008 0x24 ./APP/peripheral.o
  1988. .rodata.Rec_OTA_IAP_DataDeal.str1.4
  1989. 0x000000000000302c 0x83 ./APP/peripheral.o
  1990. 0x8f (size before relaxing)
  1991. *fill* 0x00000000000030af 0x1
  1992. .rodata.peripheralStateNotificationCB.str1.4
  1993. 0x00000000000030b0 0x70 ./APP/peripheral.o
  1994. .rodata.ReadImageFlag.str1.4
  1995. 0x0000000000003120 0x11 ./APP/peripheral_main.o
  1996. *fill* 0x0000000000003131 0x3
  1997. .rodata.main.str1.4
  1998. 0x0000000000003134 0x63 ./APP/peripheral_main.o
  1999. *fill* 0x0000000000003197 0x1
  2000. .rodata.__sf_fake_stderr
  2001. 0x0000000000003198 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)
  2002. 0x0000000000003198 __sf_fake_stderr
  2003. .rodata.__sf_fake_stdin
  2004. 0x00000000000031b8 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)
  2005. 0x00000000000031b8 __sf_fake_stdin
  2006. .rodata.__sf_fake_stdout
  2007. 0x00000000000031d8 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)
  2008. 0x00000000000031d8 __sf_fake_stdout
  2009. .rodata._vfprintf_r.str1.4
  2010. 0x00000000000031f8 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)
  2011. *fill* 0x000000000000320b 0x1
  2012. .rodata._printf_i.str1.4
  2013. 0x000000000000320c 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)
  2014. 0x25 (size before relaxing)
  2015. *(.sdata2.*)
  2016. .sdata2.OTAProfileServUUID
  2017. 0x0000000000003234 0x2 ./Profile/OTAprofile.o
  2018. 0x0000000000003234 OTAProfileServUUID
  2019. *fill* 0x0000000000003236 0x2
  2020. .sdata2.OTAProfileService
  2021. 0x0000000000003238 0x8 ./Profile/OTAprofile.o
  2022. .sdata2.OTAProfilechar1UUID
  2023. 0x0000000000003240 0x2 ./Profile/OTAprofile.o
  2024. 0x0000000000003240 OTAProfilechar1UUID
  2025. *fill* 0x0000000000003242 0x2
  2026. .sdata2._global_impure_ptr
  2027. 0x0000000000003244 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)
  2028. 0x0000000000003244 _global_impure_ptr
  2029. *(.gnu.linkonce.t.*)
  2030. 0x0000000000003248 . = ALIGN (0x4)
  2031. .rela.dyn 0x0000000000003248 0x0
  2032. .rela.init 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2033. .rela.vector 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2034. .rela.text.handle_reset
  2035. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2036. .rela.text._sbrk
  2037. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2038. .rela.sdata.curbrk.4731
  2039. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2040. .rela.text._vfprintf_r
  2041. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2042. .rela.text._sbrk_r
  2043. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2044. .rela.text._write_r
  2045. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2046. .rela.text._close_r
  2047. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2048. .rela.text._fstat_r
  2049. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2050. .rela.text._isatty_r
  2051. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2052. .rela.text._lseek_r
  2053. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2054. .rela.text._read_r
  2055. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2056. .rela.text._close
  2057. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2058. .rela.text._fstat
  2059. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2060. .rela.text._isatty
  2061. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2062. .rela.text._lseek
  2063. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2064. .rela.text._read
  2065. 0x0000000000003248 0x0 ./Startup/startup_ch32v20x_D8W.o
  2066. .fini 0x0000000000003248 0x0
  2067. *(SORT_NONE(.fini))
  2068. 0x0000000000003248 . = ALIGN (0x4)
  2069. [!provide] PROVIDE (_etext = .)
  2070. [!provide] PROVIDE (_eitcm = .)
  2071. .preinit_array 0x0000000000003248 0x0
  2072. [!provide] PROVIDE (__preinit_array_start = .)
  2073. *(.preinit_array)
  2074. [!provide] PROVIDE (__preinit_array_end = .)
  2075. .init_array 0x0000000000003248 0x0
  2076. [!provide] PROVIDE (__init_array_start = .)
  2077. *(SORT_BY_INIT_PRIORITY(.init_array.*) SORT_BY_INIT_PRIORITY(.ctors.*))
  2078. *(.init_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .ctors)
  2079. [!provide] PROVIDE (__init_array_end = .)
  2080. .fini_array 0x0000000000003248 0x0
  2081. [!provide] PROVIDE (__fini_array_start = .)
  2082. *(SORT_BY_INIT_PRIORITY(.fini_array.*) SORT_BY_INIT_PRIORITY(.dtors.*))
  2083. *(.fini_array EXCLUDE_FILE(*crtend?.o *crtend.o *crtbegin?.o *crtbegin.o) .dtors)
  2084. [!provide] PROVIDE (__fini_array_end = .)
  2085. .ctors
  2086. *crtbegin.o(.ctors)
  2087. *crtbegin?.o(.ctors)
  2088. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .ctors)
  2089. *(SORT_BY_NAME(.ctors.*))
  2090. *(.ctors)
  2091. .dtors
  2092. *crtbegin.o(.dtors)
  2093. *crtbegin?.o(.dtors)
  2094. *(EXCLUDE_FILE(*crtend?.o *crtend.o) .dtors)
  2095. *(SORT_BY_NAME(.dtors.*))
  2096. *(.dtors)
  2097. .dalign 0x0000000020004000 0x0 load address 0x0000000000003248
  2098. 0x0000000020004000 . = ALIGN (0x4)
  2099. 0x0000000020004000 PROVIDE (_data_vma = .)
  2100. .dlalign 0x0000000000003248 0x0
  2101. 0x0000000000003248 . = ALIGN (0x4)
  2102. 0x0000000000003248 PROVIDE (_data_lma = .)
  2103. .data 0x0000000020004000 0x160 load address 0x0000000000003248
  2104. *(.gnu.linkonce.r.*)
  2105. *(.data .data.*)
  2106. .data.APBAHBPrescTable
  2107. 0x0000000020004000 0x10 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2108. .data.OTAProfileAttrTbl
  2109. 0x0000000020004010 0x40 ./Profile/OTAprofile.o
  2110. .data.OTAProfileCBs
  2111. 0x0000000020004050 0xc ./Profile/OTAprofile.o
  2112. 0x0000000020004050 OTAProfileCBs
  2113. .data.OTAProfileCharUserDesp
  2114. 0x000000002000405c 0xc ./Profile/OTAprofile.o
  2115. .data.led_work
  2116. 0x0000000020004068 0x1c ./APP/led.o
  2117. .data.Peripheral_PeripheralCBs
  2118. 0x0000000020004084 0xc ./APP/peripheral.o
  2119. .data.attDeviceName
  2120. 0x0000000020004090 0x15 ./APP/peripheral.o
  2121. *fill* 0x00000000200040a5 0x3
  2122. .data.scanRspData
  2123. 0x00000000200040a8 0x1f ./APP/peripheral.o
  2124. *fill* 0x00000000200040c7 0x1
  2125. .data.AHBPrescTable
  2126. 0x00000000200040c8 0x10 ./APP/system_ch32v20x.o
  2127. 0x00000000200040c8 AHBPrescTable
  2128. .data.impure_data
  2129. 0x00000000200040d8 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)
  2130. *(.gnu.linkonce.d.*)
  2131. 0x0000000020004138 . = ALIGN (0x8)
  2132. [!provide] PROVIDE (__global_pointer$ = (. + 0x800))
  2133. *(.sdata .sdata.*)
  2134. .sdata.ADCPrescTable
  2135. 0x0000000020004138 0x4 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2136. .sdata.curbrk.4731
  2137. 0x000000002000413c 0x4 ./SRC/Debug/debug.o
  2138. .sdata.OTAProfileCharProps
  2139. 0x0000000020004140 0x1 ./Profile/OTAprofile.o
  2140. .sdata.led_task_id
  2141. 0x0000000020004141 0x1 ./APP/led.o
  2142. *fill* 0x0000000020004142 0x2
  2143. .sdata.Peripheral_OTA_IAPProfileCBs
  2144. 0x0000000020004144 0x8 ./APP/peripheral.o
  2145. .sdata.Peripheral_TaskID
  2146. 0x000000002000414c 0x1 ./APP/peripheral.o
  2147. *fill* 0x000000002000414d 0x3
  2148. .sdata.advertData
  2149. 0x0000000020004150 0x7 ./APP/peripheral.o
  2150. .sdata.CurrImageFlag
  2151. 0x0000000020004157 0x1 ./APP/peripheral_main.o
  2152. 0x0000000020004157 CurrImageFlag
  2153. .sdata.SystemCoreClock
  2154. 0x0000000020004158 0x4 ./APP/system_ch32v20x.o
  2155. 0x0000000020004158 SystemCoreClock
  2156. .sdata._impure_ptr
  2157. 0x000000002000415c 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)
  2158. 0x000000002000415c _impure_ptr
  2159. *(.gnu.linkonce.s.*)
  2160. 0x0000000020004160 . = ALIGN (0x8)
  2161. *(.srodata.cst16)
  2162. *(.srodata.cst8)
  2163. *(.srodata.cst4)
  2164. *(.srodata.cst2)
  2165. *(.srodata .srodata.*)
  2166. 0x0000000020004160 . = ALIGN (0x4)
  2167. 0x0000000020004160 PROVIDE (_edata = .)
  2168. .bss 0x0000000020004160 0x2134 load address 0x00000000000033a8
  2169. 0x0000000020004160 . = ALIGN (0x4)
  2170. 0x0000000020004160 PROVIDE (_sbss = .)
  2171. *(.sbss*)
  2172. .sbss.p_ms 0x0000000020004160 0x2 ./SRC/Debug/debug.o
  2173. .sbss.p_us 0x0000000020004162 0x1 ./SRC/Debug/debug.o
  2174. .sbss.OTAProfileChar
  2175. 0x0000000020004163 0x1 ./Profile/OTAprofile.o
  2176. .sbss.OTAProfileReadLen
  2177. 0x0000000020004164 0x1 ./Profile/OTAprofile.o
  2178. .sbss.OTAProfileWriteLen
  2179. 0x0000000020004165 0x1 ./Profile/OTAprofile.o
  2180. *fill* 0x0000000020004166 0x2
  2181. .sbss.OTAProfile_AppCBs
  2182. 0x0000000020004168 0x4 ./Profile/OTAprofile.o
  2183. .sbss.g_LLE_IRQLibHandlerLocation
  2184. 0x000000002000416c 0x4 ./HAL/MCU.o
  2185. 0x000000002000416c g_LLE_IRQLibHandlerLocation
  2186. .sbss.halTaskID
  2187. 0x0000000020004170 0x1 ./HAL/MCU.o
  2188. 0x0000000020004170 halTaskID
  2189. *fill* 0x0000000020004171 0x3
  2190. .sbss.RTCTigFlag
  2191. 0x0000000020004174 0x4 ./HAL/RTC.o
  2192. 0x0000000020004174 RTCTigFlag
  2193. .sbss.EraseAdd
  2194. 0x0000000020004178 0x4 ./APP/peripheral.o
  2195. 0x0000000020004178 EraseAdd
  2196. .sbss.EraseBlockCnt
  2197. 0x000000002000417c 0x4 ./APP/peripheral.o
  2198. 0x000000002000417c EraseBlockCnt
  2199. .sbss.EraseBlockNum
  2200. 0x0000000020004180 0x4 ./APP/peripheral.o
  2201. 0x0000000020004180 EraseBlockNum
  2202. .sbss.OpAdd 0x0000000020004184 0x4 ./APP/peripheral.o
  2203. 0x0000000020004184 OpAdd
  2204. .sbss.OpParaDataLen
  2205. 0x0000000020004188 0x4 ./APP/peripheral.o
  2206. 0x0000000020004188 OpParaDataLen
  2207. .sbss.VerifyStatus
  2208. 0x000000002000418c 0x1 ./APP/peripheral.o
  2209. 0x000000002000418c VerifyStatus
  2210. *fill* 0x000000002000418d 0x1
  2211. .sbss.block_buf_len
  2212. 0x000000002000418e 0x2 ./APP/peripheral.o
  2213. 0x000000002000418e block_buf_len
  2214. .sbss.prom_addr
  2215. 0x0000000020004190 0x4 ./APP/peripheral.o
  2216. 0x0000000020004190 prom_addr
  2217. .sbss.__malloc_free_list
  2218. 0x0000000020004194 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)
  2219. 0x0000000020004194 __malloc_free_list
  2220. .sbss.__malloc_sbrk_start
  2221. 0x0000000020004198 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)
  2222. 0x0000000020004198 __malloc_sbrk_start
  2223. *(.gnu.linkonce.sb.*)
  2224. *(.bss*)
  2225. .bss.OTAProfileReadBuf
  2226. 0x000000002000419c 0xf7 ./Profile/OTAprofile.o
  2227. *fill* 0x0000000020004293 0x1
  2228. .bss.OTAProfileWriteBuf
  2229. 0x0000000020004294 0xf7 ./Profile/OTAprofile.o
  2230. *fill* 0x000000002000438b 0x1
  2231. .bss.Peripheral_BondMgrCBs
  2232. 0x000000002000438c 0xc ./APP/peripheral.o
  2233. .bss.block_buf
  2234. 0x0000000020004398 0x200 ./APP/peripheral.o
  2235. 0x0000000020004398 block_buf
  2236. .bss.iap_rec_data
  2237. 0x0000000020004598 0xf7 ./APP/peripheral.o
  2238. 0x0000000020004598 iap_rec_data
  2239. *fill* 0x000000002000468f 0x1
  2240. .bss.MEM_BUF 0x0000000020004690 0x1c00 ./APP/peripheral_main.o
  2241. 0x0000000020004690 MEM_BUF
  2242. *(.gnu.linkonce.b.*)
  2243. *(COMMON*)
  2244. COMMON 0x0000000020006290 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)
  2245. 0x0000000020006290 errno
  2246. 0x0000000020006294 . = ALIGN (0x4)
  2247. 0x0000000020006294 PROVIDE (_ebss = .)
  2248. 0x0000000020006294 PROVIDE (_end = _ebss)
  2249. [!provide] PROVIDE (end = .)
  2250. .stack 0x0000000020010000 0x0
  2251. 0x0000000020010000 PROVIDE (_heap_end = .)
  2252. 0x0000000020010000 . = ALIGN (0x4)
  2253. 0x0000000020010000 PROVIDE (_eusrstack = .)
  2254. OUTPUT(OnlyUpdateApp_IAP.elf elf32-littleriscv)
  2255. .debug_line 0x0000000000000000 0x1082d
  2256. .debug_line 0x0000000000000000 0x290 ./Startup/startup_ch32v20x_D8W.o
  2257. .debug_line 0x0000000000000290 0x19ee ./SRC/Peripheral/src/ch32v20x_adc.o
  2258. .debug_line 0x0000000000001c7e 0x4a5 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2259. .debug_line 0x0000000000002123 0x71c ./SRC/Peripheral/src/ch32v20x_exti.o
  2260. .debug_line 0x000000000000283f 0x26a9 ./SRC/Peripheral/src/ch32v20x_flash.o
  2261. .debug_line 0x0000000000004ee8 0x11e7 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2262. .debug_line 0x00000000000060cf 0x53b ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2263. .debug_line 0x000000000000660a 0xcfb ./SRC/Peripheral/src/ch32v20x_pwr.o
  2264. .debug_line 0x0000000000007305 0x1333 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2265. .debug_line 0x0000000000008638 0x16f3 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2266. .debug_line 0x0000000000009d2b 0x100b ./SRC/Peripheral/src/ch32v20x_usart.o
  2267. .debug_line 0x000000000000ad36 0x8b3 ./SRC/Debug/debug.o
  2268. .debug_line 0x000000000000b5e9 0x7e1 ./Profile/OTAprofile.o
  2269. .debug_line 0x000000000000bdca 0x2ef ./LIB/ble_task_scheduler.o
  2270. .debug_line 0x000000000000c0b9 0xf7c ./HAL/MCU.o
  2271. .debug_line 0x000000000000d035 0x7e7 ./HAL/RTC.o
  2272. .debug_line 0x000000000000d81c 0x459 ./APP/ch32v20x_it.o
  2273. .debug_line 0x000000000000dc75 0x963 ./APP/led.o
  2274. .debug_line 0x000000000000e5d8 0x12f8 ./APP/peripheral.o
  2275. .debug_line 0x000000000000f8d0 0x774 ./APP/peripheral_main.o
  2276. .debug_line 0x0000000000010044 0x7e9 ./APP/system_ch32v20x.o
  2277. .debug_info 0x0000000000000000 0x14b94
  2278. .debug_info 0x0000000000000000 0x22 ./Startup/startup_ch32v20x_D8W.o
  2279. .debug_info 0x0000000000000022 0x16e8 ./SRC/Peripheral/src/ch32v20x_adc.o
  2280. .debug_info 0x000000000000170a 0xa94 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2281. .debug_info 0x000000000000219e 0xc0d ./SRC/Peripheral/src/ch32v20x_exti.o
  2282. .debug_info 0x0000000000002dab 0x15dd ./SRC/Peripheral/src/ch32v20x_flash.o
  2283. .debug_info 0x0000000000004388 0x11a4 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2284. .debug_info 0x000000000000552c 0xb74 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2285. .debug_info 0x00000000000060a0 0x1054 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2286. .debug_info 0x00000000000070f4 0x1279 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2287. .debug_info 0x000000000000836d 0xfc2 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2288. .debug_info 0x000000000000932f 0x1340 ./SRC/Peripheral/src/ch32v20x_usart.o
  2289. .debug_info 0x000000000000a66f 0xf2d ./SRC/Debug/debug.o
  2290. .debug_info 0x000000000000b59c 0x1066 ./Profile/OTAprofile.o
  2291. .debug_info 0x000000000000c602 0x22 ./LIB/ble_task_scheduler.o
  2292. .debug_info 0x000000000000c624 0x1a85 ./HAL/MCU.o
  2293. .debug_info 0x000000000000e0a9 0xd55 ./HAL/RTC.o
  2294. .debug_info 0x000000000000edfe 0xc2c ./APP/ch32v20x_it.o
  2295. .debug_info 0x000000000000fa2a 0x1079 ./APP/led.o
  2296. .debug_info 0x0000000000010aa3 0x2872 ./APP/peripheral.o
  2297. .debug_info 0x0000000000013315 0xcf6 ./APP/peripheral_main.o
  2298. .debug_info 0x000000000001400b 0xb89 ./APP/system_ch32v20x.o
  2299. .debug_abbrev 0x0000000000000000 0x3f55
  2300. .debug_abbrev 0x0000000000000000 0x12 ./Startup/startup_ch32v20x_D8W.o
  2301. .debug_abbrev 0x0000000000000012 0x3ac ./SRC/Peripheral/src/ch32v20x_adc.o
  2302. .debug_abbrev 0x00000000000003be 0x2f7 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2303. .debug_abbrev 0x00000000000006b5 0x2da ./SRC/Peripheral/src/ch32v20x_exti.o
  2304. .debug_abbrev 0x000000000000098f 0x468 ./SRC/Peripheral/src/ch32v20x_flash.o
  2305. .debug_abbrev 0x0000000000000df7 0x354 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2306. .debug_abbrev 0x000000000000114b 0x282 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2307. .debug_abbrev 0x00000000000013cd 0x39c ./SRC/Peripheral/src/ch32v20x_pwr.o
  2308. .debug_abbrev 0x0000000000001769 0x374 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2309. .debug_abbrev 0x0000000000001add 0x32a ./SRC/Peripheral/src/ch32v20x_rtc.o
  2310. .debug_abbrev 0x0000000000001e07 0x325 ./SRC/Peripheral/src/ch32v20x_usart.o
  2311. .debug_abbrev 0x000000000000212c 0x2f0 ./SRC/Debug/debug.o
  2312. .debug_abbrev 0x000000000000241c 0x36d ./Profile/OTAprofile.o
  2313. .debug_abbrev 0x0000000000002789 0x12 ./LIB/ble_task_scheduler.o
  2314. .debug_abbrev 0x000000000000279b 0x43e ./HAL/MCU.o
  2315. .debug_abbrev 0x0000000000002bd9 0x2b4 ./HAL/RTC.o
  2316. .debug_abbrev 0x0000000000002e8d 0x24b ./APP/ch32v20x_it.o
  2317. .debug_abbrev 0x00000000000030d8 0x3d6 ./APP/led.o
  2318. .debug_abbrev 0x00000000000034ae 0x50f ./APP/peripheral.o
  2319. .debug_abbrev 0x00000000000039bd 0x2d8 ./APP/peripheral_main.o
  2320. .debug_abbrev 0x0000000000003c95 0x2c0 ./APP/system_ch32v20x.o
  2321. .debug_aranges 0x0000000000000000 0xa08
  2322. .debug_aranges
  2323. 0x0000000000000000 0x30 ./Startup/startup_ch32v20x_D8W.o
  2324. .debug_aranges
  2325. 0x0000000000000030 0x150 ./SRC/Peripheral/src/ch32v20x_adc.o
  2326. .debug_aranges
  2327. 0x0000000000000180 0x48 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2328. .debug_aranges
  2329. 0x00000000000001c8 0x50 ./SRC/Peripheral/src/ch32v20x_exti.o
  2330. .debug_aranges
  2331. 0x0000000000000218 0x110 ./SRC/Peripheral/src/ch32v20x_flash.o
  2332. .debug_aranges
  2333. 0x0000000000000328 0xb0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2334. .debug_aranges
  2335. 0x00000000000003d8 0x48 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2336. .debug_aranges
  2337. 0x0000000000000420 0x88 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2338. .debug_aranges
  2339. 0x00000000000004a8 0x130 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2340. .debug_aranges
  2341. 0x00000000000005d8 0x88 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2342. .debug_aranges
  2343. 0x0000000000000660 0xf0 ./SRC/Peripheral/src/ch32v20x_usart.o
  2344. .debug_aranges
  2345. 0x0000000000000750 0x50 ./SRC/Debug/debug.o
  2346. .debug_aranges
  2347. 0x00000000000007a0 0x40 ./Profile/OTAprofile.o
  2348. .debug_aranges
  2349. 0x00000000000007e0 0x28 ./LIB/ble_task_scheduler.o
  2350. .debug_aranges
  2351. 0x0000000000000808 0x50 ./HAL/MCU.o
  2352. .debug_aranges
  2353. 0x0000000000000858 0x30 ./HAL/RTC.o
  2354. .debug_aranges
  2355. 0x0000000000000888 0x30 ./APP/ch32v20x_it.o
  2356. .debug_aranges
  2357. 0x00000000000008b8 0x50 ./APP/led.o
  2358. .debug_aranges
  2359. 0x0000000000000908 0xa8 ./APP/peripheral.o
  2360. .debug_aranges
  2361. 0x00000000000009b0 0x30 ./APP/peripheral_main.o
  2362. .debug_aranges
  2363. 0x00000000000009e0 0x28 ./APP/system_ch32v20x.o
  2364. .debug_str 0x0000000000000000 0x404d
  2365. .debug_str 0x0000000000000000 0x8c ./Startup/startup_ch32v20x_D8W.o
  2366. .debug_str 0x000000000000008c 0xb77 ./SRC/Peripheral/src/ch32v20x_adc.o
  2367. 0xcad (size before relaxing)
  2368. .debug_str 0x0000000000000c03 0xe0 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2369. 0x6dc (size before relaxing)
  2370. .debug_str 0x0000000000000ce3 0x20c ./SRC/Peripheral/src/ch32v20x_exti.o
  2371. 0x823 (size before relaxing)
  2372. .debug_str 0x0000000000000eef 0x52c ./SRC/Peripheral/src/ch32v20x_flash.o
  2373. 0xbb5 (size before relaxing)
  2374. .debug_str 0x000000000000141b 0x3ff ./SRC/Peripheral/src/ch32v20x_gpio.o
  2375. 0xa46 (size before relaxing)
  2376. .debug_str 0x000000000000181a 0x180 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2377. 0x79a (size before relaxing)
  2378. .debug_str 0x000000000000199a 0x29e ./SRC/Peripheral/src/ch32v20x_pwr.o
  2379. 0x8f2 (size before relaxing)
  2380. .debug_str 0x0000000000001c38 0x454 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2381. 0xb64 (size before relaxing)
  2382. .debug_str 0x000000000000208c 0x31b ./SRC/Peripheral/src/ch32v20x_rtc.o
  2383. 0x9cb (size before relaxing)
  2384. .debug_str 0x00000000000023a7 0x42d ./SRC/Peripheral/src/ch32v20x_usart.o
  2385. 0xb80 (size before relaxing)
  2386. .debug_str 0x00000000000027d4 0x108 ./SRC/Debug/debug.o
  2387. 0x9a7 (size before relaxing)
  2388. .debug_str 0x00000000000028dc 0x314 ./Profile/OTAprofile.o
  2389. 0x92c (size before relaxing)
  2390. .debug_str 0x0000000000002bf0 0x69 ./LIB/ble_task_scheduler.o
  2391. 0xd3 (size before relaxing)
  2392. .debug_str 0x0000000000002c59 0x6d6 ./HAL/MCU.o
  2393. 0x117f (size before relaxing)
  2394. .debug_str 0x000000000000332f 0xe3 ./HAL/RTC.o
  2395. 0x858 (size before relaxing)
  2396. .debug_str 0x0000000000003412 0x52 ./APP/ch32v20x_it.o
  2397. 0x6ef (size before relaxing)
  2398. .debug_str 0x0000000000003464 0x1ee ./APP/led.o
  2399. 0x9fe (size before relaxing)
  2400. .debug_str 0x0000000000003652 0x91e ./APP/peripheral.o
  2401. 0x12a6 (size before relaxing)
  2402. .debug_str 0x0000000000003f70 0x91 ./APP/peripheral_main.o
  2403. 0x7a8 (size before relaxing)
  2404. .debug_str 0x0000000000004001 0x4c ./APP/system_ch32v20x.o
  2405. 0x710 (size before relaxing)
  2406. .debug_ranges 0x0000000000000000 0xad8
  2407. .debug_ranges 0x0000000000000000 0x28 ./Startup/startup_ch32v20x_D8W.o
  2408. .debug_ranges 0x0000000000000028 0x140 ./SRC/Peripheral/src/ch32v20x_adc.o
  2409. .debug_ranges 0x0000000000000168 0x50 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2410. .debug_ranges 0x00000000000001b8 0x40 ./SRC/Peripheral/src/ch32v20x_exti.o
  2411. .debug_ranges 0x00000000000001f8 0x100 ./SRC/Peripheral/src/ch32v20x_flash.o
  2412. .debug_ranges 0x00000000000002f8 0xa0 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2413. .debug_ranges 0x0000000000000398 0x38 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2414. .debug_ranges 0x00000000000003d0 0x78 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2415. .debug_ranges 0x0000000000000448 0x120 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2416. .debug_ranges 0x0000000000000568 0x78 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2417. .debug_ranges 0x00000000000005e0 0xe0 ./SRC/Peripheral/src/ch32v20x_usart.o
  2418. .debug_ranges 0x00000000000006c0 0x40 ./SRC/Debug/debug.o
  2419. .debug_ranges 0x0000000000000700 0x98 ./Profile/OTAprofile.o
  2420. .debug_ranges 0x0000000000000798 0x20 ./LIB/ble_task_scheduler.o
  2421. .debug_ranges 0x00000000000007b8 0x88 ./HAL/MCU.o
  2422. .debug_ranges 0x0000000000000840 0x20 ./HAL/RTC.o
  2423. .debug_ranges 0x0000000000000860 0x20 ./APP/ch32v20x_it.o
  2424. .debug_ranges 0x0000000000000880 0x138 ./APP/led.o
  2425. .debug_ranges 0x00000000000009b8 0xc8 ./APP/peripheral.o
  2426. .debug_ranges 0x0000000000000a80 0x20 ./APP/peripheral_main.o
  2427. .debug_ranges 0x0000000000000aa0 0x38 ./APP/system_ch32v20x.o
  2428. .debug_loc 0x0000000000000000 0x4c62
  2429. .debug_loc 0x0000000000000000 0xada ./SRC/Peripheral/src/ch32v20x_adc.o
  2430. .debug_loc 0x0000000000000ada 0x7c ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2431. .debug_loc 0x0000000000000b56 0x181 ./SRC/Peripheral/src/ch32v20x_exti.o
  2432. .debug_loc 0x0000000000000cd7 0xcc2 ./SRC/Peripheral/src/ch32v20x_flash.o
  2433. .debug_loc 0x0000000000001999 0x707 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2434. .debug_loc 0x00000000000020a0 0x68 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2435. .debug_loc 0x0000000000002108 0x29e ./SRC/Peripheral/src/ch32v20x_pwr.o
  2436. .debug_loc 0x00000000000023a6 0x7ad ./SRC/Peripheral/src/ch32v20x_rcc.o
  2437. .debug_loc 0x0000000000002b53 0x54f ./SRC/Peripheral/src/ch32v20x_rtc.o
  2438. .debug_loc 0x00000000000030a2 0x752 ./SRC/Peripheral/src/ch32v20x_usart.o
  2439. .debug_loc 0x00000000000037f4 0x1a8 ./SRC/Debug/debug.o
  2440. .debug_loc 0x000000000000399c 0x59c ./Profile/OTAprofile.o
  2441. .debug_loc 0x0000000000003f38 0x40c ./HAL/MCU.o
  2442. .debug_loc 0x0000000000004344 0x8b ./HAL/RTC.o
  2443. .debug_loc 0x00000000000043cf 0x2ad ./APP/led.o
  2444. .debug_loc 0x000000000000467c 0x524 ./APP/peripheral.o
  2445. .debug_loc 0x0000000000004ba0 0xc2 ./APP/system_ch32v20x.o
  2446. .comment 0x0000000000000000 0x33
  2447. .comment 0x0000000000000000 0x33 ./SRC/Peripheral/src/ch32v20x_adc.o
  2448. 0x34 (size before relaxing)
  2449. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2450. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_exti.o
  2451. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_flash.o
  2452. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2453. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2454. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_pwr.o
  2455. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2456. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2457. .comment 0x0000000000000033 0x34 ./SRC/Peripheral/src/ch32v20x_usart.o
  2458. .comment 0x0000000000000033 0x34 ./SRC/Debug/debug.o
  2459. .comment 0x0000000000000033 0x34 ./Profile/OTAprofile.o
  2460. .comment 0x0000000000000033 0x34 ./HAL/MCU.o
  2461. .comment 0x0000000000000033 0x34 ./HAL/RTC.o
  2462. .comment 0x0000000000000033 0x34 ./APP/ch32v20x_it.o
  2463. .comment 0x0000000000000033 0x34 ./APP/led.o
  2464. .comment 0x0000000000000033 0x34 ./APP/peripheral.o
  2465. .comment 0x0000000000000033 0x34 ./APP/peripheral_main.o
  2466. .comment 0x0000000000000033 0x34 ./APP/system_ch32v20x.o
  2467. .debug_frame 0x0000000000000000 0x1f2c
  2468. .debug_frame 0x0000000000000000 0x2bc ./SRC/Peripheral/src/ch32v20x_adc.o
  2469. .debug_frame 0x00000000000002bc 0x70 ./SRC/Peripheral/src/ch32v20x_dbgmcu.o
  2470. .debug_frame 0x000000000000032c 0x90 ./SRC/Peripheral/src/ch32v20x_exti.o
  2471. .debug_frame 0x00000000000003bc 0x350 ./SRC/Peripheral/src/ch32v20x_flash.o
  2472. .debug_frame 0x000000000000070c 0x178 ./SRC/Peripheral/src/ch32v20x_gpio.o
  2473. .debug_frame 0x0000000000000884 0x70 ./SRC/Peripheral/src/ch32v20x_iwdg.o
  2474. .debug_frame 0x00000000000008f4 0xfc ./SRC/Peripheral/src/ch32v20x_pwr.o
  2475. .debug_frame 0x00000000000009f0 0x250 ./SRC/Peripheral/src/ch32v20x_rcc.o
  2476. .debug_frame 0x0000000000000c40 0x168 ./SRC/Peripheral/src/ch32v20x_rtc.o
  2477. .debug_frame 0x0000000000000da8 0x1f0 ./SRC/Peripheral/src/ch32v20x_usart.o
  2478. .debug_frame 0x0000000000000f98 0xc0 ./SRC/Debug/debug.o
  2479. .debug_frame 0x0000000000001058 0x8c ./Profile/OTAprofile.o
  2480. .debug_frame 0x00000000000010e4 0x11c ./HAL/MCU.o
  2481. .debug_frame 0x0000000000001200 0x60 ./HAL/RTC.o
  2482. .debug_frame 0x0000000000001260 0x40 ./APP/ch32v20x_it.o
  2483. .debug_frame 0x00000000000012a0 0xc8 ./APP/led.o
  2484. .debug_frame 0x0000000000001368 0x218 ./APP/peripheral.o
  2485. .debug_frame 0x0000000000001580 0x5c ./APP/peripheral_main.o
  2486. .debug_frame 0x00000000000015dc 0x3c ./APP/system_ch32v20x.o
  2487. .debug_frame 0x0000000000001618 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)
  2488. .debug_frame 0x000000000000166c 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)
  2489. .debug_frame 0x00000000000016c0 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)
  2490. .debug_frame 0x0000000000001710 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)
  2491. .debug_frame 0x000000000000174c 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)
  2492. .debug_frame 0x00000000000017c8 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)
  2493. .debug_frame 0x0000000000001910 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)
  2494. .debug_frame 0x0000000000001998 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)
  2495. .debug_frame 0x00000000000019fc 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)
  2496. .debug_frame 0x0000000000001a3c 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)
  2497. .debug_frame 0x0000000000001a7c 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)
  2498. .debug_frame 0x0000000000001b4c 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)
  2499. .debug_frame 0x0000000000001bd8 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)
  2500. .debug_frame 0x0000000000001c08 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)
  2501. .debug_frame 0x0000000000001cac 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)
  2502. .debug_frame 0x0000000000001cdc 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)
  2503. .debug_frame 0x0000000000001d0c 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)
  2504. .debug_frame 0x0000000000001d3c 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)
  2505. .debug_frame 0x0000000000001d6c 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)
  2506. .debug_frame 0x0000000000001d9c 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)
  2507. .debug_frame 0x0000000000001dbc 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)
  2508. .debug_frame 0x0000000000001dec 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)
  2509. .debug_frame 0x0000000000001e1c 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)
  2510. .debug_frame 0x0000000000001e8c 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)
  2511. .debug_frame 0x0000000000001eac 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)
  2512. .debug_frame 0x0000000000001ecc 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)
  2513. .debug_frame 0x0000000000001eec 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)
  2514. .debug_frame 0x0000000000001f0c 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)
  2515. .stab 0x0000000000000000 0x84
  2516. .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)
  2517. .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)
  2518. 0x24 (size before relaxing)
  2519. .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)
  2520. 0x24 (size before relaxing)
  2521. .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)
  2522. 0x24 (size before relaxing)
  2523. .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)
  2524. 0x24 (size before relaxing)
  2525. .stabstr 0x0000000000000000 0x117
  2526. .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)