STM32G030_Dshot.map 305 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639
  1. Archive member included to satisfy reference by file (symbol)
  2. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o)
  3. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (exit)
  4. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  5. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o) (__stdio_exit_handler)
  6. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o)
  7. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) (_fwalk_sglue)
  8. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  9. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) (__sread)
  10. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o)
  11. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (memset)
  12. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o)
  13. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) (_close_r)
  14. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o)
  15. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o) (errno)
  16. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o)
  17. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) (_impure_ptr)
  18. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o)
  19. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) (_lseek_r)
  20. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o)
  21. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) (_read_r)
  22. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o)
  23. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o) (_write_r)
  24. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o)
  25. ./Core/Src/syscalls.o (__errno)
  26. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o)
  27. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o (__libc_init_array)
  28. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  29. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) (__retarget_lock_init_recursive)
  30. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o)
  31. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o) (_free_r)
  32. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  33. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) (_malloc_r)
  34. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o)
  35. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o) (__malloc_lock)
  36. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o)
  37. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o) (_fflush_r)
  38. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o)
  39. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o) (_sbrk_r)
  40. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o)
  41. ./Core/Src/system_stm32g0xx.o (__aeabi_uidiv)
  42. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o)
  43. /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o) (__aeabi_idiv0)
  44. Discarded input sections
  45. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crti.o
  46. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crti.o
  47. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crti.o
  48. .data 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  49. .rodata 0x00000000 0x24 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  50. .text 0x00000000 0x80 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o
  51. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o
  52. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o
  53. .ARM.extab 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o
  54. .ARM.exidx 0x00000000 0x10 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o
  55. .ARM.attributes
  56. 0x00000000 0x1b /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o
  57. .group 0x00000000 0xc ./Core/Src/input_capture.o
  58. .group 0x00000000 0xc ./Core/Src/input_capture.o
  59. .group 0x00000000 0xc ./Core/Src/input_capture.o
  60. .group 0x00000000 0xc ./Core/Src/input_capture.o
  61. .group 0x00000000 0xc ./Core/Src/input_capture.o
  62. .group 0x00000000 0xc ./Core/Src/input_capture.o
  63. .group 0x00000000 0xc ./Core/Src/input_capture.o
  64. .group 0x00000000 0xc ./Core/Src/input_capture.o
  65. .group 0x00000000 0xc ./Core/Src/input_capture.o
  66. .group 0x00000000 0xc ./Core/Src/input_capture.o
  67. .group 0x00000000 0xc ./Core/Src/input_capture.o
  68. .group 0x00000000 0xc ./Core/Src/input_capture.o
  69. .group 0x00000000 0xc ./Core/Src/input_capture.o
  70. .group 0x00000000 0xc ./Core/Src/input_capture.o
  71. .group 0x00000000 0xc ./Core/Src/input_capture.o
  72. .group 0x00000000 0xc ./Core/Src/input_capture.o
  73. .group 0x00000000 0xc ./Core/Src/input_capture.o
  74. .group 0x00000000 0xc ./Core/Src/input_capture.o
  75. .group 0x00000000 0xc ./Core/Src/input_capture.o
  76. .group 0x00000000 0xc ./Core/Src/input_capture.o
  77. .group 0x00000000 0xc ./Core/Src/input_capture.o
  78. .group 0x00000000 0xc ./Core/Src/input_capture.o
  79. .group 0x00000000 0xc ./Core/Src/input_capture.o
  80. .group 0x00000000 0xc ./Core/Src/input_capture.o
  81. .group 0x00000000 0xc ./Core/Src/input_capture.o
  82. .group 0x00000000 0xc ./Core/Src/input_capture.o
  83. .group 0x00000000 0xc ./Core/Src/input_capture.o
  84. .group 0x00000000 0xc ./Core/Src/input_capture.o
  85. .group 0x00000000 0xc ./Core/Src/input_capture.o
  86. .group 0x00000000 0xc ./Core/Src/input_capture.o
  87. .group 0x00000000 0xc ./Core/Src/input_capture.o
  88. .group 0x00000000 0xc ./Core/Src/input_capture.o
  89. .group 0x00000000 0xc ./Core/Src/input_capture.o
  90. .group 0x00000000 0xc ./Core/Src/input_capture.o
  91. .group 0x00000000 0xc ./Core/Src/input_capture.o
  92. .group 0x00000000 0xc ./Core/Src/input_capture.o
  93. .group 0x00000000 0xc ./Core/Src/input_capture.o
  94. .group 0x00000000 0xc ./Core/Src/input_capture.o
  95. .group 0x00000000 0xc ./Core/Src/input_capture.o
  96. .group 0x00000000 0xc ./Core/Src/input_capture.o
  97. .group 0x00000000 0xc ./Core/Src/input_capture.o
  98. .group 0x00000000 0xc ./Core/Src/input_capture.o
  99. .text 0x00000000 0x0 ./Core/Src/input_capture.o
  100. .data 0x00000000 0x0 ./Core/Src/input_capture.o
  101. .bss 0x00000000 0x0 ./Core/Src/input_capture.o
  102. .rodata.CHANNEL_OFFSET_TAB
  103. 0x00000000 0x5 ./Core/Src/input_capture.o
  104. .text.DShot_Get
  105. 0x00000000 0x14 ./Core/Src/input_capture.o
  106. .text.PWMInput_Init
  107. 0x00000000 0x5c ./Core/Src/input_capture.o
  108. .text.PWMInput_DeInit
  109. 0x00000000 0x24 ./Core/Src/input_capture.o
  110. .text.PWMInput_Get
  111. 0x00000000 0x14 ./Core/Src/input_capture.o
  112. .group 0x00000000 0xc ./Core/Src/main.o
  113. .group 0x00000000 0xc ./Core/Src/main.o
  114. .group 0x00000000 0xc ./Core/Src/main.o
  115. .group 0x00000000 0xc ./Core/Src/main.o
  116. .group 0x00000000 0xc ./Core/Src/main.o
  117. .group 0x00000000 0xc ./Core/Src/main.o
  118. .group 0x00000000 0xc ./Core/Src/main.o
  119. .group 0x00000000 0xc ./Core/Src/main.o
  120. .group 0x00000000 0xc ./Core/Src/main.o
  121. .group 0x00000000 0xc ./Core/Src/main.o
  122. .group 0x00000000 0xc ./Core/Src/main.o
  123. .group 0x00000000 0xc ./Core/Src/main.o
  124. .group 0x00000000 0xc ./Core/Src/main.o
  125. .group 0x00000000 0xc ./Core/Src/main.o
  126. .group 0x00000000 0xc ./Core/Src/main.o
  127. .group 0x00000000 0xc ./Core/Src/main.o
  128. .group 0x00000000 0xc ./Core/Src/main.o
  129. .group 0x00000000 0xc ./Core/Src/main.o
  130. .group 0x00000000 0xc ./Core/Src/main.o
  131. .group 0x00000000 0xc ./Core/Src/main.o
  132. .group 0x00000000 0xc ./Core/Src/main.o
  133. .group 0x00000000 0xc ./Core/Src/main.o
  134. .group 0x00000000 0xc ./Core/Src/main.o
  135. .group 0x00000000 0xc ./Core/Src/main.o
  136. .group 0x00000000 0xc ./Core/Src/main.o
  137. .group 0x00000000 0xc ./Core/Src/main.o
  138. .group 0x00000000 0xc ./Core/Src/main.o
  139. .group 0x00000000 0xc ./Core/Src/main.o
  140. .group 0x00000000 0xc ./Core/Src/main.o
  141. .group 0x00000000 0xc ./Core/Src/main.o
  142. .group 0x00000000 0xc ./Core/Src/main.o
  143. .group 0x00000000 0xc ./Core/Src/main.o
  144. .group 0x00000000 0xc ./Core/Src/main.o
  145. .group 0x00000000 0xc ./Core/Src/main.o
  146. .group 0x00000000 0xc ./Core/Src/main.o
  147. .group 0x00000000 0xc ./Core/Src/main.o
  148. .group 0x00000000 0xc ./Core/Src/main.o
  149. .group 0x00000000 0xc ./Core/Src/main.o
  150. .group 0x00000000 0xc ./Core/Src/main.o
  151. .group 0x00000000 0xc ./Core/Src/main.o
  152. .group 0x00000000 0xc ./Core/Src/main.o
  153. .group 0x00000000 0xc ./Core/Src/main.o
  154. .text 0x00000000 0x0 ./Core/Src/main.o
  155. .data 0x00000000 0x0 ./Core/Src/main.o
  156. .bss 0x00000000 0x0 ./Core/Src/main.o
  157. .rodata.CHANNEL_OFFSET_TAB
  158. 0x00000000 0x5 ./Core/Src/main.o
  159. .debug_macro 0x00000000 0xa8a ./Core/Src/main.o
  160. .debug_macro 0x00000000 0x117 ./Core/Src/main.o
  161. .debug_macro 0x00000000 0x2e ./Core/Src/main.o
  162. .debug_macro 0x00000000 0x28 ./Core/Src/main.o
  163. .debug_macro 0x00000000 0x22 ./Core/Src/main.o
  164. .debug_macro 0x00000000 0x8e ./Core/Src/main.o
  165. .debug_macro 0x00000000 0x51 ./Core/Src/main.o
  166. .debug_macro 0x00000000 0x103 ./Core/Src/main.o
  167. .debug_macro 0x00000000 0x6a ./Core/Src/main.o
  168. .debug_macro 0x00000000 0x1df ./Core/Src/main.o
  169. .debug_macro 0x00000000 0x1c ./Core/Src/main.o
  170. .debug_macro 0x00000000 0x22 ./Core/Src/main.o
  171. .debug_macro 0x00000000 0xd1 ./Core/Src/main.o
  172. .debug_macro 0x00000000 0x4da ./Core/Src/main.o
  173. .debug_macro 0x00000000 0x11f ./Core/Src/main.o
  174. .debug_macro 0x00000000 0xa0e8 ./Core/Src/main.o
  175. .debug_macro 0x00000000 0x66 ./Core/Src/main.o
  176. .debug_macro 0x00000000 0x350e ./Core/Src/main.o
  177. .debug_macro 0x00000000 0x189 ./Core/Src/main.o
  178. .debug_macro 0x00000000 0x5c ./Core/Src/main.o
  179. .debug_macro 0x00000000 0x462 ./Core/Src/main.o
  180. .debug_macro 0x00000000 0xe1a ./Core/Src/main.o
  181. .debug_macro 0x00000000 0x106 ./Core/Src/main.o
  182. .debug_macro 0x00000000 0x1cf ./Core/Src/main.o
  183. .debug_macro 0x00000000 0xff ./Core/Src/main.o
  184. .debug_macro 0x00000000 0x33c ./Core/Src/main.o
  185. .debug_macro 0x00000000 0x202 ./Core/Src/main.o
  186. .debug_macro 0x00000000 0x2c7 ./Core/Src/main.o
  187. .debug_macro 0x00000000 0x198 ./Core/Src/main.o
  188. .debug_macro 0x00000000 0x43 ./Core/Src/main.o
  189. .debug_macro 0x00000000 0x1f1 ./Core/Src/main.o
  190. .debug_macro 0x00000000 0x1d6 ./Core/Src/main.o
  191. .debug_macro 0x00000000 0x2a3 ./Core/Src/main.o
  192. .debug_macro 0x00000000 0x28 ./Core/Src/main.o
  193. .debug_macro 0x00000000 0xcf ./Core/Src/main.o
  194. .debug_macro 0x00000000 0xff ./Core/Src/main.o
  195. .debug_macro 0x00000000 0x10d ./Core/Src/main.o
  196. .debug_macro 0x00000000 0xac2 ./Core/Src/main.o
  197. .debug_macro 0x00000000 0xfa ./Core/Src/main.o
  198. .debug_macro 0x00000000 0x412 ./Core/Src/main.o
  199. .debug_macro 0x00000000 0x10 ./Core/Src/main.o
  200. .debug_macro 0x00000000 0x3a ./Core/Src/main.o
  201. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  202. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  203. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  204. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  205. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  206. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  207. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  208. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  209. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  210. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  211. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  212. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  213. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  214. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  215. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  216. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  217. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  218. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  219. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  220. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  221. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  222. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  223. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  224. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  225. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  226. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  227. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  228. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  229. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  230. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  231. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  232. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  233. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  234. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  235. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  236. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  237. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  238. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  239. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  240. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  241. .group 0x00000000 0xc ./Core/Src/stm32g0xx_hal_msp.o
  242. .text 0x00000000 0x0 ./Core/Src/stm32g0xx_hal_msp.o
  243. .data 0x00000000 0x0 ./Core/Src/stm32g0xx_hal_msp.o
  244. .bss 0x00000000 0x0 ./Core/Src/stm32g0xx_hal_msp.o
  245. .rodata.CHANNEL_OFFSET_TAB
  246. 0x00000000 0x5 ./Core/Src/stm32g0xx_hal_msp.o
  247. .text.HAL_TIM_Base_MspDeInit
  248. 0x00000000 0x54 ./Core/Src/stm32g0xx_hal_msp.o
  249. .debug_macro 0x00000000 0xa8a ./Core/Src/stm32g0xx_hal_msp.o
  250. .debug_macro 0x00000000 0x117 ./Core/Src/stm32g0xx_hal_msp.o
  251. .debug_macro 0x00000000 0x2e ./Core/Src/stm32g0xx_hal_msp.o
  252. .debug_macro 0x00000000 0x28 ./Core/Src/stm32g0xx_hal_msp.o
  253. .debug_macro 0x00000000 0x22 ./Core/Src/stm32g0xx_hal_msp.o
  254. .debug_macro 0x00000000 0x8e ./Core/Src/stm32g0xx_hal_msp.o
  255. .debug_macro 0x00000000 0x51 ./Core/Src/stm32g0xx_hal_msp.o
  256. .debug_macro 0x00000000 0x103 ./Core/Src/stm32g0xx_hal_msp.o
  257. .debug_macro 0x00000000 0x6a ./Core/Src/stm32g0xx_hal_msp.o
  258. .debug_macro 0x00000000 0x1df ./Core/Src/stm32g0xx_hal_msp.o
  259. .debug_macro 0x00000000 0x1c ./Core/Src/stm32g0xx_hal_msp.o
  260. .debug_macro 0x00000000 0x22 ./Core/Src/stm32g0xx_hal_msp.o
  261. .debug_macro 0x00000000 0xd1 ./Core/Src/stm32g0xx_hal_msp.o
  262. .debug_macro 0x00000000 0x4da ./Core/Src/stm32g0xx_hal_msp.o
  263. .debug_macro 0x00000000 0x11f ./Core/Src/stm32g0xx_hal_msp.o
  264. .debug_macro 0x00000000 0xa0e8 ./Core/Src/stm32g0xx_hal_msp.o
  265. .debug_macro 0x00000000 0x66 ./Core/Src/stm32g0xx_hal_msp.o
  266. .debug_macro 0x00000000 0x350e ./Core/Src/stm32g0xx_hal_msp.o
  267. .debug_macro 0x00000000 0x189 ./Core/Src/stm32g0xx_hal_msp.o
  268. .debug_macro 0x00000000 0x5c ./Core/Src/stm32g0xx_hal_msp.o
  269. .debug_macro 0x00000000 0x462 ./Core/Src/stm32g0xx_hal_msp.o
  270. .debug_macro 0x00000000 0xe1a ./Core/Src/stm32g0xx_hal_msp.o
  271. .debug_macro 0x00000000 0x106 ./Core/Src/stm32g0xx_hal_msp.o
  272. .debug_macro 0x00000000 0x1cf ./Core/Src/stm32g0xx_hal_msp.o
  273. .debug_macro 0x00000000 0xff ./Core/Src/stm32g0xx_hal_msp.o
  274. .debug_macro 0x00000000 0x33c ./Core/Src/stm32g0xx_hal_msp.o
  275. .debug_macro 0x00000000 0x202 ./Core/Src/stm32g0xx_hal_msp.o
  276. .debug_macro 0x00000000 0x2c7 ./Core/Src/stm32g0xx_hal_msp.o
  277. .debug_macro 0x00000000 0x198 ./Core/Src/stm32g0xx_hal_msp.o
  278. .debug_macro 0x00000000 0x43 ./Core/Src/stm32g0xx_hal_msp.o
  279. .debug_macro 0x00000000 0x1f1 ./Core/Src/stm32g0xx_hal_msp.o
  280. .debug_macro 0x00000000 0x1d6 ./Core/Src/stm32g0xx_hal_msp.o
  281. .debug_macro 0x00000000 0x2a3 ./Core/Src/stm32g0xx_hal_msp.o
  282. .debug_macro 0x00000000 0x28 ./Core/Src/stm32g0xx_hal_msp.o
  283. .debug_macro 0x00000000 0xcf ./Core/Src/stm32g0xx_hal_msp.o
  284. .debug_macro 0x00000000 0xff ./Core/Src/stm32g0xx_hal_msp.o
  285. .debug_macro 0x00000000 0x10d ./Core/Src/stm32g0xx_hal_msp.o
  286. .debug_macro 0x00000000 0xac2 ./Core/Src/stm32g0xx_hal_msp.o
  287. .debug_macro 0x00000000 0xfa ./Core/Src/stm32g0xx_hal_msp.o
  288. .debug_macro 0x00000000 0x412 ./Core/Src/stm32g0xx_hal_msp.o
  289. .debug_macro 0x00000000 0x10 ./Core/Src/stm32g0xx_hal_msp.o
  290. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  291. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  292. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  293. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  294. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  295. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  296. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  297. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  298. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  299. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  300. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  301. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  302. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  303. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  304. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  305. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  306. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  307. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  308. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  309. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  310. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  311. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  312. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  313. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  314. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  315. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  316. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  317. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  318. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  319. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  320. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  321. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  322. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  323. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  324. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  325. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  326. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  327. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  328. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  329. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  330. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  331. .group 0x00000000 0xc ./Core/Src/stm32g0xx_it.o
  332. .text 0x00000000 0x0 ./Core/Src/stm32g0xx_it.o
  333. .data 0x00000000 0x0 ./Core/Src/stm32g0xx_it.o
  334. .bss 0x00000000 0x0 ./Core/Src/stm32g0xx_it.o
  335. .rodata.CHANNEL_OFFSET_TAB
  336. 0x00000000 0x5 ./Core/Src/stm32g0xx_it.o
  337. .debug_macro 0x00000000 0xa8a ./Core/Src/stm32g0xx_it.o
  338. .debug_macro 0x00000000 0x117 ./Core/Src/stm32g0xx_it.o
  339. .debug_macro 0x00000000 0x2e ./Core/Src/stm32g0xx_it.o
  340. .debug_macro 0x00000000 0x28 ./Core/Src/stm32g0xx_it.o
  341. .debug_macro 0x00000000 0x22 ./Core/Src/stm32g0xx_it.o
  342. .debug_macro 0x00000000 0x8e ./Core/Src/stm32g0xx_it.o
  343. .debug_macro 0x00000000 0x51 ./Core/Src/stm32g0xx_it.o
  344. .debug_macro 0x00000000 0x103 ./Core/Src/stm32g0xx_it.o
  345. .debug_macro 0x00000000 0x6a ./Core/Src/stm32g0xx_it.o
  346. .debug_macro 0x00000000 0x1df ./Core/Src/stm32g0xx_it.o
  347. .debug_macro 0x00000000 0x1c ./Core/Src/stm32g0xx_it.o
  348. .debug_macro 0x00000000 0x22 ./Core/Src/stm32g0xx_it.o
  349. .debug_macro 0x00000000 0xd1 ./Core/Src/stm32g0xx_it.o
  350. .debug_macro 0x00000000 0x4da ./Core/Src/stm32g0xx_it.o
  351. .debug_macro 0x00000000 0x11f ./Core/Src/stm32g0xx_it.o
  352. .debug_macro 0x00000000 0xa0e8 ./Core/Src/stm32g0xx_it.o
  353. .debug_macro 0x00000000 0x66 ./Core/Src/stm32g0xx_it.o
  354. .debug_macro 0x00000000 0x350e ./Core/Src/stm32g0xx_it.o
  355. .debug_macro 0x00000000 0x189 ./Core/Src/stm32g0xx_it.o
  356. .debug_macro 0x00000000 0x5c ./Core/Src/stm32g0xx_it.o
  357. .debug_macro 0x00000000 0x462 ./Core/Src/stm32g0xx_it.o
  358. .debug_macro 0x00000000 0xe1a ./Core/Src/stm32g0xx_it.o
  359. .debug_macro 0x00000000 0x106 ./Core/Src/stm32g0xx_it.o
  360. .debug_macro 0x00000000 0x1cf ./Core/Src/stm32g0xx_it.o
  361. .debug_macro 0x00000000 0xff ./Core/Src/stm32g0xx_it.o
  362. .debug_macro 0x00000000 0x33c ./Core/Src/stm32g0xx_it.o
  363. .debug_macro 0x00000000 0x202 ./Core/Src/stm32g0xx_it.o
  364. .debug_macro 0x00000000 0x2c7 ./Core/Src/stm32g0xx_it.o
  365. .debug_macro 0x00000000 0x198 ./Core/Src/stm32g0xx_it.o
  366. .debug_macro 0x00000000 0x43 ./Core/Src/stm32g0xx_it.o
  367. .debug_macro 0x00000000 0x1f1 ./Core/Src/stm32g0xx_it.o
  368. .debug_macro 0x00000000 0x1d6 ./Core/Src/stm32g0xx_it.o
  369. .debug_macro 0x00000000 0x2a3 ./Core/Src/stm32g0xx_it.o
  370. .debug_macro 0x00000000 0x28 ./Core/Src/stm32g0xx_it.o
  371. .debug_macro 0x00000000 0xcf ./Core/Src/stm32g0xx_it.o
  372. .debug_macro 0x00000000 0xff ./Core/Src/stm32g0xx_it.o
  373. .debug_macro 0x00000000 0x10d ./Core/Src/stm32g0xx_it.o
  374. .debug_macro 0x00000000 0xac2 ./Core/Src/stm32g0xx_it.o
  375. .debug_macro 0x00000000 0xfa ./Core/Src/stm32g0xx_it.o
  376. .debug_macro 0x00000000 0x412 ./Core/Src/stm32g0xx_it.o
  377. .debug_macro 0x00000000 0x10 ./Core/Src/stm32g0xx_it.o
  378. .debug_macro 0x00000000 0x3a ./Core/Src/stm32g0xx_it.o
  379. .group 0x00000000 0xc ./Core/Src/syscalls.o
  380. .group 0x00000000 0xc ./Core/Src/syscalls.o
  381. .group 0x00000000 0xc ./Core/Src/syscalls.o
  382. .group 0x00000000 0xc ./Core/Src/syscalls.o
  383. .group 0x00000000 0xc ./Core/Src/syscalls.o
  384. .group 0x00000000 0xc ./Core/Src/syscalls.o
  385. .group 0x00000000 0xc ./Core/Src/syscalls.o
  386. .group 0x00000000 0xc ./Core/Src/syscalls.o
  387. .group 0x00000000 0xc ./Core/Src/syscalls.o
  388. .group 0x00000000 0xc ./Core/Src/syscalls.o
  389. .group 0x00000000 0xc ./Core/Src/syscalls.o
  390. .group 0x00000000 0xc ./Core/Src/syscalls.o
  391. .group 0x00000000 0xc ./Core/Src/syscalls.o
  392. .group 0x00000000 0xc ./Core/Src/syscalls.o
  393. .group 0x00000000 0xc ./Core/Src/syscalls.o
  394. .group 0x00000000 0xc ./Core/Src/syscalls.o
  395. .group 0x00000000 0xc ./Core/Src/syscalls.o
  396. .group 0x00000000 0xc ./Core/Src/syscalls.o
  397. .group 0x00000000 0xc ./Core/Src/syscalls.o
  398. .group 0x00000000 0xc ./Core/Src/syscalls.o
  399. .group 0x00000000 0xc ./Core/Src/syscalls.o
  400. .group 0x00000000 0xc ./Core/Src/syscalls.o
  401. .group 0x00000000 0xc ./Core/Src/syscalls.o
  402. .group 0x00000000 0xc ./Core/Src/syscalls.o
  403. .group 0x00000000 0xc ./Core/Src/syscalls.o
  404. .group 0x00000000 0xc ./Core/Src/syscalls.o
  405. .group 0x00000000 0xc ./Core/Src/syscalls.o
  406. .group 0x00000000 0xc ./Core/Src/syscalls.o
  407. .group 0x00000000 0xc ./Core/Src/syscalls.o
  408. .group 0x00000000 0xc ./Core/Src/syscalls.o
  409. .group 0x00000000 0xc ./Core/Src/syscalls.o
  410. .group 0x00000000 0xc ./Core/Src/syscalls.o
  411. .group 0x00000000 0xc ./Core/Src/syscalls.o
  412. .group 0x00000000 0xc ./Core/Src/syscalls.o
  413. .group 0x00000000 0xc ./Core/Src/syscalls.o
  414. .group 0x00000000 0xc ./Core/Src/syscalls.o
  415. .group 0x00000000 0xc ./Core/Src/syscalls.o
  416. .group 0x00000000 0xc ./Core/Src/syscalls.o
  417. .group 0x00000000 0xc ./Core/Src/syscalls.o
  418. .group 0x00000000 0xc ./Core/Src/syscalls.o
  419. .group 0x00000000 0xc ./Core/Src/syscalls.o
  420. .group 0x00000000 0xc ./Core/Src/syscalls.o
  421. .group 0x00000000 0xc ./Core/Src/syscalls.o
  422. .group 0x00000000 0xc ./Core/Src/syscalls.o
  423. .group 0x00000000 0xc ./Core/Src/syscalls.o
  424. .group 0x00000000 0xc ./Core/Src/syscalls.o
  425. .group 0x00000000 0xc ./Core/Src/syscalls.o
  426. .group 0x00000000 0xc ./Core/Src/syscalls.o
  427. .group 0x00000000 0xc ./Core/Src/syscalls.o
  428. .text 0x00000000 0x0 ./Core/Src/syscalls.o
  429. .data 0x00000000 0x0 ./Core/Src/syscalls.o
  430. .bss 0x00000000 0x0 ./Core/Src/syscalls.o
  431. .bss.__env 0x00000000 0x4 ./Core/Src/syscalls.o
  432. .data.environ 0x00000000 0x4 ./Core/Src/syscalls.o
  433. .text.initialise_monitor_handles
  434. 0x00000000 0xa ./Core/Src/syscalls.o
  435. .text._getpid 0x00000000 0xc ./Core/Src/syscalls.o
  436. .text._kill 0x00000000 0x20 ./Core/Src/syscalls.o
  437. .text._exit 0x00000000 0x1a ./Core/Src/syscalls.o
  438. .text._read 0x00000000 0x3a ./Core/Src/syscalls.o
  439. .text._write 0x00000000 0x38 ./Core/Src/syscalls.o
  440. .text._close 0x00000000 0x14 ./Core/Src/syscalls.o
  441. .text._fstat 0x00000000 0x1c ./Core/Src/syscalls.o
  442. .text._isatty 0x00000000 0x12 ./Core/Src/syscalls.o
  443. .text._lseek 0x00000000 0x16 ./Core/Src/syscalls.o
  444. .text._open 0x00000000 0x1c ./Core/Src/syscalls.o
  445. .text._wait 0x00000000 0x1e ./Core/Src/syscalls.o
  446. .text._unlink 0x00000000 0x1e ./Core/Src/syscalls.o
  447. .text._times 0x00000000 0x14 ./Core/Src/syscalls.o
  448. .text._stat 0x00000000 0x1c ./Core/Src/syscalls.o
  449. .text._link 0x00000000 0x20 ./Core/Src/syscalls.o
  450. .text._fork 0x00000000 0x18 ./Core/Src/syscalls.o
  451. .text._execve 0x00000000 0x22 ./Core/Src/syscalls.o
  452. .debug_info 0x00000000 0x6a3 ./Core/Src/syscalls.o
  453. .debug_abbrev 0x00000000 0x1b6 ./Core/Src/syscalls.o
  454. .debug_aranges
  455. 0x00000000 0xa8 ./Core/Src/syscalls.o
  456. .debug_rnglists
  457. 0x00000000 0x79 ./Core/Src/syscalls.o
  458. .debug_macro 0x00000000 0x274 ./Core/Src/syscalls.o
  459. .debug_macro 0x00000000 0xa8a ./Core/Src/syscalls.o
  460. .debug_macro 0x00000000 0x22 ./Core/Src/syscalls.o
  461. .debug_macro 0x00000000 0x5b ./Core/Src/syscalls.o
  462. .debug_macro 0x00000000 0x24 ./Core/Src/syscalls.o
  463. .debug_macro 0x00000000 0x94 ./Core/Src/syscalls.o
  464. .debug_macro 0x00000000 0x43 ./Core/Src/syscalls.o
  465. .debug_macro 0x00000000 0x34 ./Core/Src/syscalls.o
  466. .debug_macro 0x00000000 0x57 ./Core/Src/syscalls.o
  467. .debug_macro 0x00000000 0x189 ./Core/Src/syscalls.o
  468. .debug_macro 0x00000000 0x369 ./Core/Src/syscalls.o
  469. .debug_macro 0x00000000 0x16 ./Core/Src/syscalls.o
  470. .debug_macro 0x00000000 0x43 ./Core/Src/syscalls.o
  471. .debug_macro 0x00000000 0x34 ./Core/Src/syscalls.o
  472. .debug_macro 0x00000000 0x10 ./Core/Src/syscalls.o
  473. .debug_macro 0x00000000 0x58 ./Core/Src/syscalls.o
  474. .debug_macro 0x00000000 0x8e ./Core/Src/syscalls.o
  475. .debug_macro 0x00000000 0x1c ./Core/Src/syscalls.o
  476. .debug_macro 0x00000000 0x177 ./Core/Src/syscalls.o
  477. .debug_macro 0x00000000 0x10 ./Core/Src/syscalls.o
  478. .debug_macro 0x00000000 0x35 ./Core/Src/syscalls.o
  479. .debug_macro 0x00000000 0x10 ./Core/Src/syscalls.o
  480. .debug_macro 0x00000000 0x10 ./Core/Src/syscalls.o
  481. .debug_macro 0x00000000 0x10 ./Core/Src/syscalls.o
  482. .debug_macro 0x00000000 0x6a ./Core/Src/syscalls.o
  483. .debug_macro 0x00000000 0x1c ./Core/Src/syscalls.o
  484. .debug_macro 0x00000000 0x52 ./Core/Src/syscalls.o
  485. .debug_macro 0x00000000 0x22 ./Core/Src/syscalls.o
  486. .debug_macro 0x00000000 0x10 ./Core/Src/syscalls.o
  487. .debug_macro 0x00000000 0x52 ./Core/Src/syscalls.o
  488. .debug_macro 0x00000000 0xcf ./Core/Src/syscalls.o
  489. .debug_macro 0x00000000 0x1c ./Core/Src/syscalls.o
  490. .debug_macro 0x00000000 0x3d ./Core/Src/syscalls.o
  491. .debug_macro 0x00000000 0x35 ./Core/Src/syscalls.o
  492. .debug_macro 0x00000000 0x12c ./Core/Src/syscalls.o
  493. .debug_macro 0x00000000 0x16 ./Core/Src/syscalls.o
  494. .debug_macro 0x00000000 0x16 ./Core/Src/syscalls.o
  495. .debug_macro 0x00000000 0x29 ./Core/Src/syscalls.o
  496. .debug_macro 0x00000000 0x10 ./Core/Src/syscalls.o
  497. .debug_macro 0x00000000 0x242 ./Core/Src/syscalls.o
  498. .debug_macro 0x00000000 0x1c ./Core/Src/syscalls.o
  499. .debug_macro 0x00000000 0x10 ./Core/Src/syscalls.o
  500. .debug_macro 0x00000000 0x10 ./Core/Src/syscalls.o
  501. .debug_macro 0x00000000 0x16 ./Core/Src/syscalls.o
  502. .debug_macro 0x00000000 0x146 ./Core/Src/syscalls.o
  503. .debug_macro 0x00000000 0x103 ./Core/Src/syscalls.o
  504. .debug_macro 0x00000000 0x1df ./Core/Src/syscalls.o
  505. .debug_macro 0x00000000 0x18a ./Core/Src/syscalls.o
  506. .debug_macro 0x00000000 0x16 ./Core/Src/syscalls.o
  507. .debug_macro 0x00000000 0xce ./Core/Src/syscalls.o
  508. .debug_line 0x00000000 0x80a ./Core/Src/syscalls.o
  509. .debug_str 0x00000000 0x9797 ./Core/Src/syscalls.o
  510. .comment 0x00000000 0x44 ./Core/Src/syscalls.o
  511. .debug_frame 0x00000000 0x244 ./Core/Src/syscalls.o
  512. .ARM.attributes
  513. 0x00000000 0x2c ./Core/Src/syscalls.o
  514. .group 0x00000000 0xc ./Core/Src/sysmem.o
  515. .group 0x00000000 0xc ./Core/Src/sysmem.o
  516. .group 0x00000000 0xc ./Core/Src/sysmem.o
  517. .group 0x00000000 0xc ./Core/Src/sysmem.o
  518. .group 0x00000000 0xc ./Core/Src/sysmem.o
  519. .group 0x00000000 0xc ./Core/Src/sysmem.o
  520. .group 0x00000000 0xc ./Core/Src/sysmem.o
  521. .group 0x00000000 0xc ./Core/Src/sysmem.o
  522. .group 0x00000000 0xc ./Core/Src/sysmem.o
  523. .group 0x00000000 0xc ./Core/Src/sysmem.o
  524. .group 0x00000000 0xc ./Core/Src/sysmem.o
  525. .group 0x00000000 0xc ./Core/Src/sysmem.o
  526. .group 0x00000000 0xc ./Core/Src/sysmem.o
  527. .group 0x00000000 0xc ./Core/Src/sysmem.o
  528. .group 0x00000000 0xc ./Core/Src/sysmem.o
  529. .group 0x00000000 0xc ./Core/Src/sysmem.o
  530. .group 0x00000000 0xc ./Core/Src/sysmem.o
  531. .group 0x00000000 0xc ./Core/Src/sysmem.o
  532. .group 0x00000000 0xc ./Core/Src/sysmem.o
  533. .group 0x00000000 0xc ./Core/Src/sysmem.o
  534. .group 0x00000000 0xc ./Core/Src/sysmem.o
  535. .group 0x00000000 0xc ./Core/Src/sysmem.o
  536. .text 0x00000000 0x0 ./Core/Src/sysmem.o
  537. .data 0x00000000 0x0 ./Core/Src/sysmem.o
  538. .bss 0x00000000 0x0 ./Core/Src/sysmem.o
  539. .bss.__sbrk_heap_end
  540. 0x00000000 0x4 ./Core/Src/sysmem.o
  541. .text._sbrk 0x00000000 0x6c ./Core/Src/sysmem.o
  542. .debug_info 0x00000000 0x168 ./Core/Src/sysmem.o
  543. .debug_abbrev 0x00000000 0xbc ./Core/Src/sysmem.o
  544. .debug_aranges
  545. 0x00000000 0x20 ./Core/Src/sysmem.o
  546. .debug_rnglists
  547. 0x00000000 0x13 ./Core/Src/sysmem.o
  548. .debug_macro 0x00000000 0xff ./Core/Src/sysmem.o
  549. .debug_macro 0x00000000 0xa8a ./Core/Src/sysmem.o
  550. .debug_macro 0x00000000 0x10 ./Core/Src/sysmem.o
  551. .debug_macro 0x00000000 0x22 ./Core/Src/sysmem.o
  552. .debug_macro 0x00000000 0x5b ./Core/Src/sysmem.o
  553. .debug_macro 0x00000000 0x24 ./Core/Src/sysmem.o
  554. .debug_macro 0x00000000 0x94 ./Core/Src/sysmem.o
  555. .debug_macro 0x00000000 0x43 ./Core/Src/sysmem.o
  556. .debug_macro 0x00000000 0x34 ./Core/Src/sysmem.o
  557. .debug_macro 0x00000000 0x189 ./Core/Src/sysmem.o
  558. .debug_macro 0x00000000 0x16 ./Core/Src/sysmem.o
  559. .debug_macro 0x00000000 0x43 ./Core/Src/sysmem.o
  560. .debug_macro 0x00000000 0x57 ./Core/Src/sysmem.o
  561. .debug_macro 0x00000000 0x34 ./Core/Src/sysmem.o
  562. .debug_macro 0x00000000 0x10 ./Core/Src/sysmem.o
  563. .debug_macro 0x00000000 0x58 ./Core/Src/sysmem.o
  564. .debug_macro 0x00000000 0x8e ./Core/Src/sysmem.o
  565. .debug_macro 0x00000000 0x1c ./Core/Src/sysmem.o
  566. .debug_macro 0x00000000 0x177 ./Core/Src/sysmem.o
  567. .debug_macro 0x00000000 0x23c ./Core/Src/sysmem.o
  568. .debug_macro 0x00000000 0x103 ./Core/Src/sysmem.o
  569. .debug_macro 0x00000000 0x6a ./Core/Src/sysmem.o
  570. .debug_macro 0x00000000 0x1df ./Core/Src/sysmem.o
  571. .debug_line 0x00000000 0x4db ./Core/Src/sysmem.o
  572. .debug_str 0x00000000 0x5faf ./Core/Src/sysmem.o
  573. .comment 0x00000000 0x44 ./Core/Src/sysmem.o
  574. .debug_frame 0x00000000 0x30 ./Core/Src/sysmem.o
  575. .ARM.attributes
  576. 0x00000000 0x2c ./Core/Src/sysmem.o
  577. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  578. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  579. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  580. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  581. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  582. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  583. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  584. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  585. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  586. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  587. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  588. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  589. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  590. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  591. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  592. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  593. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  594. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  595. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  596. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  597. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  598. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  599. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  600. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  601. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  602. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  603. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  604. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  605. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  606. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  607. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  608. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  609. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  610. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  611. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  612. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  613. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  614. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  615. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  616. .group 0x00000000 0xc ./Core/Src/system_stm32g0xx.o
  617. .text 0x00000000 0x0 ./Core/Src/system_stm32g0xx.o
  618. .data 0x00000000 0x0 ./Core/Src/system_stm32g0xx.o
  619. .bss 0x00000000 0x0 ./Core/Src/system_stm32g0xx.o
  620. .rodata.CHANNEL_OFFSET_TAB
  621. 0x00000000 0x5 ./Core/Src/system_stm32g0xx.o
  622. .rodata.APBPrescTable
  623. 0x00000000 0x20 ./Core/Src/system_stm32g0xx.o
  624. .text.SystemCoreClockUpdate
  625. 0x00000000 0x108 ./Core/Src/system_stm32g0xx.o
  626. .debug_macro 0x00000000 0xa8a ./Core/Src/system_stm32g0xx.o
  627. .debug_macro 0x00000000 0x2e ./Core/Src/system_stm32g0xx.o
  628. .debug_macro 0x00000000 0x28 ./Core/Src/system_stm32g0xx.o
  629. .debug_macro 0x00000000 0x22 ./Core/Src/system_stm32g0xx.o
  630. .debug_macro 0x00000000 0x8e ./Core/Src/system_stm32g0xx.o
  631. .debug_macro 0x00000000 0x51 ./Core/Src/system_stm32g0xx.o
  632. .debug_macro 0x00000000 0x103 ./Core/Src/system_stm32g0xx.o
  633. .debug_macro 0x00000000 0x6a ./Core/Src/system_stm32g0xx.o
  634. .debug_macro 0x00000000 0x1df ./Core/Src/system_stm32g0xx.o
  635. .debug_macro 0x00000000 0x1c ./Core/Src/system_stm32g0xx.o
  636. .debug_macro 0x00000000 0x22 ./Core/Src/system_stm32g0xx.o
  637. .debug_macro 0x00000000 0xd1 ./Core/Src/system_stm32g0xx.o
  638. .debug_macro 0x00000000 0x4da ./Core/Src/system_stm32g0xx.o
  639. .debug_macro 0x00000000 0x11f ./Core/Src/system_stm32g0xx.o
  640. .debug_macro 0x00000000 0xa0e8 ./Core/Src/system_stm32g0xx.o
  641. .debug_macro 0x00000000 0x66 ./Core/Src/system_stm32g0xx.o
  642. .debug_macro 0x00000000 0x117 ./Core/Src/system_stm32g0xx.o
  643. .debug_macro 0x00000000 0x350e ./Core/Src/system_stm32g0xx.o
  644. .debug_macro 0x00000000 0x189 ./Core/Src/system_stm32g0xx.o
  645. .debug_macro 0x00000000 0x5c ./Core/Src/system_stm32g0xx.o
  646. .debug_macro 0x00000000 0x462 ./Core/Src/system_stm32g0xx.o
  647. .debug_macro 0x00000000 0xe1a ./Core/Src/system_stm32g0xx.o
  648. .debug_macro 0x00000000 0x106 ./Core/Src/system_stm32g0xx.o
  649. .debug_macro 0x00000000 0x1cf ./Core/Src/system_stm32g0xx.o
  650. .debug_macro 0x00000000 0xff ./Core/Src/system_stm32g0xx.o
  651. .debug_macro 0x00000000 0x33c ./Core/Src/system_stm32g0xx.o
  652. .debug_macro 0x00000000 0x202 ./Core/Src/system_stm32g0xx.o
  653. .debug_macro 0x00000000 0x2c7 ./Core/Src/system_stm32g0xx.o
  654. .debug_macro 0x00000000 0x198 ./Core/Src/system_stm32g0xx.o
  655. .debug_macro 0x00000000 0x43 ./Core/Src/system_stm32g0xx.o
  656. .debug_macro 0x00000000 0x1f1 ./Core/Src/system_stm32g0xx.o
  657. .debug_macro 0x00000000 0x1d6 ./Core/Src/system_stm32g0xx.o
  658. .debug_macro 0x00000000 0x2a3 ./Core/Src/system_stm32g0xx.o
  659. .debug_macro 0x00000000 0x28 ./Core/Src/system_stm32g0xx.o
  660. .debug_macro 0x00000000 0xcf ./Core/Src/system_stm32g0xx.o
  661. .debug_macro 0x00000000 0xff ./Core/Src/system_stm32g0xx.o
  662. .debug_macro 0x00000000 0x10d ./Core/Src/system_stm32g0xx.o
  663. .debug_macro 0x00000000 0xac2 ./Core/Src/system_stm32g0xx.o
  664. .debug_macro 0x00000000 0xfa ./Core/Src/system_stm32g0xx.o
  665. .debug_macro 0x00000000 0x412 ./Core/Src/system_stm32g0xx.o
  666. .group 0x00000000 0xc ./Core/Src/user.o
  667. .group 0x00000000 0xc ./Core/Src/user.o
  668. .group 0x00000000 0xc ./Core/Src/user.o
  669. .group 0x00000000 0xc ./Core/Src/user.o
  670. .group 0x00000000 0xc ./Core/Src/user.o
  671. .group 0x00000000 0xc ./Core/Src/user.o
  672. .group 0x00000000 0xc ./Core/Src/user.o
  673. .group 0x00000000 0xc ./Core/Src/user.o
  674. .group 0x00000000 0xc ./Core/Src/user.o
  675. .group 0x00000000 0xc ./Core/Src/user.o
  676. .group 0x00000000 0xc ./Core/Src/user.o
  677. .group 0x00000000 0xc ./Core/Src/user.o
  678. .group 0x00000000 0xc ./Core/Src/user.o
  679. .group 0x00000000 0xc ./Core/Src/user.o
  680. .group 0x00000000 0xc ./Core/Src/user.o
  681. .group 0x00000000 0xc ./Core/Src/user.o
  682. .group 0x00000000 0xc ./Core/Src/user.o
  683. .group 0x00000000 0xc ./Core/Src/user.o
  684. .group 0x00000000 0xc ./Core/Src/user.o
  685. .group 0x00000000 0xc ./Core/Src/user.o
  686. .group 0x00000000 0xc ./Core/Src/user.o
  687. .group 0x00000000 0xc ./Core/Src/user.o
  688. .group 0x00000000 0xc ./Core/Src/user.o
  689. .group 0x00000000 0xc ./Core/Src/user.o
  690. .group 0x00000000 0xc ./Core/Src/user.o
  691. .group 0x00000000 0xc ./Core/Src/user.o
  692. .group 0x00000000 0xc ./Core/Src/user.o
  693. .group 0x00000000 0xc ./Core/Src/user.o
  694. .group 0x00000000 0xc ./Core/Src/user.o
  695. .group 0x00000000 0xc ./Core/Src/user.o
  696. .group 0x00000000 0xc ./Core/Src/user.o
  697. .group 0x00000000 0xc ./Core/Src/user.o
  698. .group 0x00000000 0xc ./Core/Src/user.o
  699. .group 0x00000000 0xc ./Core/Src/user.o
  700. .group 0x00000000 0xc ./Core/Src/user.o
  701. .group 0x00000000 0xc ./Core/Src/user.o
  702. .group 0x00000000 0xc ./Core/Src/user.o
  703. .group 0x00000000 0xc ./Core/Src/user.o
  704. .group 0x00000000 0xc ./Core/Src/user.o
  705. .group 0x00000000 0xc ./Core/Src/user.o
  706. .group 0x00000000 0xc ./Core/Src/user.o
  707. .group 0x00000000 0xc ./Core/Src/user.o
  708. .text 0x00000000 0x0 ./Core/Src/user.o
  709. .data 0x00000000 0x0 ./Core/Src/user.o
  710. .bss 0x00000000 0x0 ./Core/Src/user.o
  711. .rodata.CHANNEL_OFFSET_TAB
  712. 0x00000000 0x5 ./Core/Src/user.o
  713. .bss.ref 0x00000000 0x2 ./Core/Src/user.o
  714. .debug_macro 0x00000000 0xa8a ./Core/Src/user.o
  715. .debug_macro 0x00000000 0x117 ./Core/Src/user.o
  716. .debug_macro 0x00000000 0x2e ./Core/Src/user.o
  717. .debug_macro 0x00000000 0x28 ./Core/Src/user.o
  718. .debug_macro 0x00000000 0x22 ./Core/Src/user.o
  719. .debug_macro 0x00000000 0x8e ./Core/Src/user.o
  720. .debug_macro 0x00000000 0x51 ./Core/Src/user.o
  721. .debug_macro 0x00000000 0x103 ./Core/Src/user.o
  722. .debug_macro 0x00000000 0x6a ./Core/Src/user.o
  723. .debug_macro 0x00000000 0x1df ./Core/Src/user.o
  724. .debug_macro 0x00000000 0x1c ./Core/Src/user.o
  725. .debug_macro 0x00000000 0x22 ./Core/Src/user.o
  726. .debug_macro 0x00000000 0xd1 ./Core/Src/user.o
  727. .debug_macro 0x00000000 0x4da ./Core/Src/user.o
  728. .debug_macro 0x00000000 0x11f ./Core/Src/user.o
  729. .debug_macro 0x00000000 0xa0e8 ./Core/Src/user.o
  730. .debug_macro 0x00000000 0x66 ./Core/Src/user.o
  731. .debug_macro 0x00000000 0x350e ./Core/Src/user.o
  732. .debug_macro 0x00000000 0x189 ./Core/Src/user.o
  733. .debug_macro 0x00000000 0x5c ./Core/Src/user.o
  734. .debug_macro 0x00000000 0x462 ./Core/Src/user.o
  735. .debug_macro 0x00000000 0xe1a ./Core/Src/user.o
  736. .debug_macro 0x00000000 0x106 ./Core/Src/user.o
  737. .debug_macro 0x00000000 0x1cf ./Core/Src/user.o
  738. .debug_macro 0x00000000 0xff ./Core/Src/user.o
  739. .debug_macro 0x00000000 0x33c ./Core/Src/user.o
  740. .debug_macro 0x00000000 0x202 ./Core/Src/user.o
  741. .debug_macro 0x00000000 0x2c7 ./Core/Src/user.o
  742. .debug_macro 0x00000000 0x198 ./Core/Src/user.o
  743. .debug_macro 0x00000000 0x43 ./Core/Src/user.o
  744. .debug_macro 0x00000000 0x1f1 ./Core/Src/user.o
  745. .debug_macro 0x00000000 0x1d6 ./Core/Src/user.o
  746. .debug_macro 0x00000000 0x2a3 ./Core/Src/user.o
  747. .debug_macro 0x00000000 0x28 ./Core/Src/user.o
  748. .debug_macro 0x00000000 0xcf ./Core/Src/user.o
  749. .debug_macro 0x00000000 0xff ./Core/Src/user.o
  750. .debug_macro 0x00000000 0x10d ./Core/Src/user.o
  751. .debug_macro 0x00000000 0xac2 ./Core/Src/user.o
  752. .debug_macro 0x00000000 0xfa ./Core/Src/user.o
  753. .debug_macro 0x00000000 0x412 ./Core/Src/user.o
  754. .debug_macro 0x00000000 0x10 ./Core/Src/user.o
  755. .debug_macro 0x00000000 0x3a ./Core/Src/user.o
  756. .text 0x00000000 0x14 ./Core/Startup/startup_stm32g030f6px.o
  757. .data 0x00000000 0x0 ./Core/Startup/startup_stm32g030f6px.o
  758. .bss 0x00000000 0x0 ./Core/Startup/startup_stm32g030f6px.o
  759. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  760. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  761. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  762. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  763. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  764. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  765. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  766. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  767. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  768. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  769. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  770. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  771. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  772. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  773. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  774. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  775. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  776. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  777. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  778. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  779. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  780. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  781. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  782. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  783. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  784. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  785. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  786. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  787. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  788. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  789. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  790. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  791. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  792. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  793. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  794. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  795. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  796. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  797. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  798. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  799. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  800. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  801. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  802. .rodata.CHANNEL_OFFSET_TAB
  803. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  804. .text.HAL_DeInit
  805. 0x00000000 0x4c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  806. .text.HAL_MspInit
  807. 0x00000000 0xa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  808. .text.HAL_MspDeInit
  809. 0x00000000 0xa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  810. .text.HAL_GetTickPrio
  811. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  812. .text.HAL_SetTickFreq
  813. 0x00000000 0x6c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  814. .text.HAL_GetTickFreq
  815. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  816. .text.HAL_SuspendTick
  817. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  818. .text.HAL_ResumeTick
  819. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  820. .text.HAL_GetHalVersion
  821. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  822. .text.HAL_GetREVID
  823. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  824. .text.HAL_GetDEVID
  825. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  826. .text.HAL_GetUIDw0
  827. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  828. .text.HAL_GetUIDw1
  829. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  830. .text.HAL_GetUIDw2
  831. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  832. .text.HAL_DBGMCU_EnableDBGStopMode
  833. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  834. .text.HAL_DBGMCU_DisableDBGStopMode
  835. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  836. .text.HAL_DBGMCU_EnableDBGStandbyMode
  837. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  838. .text.HAL_DBGMCU_DisableDBGStandbyMode
  839. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  840. .text.HAL_SYSCFG_EnableIOAnalogSwitchBooster
  841. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  842. .text.HAL_SYSCFG_DisableIOAnalogSwitchBooster
  843. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  844. .text.HAL_SYSCFG_EnableRemap
  845. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  846. .text.HAL_SYSCFG_DisableRemap
  847. 0x00000000 0x24 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  848. .text.HAL_SYSCFG_EnableClampingDiode
  849. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  850. .text.HAL_SYSCFG_DisableClampingDiode
  851. 0x00000000 0x24 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  852. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  853. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  854. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  855. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  856. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  857. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  858. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  859. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  860. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  861. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  862. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  863. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  864. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  865. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  866. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  867. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  868. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  869. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  870. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  871. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  872. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  873. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  874. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  875. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  876. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  877. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  878. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  879. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  880. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  881. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  882. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  883. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  884. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  885. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  886. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  887. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  888. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  889. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  890. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  891. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  892. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  893. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  894. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  895. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  896. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  897. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  898. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  899. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  900. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  901. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  902. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  903. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  904. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  905. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  906. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  907. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  908. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  909. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  910. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  911. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  912. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  913. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  914. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  915. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  916. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  917. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  918. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  919. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  920. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  921. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  922. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  923. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  924. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  925. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  926. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  927. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  928. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  929. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  930. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  931. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  932. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  933. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  934. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  935. .text.__NVIC_DisableIRQ
  936. 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  937. .text.__NVIC_GetPendingIRQ
  938. 0x00000000 0x40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  939. .text.__NVIC_SetPendingIRQ
  940. 0x00000000 0x38 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  941. .text.__NVIC_ClearPendingIRQ
  942. 0x00000000 0x38 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  943. .text.__NVIC_GetPriority
  944. 0x00000000 0x7c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  945. .text.__NVIC_SystemReset
  946. 0x00000000 0x24 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  947. .rodata.CHANNEL_OFFSET_TAB
  948. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  949. .text.HAL_NVIC_DisableIRQ
  950. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  951. .text.HAL_NVIC_SystemReset
  952. 0x00000000 0x8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  953. .text.HAL_NVIC_GetPriority
  954. 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  955. .text.HAL_NVIC_SetPendingIRQ
  956. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  957. .text.HAL_NVIC_GetPendingIRQ
  958. 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  959. .text.HAL_NVIC_ClearPendingIRQ
  960. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  961. .text.HAL_SYSTICK_CLKSourceConfig
  962. 0x00000000 0x34 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  963. .text.HAL_SYSTICK_IRQHandler
  964. 0x00000000 0xe ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  965. .text.HAL_SYSTICK_Callback
  966. 0x00000000 0xa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  967. .text.HAL_MPU_Enable
  968. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  969. .text.HAL_MPU_Disable
  970. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  971. .text.HAL_MPU_EnableRegion
  972. 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  973. .text.HAL_MPU_DisableRegion
  974. 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  975. .text.HAL_MPU_ConfigRegion
  976. 0x00000000 0x7c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  977. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  978. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  979. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  980. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  981. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  982. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  983. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  984. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  985. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  986. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  987. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  988. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  989. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  990. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  991. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  992. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  993. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  994. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  995. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  996. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  997. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  998. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  999. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1000. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1001. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1002. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1003. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1004. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1005. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1006. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1007. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1008. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1009. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1010. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1011. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1012. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1013. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1014. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1015. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1016. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  1017. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1018. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1019. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1020. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1021. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1022. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1023. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1024. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1025. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1026. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1027. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1028. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1029. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1030. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1031. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1032. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1033. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1034. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1035. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1036. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1037. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1038. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1039. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1040. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1041. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1042. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1043. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1044. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1045. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1046. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1047. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1048. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1049. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1050. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1051. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1052. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1053. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1054. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1055. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1056. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1057. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1058. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1059. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1060. .rodata.CHANNEL_OFFSET_TAB
  1061. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1062. .text.HAL_DMA_DeInit
  1063. 0x00000000 0xf0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1064. .text.HAL_DMA_Start
  1065. 0x00000000 0x98 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1066. .text.HAL_DMA_Abort
  1067. 0x00000000 0xc4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1068. .text.HAL_DMA_PollForTransfer
  1069. 0x00000000 0x1c0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1070. .text.HAL_DMA_IRQHandler
  1071. 0x00000000 0x164 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1072. .text.HAL_DMA_RegisterCallback
  1073. 0x00000000 0xa0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1074. .text.HAL_DMA_UnRegisterCallback
  1075. 0x00000000 0xb0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1076. .rodata.HAL_DMA_UnRegisterCallback
  1077. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1078. .text.HAL_DMA_GetState
  1079. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1080. .text.HAL_DMA_GetError
  1081. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1082. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1083. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1084. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1085. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1086. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1087. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1088. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1089. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1090. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1091. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1092. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1093. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1094. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1095. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1096. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1097. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1098. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1099. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1100. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1101. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1102. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1103. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1104. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1105. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1106. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1107. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1108. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1109. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1110. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1111. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1112. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1113. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1114. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1115. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1116. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1117. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1118. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1119. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1120. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1121. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  1122. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1123. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1124. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1125. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1126. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1127. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1128. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1129. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1130. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1131. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1132. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1133. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1134. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1135. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1136. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1137. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1138. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1139. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1140. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1141. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1142. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1143. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1144. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1145. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1146. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1147. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1148. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1149. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1150. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1151. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1152. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1153. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1154. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1155. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1156. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1157. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1158. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1159. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1160. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1161. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1162. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1163. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1164. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1165. .rodata.CHANNEL_OFFSET_TAB
  1166. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1167. .text.HAL_DMAEx_ConfigMuxSync
  1168. 0x00000000 0x80 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1169. .text.HAL_DMAEx_ConfigMuxRequestGenerator
  1170. 0x00000000 0xa0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1171. .text.HAL_DMAEx_EnableMuxRequestGenerator
  1172. 0x00000000 0x3c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1173. .text.HAL_DMAEx_DisableMuxRequestGenerator
  1174. 0x00000000 0x40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1175. .text.HAL_DMAEx_MUX_IRQHandler
  1176. 0x00000000 0xac ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1177. .debug_info 0x00000000 0x5b0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1178. .debug_abbrev 0x00000000 0x14d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1179. .debug_aranges
  1180. 0x00000000 0x40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1181. .debug_rnglists
  1182. 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1183. .debug_macro 0x00000000 0x1cb ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1184. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1185. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1186. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1187. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1188. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1189. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1190. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1191. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1192. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1193. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1194. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1195. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1196. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1197. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1198. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1199. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1200. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1201. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1202. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1203. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1204. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1205. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1206. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1207. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1208. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1209. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1210. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1211. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1212. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1213. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1214. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1215. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1216. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1217. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1218. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1219. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1220. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1221. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1222. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1223. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1224. .debug_line 0x00000000 0x893 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1225. .debug_str 0x00000000 0x7df90 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1226. .comment 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1227. .debug_frame 0x00000000 0xb0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1228. .ARM.attributes
  1229. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  1230. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1231. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1232. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1233. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1234. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1235. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1236. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1237. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1238. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1239. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1240. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1241. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1242. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1243. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1244. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1245. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1246. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1247. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1248. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1249. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1250. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1251. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1252. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1253. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1254. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1255. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1256. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1257. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1258. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1259. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1260. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1261. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1262. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1263. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1264. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1265. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1266. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1267. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1268. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1269. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1270. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1271. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1272. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1273. .rodata.CHANNEL_OFFSET_TAB
  1274. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1275. .text.HAL_EXTI_SetConfigLine
  1276. 0x00000000 0x19c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1277. .text.HAL_EXTI_GetConfigLine
  1278. 0x00000000 0x140 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1279. .text.HAL_EXTI_ClearConfigLine
  1280. 0x00000000 0x114 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1281. .text.HAL_EXTI_RegisterCallback
  1282. 0x00000000 0x64 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1283. .text.HAL_EXTI_GetHandle
  1284. 0x00000000 0x24 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1285. .text.HAL_EXTI_IRQHandler
  1286. 0x00000000 0x94 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1287. .text.HAL_EXTI_GetPending
  1288. 0x00000000 0x6c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1289. .text.HAL_EXTI_ClearPending
  1290. 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1291. .text.HAL_EXTI_GenerateSWI
  1292. 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1293. .debug_info 0x00000000 0x674 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1294. .debug_abbrev 0x00000000 0x164 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1295. .debug_aranges
  1296. 0x00000000 0x60 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1297. .debug_rnglists
  1298. 0x00000000 0x47 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1299. .debug_macro 0x00000000 0x1d7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1300. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1301. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1302. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1303. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1304. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1305. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1306. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1307. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1308. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1309. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1310. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1311. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1312. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1313. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1314. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1315. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1316. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1317. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1318. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1319. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1320. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1321. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1322. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1323. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1324. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1325. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1326. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1327. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1328. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1329. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1330. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1331. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1332. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1333. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1334. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1335. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1336. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1337. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1338. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1339. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1340. .debug_line 0x00000000 0xa72 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1341. .debug_str 0x00000000 0x7ddbe ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1342. .comment 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1343. .debug_frame 0x00000000 0x130 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1344. .ARM.attributes
  1345. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  1346. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1347. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1348. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1349. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1350. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1351. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1352. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1353. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1354. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1355. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1356. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1357. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1358. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1359. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1360. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1361. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1362. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1363. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1364. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1365. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1366. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1367. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1368. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1369. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1370. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1371. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1372. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1373. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1374. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1375. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1376. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1377. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1378. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1379. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1380. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1381. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1382. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1383. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1384. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1385. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1386. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1387. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1388. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1389. .rodata.CHANNEL_OFFSET_TAB
  1390. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1391. .bss.pFlash 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1392. .text.HAL_FLASH_Program
  1393. 0x00000000 0x9c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1394. .text.HAL_FLASH_Program_IT
  1395. 0x00000000 0x98 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1396. .text.HAL_FLASH_IRQHandler
  1397. 0x00000000 0x104 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1398. .text.HAL_FLASH_EndOfOperationCallback
  1399. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1400. .text.HAL_FLASH_OperationErrorCallback
  1401. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1402. .text.HAL_FLASH_Unlock
  1403. 0x00000000 0x48 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1404. .text.HAL_FLASH_Lock
  1405. 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1406. .text.HAL_FLASH_OB_Unlock
  1407. 0x00000000 0x50 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1408. .text.HAL_FLASH_OB_Lock
  1409. 0x00000000 0x48 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1410. .text.HAL_FLASH_OB_Launch
  1411. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1412. .text.HAL_FLASH_GetError
  1413. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1414. .text.FLASH_WaitForLastOperation
  1415. 0x00000000 0x9c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1416. .text.FLASH_Program_DoubleWord
  1417. 0x00000000 0x40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1418. .RamFunc 0x00000000 0x88 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1419. .debug_info 0x00000000 0x63e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1420. .debug_abbrev 0x00000000 0x2f8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1421. .debug_aranges
  1422. 0x00000000 0x88 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1423. .debug_rnglists
  1424. 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1425. .debug_macro 0x00000000 0x1cb ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1426. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1427. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1428. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1429. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1430. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1431. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1432. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1433. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1434. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1435. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1436. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1437. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1438. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1439. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1440. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1441. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1442. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1443. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1444. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1445. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1446. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1447. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1448. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1449. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1450. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1451. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1452. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1453. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1454. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1455. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1456. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1457. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1458. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1459. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1460. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1461. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1462. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1463. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1464. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1465. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1466. .debug_line 0x00000000 0xa12 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1467. .debug_str 0x00000000 0x7de2d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1468. .comment 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1469. .debug_frame 0x00000000 0x1d4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1470. .ARM.attributes
  1471. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  1472. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1473. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1474. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1475. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1476. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1477. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1478. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1479. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1480. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1481. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1482. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1483. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1484. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1485. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1486. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1487. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1488. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1489. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1490. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1491. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1492. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1493. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1494. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1495. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1496. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1497. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1498. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1499. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1500. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1501. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1502. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1503. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1504. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1505. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1506. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1507. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1508. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1509. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1510. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1511. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1512. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1513. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1514. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1515. .rodata.CHANNEL_OFFSET_TAB
  1516. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1517. .text.HAL_FLASHEx_Erase
  1518. 0x00000000 0xe8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1519. .text.HAL_FLASHEx_Erase_IT
  1520. 0x00000000 0xb8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1521. .text.HAL_FLASHEx_OBProgram
  1522. 0x00000000 0x108 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1523. .text.HAL_FLASHEx_OBGetConfig
  1524. 0x00000000 0x48 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1525. .text.HAL_FLASHEx_FlashEmptyCheck
  1526. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1527. .text.HAL_FLASHEx_ForceFlashEmpty
  1528. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1529. .text.FLASH_MassErase
  1530. 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1531. .text.FLASH_PageErase
  1532. 0x00000000 0x38 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1533. .text.FLASH_FlushCaches
  1534. 0x00000000 0x58 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1535. .text.FLASH_OB_WRPConfig
  1536. 0x00000000 0x38 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1537. .text.FLASH_OB_GetWRP
  1538. 0x00000000 0x54 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1539. .text.FLASH_OB_OptrConfig
  1540. 0x00000000 0x3c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1541. .text.FLASH_OB_GetRDP
  1542. 0x00000000 0x30 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1543. .text.FLASH_OB_GetUser
  1544. 0x00000000 0x24 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1545. .debug_info 0x00000000 0x633 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1546. .debug_abbrev 0x00000000 0x25f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1547. .debug_aranges
  1548. 0x00000000 0x88 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1549. .debug_rnglists
  1550. 0x00000000 0x64 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1551. .debug_macro 0x00000000 0x1cb ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1552. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1553. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1554. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1555. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1556. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1557. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1558. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1559. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1560. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1561. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1562. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1563. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1564. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1565. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1566. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1567. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1568. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1569. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1570. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1571. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1572. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1573. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1574. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1575. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1576. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1577. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1578. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1579. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1580. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1581. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1582. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1583. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1584. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1585. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1586. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1587. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1588. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1589. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1590. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1591. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1592. .debug_line 0x00000000 0xa04 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1593. .debug_str 0x00000000 0x7de54 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1594. .comment 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1595. .debug_frame 0x00000000 0x1d4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1596. .ARM.attributes
  1597. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  1598. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1599. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1600. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1601. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1602. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1603. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1604. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1605. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1606. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1607. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1608. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1609. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1610. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1611. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1612. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1613. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1614. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1615. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1616. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1617. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1618. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1619. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1620. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1621. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1622. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1623. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1624. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1625. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1626. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1627. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1628. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1629. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1630. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1631. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1632. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1633. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1634. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1635. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1636. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1637. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1638. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1639. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1640. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1641. .rodata.CHANNEL_OFFSET_TAB
  1642. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1643. .text.HAL_GPIO_DeInit
  1644. 0x00000000 0x1a0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1645. .text.HAL_GPIO_ReadPin
  1646. 0x00000000 0x3a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1647. .text.HAL_GPIO_WritePin
  1648. 0x00000000 0x3a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1649. .text.HAL_GPIO_TogglePin
  1650. 0x00000000 0x36 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1651. .text.HAL_GPIO_LockPin
  1652. 0x00000000 0x52 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1653. .text.HAL_GPIO_EXTI_IRQHandler
  1654. 0x00000000 0x54 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1655. .text.HAL_GPIO_EXTI_Rising_Callback
  1656. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1657. .text.HAL_GPIO_EXTI_Falling_Callback
  1658. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1659. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1660. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1661. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1662. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1663. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1664. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1665. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1666. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1667. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1668. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1669. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1670. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1671. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1672. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1673. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1674. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1675. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1676. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1677. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1678. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1679. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1680. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1681. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1682. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1683. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1684. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1685. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1686. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1687. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1688. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1689. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1690. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1691. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1692. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1693. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1694. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1695. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1696. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1697. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1698. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  1699. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1700. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1701. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1702. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1703. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1704. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1705. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1706. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1707. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1708. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1709. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1710. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1711. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1712. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1713. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1714. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1715. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1716. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1717. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1718. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1719. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1720. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1721. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1722. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1723. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1724. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1725. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1726. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1727. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1728. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1729. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1730. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1731. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1732. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1733. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1734. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1735. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1736. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1737. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1738. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1739. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1740. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1741. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1742. .rodata.CHANNEL_OFFSET_TAB
  1743. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1744. .text.HAL_PWR_DeInit
  1745. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1746. .text.HAL_PWR_EnableBkUpAccess
  1747. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1748. .text.HAL_PWR_DisableBkUpAccess
  1749. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1750. .text.HAL_PWR_EnableWakeUpPin
  1751. 0x00000000 0x40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1752. .text.HAL_PWR_DisableWakeUpPin
  1753. 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1754. .text.HAL_PWR_EnterSLEEPMode
  1755. 0x00000000 0x6c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1756. .text.HAL_PWR_EnterSTOPMode
  1757. 0x00000000 0x70 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1758. .text.HAL_PWR_EnterSTANDBYMode
  1759. 0x00000000 0x34 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1760. .text.HAL_PWR_EnableSleepOnExit
  1761. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1762. .text.HAL_PWR_DisableSleepOnExit
  1763. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1764. .text.HAL_PWR_EnableSEVOnPend
  1765. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1766. .text.HAL_PWR_DisableSEVOnPend
  1767. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1768. .debug_info 0x00000000 0x5aa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1769. .debug_abbrev 0x00000000 0x172 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1770. .debug_aranges
  1771. 0x00000000 0x78 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1772. .debug_rnglists
  1773. 0x00000000 0x55 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1774. .debug_macro 0x00000000 0x1cb ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1775. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1776. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1777. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1778. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1779. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1780. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1781. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1782. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1783. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1784. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1785. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1786. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1787. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1788. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1789. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1790. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1791. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1792. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1793. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1794. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1795. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1796. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1797. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1798. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1799. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1800. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1801. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1802. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1803. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1804. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1805. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1806. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1807. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1808. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1809. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1810. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1811. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1812. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1813. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1814. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1815. .debug_line 0x00000000 0x81a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1816. .debug_str 0x00000000 0x7de14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1817. .comment 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1818. .debug_frame 0x00000000 0x170 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1819. .ARM.attributes
  1820. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  1821. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1822. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1823. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1824. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1825. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1826. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1827. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1828. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1829. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1830. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1831. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1832. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1833. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1834. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1835. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1836. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1837. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1838. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1839. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1840. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1841. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1842. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1843. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1844. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1845. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1846. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1847. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1848. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1849. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1850. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1851. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1852. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1853. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1854. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1855. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1856. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1857. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1858. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1859. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1860. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1861. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1862. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1863. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1864. .rodata.CHANNEL_OFFSET_TAB
  1865. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1866. .text.HAL_PWREx_EnableBatteryCharging
  1867. 0x00000000 0x34 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1868. .text.HAL_PWREx_DisableBatteryCharging
  1869. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1870. .text.HAL_PWREx_EnableInternalWakeUpLine
  1871. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1872. .text.HAL_PWREx_DisableInternalWakeUpLine
  1873. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1874. .text.HAL_PWREx_EnableGPIOPullUp
  1875. 0x00000000 0xe0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1876. .rodata.HAL_PWREx_EnableGPIOPullUp
  1877. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1878. .text.HAL_PWREx_DisableGPIOPullUp
  1879. 0x00000000 0x9c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1880. .rodata.HAL_PWREx_DisableGPIOPullUp
  1881. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1882. .text.HAL_PWREx_EnableGPIOPullDown
  1883. 0x00000000 0xe0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1884. .rodata.HAL_PWREx_EnableGPIOPullDown
  1885. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1886. .text.HAL_PWREx_DisableGPIOPullDown
  1887. 0x00000000 0x9c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1888. .rodata.HAL_PWREx_DisableGPIOPullDown
  1889. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1890. .text.HAL_PWREx_EnablePullUpPullDownConfig
  1891. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1892. .text.HAL_PWREx_DisablePullUpPullDownConfig
  1893. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1894. .text.HAL_PWREx_EnableFlashPowerDown
  1895. 0x00000000 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1896. .text.HAL_PWREx_DisableFlashPowerDown
  1897. 0x00000000 0x24 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1898. .text.HAL_PWREx_GetVoltageRange
  1899. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1900. .text.HAL_PWREx_EnableLowPowerRunMode
  1901. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1902. .text.HAL_PWREx_DisableLowPowerRunMode
  1903. 0x00000000 0x6c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1904. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1905. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1906. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1907. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1908. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1909. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1910. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1911. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1912. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1913. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1914. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1915. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1916. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1917. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1918. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1919. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1920. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1921. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1922. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1923. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1924. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1925. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1926. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1927. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1928. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1929. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1930. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1931. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1932. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1933. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1934. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1935. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1936. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1937. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1938. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1939. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1940. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1941. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1942. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1943. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  1944. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1945. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1946. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1947. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1948. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1949. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1950. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1951. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1952. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1953. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1954. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1955. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1956. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1957. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1958. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1959. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1960. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1961. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1962. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1963. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1964. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1965. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1966. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1967. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1968. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1969. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1970. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1971. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1972. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1973. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1974. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1975. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1976. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1977. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1978. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1979. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1980. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1981. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1982. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1983. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1984. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1985. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1986. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1987. .text.LL_RCC_GetAPB1Prescaler
  1988. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1989. .rodata.CHANNEL_OFFSET_TAB
  1990. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1991. .text.HAL_RCC_DeInit
  1992. 0x00000000 0xf8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1993. .text.HAL_RCC_MCOConfig
  1994. 0x00000000 0xa8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1995. .text.HAL_RCC_GetHCLKFreq
  1996. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1997. .text.HAL_RCC_GetPCLK1Freq
  1998. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  1999. .text.HAL_RCC_GetOscConfig
  2000. 0x00000000 0x140 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2001. .text.HAL_RCC_GetClockConfig
  2002. 0x00000000 0x54 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2003. .text.HAL_RCC_EnableCSS
  2004. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2005. .text.HAL_RCC_EnableLSECSS
  2006. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2007. .text.HAL_RCC_DisableLSECSS
  2008. 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2009. .text.HAL_RCC_NMI_IRQHandler
  2010. 0x00000000 0x40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2011. .text.HAL_RCC_CSSCallback
  2012. 0x00000000 0xa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2013. .text.HAL_RCC_LSECSSCallback
  2014. 0x00000000 0xa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2015. .text.HAL_RCC_GetResetSource
  2016. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2017. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2018. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2019. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2020. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2021. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2022. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2023. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2024. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2025. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2026. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2027. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2028. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2029. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2030. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2031. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2032. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2033. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2034. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2035. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2036. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2037. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2038. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2039. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2040. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2041. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2042. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2043. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2044. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2045. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2046. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2047. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2048. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2049. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2050. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2051. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2052. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2053. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2054. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2055. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2056. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2057. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2058. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2059. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2060. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2061. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2062. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2063. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2064. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2065. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2066. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2067. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2068. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2069. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2070. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2071. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2072. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2073. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2074. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2075. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2076. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2077. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2078. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2079. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2080. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2081. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2082. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2083. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2084. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2085. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2086. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2087. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2088. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2089. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2090. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2091. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2092. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2093. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2094. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2095. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2096. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2097. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2098. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2099. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2100. .rodata.CHANNEL_OFFSET_TAB
  2101. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2102. .text.HAL_RCCEx_PeriphCLKConfig
  2103. 0x00000000 0x24c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2104. .text.HAL_RCCEx_GetPeriphCLKConfig
  2105. 0x00000000 0x60 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2106. .text.HAL_RCCEx_GetPeriphCLKFreq
  2107. 0x00000000 0x2ec ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2108. .text.HAL_RCCEx_EnableLSCO
  2109. 0x00000000 0xf0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2110. .text.HAL_RCCEx_DisableLSCO
  2111. 0x00000000 0x9c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2112. .debug_info 0x00000000 0x72b ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2113. .debug_abbrev 0x00000000 0x229 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2114. .debug_aranges
  2115. 0x00000000 0x40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2116. .debug_rnglists
  2117. 0x00000000 0x2f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2118. .debug_macro 0x00000000 0x1e3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2119. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2120. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2121. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2122. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2123. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2124. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2125. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2126. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2127. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2128. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2129. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2130. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2131. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2132. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2133. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2134. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2135. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2136. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2137. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2138. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2139. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2140. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2141. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2142. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2143. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2144. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2145. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2146. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2147. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2148. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2149. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2150. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2151. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2152. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2153. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2154. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2155. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2156. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2157. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2158. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2159. .debug_line 0x00000000 0xa3f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2160. .debug_str 0x00000000 0x7df5b ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2161. .comment 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2162. .debug_frame 0x00000000 0xb0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2163. .ARM.attributes
  2164. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2165. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2166. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2167. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2168. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2169. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2170. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2171. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2172. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2173. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2174. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2175. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2176. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2177. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2178. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2179. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2180. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2181. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2182. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2183. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2184. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2185. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2186. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2187. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2188. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2189. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2190. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2191. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2192. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2193. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2194. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2195. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2196. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2197. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2198. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2199. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2200. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2201. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2202. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2203. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2204. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2205. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2206. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2207. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2208. .rodata.CHANNEL_OFFSET_TAB
  2209. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2210. .text.HAL_TIM_Base_DeInit
  2211. 0x00000000 0xbc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2212. .text.HAL_TIM_Base_MspInit
  2213. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2214. .text.HAL_TIM_Base_MspDeInit
  2215. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2216. .text.HAL_TIM_Base_Start
  2217. 0x00000000 0x8c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2218. .text.HAL_TIM_Base_Stop
  2219. 0x00000000 0x4c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2220. .text.HAL_TIM_Base_Start_IT
  2221. 0x00000000 0x9c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2222. .text.HAL_TIM_Base_Stop_IT
  2223. 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2224. .text.HAL_TIM_Base_Start_DMA
  2225. 0x00000000 0x10c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2226. .text.HAL_TIM_Base_Stop_DMA
  2227. 0x00000000 0x68 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2228. .text.HAL_TIM_OC_Init
  2229. 0x00000000 0xb0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2230. .text.HAL_TIM_OC_DeInit
  2231. 0x00000000 0xbc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2232. .text.HAL_TIM_OC_MspInit
  2233. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2234. .text.HAL_TIM_OC_MspDeInit
  2235. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2236. .text.HAL_TIM_OC_Start
  2237. 0x00000000 0x1b0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2238. .text.HAL_TIM_OC_Stop
  2239. 0x00000000 0x10c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2240. .text.HAL_TIM_OC_Start_IT
  2241. 0x00000000 0x23c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2242. .text.HAL_TIM_OC_Stop_IT
  2243. 0x00000000 0x19c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2244. .text.HAL_TIM_OC_Start_DMA
  2245. 0x00000000 0x3dc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2246. .text.HAL_TIM_OC_Stop_DMA
  2247. 0x00000000 0x1d4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2248. .text.HAL_TIM_PWM_Init
  2249. 0x00000000 0xb0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2250. .text.HAL_TIM_PWM_DeInit
  2251. 0x00000000 0xbc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2252. .text.HAL_TIM_PWM_MspInit
  2253. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2254. .text.HAL_TIM_PWM_MspDeInit
  2255. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2256. .text.HAL_TIM_PWM_Start
  2257. 0x00000000 0x1b0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2258. .text.HAL_TIM_PWM_Stop
  2259. 0x00000000 0x10c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2260. .text.HAL_TIM_PWM_Start_IT
  2261. 0x00000000 0x23c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2262. .text.HAL_TIM_PWM_Stop_IT
  2263. 0x00000000 0x19c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2264. .text.HAL_TIM_PWM_Start_DMA
  2265. 0x00000000 0x3dc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2266. .text.HAL_TIM_PWM_Stop_DMA
  2267. 0x00000000 0x1d4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2268. .text.HAL_TIM_IC_DeInit
  2269. 0x00000000 0xbc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2270. .text.HAL_TIM_IC_MspDeInit
  2271. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2272. .text.HAL_TIM_IC_Start
  2273. 0x00000000 0x1c8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2274. .text.HAL_TIM_IC_Stop
  2275. 0x00000000 0xe4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2276. .text.HAL_TIM_IC_Start_IT
  2277. 0x00000000 0x254 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2278. .text.HAL_TIM_IC_Stop_IT
  2279. 0x00000000 0x174 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2280. .text.HAL_TIM_OnePulse_Init
  2281. 0x00000000 0xa2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2282. .text.HAL_TIM_OnePulse_DeInit
  2283. 0x00000000 0x8c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2284. .text.HAL_TIM_OnePulse_MspInit
  2285. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2286. .text.HAL_TIM_OnePulse_MspDeInit
  2287. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2288. .text.HAL_TIM_OnePulse_Start
  2289. 0x00000000 0xec ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2290. .text.HAL_TIM_OnePulse_Stop
  2291. 0x00000000 0xe0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2292. .text.HAL_TIM_OnePulse_Start_IT
  2293. 0x00000000 0x10c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2294. .text.HAL_TIM_OnePulse_Stop_IT
  2295. 0x00000000 0x100 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2296. .text.HAL_TIM_Encoder_Init
  2297. 0x00000000 0x150 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2298. .text.HAL_TIM_Encoder_DeInit
  2299. 0x00000000 0x8c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2300. .text.HAL_TIM_Encoder_MspInit
  2301. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2302. .text.HAL_TIM_Encoder_MspDeInit
  2303. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2304. .text.HAL_TIM_Encoder_Start
  2305. 0x00000000 0x148 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2306. .text.HAL_TIM_Encoder_Stop
  2307. 0x00000000 0x150 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2308. .text.HAL_TIM_Encoder_Start_IT
  2309. 0x00000000 0x188 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2310. .text.HAL_TIM_Encoder_Stop_IT
  2311. 0x00000000 0x18c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2312. .text.HAL_TIM_Encoder_Start_DMA
  2313. 0x00000000 0x35c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2314. .text.HAL_TIM_Encoder_Stop_DMA
  2315. 0x00000000 0x1bc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2316. .text.HAL_TIM_IRQHandler
  2317. 0x00000000 0x210 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2318. .text.HAL_TIM_OC_ConfigChannel
  2319. 0x00000000 0xc0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2320. .rodata.HAL_TIM_OC_ConfigChannel
  2321. 0x00000000 0x54 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2322. .text.HAL_TIM_PWM_ConfigChannel
  2323. 0x00000000 0x200 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2324. .rodata.HAL_TIM_PWM_ConfigChannel
  2325. 0x00000000 0x54 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2326. .text.HAL_TIM_OnePulse_ConfigChannel
  2327. 0x00000000 0x1c8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2328. .text.HAL_TIM_DMABurst_WriteStart
  2329. 0x00000000 0x3c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2330. .text.HAL_TIM_DMABurst_MultiWriteStart
  2331. 0x00000000 0x2c4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2332. .text.HAL_TIM_DMABurst_WriteStop
  2333. 0x00000000 0x11c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2334. .text.HAL_TIM_DMABurst_ReadStart
  2335. 0x00000000 0x3c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2336. .text.HAL_TIM_DMABurst_MultiReadStart
  2337. 0x00000000 0x2c4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2338. .text.HAL_TIM_DMABurst_ReadStop
  2339. 0x00000000 0x11c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2340. .text.HAL_TIM_GenerateEvent
  2341. 0x00000000 0x4a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2342. .text.HAL_TIM_ConfigOCrefClear
  2343. 0x00000000 0x220 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2344. .rodata.HAL_TIM_ConfigOCrefClear
  2345. 0x00000000 0x54 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2346. .text.HAL_TIM_ConfigTI1Input
  2347. 0x00000000 0x34 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2348. .text.HAL_TIM_SlaveConfigSynchro
  2349. 0x00000000 0x8c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2350. .text.HAL_TIM_SlaveConfigSynchro_IT
  2351. 0x00000000 0x8c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2352. .text.HAL_TIM_PeriodElapsedCallback
  2353. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2354. .text.HAL_TIM_PeriodElapsedHalfCpltCallback
  2355. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2356. .text.HAL_TIM_OC_DelayElapsedCallback
  2357. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2358. .text.HAL_TIM_PWM_PulseFinishedCallback
  2359. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2360. .text.HAL_TIM_PWM_PulseFinishedHalfCpltCallback
  2361. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2362. .text.HAL_TIM_TriggerCallback
  2363. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2364. .text.HAL_TIM_TriggerHalfCpltCallback
  2365. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2366. .text.HAL_TIM_Base_GetState
  2367. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2368. .text.HAL_TIM_OC_GetState
  2369. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2370. .text.HAL_TIM_PWM_GetState
  2371. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2372. .text.HAL_TIM_IC_GetState
  2373. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2374. .text.HAL_TIM_OnePulse_GetState
  2375. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2376. .text.HAL_TIM_Encoder_GetState
  2377. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2378. .text.HAL_TIM_GetActiveChannel
  2379. 0x00000000 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2380. .text.HAL_TIM_GetChannelState
  2381. 0x00000000 0x74 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2382. .text.HAL_TIM_DMABurstState
  2383. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2384. .text.TIM_DMADelayPulseCplt
  2385. 0x00000000 0xaa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2386. .text.TIM_DMADelayPulseHalfCplt
  2387. 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2388. .text.TIM_DMAPeriodElapsedCplt
  2389. 0x00000000 0x30 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2390. .text.TIM_DMAPeriodElapsedHalfCplt
  2391. 0x00000000 0x1e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2392. .text.TIM_DMATriggerCplt
  2393. 0x00000000 0x30 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2394. .text.TIM_DMATriggerHalfCplt
  2395. 0x00000000 0x1e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2396. .text.TIM_OC1_SetConfig
  2397. 0x00000000 0x100 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2398. .text.TIM_OC2_SetConfig
  2399. 0x00000000 0xfc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2400. .text.TIM_OC3_SetConfig
  2401. 0x00000000 0x104 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2402. .text.TIM_OC4_SetConfig
  2403. 0x00000000 0xc8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2404. .text.TIM_OC5_SetConfig
  2405. 0x00000000 0xb4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2406. .text.TIM_OC6_SetConfig
  2407. 0x00000000 0xbc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2408. .text.TIM_SlaveTimer_SetConfig
  2409. 0x00000000 0x12c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2410. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2411. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2412. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2413. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2414. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2415. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2416. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2417. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2418. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2419. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2420. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2421. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2422. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2423. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2424. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2425. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2426. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2427. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2428. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2429. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2430. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2431. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2432. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2433. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2434. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2435. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2436. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2437. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2438. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2439. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2440. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2441. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2442. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2443. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2444. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2445. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2446. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2447. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2448. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2449. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2450. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2451. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2452. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2453. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2454. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2455. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2456. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2457. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2458. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2459. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2460. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2461. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2462. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2463. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2464. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2465. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2466. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2467. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2468. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2469. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2470. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2471. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2472. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2473. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2474. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2475. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2476. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2477. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2478. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2479. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2480. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2481. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2482. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2483. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2484. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2485. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2486. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2487. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2488. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2489. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2490. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2491. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2492. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2493. .rodata.CHANNEL_OFFSET_TAB
  2494. 0x00000000 0x5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2495. .text.HAL_TIMEx_HallSensor_Init
  2496. 0x00000000 0x16c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2497. .text.HAL_TIMEx_HallSensor_DeInit
  2498. 0x00000000 0x8c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2499. .text.HAL_TIMEx_HallSensor_MspInit
  2500. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2501. .text.HAL_TIMEx_HallSensor_MspDeInit
  2502. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2503. .text.HAL_TIMEx_HallSensor_Start
  2504. 0x00000000 0xf8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2505. .text.HAL_TIMEx_HallSensor_Stop
  2506. 0x00000000 0x70 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2507. .text.HAL_TIMEx_HallSensor_Start_IT
  2508. 0x00000000 0x108 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2509. .text.HAL_TIMEx_HallSensor_Stop_IT
  2510. 0x00000000 0x80 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2511. .text.HAL_TIMEx_HallSensor_Start_DMA
  2512. 0x00000000 0x148 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2513. .text.HAL_TIMEx_HallSensor_Stop_DMA
  2514. 0x00000000 0x80 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2515. .text.HAL_TIMEx_OCN_Start
  2516. 0x00000000 0x130 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2517. .text.HAL_TIMEx_OCN_Stop
  2518. 0x00000000 0xb8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2519. .text.HAL_TIMEx_OCN_Start_IT
  2520. 0x00000000 0x1b0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2521. .text.HAL_TIMEx_OCN_Stop_IT
  2522. 0x00000000 0x148 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2523. .text.HAL_TIMEx_OCN_Start_DMA
  2524. 0x00000000 0x2d0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2525. .text.HAL_TIMEx_OCN_Stop_DMA
  2526. 0x00000000 0x150 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2527. .text.HAL_TIMEx_PWMN_Start
  2528. 0x00000000 0x130 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2529. .text.HAL_TIMEx_PWMN_Stop
  2530. 0x00000000 0xb8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2531. .text.HAL_TIMEx_PWMN_Start_IT
  2532. 0x00000000 0x1b0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2533. .text.HAL_TIMEx_PWMN_Stop_IT
  2534. 0x00000000 0x148 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2535. .text.HAL_TIMEx_PWMN_Start_DMA
  2536. 0x00000000 0x2d0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2537. .text.HAL_TIMEx_PWMN_Stop_DMA
  2538. 0x00000000 0x150 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2539. .text.HAL_TIMEx_OnePulseN_Start
  2540. 0x00000000 0xc4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2541. .text.HAL_TIMEx_OnePulseN_Stop
  2542. 0x00000000 0xbc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2543. .text.HAL_TIMEx_OnePulseN_Start_IT
  2544. 0x00000000 0xe4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2545. .text.HAL_TIMEx_OnePulseN_Stop_IT
  2546. 0x00000000 0xdc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2547. .text.HAL_TIMEx_ConfigCommutEvent
  2548. 0x00000000 0xc4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2549. .text.HAL_TIMEx_ConfigCommutEvent_IT
  2550. 0x00000000 0xc4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2551. .text.HAL_TIMEx_ConfigCommutEvent_DMA
  2552. 0x00000000 0xe8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2553. .text.HAL_TIMEx_ConfigBreakDeadTime
  2554. 0x00000000 0x138 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2555. .text.HAL_TIMEx_ConfigBreakInput
  2556. 0x00000000 0x122 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2557. .text.HAL_TIMEx_RemapConfig
  2558. 0x00000000 0x4c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2559. .text.HAL_TIMEx_TISelection
  2560. 0x00000000 0xb4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2561. .text.HAL_TIMEx_GroupChannel5
  2562. 0x00000000 0x62 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2563. .text.HAL_TIMEx_DisarmBreakInput
  2564. 0x00000000 0x9e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2565. .text.HAL_TIMEx_ReArmBreakInput
  2566. 0x00000000 0xda ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2567. .text.HAL_TIMEx_CommutCallback
  2568. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2569. .text.HAL_TIMEx_CommutHalfCpltCallback
  2570. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2571. .text.HAL_TIMEx_BreakCallback
  2572. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2573. .text.HAL_TIMEx_Break2Callback
  2574. 0x00000000 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2575. .text.HAL_TIMEx_HallSensor_GetState
  2576. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2577. .text.HAL_TIMEx_GetChannelNState
  2578. 0x00000000 0x54 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2579. .text.TIMEx_DMACommutationCplt
  2580. 0x00000000 0x26 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2581. .text.TIMEx_DMACommutationHalfCplt
  2582. 0x00000000 0x26 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2583. .text.TIM_DMADelayPulseNCplt
  2584. 0x00000000 0x88 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2585. .text.TIM_DMAErrorCCxN
  2586. 0x00000000 0x70 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2587. .text.TIM_CCxNChannelCmd
  2588. 0x00000000 0x46 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2589. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2590. .debug_macro 0x00000000 0x117 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2591. .debug_macro 0x00000000 0x2e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2592. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2593. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2594. .debug_macro 0x00000000 0x8e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2595. .debug_macro 0x00000000 0x51 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2596. .debug_macro 0x00000000 0x103 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2597. .debug_macro 0x00000000 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2598. .debug_macro 0x00000000 0x1df ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2599. .debug_macro 0x00000000 0x1c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2600. .debug_macro 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2601. .debug_macro 0x00000000 0xd1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2602. .debug_macro 0x00000000 0x4da ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2603. .debug_macro 0x00000000 0x11f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2604. .debug_macro 0x00000000 0xa0e8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2605. .debug_macro 0x00000000 0x66 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2606. .debug_macro 0x00000000 0x350e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2607. .debug_macro 0x00000000 0x189 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2608. .debug_macro 0x00000000 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2609. .debug_macro 0x00000000 0x462 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2610. .debug_macro 0x00000000 0xe1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2611. .debug_macro 0x00000000 0x106 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2612. .debug_macro 0x00000000 0x1cf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2613. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2614. .debug_macro 0x00000000 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2615. .debug_macro 0x00000000 0x202 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2616. .debug_macro 0x00000000 0x2c7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2617. .debug_macro 0x00000000 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2618. .debug_macro 0x00000000 0x43 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2619. .debug_macro 0x00000000 0x1f1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2620. .debug_macro 0x00000000 0x1d6 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2621. .debug_macro 0x00000000 0x2a3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2622. .debug_macro 0x00000000 0x28 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2623. .debug_macro 0x00000000 0xcf ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2624. .debug_macro 0x00000000 0xff ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2625. .debug_macro 0x00000000 0x10d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2626. .debug_macro 0x00000000 0xac2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2627. .debug_macro 0x00000000 0xfa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2628. .debug_macro 0x00000000 0x412 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2629. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2630. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2631. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2632. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2633. .debug_info 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2634. .debug_abbrev 0x00000000 0x12 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2635. .debug_aranges
  2636. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2637. .debug_macro 0x00000000 0x11 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2638. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2639. .debug_line 0x00000000 0x57 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2640. .debug_str 0x00000000 0x2d11 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2641. .comment 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2642. .ARM.attributes
  2643. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2644. .group 0x00000000 0xc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2645. .text 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2646. .data 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2647. .bss 0x00000000 0x0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2648. .debug_info 0x00000000 0x22 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2649. .debug_abbrev 0x00000000 0x12 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2650. .debug_aranges
  2651. 0x00000000 0x18 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2652. .debug_macro 0x00000000 0x11 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2653. .debug_macro 0x00000000 0xa8a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2654. .debug_line 0x00000000 0x57 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2655. .debug_str 0x00000000 0x2d11 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2656. .comment 0x00000000 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2657. .ARM.attributes
  2658. 0x00000000 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2659. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o)
  2660. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o)
  2661. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o)
  2662. .text.exit 0x00000000 0x28 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o)
  2663. .debug_frame 0x00000000 0x28 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o)
  2664. .ARM.attributes
  2665. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-exit.o)
  2666. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2667. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2668. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2669. .text.std 0x00000000 0x6c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2670. .text.stdio_exit_handler
  2671. 0x00000000 0x1c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2672. .text.cleanup_stdio
  2673. 0x00000000 0x3c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2674. .text.__fp_lock
  2675. 0x00000000 0x18 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2676. .text.__fp_unlock
  2677. 0x00000000 0x18 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2678. .text.global_stdio_init.part.0
  2679. 0x00000000 0x3c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2680. .text.__sfp_lock_acquire
  2681. 0x00000000 0x10 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2682. .text.__sfp_lock_release
  2683. 0x00000000 0x10 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2684. .text.__sfp 0x00000000 0xa8 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2685. .text.__sinit 0x00000000 0x30 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2686. .text.__fp_lock_all
  2687. 0x00000000 0x1c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2688. .text.__fp_unlock_all
  2689. 0x00000000 0x1c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2690. .data.__sglue 0x00000000 0xc /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2691. .bss.__sf 0x00000000 0x138 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2692. .bss.__stdio_exit_handler
  2693. 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2694. .debug_frame 0x00000000 0x138 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2695. .ARM.attributes
  2696. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-findfp.o)
  2697. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o)
  2698. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o)
  2699. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o)
  2700. .text._fwalk_sglue
  2701. 0x00000000 0x38 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o)
  2702. .debug_frame 0x00000000 0x34 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o)
  2703. .ARM.attributes
  2704. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fwalk.o)
  2705. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2706. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2707. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2708. .text.__sread 0x00000000 0x28 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2709. .text.__seofread
  2710. 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2711. .text.__swrite
  2712. 0x00000000 0x38 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2713. .text.__sseek 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2714. .text.__sclose
  2715. 0x00000000 0xc /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2716. .debug_frame 0x00000000 0x90 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2717. .ARM.attributes
  2718. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-stdio.o)
  2719. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o)
  2720. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o)
  2721. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o)
  2722. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o)
  2723. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o)
  2724. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o)
  2725. .text._close_r
  2726. 0x00000000 0x24 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o)
  2727. .debug_frame 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o)
  2728. .ARM.attributes
  2729. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-closer.o)
  2730. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o)
  2731. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o)
  2732. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o)
  2733. .text._reclaim_reent
  2734. 0x00000000 0xc0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o)
  2735. .bss.errno 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o)
  2736. .debug_frame 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o)
  2737. .ARM.attributes
  2738. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-reent.o)
  2739. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o)
  2740. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o)
  2741. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o)
  2742. .data._impure_ptr
  2743. 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o)
  2744. .data._impure_data
  2745. 0x00000000 0x4c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o)
  2746. .ARM.attributes
  2747. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-impure.o)
  2748. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o)
  2749. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o)
  2750. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o)
  2751. .text._lseek_r
  2752. 0x00000000 0x28 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o)
  2753. .debug_frame 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o)
  2754. .ARM.attributes
  2755. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lseekr.o)
  2756. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o)
  2757. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o)
  2758. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o)
  2759. .text._read_r 0x00000000 0x28 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o)
  2760. .debug_frame 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o)
  2761. .ARM.attributes
  2762. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-readr.o)
  2763. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o)
  2764. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o)
  2765. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o)
  2766. .text._write_r
  2767. 0x00000000 0x28 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o)
  2768. .debug_frame 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o)
  2769. .ARM.attributes
  2770. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-writer.o)
  2771. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o)
  2772. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o)
  2773. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o)
  2774. .text.__errno 0x00000000 0xc /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o)
  2775. .debug_frame 0x00000000 0x20 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o)
  2776. .ARM.attributes
  2777. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-errno.o)
  2778. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o)
  2779. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o)
  2780. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o)
  2781. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2782. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2783. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2784. .text.__retarget_lock_init
  2785. 0x00000000 0x2 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2786. .text.__retarget_lock_init_recursive
  2787. 0x00000000 0x2 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2788. .text.__retarget_lock_close
  2789. 0x00000000 0x2 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2790. .text.__retarget_lock_close_recursive
  2791. 0x00000000 0x2 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2792. .text.__retarget_lock_acquire
  2793. 0x00000000 0x2 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2794. .text.__retarget_lock_acquire_recursive
  2795. 0x00000000 0x2 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2796. .text.__retarget_lock_try_acquire
  2797. 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2798. .text.__retarget_lock_try_acquire_recursive
  2799. 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2800. .text.__retarget_lock_release
  2801. 0x00000000 0x2 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2802. .text.__retarget_lock_release_recursive
  2803. 0x00000000 0x2 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2804. .bss.__lock___arc4random_mutex
  2805. 0x00000000 0x1 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2806. .bss.__lock___dd_hash_mutex
  2807. 0x00000000 0x1 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2808. .bss.__lock___tz_mutex
  2809. 0x00000000 0x1 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2810. .bss.__lock___env_recursive_mutex
  2811. 0x00000000 0x1 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2812. .bss.__lock___malloc_recursive_mutex
  2813. 0x00000000 0x1 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2814. .bss.__lock___at_quick_exit_mutex
  2815. 0x00000000 0x1 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2816. .bss.__lock___atexit_recursive_mutex
  2817. 0x00000000 0x1 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2818. .bss.__lock___sfp_recursive_mutex
  2819. 0x00000000 0x1 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2820. .debug_frame 0x00000000 0xb0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2821. .ARM.attributes
  2822. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-lock.o)
  2823. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o)
  2824. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o)
  2825. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o)
  2826. .text._free_r 0x00000000 0x94 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o)
  2827. .debug_frame 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o)
  2828. .ARM.attributes
  2829. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-freer.o)
  2830. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  2831. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  2832. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  2833. .text.sbrk_aligned
  2834. 0x00000000 0x44 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  2835. .text._malloc_r
  2836. 0x00000000 0x100 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  2837. .bss.__malloc_sbrk_start
  2838. 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  2839. .bss.__malloc_free_list
  2840. 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  2841. .debug_frame 0x00000000 0x50 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  2842. .ARM.attributes
  2843. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mallocr.o)
  2844. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o)
  2845. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o)
  2846. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o)
  2847. .text.__malloc_lock
  2848. 0x00000000 0x10 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o)
  2849. .text.__malloc_unlock
  2850. 0x00000000 0x10 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o)
  2851. .debug_frame 0x00000000 0x40 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o)
  2852. .ARM.attributes
  2853. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-mlock.o)
  2854. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o)
  2855. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o)
  2856. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o)
  2857. .text.__sflush_r
  2858. 0x00000000 0x10c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o)
  2859. .text._fflush_r
  2860. 0x00000000 0x56 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o)
  2861. .text.fflush 0x00000000 0x30 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o)
  2862. .debug_frame 0x00000000 0x68 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o)
  2863. .ARM.attributes
  2864. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-fflush.o)
  2865. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o)
  2866. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o)
  2867. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o)
  2868. .text._sbrk_r 0x00000000 0x24 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o)
  2869. .debug_frame 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o)
  2870. .ARM.attributes
  2871. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-sbrkr.o)
  2872. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o)
  2873. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o)
  2874. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o)
  2875. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o)
  2876. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtend.o
  2877. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtend.o
  2878. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtend.o
  2879. .rodata 0x00000000 0x24 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtend.o
  2880. .eh_frame 0x00000000 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtend.o
  2881. .ARM.attributes
  2882. 0x00000000 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtend.o
  2883. .text 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtn.o
  2884. .data 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtn.o
  2885. .bss 0x00000000 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtn.o
  2886. Memory Configuration
  2887. Name Origin Length Attributes
  2888. RAM 0x20000000 0x00002000 xrw
  2889. FLASH 0x08000000 0x00008000 xr
  2890. *default* 0x00000000 0xffffffff
  2891. Linker script and memory map
  2892. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crti.o
  2893. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  2894. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/crt0.o
  2895. LOAD ./Core/Src/input_capture.o
  2896. LOAD ./Core/Src/main.o
  2897. LOAD ./Core/Src/stm32g0xx_hal_msp.o
  2898. LOAD ./Core/Src/stm32g0xx_it.o
  2899. LOAD ./Core/Src/syscalls.o
  2900. LOAD ./Core/Src/sysmem.o
  2901. LOAD ./Core/Src/system_stm32g0xx.o
  2902. LOAD ./Core/Src/user.o
  2903. LOAD ./Core/Startup/startup_stm32g030f6px.o
  2904. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  2905. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  2906. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  2907. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma_ex.o
  2908. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_exti.o
  2909. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash.o
  2910. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_flash_ex.o
  2911. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  2912. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr.o
  2913. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  2914. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  2915. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc_ex.o
  2916. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  2917. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  2918. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_dma.o
  2919. LOAD ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_ll_rcc.o
  2920. START GROUP
  2921. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a
  2922. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a
  2923. END GROUP
  2924. START GROUP
  2925. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a
  2926. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a
  2927. END GROUP
  2928. START GROUP
  2929. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a
  2930. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a
  2931. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libnosys.a
  2932. END GROUP
  2933. START GROUP
  2934. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a
  2935. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a
  2936. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libnosys.a
  2937. END GROUP
  2938. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtend.o
  2939. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtn.o
  2940. 0x20002000 _estack = (ORIGIN (RAM) + LENGTH (RAM))
  2941. 0x00000200 _Min_Heap_Size = 0x200
  2942. 0x00000400 _Min_Stack_Size = 0x400
  2943. .isr_vector 0x08000000 0xb8
  2944. 0x08000000 . = ALIGN (0x4)
  2945. *(.isr_vector)
  2946. .isr_vector 0x08000000 0xb8 ./Core/Startup/startup_stm32g030f6px.o
  2947. 0x08000000 g_pfnVectors
  2948. 0x080000b8 . = ALIGN (0x4)
  2949. .text 0x080000b8 0x2fe0
  2950. 0x080000b8 . = ALIGN (0x4)
  2951. *(.text)
  2952. .text 0x080000b8 0x48 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  2953. .text 0x08000100 0x114 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o)
  2954. 0x08000100 __udivsi3
  2955. 0x08000100 __aeabi_uidiv
  2956. 0x0800020c __aeabi_uidivmod
  2957. .text 0x08000214 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o)
  2958. 0x08000214 __aeabi_ldiv0
  2959. 0x08000214 __aeabi_idiv0
  2960. *(.text*)
  2961. .text.DMA1_Channel1_IRQ
  2962. 0x08000218 0x278 ./Core/Src/input_capture.o
  2963. 0x08000218 DMA1_Channel1_IRQ
  2964. .text.Dshot_Init
  2965. 0x08000490 0xc8 ./Core/Src/input_capture.o
  2966. 0x08000490 Dshot_Init
  2967. .text.Dshot_DeInit
  2968. 0x08000558 0x24 ./Core/Src/input_capture.o
  2969. 0x08000558 Dshot_DeInit
  2970. .text.TIM3_IRQ
  2971. 0x0800057c 0xc4 ./Core/Src/input_capture.o
  2972. 0x0800057c TIM3_IRQ
  2973. .text.main 0x08000640 0x22 ./Core/Src/main.o
  2974. 0x08000640 main
  2975. .text.SystemClock_Config
  2976. 0x08000662 0xb4 ./Core/Src/main.o
  2977. 0x08000662 SystemClock_Config
  2978. *fill* 0x08000716 0x2
  2979. .text.MX_TIM3_Init
  2980. 0x08000718 0x118 ./Core/Src/main.o
  2981. .text.MX_DMA_Init
  2982. 0x08000830 0x4c ./Core/Src/main.o
  2983. .text.MX_GPIO_Init
  2984. 0x0800087c 0x2c ./Core/Src/main.o
  2985. .text.Error_Handler
  2986. 0x080008a8 0xc ./Core/Src/main.o
  2987. 0x080008a8 Error_Handler
  2988. .text.HAL_MspInit
  2989. 0x080008b4 0x48 ./Core/Src/stm32g0xx_hal_msp.o
  2990. 0x080008b4 HAL_MspInit
  2991. .text.HAL_TIM_Base_MspInit
  2992. 0x080008fc 0x160 ./Core/Src/stm32g0xx_hal_msp.o
  2993. 0x080008fc HAL_TIM_Base_MspInit
  2994. .text.NMI_Handler
  2995. 0x08000a5c 0x8 ./Core/Src/stm32g0xx_it.o
  2996. 0x08000a5c NMI_Handler
  2997. .text.HardFault_Handler
  2998. 0x08000a64 0x8 ./Core/Src/stm32g0xx_it.o
  2999. 0x08000a64 HardFault_Handler
  3000. .text.SVC_Handler
  3001. 0x08000a6c 0xa ./Core/Src/stm32g0xx_it.o
  3002. 0x08000a6c SVC_Handler
  3003. .text.PendSV_Handler
  3004. 0x08000a76 0xa ./Core/Src/stm32g0xx_it.o
  3005. 0x08000a76 PendSV_Handler
  3006. .text.SysTick_Handler
  3007. 0x08000a80 0xe ./Core/Src/stm32g0xx_it.o
  3008. 0x08000a80 SysTick_Handler
  3009. *fill* 0x08000a8e 0x2
  3010. .text.DMA1_Channel1_IRQHandler
  3011. 0x08000a90 0x18 ./Core/Src/stm32g0xx_it.o
  3012. 0x08000a90 DMA1_Channel1_IRQHandler
  3013. .text.DMA1_Channel2_3_IRQHandler
  3014. 0x08000aa8 0xa ./Core/Src/stm32g0xx_it.o
  3015. 0x08000aa8 DMA1_Channel2_3_IRQHandler
  3016. .text.TIM3_IRQHandler
  3017. 0x08000ab2 0xe ./Core/Src/stm32g0xx_it.o
  3018. 0x08000ab2 TIM3_IRQHandler
  3019. .text.SystemInit
  3020. 0x08000ac0 0xa ./Core/Src/system_stm32g0xx.o
  3021. 0x08000ac0 SystemInit
  3022. .text.User_Init
  3023. 0x08000aca 0x10 ./Core/Src/user.o
  3024. 0x08000aca User_Init
  3025. .text.User_MainLoop
  3026. 0x08000ada 0x10 ./Core/Src/user.o
  3027. 0x08000ada User_MainLoop
  3028. *fill* 0x08000aea 0x2
  3029. .text.Reset_Handler
  3030. 0x08000aec 0x50 ./Core/Startup/startup_stm32g030f6px.o
  3031. 0x08000aec Reset_Handler
  3032. .text.Default_Handler
  3033. 0x08000b3c 0x2 ./Core/Startup/startup_stm32g030f6px.o
  3034. 0x08000b3c TIM1_CC_IRQHandler
  3035. 0x08000b3c I2C1_IRQHandler
  3036. 0x08000b3c RTC_TAMP_IRQHandler
  3037. 0x08000b3c SPI1_IRQHandler
  3038. 0x08000b3c DMA1_Ch4_5_DMAMUX1_OVR_IRQHandler
  3039. 0x08000b3c EXTI2_3_IRQHandler
  3040. 0x08000b3c ADC1_IRQHandler
  3041. 0x08000b3c I2C2_IRQHandler
  3042. 0x08000b3c TIM17_IRQHandler
  3043. 0x08000b3c TIM16_IRQHandler
  3044. 0x08000b3c EXTI4_15_IRQHandler
  3045. 0x08000b3c RCC_IRQHandler
  3046. 0x08000b3c Default_Handler
  3047. 0x08000b3c TIM14_IRQHandler
  3048. 0x08000b3c EXTI0_1_IRQHandler
  3049. 0x08000b3c SPI2_IRQHandler
  3050. 0x08000b3c WWDG_IRQHandler
  3051. 0x08000b3c USART2_IRQHandler
  3052. 0x08000b3c FLASH_IRQHandler
  3053. 0x08000b3c USART1_IRQHandler
  3054. 0x08000b3c TIM1_BRK_UP_TRG_COM_IRQHandler
  3055. *fill* 0x08000b3e 0x2
  3056. .text.HAL_Init
  3057. 0x08000b40 0x40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3058. 0x08000b40 HAL_Init
  3059. .text.HAL_InitTick
  3060. 0x08000b80 0x94 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3061. 0x08000b80 HAL_InitTick
  3062. .text.HAL_IncTick
  3063. 0x08000c14 0x24 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3064. 0x08000c14 HAL_IncTick
  3065. .text.HAL_GetTick
  3066. 0x08000c38 0x14 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3067. 0x08000c38 HAL_GetTick
  3068. .text.HAL_Delay
  3069. 0x08000c4c 0x48 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3070. 0x08000c4c HAL_Delay
  3071. .text.__NVIC_EnableIRQ
  3072. 0x08000c94 0x34 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3073. .text.__NVIC_SetPriority
  3074. 0x08000cc8 0xdc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3075. .text.SysTick_Config
  3076. 0x08000da4 0x48 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3077. .text.HAL_NVIC_SetPriority
  3078. 0x08000dec 0x2a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3079. 0x08000dec HAL_NVIC_SetPriority
  3080. .text.HAL_NVIC_EnableIRQ
  3081. 0x08000e16 0x20 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3082. 0x08000e16 HAL_NVIC_EnableIRQ
  3083. .text.HAL_SYSTICK_Config
  3084. 0x08000e36 0x1a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3085. 0x08000e36 HAL_SYSTICK_Config
  3086. .text.HAL_DMA_Init
  3087. 0x08000e50 0x114 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3088. 0x08000e50 HAL_DMA_Init
  3089. .text.HAL_DMA_Start_IT
  3090. 0x08000f64 0x10c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3091. 0x08000f64 HAL_DMA_Start_IT
  3092. .text.HAL_DMA_Abort_IT
  3093. 0x08001070 0xd4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3094. 0x08001070 HAL_DMA_Abort_IT
  3095. .text.DMA_SetConfig
  3096. 0x08001144 0x80 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3097. .text.DMA_CalcDMAMUXChannelBaseAndMask
  3098. 0x080011c4 0x58 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3099. .text.DMA_CalcDMAMUXRequestGenBaseAndMask
  3100. 0x0800121c 0x48 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3101. .text.HAL_GPIO_Init
  3102. 0x08001264 0x2c8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3103. 0x08001264 HAL_GPIO_Init
  3104. .text.HAL_PWREx_ControlVoltageScaling
  3105. 0x0800152c 0x80 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3106. 0x0800152c HAL_PWREx_ControlVoltageScaling
  3107. .text.HAL_RCC_OscConfig
  3108. 0x080015ac 0x620 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3109. 0x080015ac HAL_RCC_OscConfig
  3110. .text.HAL_RCC_ClockConfig
  3111. 0x08001bcc 0x210 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3112. 0x08001bcc HAL_RCC_ClockConfig
  3113. .text.HAL_RCC_GetSysClockFreq
  3114. 0x08001ddc 0x104 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3115. 0x08001ddc HAL_RCC_GetSysClockFreq
  3116. .text.HAL_TIM_Base_Init
  3117. 0x08001ee0 0xb0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3118. 0x08001ee0 HAL_TIM_Base_Init
  3119. .text.HAL_TIM_IC_Init
  3120. 0x08001f90 0xb0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3121. 0x08001f90 HAL_TIM_IC_Init
  3122. .text.HAL_TIM_IC_MspInit
  3123. 0x08002040 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3124. 0x08002040 HAL_TIM_IC_MspInit
  3125. .text.HAL_TIM_IC_Start_DMA
  3126. 0x08002050 0x370 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3127. 0x08002050 HAL_TIM_IC_Start_DMA
  3128. .text.HAL_TIM_IC_Stop_DMA
  3129. 0x080023c0 0x1a8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3130. 0x080023c0 HAL_TIM_IC_Stop_DMA
  3131. .text.HAL_TIM_IC_ConfigChannel
  3132. 0x08002568 0x148 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3133. 0x08002568 HAL_TIM_IC_ConfigChannel
  3134. .text.HAL_TIM_ConfigClockSource
  3135. 0x080026b0 0x1ac ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3136. 0x080026b0 HAL_TIM_ConfigClockSource
  3137. .text.HAL_TIM_ReadCapturedValue
  3138. 0x0800285c 0x68 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3139. 0x0800285c HAL_TIM_ReadCapturedValue
  3140. .text.HAL_TIM_IC_CaptureCallback
  3141. 0x080028c4 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3142. 0x080028c4 HAL_TIM_IC_CaptureCallback
  3143. .text.HAL_TIM_IC_CaptureHalfCpltCallback
  3144. 0x080028d4 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3145. 0x080028d4 HAL_TIM_IC_CaptureHalfCpltCallback
  3146. .text.HAL_TIM_ErrorCallback
  3147. 0x080028e4 0x10 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3148. 0x080028e4 HAL_TIM_ErrorCallback
  3149. .text.TIM_DMAError
  3150. 0x080028f4 0x94 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3151. 0x080028f4 TIM_DMAError
  3152. .text.TIM_DMACaptureCplt
  3153. 0x08002988 0xca ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3154. 0x08002988 TIM_DMACaptureCplt
  3155. .text.TIM_DMACaptureHalfCplt
  3156. 0x08002a52 0x6a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3157. 0x08002a52 TIM_DMACaptureHalfCplt
  3158. .text.TIM_Base_SetConfig
  3159. 0x08002abc 0xf4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3160. 0x08002abc TIM_Base_SetConfig
  3161. .text.TIM_TI1_SetConfig
  3162. 0x08002bb0 0xa4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3163. 0x08002bb0 TIM_TI1_SetConfig
  3164. .text.TIM_TI1_ConfigInputStage
  3165. 0x08002c54 0x5c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3166. .text.TIM_TI2_SetConfig
  3167. 0x08002cb0 0x84 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3168. .text.TIM_TI2_ConfigInputStage
  3169. 0x08002d34 0x64 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3170. .text.TIM_TI3_SetConfig
  3171. 0x08002d98 0x80 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3172. .text.TIM_TI4_SetConfig
  3173. 0x08002e18 0x8c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3174. .text.TIM_ITRx_SetConfig
  3175. 0x08002ea4 0x38 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3176. .text.TIM_ETR_SetConfig
  3177. 0x08002edc 0x40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3178. 0x08002edc TIM_ETR_SetConfig
  3179. .text.TIM_CCxChannelCmd
  3180. 0x08002f1c 0x46 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3181. 0x08002f1c TIM_CCxChannelCmd
  3182. *fill* 0x08002f62 0x2
  3183. .text.HAL_TIMEx_MasterConfigSynchronization
  3184. 0x08002f64 0xc4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3185. 0x08002f64 HAL_TIMEx_MasterConfigSynchronization
  3186. .text.memset 0x08003028 0x10 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o)
  3187. 0x08003028 memset
  3188. .text.__libc_init_array
  3189. 0x08003038 0x48 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o)
  3190. 0x08003038 __libc_init_array
  3191. *(.glue_7)
  3192. .glue_7 0x08003080 0x0 linker stubs
  3193. *(.glue_7t)
  3194. .glue_7t 0x08003080 0x0 linker stubs
  3195. *(.eh_frame)
  3196. .eh_frame 0x08003080 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  3197. *(.init)
  3198. .init 0x08003080 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crti.o
  3199. 0x08003080 _init
  3200. .init 0x08003084 0x8 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtn.o
  3201. *(.fini)
  3202. .fini 0x0800308c 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crti.o
  3203. 0x0800308c _fini
  3204. .fini 0x08003090 0x8 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtn.o
  3205. 0x08003098 . = ALIGN (0x4)
  3206. 0x08003098 _etext = .
  3207. .vfp11_veneer 0x08003098 0x0
  3208. .vfp11_veneer 0x08003098 0x0 linker stubs
  3209. .v4_bx 0x08003098 0x0
  3210. .v4_bx 0x08003098 0x0 linker stubs
  3211. .iplt 0x08003098 0x0
  3212. .iplt 0x08003098 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  3213. .rodata 0x08003098 0x40
  3214. 0x08003098 . = ALIGN (0x4)
  3215. *(.rodata)
  3216. *(.rodata*)
  3217. .rodata.AHBPrescTable
  3218. 0x08003098 0x40 ./Core/Src/system_stm32g0xx.o
  3219. 0x08003098 AHBPrescTable
  3220. 0x080030d8 . = ALIGN (0x4)
  3221. .rel.dyn 0x080030d8 0x0
  3222. .rel.iplt 0x080030d8 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  3223. .ARM.extab 0x080030d8 0x0
  3224. 0x080030d8 . = ALIGN (0x4)
  3225. *(.ARM.extab* .gnu.linkonce.armextab.*)
  3226. 0x080030d8 . = ALIGN (0x4)
  3227. .ARM 0x080030d8 0x0
  3228. 0x080030d8 . = ALIGN (0x4)
  3229. 0x080030d8 __exidx_start = .
  3230. *(.ARM.exidx*)
  3231. 0x080030d8 __exidx_end = .
  3232. 0x080030d8 . = ALIGN (0x4)
  3233. .preinit_array 0x080030d8 0x0
  3234. 0x080030d8 . = ALIGN (0x4)
  3235. 0x080030d8 PROVIDE (__preinit_array_start = .)
  3236. *(.preinit_array*)
  3237. 0x080030d8 PROVIDE (__preinit_array_end = .)
  3238. 0x080030d8 . = ALIGN (0x4)
  3239. .init_array 0x080030d8 0x4
  3240. 0x080030d8 . = ALIGN (0x4)
  3241. 0x080030d8 PROVIDE (__init_array_start = .)
  3242. *(SORT_BY_NAME(.init_array.*))
  3243. *(.init_array*)
  3244. .init_array 0x080030d8 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  3245. 0x080030dc PROVIDE (__init_array_end = .)
  3246. 0x080030dc . = ALIGN (0x4)
  3247. .fini_array 0x080030dc 0x4
  3248. 0x080030dc . = ALIGN (0x4)
  3249. [!provide] PROVIDE (__fini_array_start = .)
  3250. *(SORT_BY_NAME(.fini_array.*))
  3251. *(.fini_array*)
  3252. .fini_array 0x080030dc 0x4 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  3253. [!provide] PROVIDE (__fini_array_end = .)
  3254. 0x080030e0 . = ALIGN (0x4)
  3255. 0x080030e0 _sidata = LOADADDR (.data)
  3256. .data 0x20000000 0xc load address 0x080030e0
  3257. 0x20000000 . = ALIGN (0x4)
  3258. 0x20000000 _sdata = .
  3259. *(.data)
  3260. *(.data*)
  3261. .data.SystemCoreClock
  3262. 0x20000000 0x4 ./Core/Src/system_stm32g0xx.o
  3263. 0x20000000 SystemCoreClock
  3264. .data.uwTickPrio
  3265. 0x20000004 0x4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3266. 0x20000004 uwTickPrio
  3267. .data.uwTickFreq
  3268. 0x20000008 0x1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3269. 0x20000008 uwTickFreq
  3270. *(.RamFunc)
  3271. *(.RamFunc*)
  3272. 0x2000000c . = ALIGN (0x4)
  3273. *fill* 0x20000009 0x3
  3274. 0x2000000c _edata = .
  3275. .igot.plt 0x2000000c 0x0 load address 0x080030ec
  3276. .igot.plt 0x2000000c 0x0 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  3277. 0x2000000c . = ALIGN (0x4)
  3278. .bss 0x2000000c 0x1d4 load address 0x080030ec
  3279. 0x2000000c _sbss = .
  3280. 0x2000000c __bss_start__ = _sbss
  3281. *(.bss)
  3282. .bss 0x2000000c 0x1c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  3283. *(.bss*)
  3284. .bss.DShot 0x20000028 0xa8 ./Core/Src/input_capture.o
  3285. 0x20000028 DShot
  3286. .bss.PWMInput 0x200000d0 0x8 ./Core/Src/input_capture.o
  3287. 0x200000d0 PWMInput
  3288. .bss.htim3 0x200000d8 0x4c ./Core/Src/main.o
  3289. 0x200000d8 htim3
  3290. .bss.hdma_tim3_ch1
  3291. 0x20000124 0x5c ./Core/Src/main.o
  3292. 0x20000124 hdma_tim3_ch1
  3293. .bss.hdma_tim3_ch2
  3294. 0x20000180 0x5c ./Core/Src/main.o
  3295. 0x20000180 hdma_tim3_ch2
  3296. .bss.uwTick 0x200001dc 0x4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3297. 0x200001dc uwTick
  3298. *(COMMON)
  3299. 0x200001e0 . = ALIGN (0x4)
  3300. 0x200001e0 _ebss = .
  3301. 0x200001e0 __bss_end__ = _ebss
  3302. ._user_heap_stack
  3303. 0x200001e0 0x600 load address 0x080030ec
  3304. 0x200001e0 . = ALIGN (0x8)
  3305. [!provide] PROVIDE (end = .)
  3306. 0x200001e0 PROVIDE (_end = .)
  3307. 0x200003e0 . = (. + _Min_Heap_Size)
  3308. *fill* 0x200001e0 0x200
  3309. 0x200007e0 . = (. + _Min_Stack_Size)
  3310. *fill* 0x200003e0 0x400
  3311. 0x200007e0 . = ALIGN (0x8)
  3312. /DISCARD/
  3313. libc.a(*)
  3314. libm.a(*)
  3315. libgcc.a(*)
  3316. .ARM.attributes
  3317. 0x00000000 0x28
  3318. *(.ARM.attributes)
  3319. .ARM.attributes
  3320. 0x00000000 0x1e /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crti.o
  3321. .ARM.attributes
  3322. 0x0000001e 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtbegin.o
  3323. .ARM.attributes
  3324. 0x0000004a 0x2c ./Core/Src/input_capture.o
  3325. .ARM.attributes
  3326. 0x00000076 0x2c ./Core/Src/main.o
  3327. .ARM.attributes
  3328. 0x000000a2 0x2c ./Core/Src/stm32g0xx_hal_msp.o
  3329. .ARM.attributes
  3330. 0x000000ce 0x2c ./Core/Src/stm32g0xx_it.o
  3331. .ARM.attributes
  3332. 0x000000fa 0x2c ./Core/Src/system_stm32g0xx.o
  3333. .ARM.attributes
  3334. 0x00000126 0x2c ./Core/Src/user.o
  3335. .ARM.attributes
  3336. 0x00000152 0x22 ./Core/Startup/startup_stm32g030f6px.o
  3337. .ARM.attributes
  3338. 0x00000174 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3339. .ARM.attributes
  3340. 0x000001a0 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3341. .ARM.attributes
  3342. 0x000001cc 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3343. .ARM.attributes
  3344. 0x000001f8 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3345. .ARM.attributes
  3346. 0x00000224 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3347. .ARM.attributes
  3348. 0x00000250 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3349. .ARM.attributes
  3350. 0x0000027c 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3351. .ARM.attributes
  3352. 0x000002a8 0x2c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3353. .ARM.attributes
  3354. 0x000002d4 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o)
  3355. .ARM.attributes
  3356. 0x00000300 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o)
  3357. .ARM.attributes
  3358. 0x0000032c 0x1e /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o)
  3359. .ARM.attributes
  3360. 0x0000034a 0x1e /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_dvmd_tls.o)
  3361. .ARM.attributes
  3362. 0x00000368 0x1e /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/crtn.o
  3363. OUTPUT(STM32G030_Dshot.elf elf32-littlearm)
  3364. LOAD linker stubs
  3365. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc.a
  3366. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libm.a
  3367. LOAD /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a
  3368. .debug_info 0x00000000 0xa1c3
  3369. .debug_info 0x00000000 0xaa9 ./Core/Src/input_capture.o
  3370. .debug_info 0x00000aa9 0xe5d ./Core/Src/main.o
  3371. .debug_info 0x00001906 0xc5d ./Core/Src/stm32g0xx_hal_msp.o
  3372. .debug_info 0x00002563 0x471 ./Core/Src/stm32g0xx_it.o
  3373. .debug_info 0x000029d4 0x316 ./Core/Src/system_stm32g0xx.o
  3374. .debug_info 0x00002cea 0x143 ./Core/Src/user.o
  3375. .debug_info 0x00002e2d 0x30 ./Core/Startup/startup_stm32g030f6px.o
  3376. .debug_info 0x00002e5d 0x8f0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3377. .debug_info 0x0000374d 0x8a9 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3378. .debug_info 0x00003ff6 0x86b ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3379. .debug_info 0x00004861 0x59d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3380. .debug_info 0x00004dfe 0x496 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3381. .debug_info 0x00005294 0xad0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3382. .debug_info 0x00005d64 0x2ba7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3383. .debug_info 0x0000890b 0x18b8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3384. .debug_abbrev 0x00000000 0x1d00
  3385. .debug_abbrev 0x00000000 0x236 ./Core/Src/input_capture.o
  3386. .debug_abbrev 0x00000236 0x26f ./Core/Src/main.o
  3387. .debug_abbrev 0x000004a5 0x21d ./Core/Src/stm32g0xx_hal_msp.o
  3388. .debug_abbrev 0x000006c2 0x174 ./Core/Src/stm32g0xx_it.o
  3389. .debug_abbrev 0x00000836 0x119 ./Core/Src/system_stm32g0xx.o
  3390. .debug_abbrev 0x0000094f 0xc4 ./Core/Src/user.o
  3391. .debug_abbrev 0x00000a13 0x24 ./Core/Startup/startup_stm32g030f6px.o
  3392. .debug_abbrev 0x00000a37 0x2b4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3393. .debug_abbrev 0x00000ceb 0x2ab ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3394. .debug_abbrev 0x00000f96 0x1e1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3395. .debug_abbrev 0x00001177 0x1c3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3396. .debug_abbrev 0x0000133a 0x1d7 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3397. .debug_abbrev 0x00001511 0x2a9 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3398. .debug_abbrev 0x000017ba 0x29b ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3399. .debug_abbrev 0x00001a55 0x2ab ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3400. .debug_aranges 0x00000000 0xb28
  3401. .debug_aranges
  3402. 0x00000000 0x58 ./Core/Src/input_capture.o
  3403. .debug_aranges
  3404. 0x00000058 0x48 ./Core/Src/main.o
  3405. .debug_aranges
  3406. 0x000000a0 0x30 ./Core/Src/stm32g0xx_hal_msp.o
  3407. .debug_aranges
  3408. 0x000000d0 0x58 ./Core/Src/stm32g0xx_it.o
  3409. .debug_aranges
  3410. 0x00000128 0x28 ./Core/Src/system_stm32g0xx.o
  3411. .debug_aranges
  3412. 0x00000150 0x28 ./Core/Src/user.o
  3413. .debug_aranges
  3414. 0x00000178 0x28 ./Core/Startup/startup_stm32g030f6px.o
  3415. .debug_aranges
  3416. 0x000001a0 0x100 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3417. .debug_aranges
  3418. 0x000002a0 0xe8 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3419. .debug_aranges
  3420. 0x00000388 0x90 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3421. .debug_aranges
  3422. 0x00000418 0x60 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3423. .debug_aranges
  3424. 0x00000478 0x98 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3425. .debug_aranges
  3426. 0x00000510 0xa0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3427. .debug_aranges
  3428. 0x000005b0 0x3e0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3429. .debug_aranges
  3430. 0x00000990 0x198 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3431. .debug_rnglists
  3432. 0x00000000 0x89c
  3433. .debug_rnglists
  3434. 0x00000000 0x40 ./Core/Src/input_capture.o
  3435. .debug_rnglists
  3436. 0x00000040 0x33 ./Core/Src/main.o
  3437. .debug_rnglists
  3438. 0x00000073 0x20 ./Core/Src/stm32g0xx_hal_msp.o
  3439. .debug_rnglists
  3440. 0x00000093 0x3d ./Core/Src/stm32g0xx_it.o
  3441. .debug_rnglists
  3442. 0x000000d0 0x1a ./Core/Src/system_stm32g0xx.o
  3443. .debug_rnglists
  3444. 0x000000ea 0x19 ./Core/Src/user.o
  3445. .debug_rnglists
  3446. 0x00000103 0x19 ./Core/Startup/startup_stm32g030f6px.o
  3447. .debug_rnglists
  3448. 0x0000011c 0xbc ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3449. .debug_rnglists
  3450. 0x000001d8 0xaa ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3451. .debug_rnglists
  3452. 0x00000282 0x72 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3453. .debug_rnglists
  3454. 0x000002f4 0x45 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3455. .debug_rnglists
  3456. 0x00000339 0x72 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3457. .debug_rnglists
  3458. 0x000003ab 0x79 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3459. .debug_rnglists
  3460. 0x00000424 0x32a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3461. .debug_rnglists
  3462. 0x0000074e 0x14e ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3463. .debug_macro 0x00000000 0x14370
  3464. .debug_macro 0x00000000 0x1e3 ./Core/Src/input_capture.o
  3465. .debug_macro 0x000001e3 0xa8a ./Core/Src/input_capture.o
  3466. .debug_macro 0x00000c6d 0x117 ./Core/Src/input_capture.o
  3467. .debug_macro 0x00000d84 0x2e ./Core/Src/input_capture.o
  3468. .debug_macro 0x00000db2 0x28 ./Core/Src/input_capture.o
  3469. .debug_macro 0x00000dda 0x22 ./Core/Src/input_capture.o
  3470. .debug_macro 0x00000dfc 0x8e ./Core/Src/input_capture.o
  3471. .debug_macro 0x00000e8a 0x51 ./Core/Src/input_capture.o
  3472. .debug_macro 0x00000edb 0x103 ./Core/Src/input_capture.o
  3473. .debug_macro 0x00000fde 0x6a ./Core/Src/input_capture.o
  3474. .debug_macro 0x00001048 0x1df ./Core/Src/input_capture.o
  3475. .debug_macro 0x00001227 0x1c ./Core/Src/input_capture.o
  3476. .debug_macro 0x00001243 0x22 ./Core/Src/input_capture.o
  3477. .debug_macro 0x00001265 0xd1 ./Core/Src/input_capture.o
  3478. .debug_macro 0x00001336 0x4da ./Core/Src/input_capture.o
  3479. .debug_macro 0x00001810 0x11f ./Core/Src/input_capture.o
  3480. .debug_macro 0x0000192f 0xa0e8 ./Core/Src/input_capture.o
  3481. .debug_macro 0x0000ba17 0x66 ./Core/Src/input_capture.o
  3482. .debug_macro 0x0000ba7d 0x350e ./Core/Src/input_capture.o
  3483. .debug_macro 0x0000ef8b 0x189 ./Core/Src/input_capture.o
  3484. .debug_macro 0x0000f114 0x5c ./Core/Src/input_capture.o
  3485. .debug_macro 0x0000f170 0x462 ./Core/Src/input_capture.o
  3486. .debug_macro 0x0000f5d2 0xe1a ./Core/Src/input_capture.o
  3487. .debug_macro 0x000103ec 0x106 ./Core/Src/input_capture.o
  3488. .debug_macro 0x000104f2 0x1cf ./Core/Src/input_capture.o
  3489. .debug_macro 0x000106c1 0xff ./Core/Src/input_capture.o
  3490. .debug_macro 0x000107c0 0x33c ./Core/Src/input_capture.o
  3491. .debug_macro 0x00010afc 0x202 ./Core/Src/input_capture.o
  3492. .debug_macro 0x00010cfe 0x2c7 ./Core/Src/input_capture.o
  3493. .debug_macro 0x00010fc5 0x198 ./Core/Src/input_capture.o
  3494. .debug_macro 0x0001115d 0x43 ./Core/Src/input_capture.o
  3495. .debug_macro 0x000111a0 0x1f1 ./Core/Src/input_capture.o
  3496. .debug_macro 0x00011391 0x1d6 ./Core/Src/input_capture.o
  3497. .debug_macro 0x00011567 0x2a3 ./Core/Src/input_capture.o
  3498. .debug_macro 0x0001180a 0x28 ./Core/Src/input_capture.o
  3499. .debug_macro 0x00011832 0xcf ./Core/Src/input_capture.o
  3500. .debug_macro 0x00011901 0xff ./Core/Src/input_capture.o
  3501. .debug_macro 0x00011a00 0x10d ./Core/Src/input_capture.o
  3502. .debug_macro 0x00011b0d 0xac2 ./Core/Src/input_capture.o
  3503. .debug_macro 0x000125cf 0xfa ./Core/Src/input_capture.o
  3504. .debug_macro 0x000126c9 0x412 ./Core/Src/input_capture.o
  3505. .debug_macro 0x00012adb 0x10 ./Core/Src/input_capture.o
  3506. .debug_macro 0x00012aeb 0x3a ./Core/Src/input_capture.o
  3507. .debug_macro 0x00012b25 0x1ed ./Core/Src/main.o
  3508. .debug_macro 0x00012d12 0x1da ./Core/Src/stm32g0xx_hal_msp.o
  3509. .debug_macro 0x00012eec 0x1ed ./Core/Src/stm32g0xx_it.o
  3510. .debug_macro 0x000130d9 0x1cb ./Core/Src/system_stm32g0xx.o
  3511. .debug_macro 0x000132a4 0x1ed ./Core/Src/user.o
  3512. .debug_macro 0x00013491 0x1e9 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3513. .debug_macro 0x0001367a 0x1cb ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3514. .debug_macro 0x00013845 0x1cb ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3515. .debug_macro 0x00013a10 0x1d2 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3516. .debug_macro 0x00013be2 0x1dd ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3517. .debug_macro 0x00013dbf 0x20d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3518. .debug_macro 0x00013fcc 0x1d3 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3519. .debug_macro 0x0001419f 0x1d1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3520. .debug_line 0x00000000 0xc984
  3521. .debug_line 0x00000000 0x908 ./Core/Src/input_capture.o
  3522. .debug_line 0x00000908 0x804 ./Core/Src/main.o
  3523. .debug_line 0x0000110c 0x75b ./Core/Src/stm32g0xx_hal_msp.o
  3524. .debug_line 0x00001867 0x77a ./Core/Src/stm32g0xx_it.o
  3525. .debug_line 0x00001fe1 0x732 ./Core/Src/system_stm32g0xx.o
  3526. .debug_line 0x00002713 0x6e3 ./Core/Src/user.o
  3527. .debug_line 0x00002df6 0x7b ./Core/Startup/startup_stm32g030f6px.o
  3528. .debug_line 0x00002e71 0x9ed ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3529. .debug_line 0x0000385e 0xb0d ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3530. .debug_line 0x0000436b 0xd0f ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3531. .debug_line 0x0000507a 0xaf1 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3532. .debug_line 0x00005b6b 0x903 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3533. .debug_line 0x0000646e 0xe7b ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3534. .debug_line 0x000072e9 0x3b3a ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3535. .debug_line 0x0000ae23 0x1b61 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3536. .debug_str 0x00000000 0x80c0f
  3537. .debug_str 0x00000000 0x7de37 ./Core/Src/input_capture.o
  3538. 0x7e3da (size before relaxing)
  3539. .debug_str 0x0007de37 0x599 ./Core/Src/main.o
  3540. 0x7e80c (size before relaxing)
  3541. .debug_str 0x0007e3d0 0x118 ./Core/Src/stm32g0xx_hal_msp.o
  3542. 0x7e4fb (size before relaxing)
  3543. .debug_str 0x0007e4e8 0xc6 ./Core/Src/stm32g0xx_it.o
  3544. 0x7dfa2 (size before relaxing)
  3545. .debug_str 0x0007e5ae 0x8e ./Core/Src/system_stm32g0xx.o
  3546. 0x7dc1f (size before relaxing)
  3547. .debug_str 0x0007e63c 0x1d ./Core/Src/user.o
  3548. 0x7dc5a (size before relaxing)
  3549. .debug_str 0x0007e659 0x44 ./Core/Startup/startup_stm32g030f6px.o
  3550. 0x66 (size before relaxing)
  3551. .debug_str 0x0007e69d 0x474 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3552. 0x7e2aa (size before relaxing)
  3553. .debug_str 0x0007eb11 0x290 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3554. 0x7e071 (size before relaxing)
  3555. .debug_str 0x0007eda1 0x288 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3556. 0x7e0b9 (size before relaxing)
  3557. .debug_str 0x0007f029 0x179 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3558. 0x7dd54 (size before relaxing)
  3559. .debug_str 0x0007f1a2 0x221 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3560. 0x7de73 (size before relaxing)
  3561. .debug_str 0x0007f3c3 0x4ae ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3562. 0x7e343 (size before relaxing)
  3563. .debug_str 0x0007f871 0xda5 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3564. 0x7f161 (size before relaxing)
  3565. .debug_str 0x00080616 0x5f9 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3566. 0x7eaef (size before relaxing)
  3567. .comment 0x00000000 0x43
  3568. .comment 0x00000000 0x43 ./Core/Src/input_capture.o
  3569. 0x44 (size before relaxing)
  3570. .comment 0x00000043 0x44 ./Core/Src/main.o
  3571. .comment 0x00000043 0x44 ./Core/Src/stm32g0xx_hal_msp.o
  3572. .comment 0x00000043 0x44 ./Core/Src/stm32g0xx_it.o
  3573. .comment 0x00000043 0x44 ./Core/Src/system_stm32g0xx.o
  3574. .comment 0x00000043 0x44 ./Core/Src/user.o
  3575. .comment 0x00000043 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3576. .comment 0x00000043 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3577. .comment 0x00000043 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3578. .comment 0x00000043 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3579. .comment 0x00000043 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3580. .comment 0x00000043 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3581. .comment 0x00000043 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3582. .comment 0x00000043 0x44 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3583. .debug_frame 0x00000000 0x2744
  3584. .debug_frame 0x00000000 0xf8 ./Core/Src/input_capture.o
  3585. .debug_frame 0x000000f8 0xc8 ./Core/Src/main.o
  3586. .debug_frame 0x000001c0 0x70 ./Core/Src/stm32g0xx_hal_msp.o
  3587. .debug_frame 0x00000230 0xf0 ./Core/Src/stm32g0xx_it.o
  3588. .debug_frame 0x00000320 0x4c ./Core/Src/system_stm32g0xx.o
  3589. .debug_frame 0x0000036c 0x48 ./Core/Src/user.o
  3590. .debug_frame 0x000003b4 0x360 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal.o
  3591. .debug_frame 0x00000714 0x33c ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_cortex.o
  3592. .debug_frame 0x00000a50 0x1f0 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_dma.o
  3593. .debug_frame 0x00000c40 0x130 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_gpio.o
  3594. .debug_frame 0x00000d70 0x1f4 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_pwr_ex.o
  3595. .debug_frame 0x00000f64 0x214 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_rcc.o
  3596. .debug_frame 0x00001178 0xf40 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim.o
  3597. .debug_frame 0x000020b8 0x620 ./Drivers/STM32G0xx_HAL_Driver/Src/stm32g0xx_hal_tim_ex.o
  3598. .debug_frame 0x000026d8 0x20 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-memset.o)
  3599. .debug_frame 0x000026f8 0x2c /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/../../../../arm-none-eabi/lib/thumb/v6-m/nofp/libc_nano.a(libc_a-init.o)
  3600. .debug_frame 0x00002724 0x20 /home/andre/st/stm32cubeide_1.12.1/plugins/com.st.stm32cube.ide.mcu.externaltools.gnu-tools-for-stm32.12.3.rel1.linux64_1.0.200.202406132123/tools/bin/../lib/gcc/arm-none-eabi/12.3.1/thumb/v6-m/nofp/libgcc.a(_udivsi3.o)
  3601. .debug_line_str
  3602. 0x00000000 0x4a
  3603. .debug_line_str
  3604. 0x00000000 0x4a ./Core/Startup/startup_stm32g030f6px.o