Ringzle.map 306 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636
  1. Component: ARM Compiler 5.06 update 6 (build 750) Tool: armlink [4d35ed]
  2. ==============================================================================
  3. Section Cross References
  4. system_gd32f10x.o(i.SystemInit) refers to system_gd32f10x.o(i.system_clock_config) for system_clock_config
  5. system_gd32f10x.o(i.SystemInit) refers to gd32f10x_misc.o(i.nvic_vector_table_set) for nvic_vector_table_set
  6. system_gd32f10x.o(i.system_clock_config) refers to system_gd32f10x.o(i.system_clock_108m_hxtal) for system_clock_108m_hxtal
  7. startup_gd32f10x_xd.o(RESET) refers to startup_gd32f10x_xd.o(STACK) for __initial_sp
  8. startup_gd32f10x_xd.o(RESET) refers to startup_gd32f10x_xd.o(.text) for Reset_Handler
  9. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.NMI_Handler) for NMI_Handler
  10. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.HardFault_Handler) for HardFault_Handler
  11. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.MemManage_Handler) for MemManage_Handler
  12. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.BusFault_Handler) for BusFault_Handler
  13. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.UsageFault_Handler) for UsageFault_Handler
  14. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.SVC_Handler) for SVC_Handler
  15. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.DebugMon_Handler) for DebugMon_Handler
  16. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.PendSV_Handler) for PendSV_Handler
  17. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.SysTick_Handler) for SysTick_Handler
  18. startup_gd32f10x_xd.o(RESET) refers to key.o(i.EXTI1_IRQHandler) for EXTI1_IRQHandler
  19. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.DMA0_Channel4_IRQHandler) for DMA0_Channel4_IRQHandler
  20. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.USART0_IRQHandler) for USART0_IRQHandler
  21. startup_gd32f10x_xd.o(RESET) refers to gd32f10x_it.o(i.USART1_IRQHandler) for USART1_IRQHandler
  22. startup_gd32f10x_xd.o(RESET) refers to pc.o(i.USART2_IRQHandler) for USART2_IRQHandler
  23. startup_gd32f10x_xd.o(.text) refers to system_gd32f10x.o(i.SystemInit) for SystemInit
  24. startup_gd32f10x_xd.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
  25. gd32f10x_it.o(i.DMA0_Channel4_IRQHandler) refers to gd32f10x_dma.o(i.dma_interrupt_flag_clear) for dma_interrupt_flag_clear
  26. gd32f10x_it.o(i.SysTick_Handler) refers to systick.o(i.delay_decrement) for delay_decrement
  27. gd32f10x_it.o(i.SysTick_Handler) refers to systick.o(i.runtime_increment) for runtime_increment
  28. gd32f10x_it.o(i.USART0_IRQHandler) refers to gd32f10x_usart.o(i.usart_interrupt_flag_get) for usart_interrupt_flag_get
  29. gd32f10x_it.o(i.USART0_IRQHandler) refers to gd32f10x_usart.o(i.usart_interrupt_flag_clear) for usart_interrupt_flag_clear
  30. gd32f10x_it.o(i.USART0_IRQHandler) refers to gd32f10x_usart.o(i.usart_data_receive) for usart_data_receive
  31. gd32f10x_it.o(i.USART0_IRQHandler) refers to gd32f10x_dma.o(i.dma_channel_disable) for dma_channel_disable
  32. gd32f10x_it.o(i.USART0_IRQHandler) refers to gd32f10x_dma.o(i.dma_channel_enable) for dma_channel_enable
  33. gd32f10x_it.o(i.USART0_IRQHandler) refers to mqttrecv.o(i.Receive_MQTT_DataPack) for Receive_MQTT_DataPack
  34. gd32f10x_it.o(i.USART0_IRQHandler) refers to usart.o(.data) for UART0_RX_STAT
  35. gd32f10x_it.o(i.USART1_IRQHandler) refers to mmodbus.o(i.mmodbus_callback) for mmodbus_callback
  36. gd32f10x_it.o(i.USART1_IRQHandler) refers to dlt645_port.o(i.dlt_callback) for dlt_callback
  37. gd32f10x_it.o(i.USART1_IRQHandler) refers to main.o(.data) for protocol
  38. systick.o(i.delay_1ms) refers to systick.o(.data) for delay
  39. systick.o(i.delay_decrement) refers to systick.o(.data) for delay
  40. systick.o(i.gettick) refers to systick.o(.data) for runtime
  41. systick.o(i.runtime_increment) refers to systick.o(.data) for runtime
  42. systick.o(i.systick_config) refers to systick.o(i.NVIC_SetPriority) for NVIC_SetPriority
  43. systick.o(i.systick_config) refers to system_gd32f10x.o(.data) for SystemCoreClock
  44. log.o(i.LogPrint) refers to printfa.o(i.__0vsnprintf) for vsnprintf
  45. log.o(i.LogPrint) refers to printfa.o(i.__0printf) for __2printf
  46. log.o(i.fputc) refers to gd32f10x_usart.o(i.usart_data_transmit) for usart_data_transmit
  47. log.o(i.fputc) refers to gd32f10x_usart.o(i.usart_flag_get) for usart_flag_get
  48. ec800m.o(i.ConnectMQTTSever) refers to ec800m.o(i.EC800MSendCmd) for EC800MSendCmd
  49. ec800m.o(i.ConnectMQTTSever) refers to ec800m.o(i.WaitResponse) for WaitResponse
  50. ec800m.o(i.ConnectMQTTSever) refers to printfa.o(i.__0sprintf) for __2sprintf
  51. ec800m.o(i.ConnectMQTTSever) refers to strlen.o(.text) for strlen
  52. ec800m.o(i.EC800MGetUrl) refers to strlen.o(.text) for strlen
  53. ec800m.o(i.EC800MGetUrl) refers to printfa.o(i.__0sprintf) for __2sprintf
  54. ec800m.o(i.EC800MGetUrl) refers to ec800m.o(i.EC800MSendCmd) for EC800MSendCmd
  55. ec800m.o(i.EC800MGetUrl) refers to ec800m.o(i.WaitResponse) for WaitResponse
  56. ec800m.o(i.EC800MGetUrl) refers to systick.o(i.delay_1ms) for delay_1ms
  57. ec800m.o(i.EC800MGetUrl) refers to usart.o(i.dma_config_change) for dma_config_change
  58. ec800m.o(i.EC800MPwoerOn) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  59. ec800m.o(i.EC800MPwoerOn) refers to gd32f10x_gpio.o(i.gpio_init) for gpio_init
  60. ec800m.o(i.EC800MPwoerOn) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  61. ec800m.o(i.EC800MPwoerOn) refers to systick.o(i.delay_1ms) for delay_1ms
  62. ec800m.o(i.EC800MPwoerOn) refers to usart.o(i.gd_pull_EC800M_pwr_up) for gd_pull_EC800M_pwr_up
  63. ec800m.o(i.EC800MPwoerOn) refers to usart.o(i.gd_pull_EC800M_rst_down) for gd_pull_EC800M_rst_down
  64. ec800m.o(i.EC800MPwoerOn) refers to usart.o(i.gd_pull_EC800M_pwr_down) for gd_pull_EC800M_pwr_down
  65. ec800m.o(i.EC800MPwoerOn) refers to usart.o(i.gd_pull_EC800M_rst_up) for gd_pull_EC800M_rst_up
  66. ec800m.o(i.EC800MSendCmd) refers to gd32f10x_usart.o(i.usart_data_transmit) for usart_data_transmit
  67. ec800m.o(i.EC800MSendCmd) refers to gd32f10x_usart.o(i.usart_flag_get) for usart_flag_get
  68. ec800m.o(i.EC800MSetPDP) refers to systick.o(i.delay_1ms) for delay_1ms
  69. ec800m.o(i.EC800MSetPDP) refers to ec800m.o(i.EC800MSendCmd) for EC800MSendCmd
  70. ec800m.o(i.EC800MSetPDP) refers to ec800m.o(i.WaitResponse) for WaitResponse
  71. ec800m.o(i.EC800MWaitReady) refers to ec800m.o(i.WaitResponse) for WaitResponse
  72. ec800m.o(i.MQTTPublish) refers to mallocr.o(i.__malloc$realloc) for malloc
  73. ec800m.o(i.MQTTPublish) refers to printfa.o(i.__0sprintf) for __2sprintf
  74. ec800m.o(i.MQTTPublish) refers to f2d.o(.text) for __aeabi_f2d
  75. ec800m.o(i.MQTTPublish) refers to strlen.o(.text) for strlen
  76. ec800m.o(i.MQTTPublish) refers to ec800m.o(i.EC800MSendCmd) for EC800MSendCmd
  77. ec800m.o(i.MQTTPublish) refers to ec800m.o(i.WaitResponse) for WaitResponse
  78. ec800m.o(i.MQTTPublish) refers to systick.o(i.delay_1ms) for delay_1ms
  79. ec800m.o(i.MQTTPublish) refers to mallocr.o(i.__free$realloc) for free
  80. ec800m.o(i.MQTTSubTopic) refers to printfa.o(i.__0sprintf) for __2sprintf
  81. ec800m.o(i.MQTTSubTopic) refers to strlen.o(.text) for strlen
  82. ec800m.o(i.MQTTSubTopic) refers to ec800m.o(i.EC800MSendCmd) for EC800MSendCmd
  83. ec800m.o(i.MQTTSubTopic) refers to ec800m.o(i.WaitResponse) for WaitResponse
  84. ec800m.o(i.WaitResponse) refers to systick.o(i.delay_1ms) for delay_1ms
  85. ec800m.o(i.WaitResponse) refers to strstr.o(.text) for strstr
  86. ec800m.o(i.WaitResponse) refers to usart.o(i.Clear_DMA_Buffer) for Clear_DMA_Buffer
  87. ec800m.o(i.WaitResponse) refers to usart.o(.data) for UART0_RX_STAT
  88. ec800m.o(i.WaitResponse) refers to usart.o(.bss) for UART0_RX_BUF
  89. device_message.o(i.clear_gateway_config_block) refers to w25q32.o(i.W25Q32_Erase64K) for W25Q32_Erase64K
  90. device_message.o(i.get_config_params) refers to device_message.o(.bss) for g_config_params
  91. device_message.o(i.load_config_params) refers to memseta.o(.text) for __aeabi_memclr4
  92. device_message.o(i.load_config_params) refers to w25q32.o(i.W25Q32_Read) for W25Q32_Read
  93. device_message.o(i.load_config_params) refers to memcpya.o(.text) for __aeabi_memcpy4
  94. device_message.o(i.load_config_params) refers to device_message.o(.bss) for g_config_params
  95. device_message.o(i.save_config_params) refers to memseta.o(.text) for __aeabi_memclr4
  96. device_message.o(i.save_config_params) refers to memcpya.o(.text) for __aeabi_memcpy4
  97. device_message.o(i.save_config_params) refers to device_message.o(i.clear_gateway_config_block) for clear_gateway_config_block
  98. device_message.o(i.save_config_params) refers to device_message.o(i.write_struct_to_flash) for write_struct_to_flash
  99. device_message.o(i.write_struct_to_flash) refers to w25q32.o(i.W25Q32_PageWrite) for W25Q32_PageWrite
  100. parsedevicemessage.o(i.WaitForUpData) refers to parsedevicemessage.o(i.extract_data_from_buffer) for extract_data_from_buffer
  101. parsedevicemessage.o(i.WaitForUpData) refers to parsedevicemessage.o(i.checksum) for checksum
  102. parsedevicemessage.o(i.WaitForUpData) refers to parsedevicemessage.o(i.processHttp) for processHttp
  103. parsedevicemessage.o(i.WaitForUpData) refers to usart.o(.data) for UART0_RX_STAT
  104. parsedevicemessage.o(i.dlt645_read) refers to dlt645.o(i.dlt645_set_addr) for dlt645_set_addr
  105. parsedevicemessage.o(i.dlt645_read) refers to dlt645.o(i.dlt645_read_data) for dlt645_read_data
  106. parsedevicemessage.o(i.dlt645_read) refers to main.o(i.task_fwdgt_reload) for task_fwdgt_reload
  107. parsedevicemessage.o(i.dlt645_read) refers to dlt645_port.o(.data) for dlt645
  108. parsedevicemessage.o(i.extract_data_from_buffer) refers to _scanf_int.o(.text) for _scanf_int
  109. parsedevicemessage.o(i.extract_data_from_buffer) refers to strstr.o(.text) for strstr
  110. parsedevicemessage.o(i.extract_data_from_buffer) refers to __0sscanf.o(.text) for __0sscanf
  111. parsedevicemessage.o(i.extract_data_from_buffer) refers to strchr.o(.text) for strchr
  112. parsedevicemessage.o(i.modbusRead) refers to systick.o(i.delay_1ms) for delay_1ms
  113. parsedevicemessage.o(i.modbusRead) refers to mallocr.o(i.__malloc$realloc) for malloc
  114. parsedevicemessage.o(i.modbusRead) refers to mmodbus.o(i.mmodbus_set16bitOrder) for mmodbus_set16bitOrder
  115. parsedevicemessage.o(i.modbusRead) refers to mmodbus.o(i.mmodbus_readHoldingRegisters16i) for mmodbus_readHoldingRegisters16i
  116. parsedevicemessage.o(i.modbusRead) refers to dfltui.o(.text) for __aeabi_ui2d
  117. parsedevicemessage.o(i.modbusRead) refers to pow.o(i.pow) for pow
  118. parsedevicemessage.o(i.modbusRead) refers to ffltui.o(.text) for __aeabi_ui2f
  119. parsedevicemessage.o(i.modbusRead) refers to f2d.o(.text) for __aeabi_f2d
  120. parsedevicemessage.o(i.modbusRead) refers to ddiv.o(.text) for __aeabi_ddiv
  121. parsedevicemessage.o(i.modbusRead) refers to d2f.o(.text) for __aeabi_d2f
  122. parsedevicemessage.o(i.modbusRead) refers to mmodbus.o(i.mmodbus_readCoils) for mmodbus_readCoils
  123. parsedevicemessage.o(i.modbusRead) refers to main.o(i.task_fwdgt_reload) for task_fwdgt_reload
  124. parsedevicemessage.o(i.modbusRead) refers to mallocr.o(i.__free$realloc) for free
  125. parsedevicemessage.o(i.parseIntField) refers to strstr.o(.text) for strstr
  126. parsedevicemessage.o(i.parseIntField) refers to strlen.o(.text) for strlen
  127. parsedevicemessage.o(i.parseIntField) refers to strtol.o(.text) for strtol
  128. parsedevicemessage.o(i.parseMQTTData) refers to log.o(i.LogPrint) for LogPrint
  129. parsedevicemessage.o(i.parseMQTTData) refers to cjson.o(i.cJSON_Parse) for cJSON_Parse
  130. parsedevicemessage.o(i.parseMQTTData) refers to parsedevicemessage.o(i.processStringData) for processStringData
  131. parsedevicemessage.o(i.parseMQTTData) refers to strcpy.o(.text) for strcpy
  132. parsedevicemessage.o(i.parseMQTTData) refers to parsedevicemessage.o(i.processIntData) for processIntData
  133. parsedevicemessage.o(i.parseMQTTData) refers to strcmp.o(.text) for strcmp
  134. parsedevicemessage.o(i.parseMQTTData) refers to mmodbus.o(i.mmodbus_set16bitOrder) for mmodbus_set16bitOrder
  135. parsedevicemessage.o(i.parseMQTTData) refers to mmodbus.o(i.mmodbus_writeCoil) for mmodbus_writeCoil
  136. parsedevicemessage.o(i.parseMQTTData) refers to printfa.o(i.__0sprintf) for __2sprintf
  137. parsedevicemessage.o(i.parseMQTTData) refers to mmodbus.o(i.mmodbus_writeHoldingRegister16i) for mmodbus_writeHoldingRegister16i
  138. parsedevicemessage.o(i.parseMQTTData) refers to mmodbus.o(i.mmodbus_readCoils) for mmodbus_readCoils
  139. parsedevicemessage.o(i.parseMQTTData) refers to usart.o(.data) for UART0_RX_MQTT_SUB_STAT
  140. parsedevicemessage.o(i.parseMQTTData) refers to parsedevicemessage.o(.constdata) for __func__
  141. parsedevicemessage.o(i.parseMQTTData) refers to parsedevicemessage.o(.conststring) for .conststring
  142. parsedevicemessage.o(i.parseMQTTData) refers to mallocr.o(i.__malloc$realloc) for malloc
  143. parsedevicemessage.o(i.parseMQTTData) refers to mmodbus.o(i.mmodbus_readHoldingRegisters16i) for mmodbus_readHoldingRegisters16i
  144. parsedevicemessage.o(i.parseMQTTData) refers to dfltui.o(.text) for __aeabi_ui2d
  145. parsedevicemessage.o(i.parseMQTTData) refers to pow.o(i.pow) for pow
  146. parsedevicemessage.o(i.parseMQTTData) refers to ffltui.o(.text) for __aeabi_ui2f
  147. parsedevicemessage.o(i.parseMQTTData) refers to f2d.o(.text) for __aeabi_f2d
  148. parsedevicemessage.o(i.parseMQTTData) refers to ddiv.o(.text) for __aeabi_ddiv
  149. parsedevicemessage.o(i.parseMQTTData) refers to d2f.o(.text) for __aeabi_d2f
  150. parsedevicemessage.o(i.parseMQTTData) refers to mallocr.o(i.__free$realloc) for free
  151. parsedevicemessage.o(i.parseMQTTData) refers to dlt645.o(i.dlt645_set_addr) for dlt645_set_addr
  152. parsedevicemessage.o(i.parseMQTTData) refers to dlt645.o(i.dlt645_read_data) for dlt645_read_data
  153. parsedevicemessage.o(i.parseMQTTData) refers to dlt645_port.o(.data) for dlt645
  154. parsedevicemessage.o(i.parseMQTTData) refers to strlen.o(.text) for strlen
  155. parsedevicemessage.o(i.parseMQTTData) refers to ec800m.o(i.EC800MSendCmd) for EC800MSendCmd
  156. parsedevicemessage.o(i.parseMQTTData) refers to ec800m.o(i.WaitResponse) for WaitResponse
  157. parsedevicemessage.o(i.parseMQTTData) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  158. parsedevicemessage.o(i.parseMQTTData) refers to mqttrecv.o(i.MQTT_BUFFER_READ) for MQTT_BUFFER_READ
  159. parsedevicemessage.o(i.parseStringField) refers to _scanf_str.o(.text) for _scanf_string
  160. parsedevicemessage.o(i.parseStringField) refers to strstr.o(.text) for strstr
  161. parsedevicemessage.o(i.parseStringField) refers to strlen.o(.text) for strlen
  162. parsedevicemessage.o(i.parseStringField) refers to __0sscanf.o(.text) for __0sscanf
  163. parsedevicemessage.o(i.processHTTPjson) refers to _scanf_int.o(.text) for _scanf_int
  164. parsedevicemessage.o(i.processHTTPjson) refers to cjson.o(i.cJSON_GetObjectItem) for cJSON_GetObjectItem
  165. parsedevicemessage.o(i.processHTTPjson) refers to cjson.o(i.cJSON_GetArraySize) for cJSON_GetArraySize
  166. parsedevicemessage.o(i.processHTTPjson) refers to parsedevicemessage.o(i.processStringData) for processStringData
  167. parsedevicemessage.o(i.processHTTPjson) refers to strcpy.o(.text) for strcpy
  168. parsedevicemessage.o(i.processHTTPjson) refers to parsedevicemessage.o(i.processIntData) for processIntData
  169. parsedevicemessage.o(i.processHTTPjson) refers to cjson.o(i.cJSON_IsArray) for cJSON_IsArray
  170. parsedevicemessage.o(i.processHTTPjson) refers to cjson.o(i.cJSON_GetArrayItem) for cJSON_GetArrayItem
  171. parsedevicemessage.o(i.processHTTPjson) refers to cjson.o(i.cJSON_IsObject) for cJSON_IsObject
  172. parsedevicemessage.o(i.processHTTPjson) refers to __0sscanf.o(.text) for __0sscanf
  173. parsedevicemessage.o(i.processHTTPjson) refers to device_message.o(i.save_config_params) for save_config_params
  174. parsedevicemessage.o(i.processHttp) refers to _scanf_int.o(.text) for _scanf_int
  175. parsedevicemessage.o(i.processHttp) refers to device_message.o(i.get_config_params) for get_config_params
  176. parsedevicemessage.o(i.processHttp) refers to parsedevicemessage.o(i.parseIntField) for parseIntField
  177. parsedevicemessage.o(i.processHttp) refers to parsedevicemessage.o(i.parseStringField) for parseStringField
  178. parsedevicemessage.o(i.processHttp) refers to strstr.o(.text) for strstr
  179. parsedevicemessage.o(i.processHttp) refers to strchr.o(.text) for strchr
  180. parsedevicemessage.o(i.processHttp) refers to mallocr.o(i.__malloc$realloc) for malloc
  181. parsedevicemessage.o(i.processHttp) refers to __0sscanf.o(.text) for __0sscanf
  182. parsedevicemessage.o(i.processHttp) refers to mallocr.o(i.__free$realloc) for free
  183. parsedevicemessage.o(i.processIntData) refers to cjson.o(i.cJSON_GetObjectItemCaseSensitive) for cJSON_GetObjectItemCaseSensitive
  184. parsedevicemessage.o(i.processIntData) refers to cjson.o(i.cJSON_IsNumber) for cJSON_IsNumber
  185. parsedevicemessage.o(i.processStringData) refers to cjson.o(i.cJSON_GetObjectItemCaseSensitive) for cJSON_GetObjectItemCaseSensitive
  186. parsedevicemessage.o(i.processStringData) refers to cjson.o(i.cJSON_IsString) for cJSON_IsString
  187. mmodbus.o(i.mmodbus_callback) refers to gd32f10x_usart.o(i.usart_interrupt_flag_get) for usart_interrupt_flag_get
  188. mmodbus.o(i.mmodbus_callback) refers to gd32f10x_usart.o(i.usart_data_receive) for usart_data_receive
  189. mmodbus.o(i.mmodbus_callback) refers to gd32f10x_usart.o(i.usart_interrupt_flag_clear) for usart_interrupt_flag_clear
  190. mmodbus.o(i.mmodbus_callback) refers to systick.o(i.gettick) for gettick
  191. mmodbus.o(i.mmodbus_callback) refers to mmodbus.o(.bss) for mmodbus
  192. mmodbus.o(i.mmodbus_crc16) refers to mmodbus.o(.constdata) for wCRCTable
  193. mmodbus.o(i.mmodbus_init) refers to gd32f10x_gpio.o(i.gpio_bit_reset) for gpio_bit_reset
  194. mmodbus.o(i.mmodbus_init) refers to memseta.o(.text) for __aeabi_memclr4
  195. mmodbus.o(i.mmodbus_init) refers to mmodbus.o(.bss) for mmodbus
  196. mmodbus.o(i.mmodbus_readCoil) refers to mmodbus.o(i.mmodbus_readCoils) for mmodbus_readCoils
  197. mmodbus.o(i.mmodbus_readCoils) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  198. mmodbus.o(i.mmodbus_readCoils) refers to mmodbus.o(i.mmodbus_sendRaw) for mmodbus_sendRaw
  199. mmodbus.o(i.mmodbus_readCoils) refers to mmodbus.o(i.mmodbus_receiveRaw) for mmodbus_receiveRaw
  200. mmodbus.o(i.mmodbus_readCoils) refers to memcpya.o(.text) for __aeabi_memcpy
  201. mmodbus.o(i.mmodbus_readCoils) refers to mmodbus.o(.data) for crc
  202. mmodbus.o(i.mmodbus_readCoils) refers to mmodbus.o(.bss) for mmodbus
  203. mmodbus.o(i.mmodbus_readDiscreteInput) refers to mmodbus.o(i.mmodbus_readDiscreteInputs) for mmodbus_readDiscreteInputs
  204. mmodbus.o(i.mmodbus_readDiscreteInputs) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  205. mmodbus.o(i.mmodbus_readDiscreteInputs) refers to mmodbus.o(i.mmodbus_sendRaw) for mmodbus_sendRaw
  206. mmodbus.o(i.mmodbus_readDiscreteInputs) refers to mmodbus.o(i.mmodbus_receiveRaw) for mmodbus_receiveRaw
  207. mmodbus.o(i.mmodbus_readDiscreteInputs) refers to memcpya.o(.text) for __aeabi_memcpy
  208. mmodbus.o(i.mmodbus_readDiscreteInputs) refers to mmodbus.o(.data) for crc
  209. mmodbus.o(i.mmodbus_readDiscreteInputs) refers to mmodbus.o(.bss) for mmodbus
  210. mmodbus.o(i.mmodbus_readHoldingRegister16i) refers to mmodbus.o(i.mmodbus_readHoldingRegisters16i) for mmodbus_readHoldingRegisters16i
  211. mmodbus.o(i.mmodbus_readHoldingRegister32f) refers to mmodbus.o(i.mmodbus_readHoldingRegisters32f) for mmodbus_readHoldingRegisters32f
  212. mmodbus.o(i.mmodbus_readHoldingRegister32i) refers to mmodbus.o(i.mmodbus_readHoldingRegisters32i) for mmodbus_readHoldingRegisters32i
  213. mmodbus.o(i.mmodbus_readHoldingRegisters16i) refers to mmodbus.o(i.mmodbus_readHoldingRegisters8i) for mmodbus_readHoldingRegisters8i
  214. mmodbus.o(i.mmodbus_readHoldingRegisters16i) refers to mmodbus.o(.bss) for mmodbus
  215. mmodbus.o(i.mmodbus_readHoldingRegisters32f) refers to mmodbus.o(i.mmodbus_readHoldingRegisters8i) for mmodbus_readHoldingRegisters8i
  216. mmodbus.o(i.mmodbus_readHoldingRegisters32f) refers to mmodbus.o(.bss) for mmodbus
  217. mmodbus.o(i.mmodbus_readHoldingRegisters32i) refers to mmodbus.o(i.mmodbus_readHoldingRegisters32f) for mmodbus_readHoldingRegisters32f
  218. mmodbus.o(i.mmodbus_readHoldingRegisters8i) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  219. mmodbus.o(i.mmodbus_readHoldingRegisters8i) refers to mmodbus.o(i.mmodbus_sendRaw) for mmodbus_sendRaw
  220. mmodbus.o(i.mmodbus_readHoldingRegisters8i) refers to mmodbus.o(i.mmodbus_receiveRaw) for mmodbus_receiveRaw
  221. mmodbus.o(i.mmodbus_readHoldingRegisters8i) refers to memcpya.o(.text) for __aeabi_memcpy
  222. mmodbus.o(i.mmodbus_readHoldingRegisters8i) refers to mmodbus.o(.data) for crc
  223. mmodbus.o(i.mmodbus_readHoldingRegisters8i) refers to mmodbus.o(.bss) for mmodbus
  224. mmodbus.o(i.mmodbus_readInputRegister16i) refers to mmodbus.o(i.mmodbus_readInputRegisters16i) for mmodbus_readInputRegisters16i
  225. mmodbus.o(i.mmodbus_readInputRegister32f) refers to mmodbus.o(i.mmodbus_readInputRegisters32f) for mmodbus_readInputRegisters32f
  226. mmodbus.o(i.mmodbus_readInputRegister32i) refers to mmodbus.o(i.mmodbus_readInputRegisters32i) for mmodbus_readInputRegisters32i
  227. mmodbus.o(i.mmodbus_readInputRegisters16i) refers to mmodbus.o(i.mmodbus_readInputRegisters8i) for mmodbus_readInputRegisters8i
  228. mmodbus.o(i.mmodbus_readInputRegisters16i) refers to mmodbus.o(.bss) for mmodbus
  229. mmodbus.o(i.mmodbus_readInputRegisters32f) refers to mmodbus.o(i.mmodbus_readInputRegisters8i) for mmodbus_readInputRegisters8i
  230. mmodbus.o(i.mmodbus_readInputRegisters32f) refers to mmodbus.o(.bss) for mmodbus
  231. mmodbus.o(i.mmodbus_readInputRegisters32i) refers to mmodbus.o(i.mmodbus_readInputRegisters32f) for mmodbus_readInputRegisters32f
  232. mmodbus.o(i.mmodbus_readInputRegisters8i) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  233. mmodbus.o(i.mmodbus_readInputRegisters8i) refers to mmodbus.o(i.mmodbus_sendRaw) for mmodbus_sendRaw
  234. mmodbus.o(i.mmodbus_readInputRegisters8i) refers to mmodbus.o(i.mmodbus_receiveRaw) for mmodbus_receiveRaw
  235. mmodbus.o(i.mmodbus_readInputRegisters8i) refers to memcpya.o(.text) for __aeabi_memcpy
  236. mmodbus.o(i.mmodbus_readInputRegisters8i) refers to mmodbus.o(.data) for crc
  237. mmodbus.o(i.mmodbus_readInputRegisters8i) refers to mmodbus.o(.bss) for mmodbus
  238. mmodbus.o(i.mmodbus_receiveRaw) refers to systick.o(i.gettick) for gettick
  239. mmodbus.o(i.mmodbus_receiveRaw) refers to gd32f10x_usart.o(i.usart_interrupt_flag_get) for usart_interrupt_flag_get
  240. mmodbus.o(i.mmodbus_receiveRaw) refers to gd32f10x_usart.o(i.usart_data_receive) for usart_data_receive
  241. mmodbus.o(i.mmodbus_receiveRaw) refers to systick.o(i.delay_1ms) for delay_1ms
  242. mmodbus.o(i.mmodbus_receiveRaw) refers to mmodbus.o(.bss) for mmodbus
  243. mmodbus.o(i.mmodbus_sendRaw) refers to systick.o(i.delay_1ms) for delay_1ms
  244. mmodbus.o(i.mmodbus_sendRaw) refers to memseta.o(.text) for __aeabi_memclr
  245. mmodbus.o(i.mmodbus_sendRaw) refers to systick.o(i.gettick) for gettick
  246. mmodbus.o(i.mmodbus_sendRaw) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  247. mmodbus.o(i.mmodbus_sendRaw) refers to gd32f10x_gpio.o(i.gpio_bit_reset) for gpio_bit_reset
  248. mmodbus.o(i.mmodbus_sendRaw) refers to gd32f10x_usart.o(i.usart_flag_get) for usart_flag_get
  249. mmodbus.o(i.mmodbus_sendRaw) refers to gd32f10x_usart.o(i.usart_data_transmit) for usart_data_transmit
  250. mmodbus.o(i.mmodbus_sendRaw) refers to mmodbus.o(.bss) for mmodbus
  251. mmodbus.o(i.mmodbus_set16bitOrder) refers to mmodbus.o(.bss) for mmodbus
  252. mmodbus.o(i.mmodbus_set32bitOrder) refers to mmodbus.o(.bss) for mmodbus
  253. mmodbus.o(i.mmodbus_writeCoil) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  254. mmodbus.o(i.mmodbus_writeCoil) refers to mmodbus.o(i.mmodbus_sendRaw) for mmodbus_sendRaw
  255. mmodbus.o(i.mmodbus_writeCoil) refers to mmodbus.o(i.mmodbus_receiveRaw) for mmodbus_receiveRaw
  256. mmodbus.o(i.mmodbus_writeCoil) refers to memcmp.o(.text) for memcmp
  257. mmodbus.o(i.mmodbus_writeCoil) refers to mmodbus.o(.data) for crc
  258. mmodbus.o(i.mmodbus_writeCoil) refers to mmodbus.o(.bss) for mmodbus
  259. mmodbus.o(i.mmodbus_writeHoldingRegister16i) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  260. mmodbus.o(i.mmodbus_writeHoldingRegister16i) refers to mmodbus.o(i.mmodbus_sendRaw) for mmodbus_sendRaw
  261. mmodbus.o(i.mmodbus_writeHoldingRegister16i) refers to mmodbus.o(i.mmodbus_receiveRaw) for mmodbus_receiveRaw
  262. mmodbus.o(i.mmodbus_writeHoldingRegister16i) refers to memcmp.o(.text) for memcmp
  263. mmodbus.o(i.mmodbus_writeHoldingRegister16i) refers to mmodbus.o(.data) for crc
  264. mmodbus.o(i.mmodbus_writeHoldingRegister16i) refers to mmodbus.o(.bss) for mmodbus
  265. mmodbus.o(i.mmodbus_writeHoldingRegisters16i) refers to mmodbus.o(i.mmodbus_writeHoldingRegister16i) for mmodbus_writeHoldingRegister16i
  266. mmodbus.o(i.mmodbus_writeHoldingRegisters16i) refers to mallocr.o(i.__malloc$realloc) for malloc
  267. mmodbus.o(i.mmodbus_writeHoldingRegisters16i) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  268. mmodbus.o(i.mmodbus_writeHoldingRegisters16i) refers to mmodbus.o(i.mmodbus_sendRaw) for mmodbus_sendRaw
  269. mmodbus.o(i.mmodbus_writeHoldingRegisters16i) refers to mmodbus.o(i.mmodbus_receiveRaw) for mmodbus_receiveRaw
  270. mmodbus.o(i.mmodbus_writeHoldingRegisters16i) refers to mallocr.o(i.__free$realloc) for free
  271. mmodbus.o(i.mmodbus_writeHoldingRegisters16i) refers to memcmp.o(.text) for memcmp
  272. mmodbus.o(i.mmodbus_writeHoldingRegisters16i) refers to mmodbus.o(.bss) for mmodbus
  273. mmodbus.o(i.mmodbus_writeHoldingRegisters16i) refers to mmodbus.o(.data) for crc
  274. mqttrecv.o(i.MQTT_BUFFER_READ) refers to strcpy.o(.text) for strcpy
  275. mqttrecv.o(i.MQTT_BUFFER_READ) refers to memseta.o(.text) for __aeabi_memclr
  276. mqttrecv.o(i.MQTT_BUFFER_READ) refers to ring_buffer.o(i.ring_buffer_read) for ring_buffer_read
  277. mqttrecv.o(i.MQTT_BUFFER_READ) refers to mqttrecv.o(.data) for json_len
  278. mqttrecv.o(i.MQTT_BUFFER_READ) refers to mqttrecv.o(.bss) for json_buf
  279. mqttrecv.o(i.MQTT_BUFFER_READ) refers to parsedevicemessage.o(.bss) for mqttRecv
  280. mqttrecv.o(i.Receive_MQTT_DataPack) refers to strstr.o(.text) for strstr
  281. mqttrecv.o(i.Receive_MQTT_DataPack) refers to ring_buffer.o(i.ring_buffer_write) for ring_buffer_write
  282. mqttrecv.o(i.Receive_MQTT_DataPack) refers to strlen.o(.text) for strlen
  283. mqttrecv.o(i.Receive_MQTT_DataPack) refers to usart.o(i.Clear_DMA_Buffer) for Clear_DMA_Buffer
  284. mqttrecv.o(i.Receive_MQTT_DataPack) refers to usart.o(.bss) for UART0_RX_BUF
  285. mqttrecv.o(i.Receive_MQTT_DataPack) refers to usart.o(.data) for UART0_RX_MQTT_SUB_STAT
  286. mqttrecv.o(i.Receive_MQTT_DataPack) refers to parsedevicemessage.o(.bss) for mqttRecv
  287. main.o(i.MQTT_Alarm_clock) refers to parsedevicemessage.o(i.modbusRead) for modbusRead
  288. main.o(i.MQTT_Alarm_clock) refers to parsedevicemessage.o(i.dlt645_read) for dlt645_read
  289. main.o(i.MQTT_Alarm_clock) refers to ec800m.o(i.MQTTPublish) for MQTTPublish
  290. main.o(i.MQTT_Alarm_clock) refers to led.o(i.gd_eval_led_toggle) for gd_eval_led_toggle
  291. main.o(i.MQTT_Alarm_clock) refers to parsedevicemessage.o(i.parseMQTTData) for parseMQTTData
  292. main.o(i.MQTT_Alarm_clock) refers to otaevent.o(i.check_ota_event) for check_ota_event
  293. main.o(i.MQTT_Alarm_clock) refers to systick.o(i.delay_1ms) for delay_1ms
  294. main.o(i.MQTT_Alarm_clock) refers to main.o(i.task_fwdgt_reload) for task_fwdgt_reload
  295. main.o(i.fwdgt_init) refers to gd32f10x_rcu.o(i.rcu_osci_on) for rcu_osci_on
  296. main.o(i.fwdgt_init) refers to gd32f10x_fwdgt.o(i.fwdgt_config) for fwdgt_config
  297. main.o(i.fwdgt_init) refers to gd32f10x_fwdgt.o(i.fwdgt_enable) for fwdgt_enable
  298. main.o(i.http_load_config) refers to mallocr.o(i.__malloc$realloc) for malloc
  299. main.o(i.http_load_config) refers to ec800m.o(i.EC800MGetUrl) for EC800MGetUrl
  300. main.o(i.http_load_config) refers to parsedevicemessage.o(i.WaitForUpData) for WaitForUpData
  301. main.o(i.http_load_config) refers to usart.o(i.dma_config_change) for dma_config_change
  302. main.o(i.http_load_config) refers to ec800m.o(i.EC800MSendCmd) for EC800MSendCmd
  303. main.o(i.http_load_config) refers to systick.o(i.delay_1ms) for delay_1ms
  304. main.o(i.http_load_config) refers to usart.o(i.dma_config) for dma_config
  305. main.o(i.http_load_config) refers to mallocr.o(i.__free$realloc) for free
  306. main.o(i.main) refers to gd32f10x_rcu.o(i.rcu_osci_on) for rcu_osci_on
  307. main.o(i.main) refers to systick.o(i.systick_config) for systick_config
  308. main.o(i.main) refers to usart.o(i.nvic_config) for nvic_config
  309. main.o(i.main) refers to w25q32.o(i.W25Q32_Init) for W25Q32_Init
  310. main.o(i.main) refers to led.o(i.gd_eval_led_init) for gd_eval_led_init
  311. main.o(i.main) refers to usart.o(i.gd_com_init) for gd_com_init
  312. main.o(i.main) refers to usart.o(i.dma_config) for dma_config
  313. main.o(i.main) refers to usart.o(i.gd_EC800M_pin_init) for gd_EC800M_pin_init
  314. main.o(i.main) refers to key.o(i.gd_eval_key_init) for gd_eval_key_init
  315. main.o(i.main) refers to ec800m.o(i.EC800MPwoerOn) for EC800MPwoerOn
  316. main.o(i.main) refers to ec800m.o(i.EC800MWaitReady) for EC800MWaitReady
  317. main.o(i.main) refers to ec800m.o(i.EC800MSetPDP) for EC800MSetPDP
  318. main.o(i.main) refers to mallocr.o(i.__malloc$realloc) for malloc
  319. main.o(i.main) refers to main.o(i.readID) for readID
  320. main.o(i.main) refers to device_message.o(i.get_config_params) for get_config_params
  321. main.o(i.main) refers to strcpy.o(.text) for strcpy
  322. main.o(i.main) refers to memseta.o(.text) for __aeabi_memclr
  323. main.o(i.main) refers to printfa.o(i.__0sprintf) for __2sprintf
  324. main.o(i.main) refers to main.o(i.http_load_config) for http_load_config
  325. main.o(i.main) refers to mallocr.o(i.__free$realloc) for free
  326. main.o(i.main) refers to usart.o(i.config_485_port) for config_485_port
  327. main.o(i.main) refers to usart.o(i.gd_485_DE_pin_init) for gd_485_DE_pin_init
  328. main.o(i.main) refers to usart.o(i.gd_485_DE_tx) for gd_485_DE_tx
  329. main.o(i.main) refers to ec800m.o(i.ConnectMQTTSever) for ConnectMQTTSever
  330. main.o(i.main) refers to ec800m.o(i.MQTTSubTopic) for MQTTSubTopic
  331. main.o(i.main) refers to ring_buffer.o(i.ring_buffer_init) for ring_buffer_init
  332. main.o(i.main) refers to mmodbus.o(i.mmodbus_init) for mmodbus_init
  333. main.o(i.main) refers to dlt645_port.o(i.dlt645_init) for dlt645_init
  334. main.o(i.main) refers to log.o(i.LogPrint) for LogPrint
  335. main.o(i.main) refers to main.o(i.fwdgt_init) for fwdgt_init
  336. main.o(i.main) refers to otaevent.o(i.check_ota_event) for check_ota_event
  337. main.o(i.main) refers to main.o(i.MQTT_Alarm_clock) for MQTT_Alarm_clock
  338. main.o(i.main) refers to main.o(.conststring) for .conststring
  339. main.o(i.main) refers to main.o(.data) for protocol
  340. main.o(i.main) refers to parsedevicemessage.o(.bss) for mqttRecv
  341. main.o(i.main) refers to main.o(.constdata) for __func__
  342. main.o(i.readID) refers to main.o(.data) for hex_table
  343. main.o(i.task_fwdgt_reload) refers to gd32f10x_fwdgt.o(i.fwdgt_write_enable) for fwdgt_write_enable
  344. main.o(i.task_fwdgt_reload) refers to gd32f10x_fwdgt.o(i.fwdgt_counter_reload) for fwdgt_counter_reload
  345. main.o(.data) refers to main.o(.conststring) for .conststring
  346. pc.o(i.USART2_IRQHandler) refers to gd32f10x_usart.o(i.usart_interrupt_flag_get) for usart_interrupt_flag_get
  347. pc.o(i.USART2_IRQHandler) refers to gd32f10x_usart.o(i.usart_data_receive) for usart_data_receive
  348. pc.o(i.USART2_IRQHandler) refers to mallocr.o(i.__malloc$realloc) for malloc
  349. pc.o(i.USART2_IRQHandler) refers to memseta.o(.text) for __aeabi_memclr
  350. pc.o(i.USART2_IRQHandler) refers to gd32f10x_usart.o(i.usart_interrupt_flag_clear) for usart_interrupt_flag_clear
  351. pc.o(i.USART2_IRQHandler) refers to pc.o(i.readGatewayMessage) for readGatewayMessage
  352. pc.o(i.USART2_IRQHandler) refers to pc.o(i.readSIMCARD) for readSIMCARD
  353. pc.o(i.USART2_IRQHandler) refers to pc.o(i.read_json_config) for read_json_config
  354. pc.o(i.USART2_IRQHandler) refers to pc.o(i.write_json_config) for write_json_config
  355. pc.o(i.USART2_IRQHandler) refers to otaevent.o(.bss) for ota_data
  356. pc.o(i.USART2_IRQHandler) refers to pc.o(.data) for RxState
  357. pc.o(i.WaitField) refers to systick.o(i.delay_1ms) for delay_1ms
  358. pc.o(i.WaitField) refers to strstr.o(.text) for strstr
  359. pc.o(i.WaitField) refers to usart.o(.data) for UART0_RX_STAT
  360. pc.o(i.WaitField) refers to usart.o(.bss) for UART0_RX_BUF
  361. pc.o(i.ec800m_4G_Data_read) refers to ec800m.o(i.EC800MSendCmd) for EC800MSendCmd
  362. pc.o(i.ec800m_4G_Data_read) refers to pc.o(i.WaitField) for WaitField
  363. pc.o(i.readGatewayMessage) refers to device_message.o(i.get_config_params) for get_config_params
  364. pc.o(i.readGatewayMessage) refers to mallocr.o(i.__malloc$realloc) for malloc
  365. pc.o(i.readGatewayMessage) refers to memseta.o(.text) for __aeabi_memclr
  366. pc.o(i.readGatewayMessage) refers to strlen.o(.text) for strlen
  367. pc.o(i.readGatewayMessage) refers to memcpya.o(.text) for __aeabi_memcpy
  368. pc.o(i.readGatewayMessage) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  369. pc.o(i.readGatewayMessage) refers to usart.o(i.gd_com_232_send) for gd_com_232_send
  370. pc.o(i.readGatewayMessage) refers to mallocr.o(i.__free$realloc) for free
  371. pc.o(i.readSIMCARD) refers to _scanf_str.o(.text) for _scanf_string
  372. pc.o(i.readSIMCARD) refers to _scanf_int.o(.text) for _scanf_int
  373. pc.o(i.readSIMCARD) refers to device_message.o(i.get_config_params) for get_config_params
  374. pc.o(i.readSIMCARD) refers to mallocr.o(i.__malloc$realloc) for malloc
  375. pc.o(i.readSIMCARD) refers to memseta.o(.text) for __aeabi_memclr
  376. pc.o(i.readSIMCARD) refers to ec800m.o(i.EC800MSendCmd) for EC800MSendCmd
  377. pc.o(i.readSIMCARD) refers to pc.o(i.WaitField) for WaitField
  378. pc.o(i.readSIMCARD) refers to __0sscanf.o(.text) for __0sscanf
  379. pc.o(i.readSIMCARD) refers to usart.o(i.Clear_DMA_Buffer) for Clear_DMA_Buffer
  380. pc.o(i.readSIMCARD) refers to strstr.o(.text) for strstr
  381. pc.o(i.readSIMCARD) refers to ffltui.o(.text) for __aeabi_ui2f
  382. pc.o(i.readSIMCARD) refers to fdiv.o(.text) for __aeabi_fdiv
  383. pc.o(i.readSIMCARD) refers to fmul.o(.text) for __aeabi_fmul
  384. pc.o(i.readSIMCARD) refers to ffixi.o(.text) for __aeabi_f2iz
  385. pc.o(i.readSIMCARD) refers to printfa.o(i.__0sprintf) for __2sprintf
  386. pc.o(i.readSIMCARD) refers to strlen.o(.text) for strlen
  387. pc.o(i.readSIMCARD) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  388. pc.o(i.readSIMCARD) refers to usart.o(i.gd_com_232_send) for gd_com_232_send
  389. pc.o(i.readSIMCARD) refers to mallocr.o(i.__free$realloc) for free
  390. pc.o(i.readSIMCARD) refers to usart.o(.bss) for UART0_RX_BUF
  391. pc.o(i.readSIMCARD) refers to pc.o(.conststring) for .conststring
  392. pc.o(i.read_json_config) refers to mallocr.o(i.__malloc$realloc) for malloc
  393. pc.o(i.read_json_config) refers to memseta.o(.text) for __aeabi_memclr
  394. pc.o(i.read_json_config) refers to device_message.o(i.get_config_params) for get_config_params
  395. pc.o(i.read_json_config) refers to printfa.o(i.__0sprintf) for __2sprintf
  396. pc.o(i.read_json_config) refers to strlen.o(.text) for strlen
  397. pc.o(i.read_json_config) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  398. pc.o(i.read_json_config) refers to usart.o(i.gd_com_232_send) for gd_com_232_send
  399. pc.o(i.read_json_config) refers to mallocr.o(i.__free$realloc) for free
  400. pc.o(i.read_json_config) refers to pc.o(.conststring) for .conststring
  401. pc.o(i.write_json_config) refers to parsedevicemessage.o(i.WaitForUpData) for WaitForUpData
  402. pc.o(i.write_json_config) refers to strlen.o(.text) for strlen
  403. pc.o(i.write_json_config) refers to mmodbus.o(i.mmodbus_crc16) for mmodbus_crc16
  404. pc.o(i.write_json_config) refers to usart.o(i.gd_com_232_send) for gd_com_232_send
  405. pc.o(i.write_json_config) refers to usart.o(.data) for UART0_RX_STAT
  406. otaevent.o(i.check_ota_event) refers to w25q32.o(i.W25Q32_Erase64K) for W25Q32_Erase64K
  407. otaevent.o(i.check_ota_event) refers to otaevent.o(i.xmodem) for xmodem
  408. otaevent.o(i.check_ota_event) refers to otaevent.o(.bss) for ota_data
  409. otaevent.o(i.xmodem) refers to systick.o(i.gettick) for gettick
  410. otaevent.o(i.xmodem) refers to main.o(i.task_fwdgt_reload) for task_fwdgt_reload
  411. otaevent.o(i.xmodem) refers to gd32f10x_usart.o(i.usart_data_transmit) for usart_data_transmit
  412. otaevent.o(i.xmodem) refers to systick.o(i.delay_1ms) for delay_1ms
  413. otaevent.o(i.xmodem) refers to otaevent.o(i.Xmodem_CRC16) for Xmodem_CRC16
  414. otaevent.o(i.xmodem) refers to memcpya.o(.text) for __aeabi_memcpy
  415. otaevent.o(i.xmodem) refers to w25q32.o(i.W25Q32_PageWrite) for W25Q32_PageWrite
  416. otaevent.o(i.xmodem) refers to memseta.o(.text) for __aeabi_memclr
  417. otaevent.o(i.xmodem) refers to w25q32.o(i.W25Q32_Erase64K) for W25Q32_Erase64K
  418. otaevent.o(i.xmodem) refers to otaevent.o(.bss) for ota_data
  419. gd32f10x_adc.o(i.adc_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  420. gd32f10x_adc.o(i.adc_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  421. gd32f10x_bkp.o(i.bkp_deinit) refers to gd32f10x_rcu.o(i.rcu_bkp_reset_enable) for rcu_bkp_reset_enable
  422. gd32f10x_bkp.o(i.bkp_deinit) refers to gd32f10x_rcu.o(i.rcu_bkp_reset_disable) for rcu_bkp_reset_disable
  423. gd32f10x_can.o(i.can_debug_freeze_disable) refers to gd32f10x_dbg.o(i.dbg_periph_enable) for dbg_periph_enable
  424. gd32f10x_can.o(i.can_debug_freeze_enable) refers to gd32f10x_dbg.o(i.dbg_periph_enable) for dbg_periph_enable
  425. gd32f10x_can.o(i.can_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  426. gd32f10x_can.o(i.can_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  427. gd32f10x_can.o(i.can_interrupt_flag_get) refers to gd32f10x_can.o(i.can_receive_message_length_get) for can_receive_message_length_get
  428. gd32f10x_can.o(i.can_interrupt_flag_get) refers to gd32f10x_can.o(i.can_error_get) for can_error_get
  429. gd32f10x_dac.o(i.dac_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  430. gd32f10x_dac.o(i.dac_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  431. gd32f10x_dma.o(i.dma_channel_disable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  432. gd32f10x_dma.o(i.dma_channel_enable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  433. gd32f10x_dma.o(i.dma_circulation_disable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  434. gd32f10x_dma.o(i.dma_circulation_enable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  435. gd32f10x_dma.o(i.dma_deinit) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  436. gd32f10x_dma.o(i.dma_init) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  437. gd32f10x_dma.o(i.dma_interrupt_disable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  438. gd32f10x_dma.o(i.dma_interrupt_enable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  439. gd32f10x_dma.o(i.dma_memory_address_config) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  440. gd32f10x_dma.o(i.dma_memory_increase_disable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  441. gd32f10x_dma.o(i.dma_memory_increase_enable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  442. gd32f10x_dma.o(i.dma_memory_to_memory_disable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  443. gd32f10x_dma.o(i.dma_memory_to_memory_enable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  444. gd32f10x_dma.o(i.dma_memory_width_config) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  445. gd32f10x_dma.o(i.dma_periph_address_config) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  446. gd32f10x_dma.o(i.dma_periph_increase_disable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  447. gd32f10x_dma.o(i.dma_periph_increase_enable) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  448. gd32f10x_dma.o(i.dma_periph_width_config) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  449. gd32f10x_dma.o(i.dma_priority_config) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  450. gd32f10x_dma.o(i.dma_transfer_direction_config) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  451. gd32f10x_dma.o(i.dma_transfer_number_config) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  452. gd32f10x_dma.o(i.dma_transfer_number_get) refers to gd32f10x_dma.o(i.dma_periph_and_channel_check) for dma_periph_and_channel_check
  453. gd32f10x_fmc.o(i.fmc_bank0_erase) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  454. gd32f10x_fmc.o(i.fmc_bank0_ready_wait) refers to gd32f10x_fmc.o(i.fmc_bank0_state_get) for fmc_bank0_state_get
  455. gd32f10x_fmc.o(i.fmc_bank1_erase) refers to gd32f10x_fmc.o(i.fmc_bank1_ready_wait) for fmc_bank1_ready_wait
  456. gd32f10x_fmc.o(i.fmc_bank1_ready_wait) refers to gd32f10x_fmc.o(i.fmc_bank1_state_get) for fmc_bank1_state_get
  457. gd32f10x_fmc.o(i.fmc_halfword_program) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  458. gd32f10x_fmc.o(i.fmc_halfword_program) refers to gd32f10x_fmc.o(i.fmc_bank1_ready_wait) for fmc_bank1_ready_wait
  459. gd32f10x_fmc.o(i.fmc_mass_erase) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  460. gd32f10x_fmc.o(i.fmc_mass_erase) refers to gd32f10x_fmc.o(i.fmc_bank1_ready_wait) for fmc_bank1_ready_wait
  461. gd32f10x_fmc.o(i.fmc_page_erase) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  462. gd32f10x_fmc.o(i.fmc_page_erase) refers to gd32f10x_fmc.o(i.fmc_bank1_ready_wait) for fmc_bank1_ready_wait
  463. gd32f10x_fmc.o(i.fmc_word_program) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  464. gd32f10x_fmc.o(i.fmc_word_program) refers to gd32f10x_fmc.o(i.fmc_bank1_ready_wait) for fmc_bank1_ready_wait
  465. gd32f10x_fmc.o(i.ob_data_program) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  466. gd32f10x_fmc.o(i.ob_erase) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  467. gd32f10x_fmc.o(i.ob_erase) refers to gd32f10x_fmc.o(i.ob_spc_get) for ob_spc_get
  468. gd32f10x_fmc.o(i.ob_security_protection_config) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  469. gd32f10x_fmc.o(i.ob_user_write) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  470. gd32f10x_fmc.o(i.ob_write_protection_enable) refers to gd32f10x_fmc.o(i.fmc_bank0_ready_wait) for fmc_bank0_ready_wait
  471. gd32f10x_gpio.o(i.gpio_afio_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  472. gd32f10x_gpio.o(i.gpio_afio_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  473. gd32f10x_gpio.o(i.gpio_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  474. gd32f10x_gpio.o(i.gpio_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  475. gd32f10x_i2c.o(i.i2c_clock_config) refers to gd32f10x_rcu.o(i.rcu_clock_freq_get) for rcu_clock_freq_get
  476. gd32f10x_i2c.o(i.i2c_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  477. gd32f10x_i2c.o(i.i2c_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  478. gd32f10x_misc.o(i.nvic_irq_enable) refers to gd32f10x_misc.o(i.nvic_priority_group_set) for nvic_priority_group_set
  479. gd32f10x_pmu.o(i.pmu_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  480. gd32f10x_pmu.o(i.pmu_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  481. gd32f10x_pmu.o(i.pmu_to_deepsleepmode) refers to gd32f10x_pmu.o(.bss) for reg_snap
  482. gd32f10x_rcu.o(i.rcu_deinit) refers to gd32f10x_rcu.o(i.rcu_osci_stab_wait) for rcu_osci_stab_wait
  483. gd32f10x_rcu.o(i.rcu_osci_stab_wait) refers to gd32f10x_rcu.o(i.rcu_flag_get) for rcu_flag_get
  484. gd32f10x_rtc.o(i.rtc_alarm_config) refers to gd32f10x_rtc.o(i.rtc_configuration_mode_enter) for rtc_configuration_mode_enter
  485. gd32f10x_rtc.o(i.rtc_alarm_config) refers to gd32f10x_rtc.o(i.rtc_configuration_mode_exit) for rtc_configuration_mode_exit
  486. gd32f10x_rtc.o(i.rtc_counter_set) refers to gd32f10x_rtc.o(i.rtc_configuration_mode_enter) for rtc_configuration_mode_enter
  487. gd32f10x_rtc.o(i.rtc_counter_set) refers to gd32f10x_rtc.o(i.rtc_configuration_mode_exit) for rtc_configuration_mode_exit
  488. gd32f10x_rtc.o(i.rtc_prescaler_set) refers to gd32f10x_rtc.o(i.rtc_configuration_mode_enter) for rtc_configuration_mode_enter
  489. gd32f10x_rtc.o(i.rtc_prescaler_set) refers to gd32f10x_rtc.o(i.rtc_configuration_mode_exit) for rtc_configuration_mode_exit
  490. gd32f10x_spi.o(i.i2s_psc_config) refers to gd32f10x_rcu.o(i.rcu_clock_freq_get) for rcu_clock_freq_get
  491. gd32f10x_spi.o(i.spi_i2s_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  492. gd32f10x_spi.o(i.spi_i2s_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  493. gd32f10x_timer.o(i.timer_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  494. gd32f10x_timer.o(i.timer_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  495. gd32f10x_timer.o(i.timer_external_clock_mode0_config) refers to gd32f10x_timer.o(i.timer_external_trigger_config) for timer_external_trigger_config
  496. gd32f10x_timer.o(i.timer_external_clock_mode1_config) refers to gd32f10x_timer.o(i.timer_external_trigger_config) for timer_external_trigger_config
  497. gd32f10x_timer.o(i.timer_external_trigger_as_external_clock_config) refers to gd32f10x_timer.o(i.timer_input_trigger_source_select) for timer_input_trigger_source_select
  498. gd32f10x_timer.o(i.timer_input_capture_config) refers to gd32f10x_timer.o(i.timer_channel_input_capture_prescaler_config) for timer_channel_input_capture_prescaler_config
  499. gd32f10x_timer.o(i.timer_input_pwm_capture_config) refers to gd32f10x_timer.o(i.timer_channel_input_capture_prescaler_config) for timer_channel_input_capture_prescaler_config
  500. gd32f10x_timer.o(i.timer_internal_trigger_as_external_clock_config) refers to gd32f10x_timer.o(i.timer_input_trigger_source_select) for timer_input_trigger_source_select
  501. gd32f10x_usart.o(i.usart_baudrate_set) refers to gd32f10x_rcu.o(i.rcu_clock_freq_get) for rcu_clock_freq_get
  502. gd32f10x_usart.o(i.usart_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  503. gd32f10x_usart.o(i.usart_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  504. gd32f10x_wwdgt.o(i.wwdgt_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_enable) for rcu_periph_reset_enable
  505. gd32f10x_wwdgt.o(i.wwdgt_deinit) refers to gd32f10x_rcu.o(i.rcu_periph_reset_disable) for rcu_periph_reset_disable
  506. led.o(i.gd_eval_led_init) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  507. led.o(i.gd_eval_led_init) refers to gd32f10x_gpio.o(i.gpio_init) for gpio_init
  508. led.o(i.gd_eval_led_init) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  509. led.o(i.gd_eval_led_init) refers to led.o(.data) for GPIO_CLK
  510. led.o(i.gd_eval_led_off) refers to led.o(.data) for GPIO_PIN
  511. led.o(i.gd_eval_led_on) refers to led.o(.data) for GPIO_PIN
  512. led.o(i.gd_eval_led_toggle) refers to gd32f10x_gpio.o(i.gpio_input_bit_get) for gpio_input_bit_get
  513. led.o(i.gd_eval_led_toggle) refers to gd32f10x_gpio.o(i.gpio_bit_write) for gpio_bit_write
  514. led.o(i.gd_eval_led_toggle) refers to led.o(.data) for GPIO_PIN
  515. spi.o(i.SPI0_Init) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  516. spi.o(i.SPI0_Init) refers to gd32f10x_gpio.o(i.gpio_init) for gpio_init
  517. spi.o(i.SPI0_Init) refers to gd32f10x_spi.o(i.spi_i2s_deinit) for spi_i2s_deinit
  518. spi.o(i.SPI0_Init) refers to gd32f10x_spi.o(i.spi_init) for spi_init
  519. spi.o(i.SPI0_Init) refers to gd32f10x_spi.o(i.spi_enable) for spi_enable
  520. spi.o(i.SPI0_Read) refers to spi.o(i.SPI0_ReadWriteByte) for SPI0_ReadWriteByte
  521. spi.o(i.SPI0_ReadWriteByte) refers to gd32f10x_spi.o(i.spi_i2s_flag_get) for spi_i2s_flag_get
  522. spi.o(i.SPI0_ReadWriteByte) refers to gd32f10x_spi.o(i.spi_i2s_data_transmit) for spi_i2s_data_transmit
  523. spi.o(i.SPI0_ReadWriteByte) refers to gd32f10x_spi.o(i.spi_i2s_data_receive) for spi_i2s_data_receive
  524. spi.o(i.SPI0_Write) refers to spi.o(i.SPI0_ReadWriteByte) for SPI0_ReadWriteByte
  525. usart.o(i.Clear_DMA_Buffer) refers to memseta.o(.text) for __aeabi_memclr
  526. usart.o(i.Clear_DMA_Buffer) refers to usart.o(.data) for UART0_RX_NUM
  527. usart.o(i.Clear_DMA_Buffer) refers to usart.o(.bss) for UART0_RX_BUF
  528. usart.o(i.config_485_port) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  529. usart.o(i.config_485_port) refers to gd32f10x_gpio.o(i.gpio_init) for gpio_init
  530. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_baudrate_set) for usart_baudrate_set
  531. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_word_length_set) for usart_word_length_set
  532. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_stop_bit_set) for usart_stop_bit_set
  533. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_parity_config) for usart_parity_config
  534. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_hardware_flow_rts_config) for usart_hardware_flow_rts_config
  535. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_hardware_flow_cts_config) for usart_hardware_flow_cts_config
  536. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_receive_config) for usart_receive_config
  537. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_transmit_config) for usart_transmit_config
  538. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_enable) for usart_enable
  539. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_interrupt_enable) for usart_interrupt_enable
  540. usart.o(i.config_485_port) refers to gd32f10x_usart.o(i.usart_flag_clear) for usart_flag_clear
  541. usart.o(i.config_485_port) refers to usart.o(.data) for COM_GPIO_CLK
  542. usart.o(i.dma_config) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  543. usart.o(i.dma_config) refers to gd32f10x_dma.o(i.dma_deinit) for dma_deinit
  544. usart.o(i.dma_config) refers to gd32f10x_dma.o(i.dma_init) for dma_init
  545. usart.o(i.dma_config) refers to gd32f10x_dma.o(i.dma_circulation_disable) for dma_circulation_disable
  546. usart.o(i.dma_config) refers to gd32f10x_dma.o(i.dma_memory_to_memory_disable) for dma_memory_to_memory_disable
  547. usart.o(i.dma_config) refers to gd32f10x_usart.o(i.usart_dma_transmit_config) for usart_dma_transmit_config
  548. usart.o(i.dma_config) refers to gd32f10x_dma.o(i.dma_interrupt_enable) for dma_interrupt_enable
  549. usart.o(i.dma_config) refers to gd32f10x_dma.o(i.dma_channel_enable) for dma_channel_enable
  550. usart.o(i.dma_config) refers to usart.o(.bss) for UART0_RX_BUF
  551. usart.o(i.dma_config_change) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  552. usart.o(i.dma_config_change) refers to gd32f10x_dma.o(i.dma_deinit) for dma_deinit
  553. usart.o(i.dma_config_change) refers to gd32f10x_dma.o(i.dma_init) for dma_init
  554. usart.o(i.dma_config_change) refers to gd32f10x_dma.o(i.dma_circulation_disable) for dma_circulation_disable
  555. usart.o(i.dma_config_change) refers to gd32f10x_dma.o(i.dma_memory_to_memory_disable) for dma_memory_to_memory_disable
  556. usart.o(i.dma_config_change) refers to gd32f10x_usart.o(i.usart_dma_transmit_config) for usart_dma_transmit_config
  557. usart.o(i.dma_config_change) refers to gd32f10x_dma.o(i.dma_interrupt_enable) for dma_interrupt_enable
  558. usart.o(i.dma_config_change) refers to gd32f10x_dma.o(i.dma_channel_enable) for dma_channel_enable
  559. usart.o(i.gd_485_DE_pin_init) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  560. usart.o(i.gd_485_DE_pin_init) refers to gd32f10x_gpio.o(i.gpio_init) for gpio_init
  561. usart.o(i.gd_EC800M_pin_init) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  562. usart.o(i.gd_EC800M_pin_init) refers to gd32f10x_gpio.o(i.gpio_init) for gpio_init
  563. usart.o(i.gd_com_232_Receive) refers to gd32f10x_usart.o(i.usart_interrupt_flag_get) for usart_interrupt_flag_get
  564. usart.o(i.gd_com_232_Receive) refers to gd32f10x_usart.o(i.usart_data_receive) for usart_data_receive
  565. usart.o(i.gd_com_232_Receive) refers to gd32f10x_usart.o(i.usart_interrupt_flag_clear) for usart_interrupt_flag_clear
  566. usart.o(i.gd_com_232_send) refers to gd32f10x_usart.o(i.usart_data_transmit) for usart_data_transmit
  567. usart.o(i.gd_com_232_send) refers to gd32f10x_usart.o(i.usart_flag_get) for usart_flag_get
  568. usart.o(i.gd_com_485_send) refers to usart.o(i.gd_485_DE_tx) for gd_485_DE_tx
  569. usart.o(i.gd_com_485_send) refers to gd32f10x_usart.o(i.usart_data_transmit) for usart_data_transmit
  570. usart.o(i.gd_com_485_send) refers to gd32f10x_usart.o(i.usart_flag_get) for usart_flag_get
  571. usart.o(i.gd_com_485_send) refers to usart.o(i.gd_485_DE_rx) for gd_485_DE_rx
  572. usart.o(i.gd_com_init) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  573. usart.o(i.gd_com_init) refers to gd32f10x_gpio.o(i.gpio_pin_remap_config) for gpio_pin_remap_config
  574. usart.o(i.gd_com_init) refers to gd32f10x_gpio.o(i.gpio_init) for gpio_init
  575. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_deinit) for usart_deinit
  576. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_baudrate_set) for usart_baudrate_set
  577. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_word_length_set) for usart_word_length_set
  578. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_stop_bit_set) for usart_stop_bit_set
  579. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_parity_config) for usart_parity_config
  580. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_hardware_flow_rts_config) for usart_hardware_flow_rts_config
  581. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_hardware_flow_cts_config) for usart_hardware_flow_cts_config
  582. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_receive_config) for usart_receive_config
  583. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_transmit_config) for usart_transmit_config
  584. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_enable) for usart_enable
  585. usart.o(i.gd_com_init) refers to gd32f10x_usart.o(i.usart_interrupt_enable) for usart_interrupt_enable
  586. usart.o(i.gd_com_init) refers to usart.o(.data) for COM_GPIO_CLK
  587. usart.o(i.nvic_config) refers to gd32f10x_misc.o(i.nvic_priority_group_set) for nvic_priority_group_set
  588. usart.o(i.nvic_config) refers to gd32f10x_misc.o(i.nvic_irq_enable) for nvic_irq_enable
  589. w25q32.o(i.W25Q32_Enable) refers to w25q32.o(i.W25Q32_WaitBusy) for W25Q32_WaitBusy
  590. w25q32.o(i.W25Q32_Enable) refers to gd32f10x_gpio.o(i.gpio_bit_reset) for gpio_bit_reset
  591. w25q32.o(i.W25Q32_Enable) refers to spi.o(i.SPI0_ReadWriteByte) for SPI0_ReadWriteByte
  592. w25q32.o(i.W25Q32_Enable) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  593. w25q32.o(i.W25Q32_Erase64K) refers to w25q32.o(i.W25Q32_WaitBusy) for W25Q32_WaitBusy
  594. w25q32.o(i.W25Q32_Erase64K) refers to w25q32.o(i.W25Q32_Enable) for W25Q32_Enable
  595. w25q32.o(i.W25Q32_Erase64K) refers to gd32f10x_gpio.o(i.gpio_bit_reset) for gpio_bit_reset
  596. w25q32.o(i.W25Q32_Erase64K) refers to spi.o(i.SPI0_Write) for SPI0_Write
  597. w25q32.o(i.W25Q32_Erase64K) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  598. w25q32.o(i.W25Q32_Init) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  599. w25q32.o(i.W25Q32_Init) refers to gd32f10x_gpio.o(i.gpio_init) for gpio_init
  600. w25q32.o(i.W25Q32_Init) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  601. w25q32.o(i.W25Q32_Init) refers to spi.o(i.SPI0_Init) for SPI0_Init
  602. w25q32.o(i.W25Q32_PageWrite) refers to w25q32.o(i.W25Q32_WaitBusy) for W25Q32_WaitBusy
  603. w25q32.o(i.W25Q32_PageWrite) refers to w25q32.o(i.W25Q32_Enable) for W25Q32_Enable
  604. w25q32.o(i.W25Q32_PageWrite) refers to gd32f10x_gpio.o(i.gpio_bit_reset) for gpio_bit_reset
  605. w25q32.o(i.W25Q32_PageWrite) refers to spi.o(i.SPI0_Write) for SPI0_Write
  606. w25q32.o(i.W25Q32_PageWrite) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  607. w25q32.o(i.W25Q32_Read) refers to w25q32.o(i.W25Q32_WaitBusy) for W25Q32_WaitBusy
  608. w25q32.o(i.W25Q32_Read) refers to gd32f10x_gpio.o(i.gpio_bit_reset) for gpio_bit_reset
  609. w25q32.o(i.W25Q32_Read) refers to spi.o(i.SPI0_Write) for SPI0_Write
  610. w25q32.o(i.W25Q32_Read) refers to spi.o(i.SPI0_Read) for SPI0_Read
  611. w25q32.o(i.W25Q32_Read) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  612. w25q32.o(i.W25Q32_WaitBusy) refers to gd32f10x_gpio.o(i.gpio_bit_reset) for gpio_bit_reset
  613. w25q32.o(i.W25Q32_WaitBusy) refers to spi.o(i.SPI0_ReadWriteByte) for SPI0_ReadWriteByte
  614. w25q32.o(i.W25Q32_WaitBusy) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  615. key.o(i.EXTI1_IRQHandler) refers to gd32f10x_exti.o(i.exti_interrupt_flag_get) for exti_interrupt_flag_get
  616. key.o(i.EXTI1_IRQHandler) refers to systick.o(i.delay_1ms) for delay_1ms
  617. key.o(i.EXTI1_IRQHandler) refers to gd32f10x_gpio.o(i.gpio_input_bit_get) for gpio_input_bit_get
  618. key.o(i.EXTI1_IRQHandler) refers to device_message.o(i.clear_gateway_config_block) for clear_gateway_config_block
  619. key.o(i.EXTI1_IRQHandler) refers to gd32f10x_exti.o(i.exti_interrupt_flag_clear) for exti_interrupt_flag_clear
  620. key.o(i.EXTI1_IRQHandler) refers to key.o(.data) for KEY_PIN
  621. key.o(i.gd_eval_key_init) refers to gd32f10x_rcu.o(i.rcu_periph_clock_enable) for rcu_periph_clock_enable
  622. key.o(i.gd_eval_key_init) refers to gd32f10x_gpio.o(i.gpio_init) for gpio_init
  623. key.o(i.gd_eval_key_init) refers to gd32f10x_misc.o(i.nvic_irq_enable) for nvic_irq_enable
  624. key.o(i.gd_eval_key_init) refers to gd32f10x_gpio.o(i.gpio_exti_source_select) for gpio_exti_source_select
  625. key.o(i.gd_eval_key_init) refers to gd32f10x_exti.o(i.exti_init) for exti_init
  626. key.o(i.gd_eval_key_init) refers to gd32f10x_exti.o(i.exti_interrupt_flag_clear) for exti_interrupt_flag_clear
  627. key.o(i.gd_eval_key_init) refers to key.o(.data) for KEY_CLK
  628. cjson.o(i.add_item_to_array) refers to cjson.o(i.suffix_object) for suffix_object
  629. cjson.o(i.add_item_to_object) refers to cjson.o(i.cast_away_const) for cast_away_const
  630. cjson.o(i.add_item_to_object) refers to cjson.o(i.cJSON_strdup) for cJSON_strdup
  631. cjson.o(i.add_item_to_object) refers to cjson.o(i.add_item_to_array) for add_item_to_array
  632. cjson.o(i.cJSON_AddArrayToObject) refers to cjson.o(i.cJSON_CreateArray) for cJSON_CreateArray
  633. cjson.o(i.cJSON_AddArrayToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  634. cjson.o(i.cJSON_AddArrayToObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  635. cjson.o(i.cJSON_AddArrayToObject) refers to cjson.o(.data) for global_hooks
  636. cjson.o(i.cJSON_AddBoolToObject) refers to cjson.o(i.cJSON_CreateBool) for cJSON_CreateBool
  637. cjson.o(i.cJSON_AddBoolToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  638. cjson.o(i.cJSON_AddBoolToObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  639. cjson.o(i.cJSON_AddBoolToObject) refers to cjson.o(.data) for global_hooks
  640. cjson.o(i.cJSON_AddFalseToObject) refers to cjson.o(i.cJSON_CreateFalse) for cJSON_CreateFalse
  641. cjson.o(i.cJSON_AddFalseToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  642. cjson.o(i.cJSON_AddFalseToObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  643. cjson.o(i.cJSON_AddFalseToObject) refers to cjson.o(.data) for global_hooks
  644. cjson.o(i.cJSON_AddItemReferenceToArray) refers to cjson.o(i.create_reference) for create_reference
  645. cjson.o(i.cJSON_AddItemReferenceToArray) refers to cjson.o(i.add_item_to_array) for add_item_to_array
  646. cjson.o(i.cJSON_AddItemReferenceToArray) refers to cjson.o(.data) for global_hooks
  647. cjson.o(i.cJSON_AddItemReferenceToObject) refers to cjson.o(i.create_reference) for create_reference
  648. cjson.o(i.cJSON_AddItemReferenceToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  649. cjson.o(i.cJSON_AddItemReferenceToObject) refers to cjson.o(.data) for global_hooks
  650. cjson.o(i.cJSON_AddItemToArray) refers to cjson.o(i.add_item_to_array) for add_item_to_array
  651. cjson.o(i.cJSON_AddItemToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  652. cjson.o(i.cJSON_AddItemToObject) refers to cjson.o(.data) for global_hooks
  653. cjson.o(i.cJSON_AddItemToObjectCS) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  654. cjson.o(i.cJSON_AddItemToObjectCS) refers to cjson.o(.data) for global_hooks
  655. cjson.o(i.cJSON_AddNullToObject) refers to cjson.o(i.cJSON_CreateNull) for cJSON_CreateNull
  656. cjson.o(i.cJSON_AddNullToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  657. cjson.o(i.cJSON_AddNullToObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  658. cjson.o(i.cJSON_AddNullToObject) refers to cjson.o(.data) for global_hooks
  659. cjson.o(i.cJSON_AddNumberToObject) refers to cjson.o(i.cJSON_CreateNumber) for cJSON_CreateNumber
  660. cjson.o(i.cJSON_AddNumberToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  661. cjson.o(i.cJSON_AddNumberToObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  662. cjson.o(i.cJSON_AddNumberToObject) refers to cjson.o(.data) for global_hooks
  663. cjson.o(i.cJSON_AddObjectToObject) refers to cjson.o(i.cJSON_CreateObject) for cJSON_CreateObject
  664. cjson.o(i.cJSON_AddObjectToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  665. cjson.o(i.cJSON_AddObjectToObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  666. cjson.o(i.cJSON_AddObjectToObject) refers to cjson.o(.data) for global_hooks
  667. cjson.o(i.cJSON_AddRawToObject) refers to cjson.o(i.cJSON_CreateRaw) for cJSON_CreateRaw
  668. cjson.o(i.cJSON_AddRawToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  669. cjson.o(i.cJSON_AddRawToObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  670. cjson.o(i.cJSON_AddRawToObject) refers to cjson.o(.data) for global_hooks
  671. cjson.o(i.cJSON_AddStringToObject) refers to cjson.o(i.cJSON_CreateString) for cJSON_CreateString
  672. cjson.o(i.cJSON_AddStringToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  673. cjson.o(i.cJSON_AddStringToObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  674. cjson.o(i.cJSON_AddStringToObject) refers to cjson.o(.data) for global_hooks
  675. cjson.o(i.cJSON_AddTrueToObject) refers to cjson.o(i.cJSON_CreateTrue) for cJSON_CreateTrue
  676. cjson.o(i.cJSON_AddTrueToObject) refers to cjson.o(i.add_item_to_object) for add_item_to_object
  677. cjson.o(i.cJSON_AddTrueToObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  678. cjson.o(i.cJSON_AddTrueToObject) refers to cjson.o(.data) for global_hooks
  679. cjson.o(i.cJSON_Compare) refers to cjson.o(i.compare_double) for compare_double
  680. cjson.o(i.cJSON_Compare) refers to strcmp.o(.text) for strcmp
  681. cjson.o(i.cJSON_Compare) refers to cjson.o(i.get_object_item) for get_object_item
  682. cjson.o(i.cJSON_CreateArray) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  683. cjson.o(i.cJSON_CreateArray) refers to cjson.o(.data) for global_hooks
  684. cjson.o(i.cJSON_CreateArrayReference) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  685. cjson.o(i.cJSON_CreateArrayReference) refers to cjson.o(i.cast_away_const) for cast_away_const
  686. cjson.o(i.cJSON_CreateArrayReference) refers to cjson.o(.data) for global_hooks
  687. cjson.o(i.cJSON_CreateBool) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  688. cjson.o(i.cJSON_CreateBool) refers to cjson.o(.data) for global_hooks
  689. cjson.o(i.cJSON_CreateDoubleArray) refers to cjson.o(i.cJSON_CreateArray) for cJSON_CreateArray
  690. cjson.o(i.cJSON_CreateDoubleArray) refers to cjson.o(i.cJSON_CreateNumber) for cJSON_CreateNumber
  691. cjson.o(i.cJSON_CreateDoubleArray) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  692. cjson.o(i.cJSON_CreateDoubleArray) refers to cjson.o(i.suffix_object) for suffix_object
  693. cjson.o(i.cJSON_CreateFalse) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  694. cjson.o(i.cJSON_CreateFalse) refers to cjson.o(.data) for global_hooks
  695. cjson.o(i.cJSON_CreateFloatArray) refers to cjson.o(i.cJSON_CreateArray) for cJSON_CreateArray
  696. cjson.o(i.cJSON_CreateFloatArray) refers to f2d.o(.text) for __aeabi_f2d
  697. cjson.o(i.cJSON_CreateFloatArray) refers to cjson.o(i.cJSON_CreateNumber) for cJSON_CreateNumber
  698. cjson.o(i.cJSON_CreateFloatArray) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  699. cjson.o(i.cJSON_CreateFloatArray) refers to cjson.o(i.suffix_object) for suffix_object
  700. cjson.o(i.cJSON_CreateIntArray) refers to cjson.o(i.cJSON_CreateArray) for cJSON_CreateArray
  701. cjson.o(i.cJSON_CreateIntArray) refers to dflti.o(.text) for __aeabi_i2d
  702. cjson.o(i.cJSON_CreateIntArray) refers to cjson.o(i.cJSON_CreateNumber) for cJSON_CreateNumber
  703. cjson.o(i.cJSON_CreateIntArray) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  704. cjson.o(i.cJSON_CreateIntArray) refers to cjson.o(i.suffix_object) for suffix_object
  705. cjson.o(i.cJSON_CreateNull) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  706. cjson.o(i.cJSON_CreateNull) refers to cjson.o(.data) for global_hooks
  707. cjson.o(i.cJSON_CreateNumber) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  708. cjson.o(i.cJSON_CreateNumber) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
  709. cjson.o(i.cJSON_CreateNumber) refers to cdcmple.o(.text) for __aeabi_cdcmple
  710. cjson.o(i.cJSON_CreateNumber) refers to dfixi.o(.text) for __aeabi_d2iz
  711. cjson.o(i.cJSON_CreateNumber) refers to cjson.o(.data) for global_hooks
  712. cjson.o(i.cJSON_CreateObject) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  713. cjson.o(i.cJSON_CreateObject) refers to cjson.o(.data) for global_hooks
  714. cjson.o(i.cJSON_CreateObjectReference) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  715. cjson.o(i.cJSON_CreateObjectReference) refers to cjson.o(i.cast_away_const) for cast_away_const
  716. cjson.o(i.cJSON_CreateObjectReference) refers to cjson.o(.data) for global_hooks
  717. cjson.o(i.cJSON_CreateRaw) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  718. cjson.o(i.cJSON_CreateRaw) refers to cjson.o(i.cJSON_strdup) for cJSON_strdup
  719. cjson.o(i.cJSON_CreateRaw) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  720. cjson.o(i.cJSON_CreateRaw) refers to cjson.o(.data) for global_hooks
  721. cjson.o(i.cJSON_CreateString) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  722. cjson.o(i.cJSON_CreateString) refers to cjson.o(i.cJSON_strdup) for cJSON_strdup
  723. cjson.o(i.cJSON_CreateString) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  724. cjson.o(i.cJSON_CreateString) refers to cjson.o(.data) for global_hooks
  725. cjson.o(i.cJSON_CreateStringArray) refers to cjson.o(i.cJSON_CreateArray) for cJSON_CreateArray
  726. cjson.o(i.cJSON_CreateStringArray) refers to cjson.o(i.cJSON_CreateString) for cJSON_CreateString
  727. cjson.o(i.cJSON_CreateStringArray) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  728. cjson.o(i.cJSON_CreateStringArray) refers to cjson.o(i.suffix_object) for suffix_object
  729. cjson.o(i.cJSON_CreateStringReference) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  730. cjson.o(i.cJSON_CreateStringReference) refers to cjson.o(i.cast_away_const) for cast_away_const
  731. cjson.o(i.cJSON_CreateStringReference) refers to cjson.o(.data) for global_hooks
  732. cjson.o(i.cJSON_CreateTrue) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  733. cjson.o(i.cJSON_CreateTrue) refers to cjson.o(.data) for global_hooks
  734. cjson.o(i.cJSON_Delete) refers to cjson.o(.data) for global_hooks
  735. cjson.o(i.cJSON_DeleteItemFromArray) refers to cjson.o(i.cJSON_DetachItemFromArray) for cJSON_DetachItemFromArray
  736. cjson.o(i.cJSON_DeleteItemFromArray) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  737. cjson.o(i.cJSON_DeleteItemFromObject) refers to cjson.o(i.cJSON_DetachItemFromObject) for cJSON_DetachItemFromObject
  738. cjson.o(i.cJSON_DeleteItemFromObject) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  739. cjson.o(i.cJSON_DeleteItemFromObjectCaseSensitive) refers to cjson.o(i.cJSON_DetachItemFromObjectCaseSensitive) for cJSON_DetachItemFromObjectCaseSensitive
  740. cjson.o(i.cJSON_DeleteItemFromObjectCaseSensitive) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  741. cjson.o(i.cJSON_DetachItemFromArray) refers to cjson.o(i.get_array_item) for get_array_item
  742. cjson.o(i.cJSON_DetachItemFromArray) refers to cjson.o(i.cJSON_DetachItemViaPointer) for cJSON_DetachItemViaPointer
  743. cjson.o(i.cJSON_DetachItemFromObject) refers to cjson.o(i.cJSON_GetObjectItem) for cJSON_GetObjectItem
  744. cjson.o(i.cJSON_DetachItemFromObject) refers to cjson.o(i.cJSON_DetachItemViaPointer) for cJSON_DetachItemViaPointer
  745. cjson.o(i.cJSON_DetachItemFromObjectCaseSensitive) refers to cjson.o(i.cJSON_GetObjectItemCaseSensitive) for cJSON_GetObjectItemCaseSensitive
  746. cjson.o(i.cJSON_DetachItemFromObjectCaseSensitive) refers to cjson.o(i.cJSON_DetachItemViaPointer) for cJSON_DetachItemViaPointer
  747. cjson.o(i.cJSON_Duplicate) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  748. cjson.o(i.cJSON_Duplicate) refers to cjson.o(i.cJSON_strdup) for cJSON_strdup
  749. cjson.o(i.cJSON_Duplicate) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  750. cjson.o(i.cJSON_Duplicate) refers to cjson.o(.data) for global_hooks
  751. cjson.o(i.cJSON_GetArrayItem) refers to cjson.o(i.get_array_item) for get_array_item
  752. cjson.o(i.cJSON_GetErrorPtr) refers to cjson.o(.data) for global_error
  753. cjson.o(i.cJSON_GetNumberValue) refers to cjson.o(i.cJSON_IsNumber) for cJSON_IsNumber
  754. cjson.o(i.cJSON_GetObjectItem) refers to cjson.o(i.get_object_item) for get_object_item
  755. cjson.o(i.cJSON_GetObjectItemCaseSensitive) refers to cjson.o(i.get_object_item) for get_object_item
  756. cjson.o(i.cJSON_GetStringValue) refers to cjson.o(i.cJSON_IsString) for cJSON_IsString
  757. cjson.o(i.cJSON_HasObjectItem) refers to cjson.o(i.cJSON_GetObjectItem) for cJSON_GetObjectItem
  758. cjson.o(i.cJSON_InitHooks) refers to mallocr.o(i.__malloc$realloc) for malloc
  759. cjson.o(i.cJSON_InitHooks) refers to cjson.o(.data) for global_hooks
  760. cjson.o(i.cJSON_InitHooks) refers to mallocr.o(i.__free$realloc) for free
  761. cjson.o(i.cJSON_InitHooks) refers to mallocr.o(i.realloc) for realloc
  762. cjson.o(i.cJSON_InsertItemInArray) refers to cjson.o(i.get_array_item) for get_array_item
  763. cjson.o(i.cJSON_InsertItemInArray) refers to cjson.o(i.add_item_to_array) for add_item_to_array
  764. cjson.o(i.cJSON_Minify) refers to cjson.o(i.skip_oneline_comment) for skip_oneline_comment
  765. cjson.o(i.cJSON_Minify) refers to cjson.o(i.skip_multiline_comment) for skip_multiline_comment
  766. cjson.o(i.cJSON_Minify) refers to cjson.o(i.minify_string) for minify_string
  767. cjson.o(i.cJSON_New_Item) refers to memseta.o(.text) for __aeabi_memclr4
  768. cjson.o(i.cJSON_Parse) refers to cjson.o(i.cJSON_ParseWithOpts) for cJSON_ParseWithOpts
  769. cjson.o(i.cJSON_ParseWithLength) refers to cjson.o(i.cJSON_ParseWithLengthOpts) for cJSON_ParseWithLengthOpts
  770. cjson.o(i.cJSON_ParseWithLengthOpts) refers to memseta.o(.text) for __aeabi_memclr4
  771. cjson.o(i.cJSON_ParseWithLengthOpts) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  772. cjson.o(i.cJSON_ParseWithLengthOpts) refers to cjson.o(i.skip_utf8_bom) for skip_utf8_bom
  773. cjson.o(i.cJSON_ParseWithLengthOpts) refers to cjson.o(i.buffer_skip_whitespace) for buffer_skip_whitespace
  774. cjson.o(i.cJSON_ParseWithLengthOpts) refers to cjson.o(i.parse_value) for parse_value
  775. cjson.o(i.cJSON_ParseWithLengthOpts) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  776. cjson.o(i.cJSON_ParseWithLengthOpts) refers to cjson.o(.data) for global_error
  777. cjson.o(i.cJSON_ParseWithOpts) refers to strlen.o(.text) for strlen
  778. cjson.o(i.cJSON_ParseWithOpts) refers to cjson.o(i.cJSON_ParseWithLengthOpts) for cJSON_ParseWithLengthOpts
  779. cjson.o(i.cJSON_Print) refers to cjson.o(i.print) for print
  780. cjson.o(i.cJSON_Print) refers to cjson.o(.data) for global_hooks
  781. cjson.o(i.cJSON_PrintBuffered) refers to memseta.o(.text) for __aeabi_memclr4
  782. cjson.o(i.cJSON_PrintBuffered) refers to cjson.o(i.print_value) for print_value
  783. cjson.o(i.cJSON_PrintBuffered) refers to cjson.o(.data) for global_hooks
  784. cjson.o(i.cJSON_PrintPreallocated) refers to memseta.o(.text) for __aeabi_memclr4
  785. cjson.o(i.cJSON_PrintPreallocated) refers to cjson.o(i.print_value) for print_value
  786. cjson.o(i.cJSON_PrintPreallocated) refers to cjson.o(.data) for global_hooks
  787. cjson.o(i.cJSON_PrintUnformatted) refers to cjson.o(i.print) for print
  788. cjson.o(i.cJSON_PrintUnformatted) refers to cjson.o(.data) for global_hooks
  789. cjson.o(i.cJSON_ReplaceItemInArray) refers to cjson.o(i.get_array_item) for get_array_item
  790. cjson.o(i.cJSON_ReplaceItemInArray) refers to cjson.o(i.cJSON_ReplaceItemViaPointer) for cJSON_ReplaceItemViaPointer
  791. cjson.o(i.cJSON_ReplaceItemInObject) refers to cjson.o(i.replace_item_in_object) for replace_item_in_object
  792. cjson.o(i.cJSON_ReplaceItemInObjectCaseSensitive) refers to cjson.o(i.replace_item_in_object) for replace_item_in_object
  793. cjson.o(i.cJSON_ReplaceItemViaPointer) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  794. cjson.o(i.cJSON_SetNumberHelper) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
  795. cjson.o(i.cJSON_SetNumberHelper) refers to cdcmple.o(.text) for __aeabi_cdcmple
  796. cjson.o(i.cJSON_SetNumberHelper) refers to dfixi.o(.text) for __aeabi_d2iz
  797. cjson.o(i.cJSON_SetValuestring) refers to strlen.o(.text) for strlen
  798. cjson.o(i.cJSON_SetValuestring) refers to strcpy.o(.text) for strcpy
  799. cjson.o(i.cJSON_SetValuestring) refers to cjson.o(i.cJSON_strdup) for cJSON_strdup
  800. cjson.o(i.cJSON_SetValuestring) refers to cjson.o(i.cJSON_free) for cJSON_free
  801. cjson.o(i.cJSON_SetValuestring) refers to cjson.o(.data) for global_hooks
  802. cjson.o(i.cJSON_Version) refers to printfa.o(i.__0sprintf) for __2sprintf
  803. cjson.o(i.cJSON_Version) refers to cjson.o(.bss) for version
  804. cjson.o(i.cJSON_free) refers to cjson.o(.data) for global_hooks
  805. cjson.o(i.cJSON_malloc) refers to cjson.o(.data) for global_hooks
  806. cjson.o(i.cJSON_strdup) refers to strlen.o(.text) for strlen
  807. cjson.o(i.cJSON_strdup) refers to memcpya.o(.text) for __aeabi_memcpy
  808. cjson.o(i.case_insensitive_strcmp) refers to tolower.o(.text) for tolower
  809. cjson.o(i.compare_double) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
  810. cjson.o(i.compare_double) refers to dmul.o(.text) for __aeabi_dmul
  811. cjson.o(i.compare_double) refers to dadd.o(.text) for __aeabi_dsub
  812. cjson.o(i.compare_double) refers to cdcmple.o(.text) for __aeabi_cdcmple
  813. cjson.o(i.create_reference) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  814. cjson.o(i.create_reference) refers to memcpya.o(.text) for __aeabi_memcpy4
  815. cjson.o(i.ensure) refers to memcpya.o(.text) for __aeabi_memcpy
  816. cjson.o(i.get_object_item) refers to strcmp.o(.text) for strcmp
  817. cjson.o(i.get_object_item) refers to cjson.o(i.case_insensitive_strcmp) for case_insensitive_strcmp
  818. cjson.o(i.parse_array) refers to cjson.o(i.buffer_skip_whitespace) for buffer_skip_whitespace
  819. cjson.o(i.parse_array) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  820. cjson.o(i.parse_array) refers to cjson.o(i.parse_value) for parse_value
  821. cjson.o(i.parse_array) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  822. cjson.o(i.parse_number) refers to cjson.o(i.get_decimal_point) for get_decimal_point
  823. cjson.o(i.parse_number) refers to strtod.o(i.strtod) for strtod
  824. cjson.o(i.parse_number) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
  825. cjson.o(i.parse_number) refers to cdcmple.o(.text) for __aeabi_cdcmple
  826. cjson.o(i.parse_number) refers to dfixi.o(.text) for __aeabi_d2iz
  827. cjson.o(i.parse_object) refers to cjson.o(i.buffer_skip_whitespace) for buffer_skip_whitespace
  828. cjson.o(i.parse_object) refers to cjson.o(i.cJSON_New_Item) for cJSON_New_Item
  829. cjson.o(i.parse_object) refers to cjson.o(i.parse_string) for parse_string
  830. cjson.o(i.parse_object) refers to cjson.o(i.parse_value) for parse_value
  831. cjson.o(i.parse_object) refers to cjson.o(i.cJSON_Delete) for cJSON_Delete
  832. cjson.o(i.parse_string) refers to cjson.o(i.utf16_literal_to_utf8) for utf16_literal_to_utf8
  833. cjson.o(i.parse_value) refers to strncmp.o(.text) for strncmp
  834. cjson.o(i.parse_value) refers to cjson.o(i.parse_string) for parse_string
  835. cjson.o(i.parse_value) refers to cjson.o(i.parse_number) for parse_number
  836. cjson.o(i.parse_value) refers to cjson.o(i.parse_array) for parse_array
  837. cjson.o(i.parse_value) refers to cjson.o(i.parse_object) for parse_object
  838. cjson.o(i.print) refers to memseta.o(.text) for __aeabi_memclr4
  839. cjson.o(i.print) refers to cjson.o(i.print_value) for print_value
  840. cjson.o(i.print) refers to cjson.o(i.update_offset) for update_offset
  841. cjson.o(i.print) refers to memcpya.o(.text) for __aeabi_memcpy
  842. cjson.o(i.print_array) refers to cjson.o(i.ensure) for ensure
  843. cjson.o(i.print_array) refers to cjson.o(i.print_value) for print_value
  844. cjson.o(i.print_array) refers to cjson.o(i.update_offset) for update_offset
  845. cjson.o(i.print_number) refers to scanf_fp.o(.text) for _scanf_real
  846. cjson.o(i.print_number) refers to memseta.o(.text) for __aeabi_memclr4
  847. cjson.o(i.print_number) refers to cjson.o(i.get_decimal_point) for get_decimal_point
  848. cjson.o(i.print_number) refers to printfa.o(i.__0sprintf) for __2sprintf
  849. cjson.o(i.print_number) refers to dflti.o(.text) for __aeabi_i2d
  850. cjson.o(i.print_number) refers to cdcmple.o(.text) for __aeabi_cdcmpeq
  851. cjson.o(i.print_number) refers to __0sscanf.o(.text) for __0sscanf
  852. cjson.o(i.print_number) refers to cjson.o(i.compare_double) for compare_double
  853. cjson.o(i.print_number) refers to cjson.o(i.ensure) for ensure
  854. cjson.o(i.print_object) refers to cjson.o(i.ensure) for ensure
  855. cjson.o(i.print_object) refers to cjson.o(i.print_string_ptr) for print_string_ptr
  856. cjson.o(i.print_object) refers to cjson.o(i.update_offset) for update_offset
  857. cjson.o(i.print_object) refers to cjson.o(i.print_value) for print_value
  858. cjson.o(i.print_string) refers to cjson.o(i.print_string_ptr) for print_string_ptr
  859. cjson.o(i.print_string_ptr) refers to cjson.o(i.ensure) for ensure
  860. cjson.o(i.print_string_ptr) refers to strcpy.o(.text) for strcpy
  861. cjson.o(i.print_string_ptr) refers to memcpya.o(.text) for __aeabi_memcpy
  862. cjson.o(i.print_string_ptr) refers to printfa.o(i.__0sprintf) for __2sprintf
  863. cjson.o(i.print_value) refers to cjson.o(i.ensure) for ensure
  864. cjson.o(i.print_value) refers to strcpy.o(.text) for strcpy
  865. cjson.o(i.print_value) refers to cjson.o(i.print_number) for print_number
  866. cjson.o(i.print_value) refers to strlen.o(.text) for strlen
  867. cjson.o(i.print_value) refers to memcpya.o(.text) for __aeabi_memcpy
  868. cjson.o(i.print_value) refers to cjson.o(i.print_string) for print_string
  869. cjson.o(i.print_value) refers to cjson.o(i.print_array) for print_array
  870. cjson.o(i.print_value) refers to cjson.o(i.print_object) for print_object
  871. cjson.o(i.replace_item_in_object) refers to cjson.o(i.cJSON_free) for cJSON_free
  872. cjson.o(i.replace_item_in_object) refers to cjson.o(i.cJSON_strdup) for cJSON_strdup
  873. cjson.o(i.replace_item_in_object) refers to cjson.o(i.get_object_item) for get_object_item
  874. cjson.o(i.replace_item_in_object) refers to cjson.o(i.cJSON_ReplaceItemViaPointer) for cJSON_ReplaceItemViaPointer
  875. cjson.o(i.replace_item_in_object) refers to cjson.o(.data) for global_hooks
  876. cjson.o(i.skip_utf8_bom) refers to strncmp.o(.text) for strncmp
  877. cjson.o(i.update_offset) refers to strlen.o(.text) for strlen
  878. cjson.o(i.utf16_literal_to_utf8) refers to cjson.o(i.parse_hex4) for parse_hex4
  879. cjson.o(.data) refers to mallocr.o(i.__malloc$realloc) for malloc
  880. cjson.o(.data) refers to mallocr.o(i.__free$realloc) for free
  881. cjson.o(.data) refers to mallocr.o(i.realloc) for realloc
  882. dlt645.o(i.dlt645_read_data) refers to dlt645_1997.o(i.dlt645_1997_read_data) for dlt645_1997_read_data
  883. dlt645.o(i.dlt645_read_data) refers to dlt645_2007.o(i.dlt645_2007_read_data) for dlt645_2007_read_data
  884. dlt645.o(i.dlt645_receive_msg) refers to dlt645_1997.o(i.dlt645_1997_recv_check) for dlt645_1997_recv_check
  885. dlt645.o(i.dlt645_receive_msg) refers to dlt645_2007.o(i.dlt645_2007_recv_check) for dlt645_2007_recv_check
  886. dlt645.o(i.dlt645_send_msg) refers to dlt645_data.o(i._crc) for _crc
  887. dlt645_2007.o(i.dlt645_2007_parsing_data) refers to dlt645_data.o(i.dlt645_data_parse_by_format_to_float) for dlt645_data_parse_by_format_to_float
  888. dlt645_2007.o(i.dlt645_2007_read_data) refers to memseta.o(.text) for __aeabi_memclr4
  889. dlt645_2007.o(i.dlt645_2007_read_data) refers to dlt645.o(i.dlt645_send_msg) for dlt645_send_msg
  890. dlt645_2007.o(i.dlt645_2007_read_data) refers to dlt645.o(i.dlt645_receive_msg) for dlt645_receive_msg
  891. dlt645_2007.o(i.dlt645_2007_read_data) refers to dlt645_2007.o(i.dlt645_2007_parsing_data) for dlt645_2007_parsing_data
  892. dlt645_2007.o(i.dlt645_2007_recv_check) refers to dlt645_data.o(i.dlt645_common_check) for dlt645_common_check
  893. dlt645_2007.o(i.dlt645_write_data) refers to memseta.o(.text) for __aeabi_memclr4
  894. dlt645_2007.o(i.dlt645_write_data) refers to memcpya.o(.text) for __aeabi_memcpy
  895. dlt645_2007.o(i.dlt645_write_data) refers to dlt645.o(i.dlt645_send_msg) for dlt645_send_msg
  896. dlt645_2007.o(i.dlt645_write_data) refers to dlt645.o(i.dlt645_receive_msg) for dlt645_receive_msg
  897. dlt645_data.o(i.data_package_translate_to_int) refers to dfltui.o(.text) for __aeabi_ui2d
  898. dlt645_data.o(i.data_package_translate_to_int) refers to pow.o(i.pow) for pow
  899. dlt645_data.o(i.data_package_translate_to_int) refers to dflti.o(.text) for __aeabi_i2d
  900. dlt645_data.o(i.data_package_translate_to_int) refers to dmul.o(.text) for __aeabi_dmul
  901. dlt645_data.o(i.data_package_translate_to_int) refers to dadd.o(.text) for __aeabi_dadd
  902. dlt645_data.o(i.data_package_translate_to_int) refers to dfixi.o(.text) for __aeabi_d2iz
  903. dlt645_data.o(i.dlt645_common_check) refers to dlt645_data.o(i._crc) for _crc
  904. dlt645_data.o(i.dlt645_common_check) refers to memcmp.o(.text) for memcmp
  905. dlt645_data.o(i.dlt645_data_parse_by_format_to_float) refers to dlt645_data.o(i.data_package_translate_to_int) for data_package_translate_to_int
  906. dlt645_data.o(i.dlt645_data_parse_by_format_to_float) refers to strlen.o(.text) for strlen
  907. dlt645_data.o(i.dlt645_data_parse_by_format_to_float) refers to dflti.o(.text) for __aeabi_i2d
  908. dlt645_data.o(i.dlt645_data_parse_by_format_to_float) refers to pow.o(i.pow) for pow
  909. dlt645_data.o(i.dlt645_data_parse_by_format_to_float) refers to ddiv.o(.text) for __aeabi_ddiv
  910. dlt645_data.o(i.dlt645_data_parse_by_format_to_float) refers to d2f.o(.text) for __aeabi_d2f
  911. dlt645_data.o(i.dlt645_data_parse_by_format_to_float_and_DATE) refers to dlt645_data.o(i.data_package_translate_to_int) for data_package_translate_to_int
  912. dlt645_data.o(i.dlt645_data_parse_by_format_to_float_and_DATE) refers to strlen.o(.text) for strlen
  913. dlt645_data.o(i.dlt645_data_parse_by_format_to_float_and_DATE) refers to dflti.o(.text) for __aeabi_i2d
  914. dlt645_data.o(i.dlt645_data_parse_by_format_to_float_and_DATE) refers to pow.o(i.pow) for pow
  915. dlt645_data.o(i.dlt645_data_parse_by_format_to_float_and_DATE) refers to ddiv.o(.text) for __aeabi_ddiv
  916. dlt645_data.o(i.dlt645_data_parse_by_format_to_float_and_DATE) refers to d2f.o(.text) for __aeabi_d2f
  917. dlt645_data.o(i.str_to_bcd) refers to strlen.o(.text) for strlen
  918. dlt645_data.o(i.str_to_bcd) refers to memseta.o(.text) for __aeabi_memclr
  919. dlt645_port.o(i.dlt645_hw_read) refers to systick.o(i.gettick) for gettick
  920. dlt645_port.o(i.dlt645_hw_read) refers to memcpya.o(.text) for __aeabi_memcpy
  921. dlt645_port.o(i.dlt645_hw_read) refers to dlt645_port.o(.bss) for dlt645_port
  922. dlt645_port.o(i.dlt645_hw_write) refers to memseta.o(.text) for __aeabi_memclr4
  923. dlt645_port.o(i.dlt645_hw_write) refers to systick.o(i.delay_1ms) for delay_1ms
  924. dlt645_port.o(i.dlt645_hw_write) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  925. dlt645_port.o(i.dlt645_hw_write) refers to gd32f10x_usart.o(i.usart_data_transmit) for usart_data_transmit
  926. dlt645_port.o(i.dlt645_hw_write) refers to gd32f10x_usart.o(i.usart_flag_get) for usart_flag_get
  927. dlt645_port.o(i.dlt645_hw_write) refers to gd32f10x_gpio.o(i.gpio_bit_reset) for gpio_bit_reset
  928. dlt645_port.o(i.dlt645_hw_write) refers to dlt645_port.o(.bss) for dlt645_port
  929. dlt645_port.o(i.dlt645_init) refers to gd32f10x_gpio.o(i.gpio_bit_set) for gpio_bit_set
  930. dlt645_port.o(i.dlt645_init) refers to dlt645_port.o(.bss) for dlt645_port
  931. dlt645_port.o(i.dlt_callback) refers to gd32f10x_usart.o(i.usart_interrupt_flag_get) for usart_interrupt_flag_get
  932. dlt645_port.o(i.dlt_callback) refers to gd32f10x_usart.o(i.usart_data_receive) for usart_data_receive
  933. dlt645_port.o(i.dlt_callback) refers to gd32f10x_usart.o(i.usart_interrupt_flag_clear) for usart_interrupt_flag_clear
  934. dlt645_port.o(i.dlt_callback) refers to dlt645_port.o(.bss) for dlt645_port
  935. dlt645_port.o(.data) refers to dlt645_port.o(i.dlt645_hw_write) for dlt645_hw_write
  936. dlt645_port.o(.data) refers to dlt645_port.o(i.dlt645_hw_read) for dlt645_hw_read
  937. dlt645_port.o(.data) refers to dlt645_port.o(.bss) for dlt645_port
  938. dlt645_1997.o(i.dlt645_1997_parsing_data) refers to dlt645_data.o(i.dlt645_data_parse_by_format_to_float) for dlt645_data_parse_by_format_to_float
  939. dlt645_1997.o(i.dlt645_1997_read_data) refers to memseta.o(.text) for __aeabi_memclr4
  940. dlt645_1997.o(i.dlt645_1997_read_data) refers to dlt645.o(i.dlt645_send_msg) for dlt645_send_msg
  941. dlt645_1997.o(i.dlt645_1997_read_data) refers to dlt645.o(i.dlt645_receive_msg) for dlt645_receive_msg
  942. dlt645_1997.o(i.dlt645_1997_read_data) refers to dlt645_1997.o(i.dlt645_1997_parsing_data) for dlt645_1997_parsing_data
  943. dlt645_1997.o(i.dlt645_1997_recv_check) refers to dlt645_data.o(i.dlt645_common_check) for dlt645_common_check
  944. pow.o(i.__softfp_pow) refers (Special) to iusefp.o(.text) for __I$use$fp
  945. pow.o(i.__softfp_pow) refers to pow.o(i.pow) for pow
  946. pow.o(i.pow) refers (Special) to iusefp.o(.text) for __I$use$fp
  947. pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_infnan2) for __mathlib_dbl_infnan2
  948. pow.o(i.pow) refers to errno.o(i.__set_errno) for __set_errno
  949. pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_divzero) for __mathlib_dbl_divzero
  950. pow.o(i.pow) refers to ddiv.o(.text) for __aeabi_ddiv
  951. pow.o(i.pow) refers to sqrt.o(i.sqrt) for sqrt
  952. pow.o(i.pow) refers to dmul.o(.text) for __aeabi_dmul
  953. pow.o(i.pow) refers to dflti.o(.text) for __aeabi_i2d
  954. pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_invalid) for __mathlib_dbl_invalid
  955. pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_overflow) for __mathlib_dbl_overflow
  956. pow.o(i.pow) refers to dunder.o(i.__mathlib_dbl_underflow) for __mathlib_dbl_underflow
  957. pow.o(i.pow) refers to dadd.o(.text) for __aeabi_dsub
  958. pow.o(i.pow) refers to dscalb.o(.text) for __ARM_scalbn
  959. pow.o(i.pow) refers to qnan.o(.constdata) for __mathlib_zero
  960. pow.o(i.pow) refers to poly.o(i.__kernel_poly) for __kernel_poly
  961. pow.o(i.pow) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
  962. pow.o(i.pow) refers to pow.o(.constdata) for .constdata
  963. pow.o(i.pow) refers to fpclassify.o(i.__ARM_fpclassify) for __ARM_fpclassify
  964. pow.o(.constdata) refers (Special) to iusefp.o(.text) for __I$use$fp
  965. pow_x.o(i.____softfp_pow$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
  966. pow_x.o(i.____softfp_pow$lsc) refers to pow_x.o(i.__pow$lsc) for __pow$lsc
  967. pow_x.o(i.__pow$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
  968. pow_x.o(i.__pow$lsc) refers to dunder.o(i.__mathlib_dbl_infnan2) for __mathlib_dbl_infnan2
  969. pow_x.o(i.__pow$lsc) refers to errno.o(i.__set_errno) for __set_errno
  970. pow_x.o(i.__pow$lsc) refers to ddiv.o(.text) for __aeabi_ddiv
  971. pow_x.o(i.__pow$lsc) refers to sqrt.o(i.sqrt) for sqrt
  972. pow_x.o(i.__pow$lsc) refers to dmul.o(.text) for __aeabi_dmul
  973. pow_x.o(i.__pow$lsc) refers to dflti.o(.text) for __aeabi_i2d
  974. pow_x.o(i.__pow$lsc) refers to dadd.o(.text) for __aeabi_dsub
  975. pow_x.o(i.__pow$lsc) refers to dscalb.o(.text) for __ARM_scalbn
  976. pow_x.o(i.__pow$lsc) refers to qnan.o(.constdata) for __mathlib_zero
  977. pow_x.o(i.__pow$lsc) refers to poly.o(i.__kernel_poly) for __kernel_poly
  978. pow_x.o(i.__pow$lsc) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
  979. pow_x.o(i.__pow$lsc) refers to pow_x.o(.constdata) for .constdata
  980. pow_x.o(.constdata) refers (Special) to iusefp.o(.text) for __I$use$fp
  981. strtod.o(i.__softfp_strtod) refers (Special) to iusefp.o(.text) for __I$use$fp
  982. strtod.o(i.__softfp_strtod) refers to strtod.o(.text) for __strtod_int
  983. strtod.o(i.strtod) refers (Special) to iusefp.o(.text) for __I$use$fp
  984. strtod.o(i.strtod) refers to strtod.o(.text) for __strtod_int
  985. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp
  986. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit
  987. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock
  988. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init
  989. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init
  990. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload
  991. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk
  992. printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  993. printfb.o(i.__0fprintf$bare) refers to log.o(i.fputc) for fputc
  994. printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core
  995. printfb.o(i.__0printf$bare) refers to log.o(i.fputc) for fputc
  996. printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout
  997. printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  998. printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc
  999. printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  1000. printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc
  1001. printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  1002. printfb.o(i.__0vfprintf$bare) refers to log.o(i.fputc) for fputc
  1003. printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  1004. printfb.o(i.__0vprintf$bare) refers to log.o(i.fputc) for fputc
  1005. printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout
  1006. printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  1007. printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc
  1008. printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  1009. printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc
  1010. printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  1011. printf0.o(i.__0fprintf$0) refers to log.o(i.fputc) for fputc
  1012. printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core
  1013. printf0.o(i.__0printf$0) refers to log.o(i.fputc) for fputc
  1014. printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout
  1015. printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  1016. printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc
  1017. printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  1018. printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc
  1019. printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  1020. printf0.o(i.__0vfprintf$0) refers to log.o(i.fputc) for fputc
  1021. printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  1022. printf0.o(i.__0vprintf$0) refers to log.o(i.fputc) for fputc
  1023. printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout
  1024. printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  1025. printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc
  1026. printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  1027. printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc
  1028. printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  1029. printf1.o(i.__0fprintf$1) refers to log.o(i.fputc) for fputc
  1030. printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core
  1031. printf1.o(i.__0printf$1) refers to log.o(i.fputc) for fputc
  1032. printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout
  1033. printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  1034. printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc
  1035. printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  1036. printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc
  1037. printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  1038. printf1.o(i.__0vfprintf$1) refers to log.o(i.fputc) for fputc
  1039. printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  1040. printf1.o(i.__0vprintf$1) refers to log.o(i.fputc) for fputc
  1041. printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout
  1042. printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  1043. printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc
  1044. printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  1045. printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc
  1046. printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
  1047. printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  1048. printf2.o(i.__0fprintf$2) refers to log.o(i.fputc) for fputc
  1049. printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core
  1050. printf2.o(i.__0printf$2) refers to log.o(i.fputc) for fputc
  1051. printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout
  1052. printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  1053. printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc
  1054. printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  1055. printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc
  1056. printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  1057. printf2.o(i.__0vfprintf$2) refers to log.o(i.fputc) for fputc
  1058. printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  1059. printf2.o(i.__0vprintf$2) refers to log.o(i.fputc) for fputc
  1060. printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout
  1061. printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  1062. printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc
  1063. printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  1064. printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc
  1065. printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  1066. printf3.o(i.__0fprintf$3) refers to log.o(i.fputc) for fputc
  1067. printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core
  1068. printf3.o(i.__0printf$3) refers to log.o(i.fputc) for fputc
  1069. printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout
  1070. printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  1071. printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc
  1072. printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  1073. printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc
  1074. printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  1075. printf3.o(i.__0vfprintf$3) refers to log.o(i.fputc) for fputc
  1076. printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  1077. printf3.o(i.__0vprintf$3) refers to log.o(i.fputc) for fputc
  1078. printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout
  1079. printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  1080. printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc
  1081. printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  1082. printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc
  1083. printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
  1084. printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  1085. printf4.o(i.__0fprintf$4) refers to log.o(i.fputc) for fputc
  1086. printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core
  1087. printf4.o(i.__0printf$4) refers to log.o(i.fputc) for fputc
  1088. printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout
  1089. printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  1090. printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc
  1091. printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  1092. printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc
  1093. printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  1094. printf4.o(i.__0vfprintf$4) refers to log.o(i.fputc) for fputc
  1095. printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  1096. printf4.o(i.__0vprintf$4) refers to log.o(i.fputc) for fputc
  1097. printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout
  1098. printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  1099. printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc
  1100. printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  1101. printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc
  1102. printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  1103. printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  1104. printf5.o(i.__0fprintf$5) refers to log.o(i.fputc) for fputc
  1105. printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core
  1106. printf5.o(i.__0printf$5) refers to log.o(i.fputc) for fputc
  1107. printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout
  1108. printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  1109. printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc
  1110. printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  1111. printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc
  1112. printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  1113. printf5.o(i.__0vfprintf$5) refers to log.o(i.fputc) for fputc
  1114. printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  1115. printf5.o(i.__0vprintf$5) refers to log.o(i.fputc) for fputc
  1116. printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout
  1117. printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  1118. printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc
  1119. printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  1120. printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc
  1121. printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  1122. printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  1123. printf6.o(i.__0fprintf$6) refers to log.o(i.fputc) for fputc
  1124. printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core
  1125. printf6.o(i.__0printf$6) refers to log.o(i.fputc) for fputc
  1126. printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout
  1127. printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  1128. printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc
  1129. printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  1130. printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc
  1131. printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  1132. printf6.o(i.__0vfprintf$6) refers to log.o(i.fputc) for fputc
  1133. printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  1134. printf6.o(i.__0vprintf$6) refers to log.o(i.fputc) for fputc
  1135. printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout
  1136. printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  1137. printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc
  1138. printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  1139. printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc
  1140. printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding
  1141. printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
  1142. printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding
  1143. printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  1144. printf7.o(i.__0fprintf$7) refers to log.o(i.fputc) for fputc
  1145. printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core
  1146. printf7.o(i.__0printf$7) refers to log.o(i.fputc) for fputc
  1147. printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout
  1148. printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  1149. printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc
  1150. printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  1151. printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc
  1152. printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  1153. printf7.o(i.__0vfprintf$7) refers to log.o(i.fputc) for fputc
  1154. printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  1155. printf7.o(i.__0vprintf$7) refers to log.o(i.fputc) for fputc
  1156. printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout
  1157. printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  1158. printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc
  1159. printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  1160. printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc
  1161. printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding
  1162. printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  1163. printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding
  1164. printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  1165. printf8.o(i.__0fprintf$8) refers to log.o(i.fputc) for fputc
  1166. printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core
  1167. printf8.o(i.__0printf$8) refers to log.o(i.fputc) for fputc
  1168. printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout
  1169. printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  1170. printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc
  1171. printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  1172. printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc
  1173. printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  1174. printf8.o(i.__0vfprintf$8) refers to log.o(i.fputc) for fputc
  1175. printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  1176. printf8.o(i.__0vprintf$8) refers to log.o(i.fputc) for fputc
  1177. printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout
  1178. printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  1179. printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc
  1180. printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  1181. printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc
  1182. printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding
  1183. printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  1184. printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding
  1185. printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  1186. printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core
  1187. printfa.o(i.__0fprintf) refers to log.o(i.fputc) for fputc
  1188. printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp
  1189. printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core
  1190. printfa.o(i.__0printf) refers to log.o(i.fputc) for fputc
  1191. printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout
  1192. printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  1193. printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core
  1194. printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc
  1195. printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  1196. printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core
  1197. printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc
  1198. printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  1199. printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core
  1200. printfa.o(i.__0vfprintf) refers to log.o(i.fputc) for fputc
  1201. printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  1202. printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core
  1203. printfa.o(i.__0vprintf) refers to log.o(i.fputc) for fputc
  1204. printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout
  1205. printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  1206. printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core
  1207. printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc
  1208. printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  1209. printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core
  1210. printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc
  1211. printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp
  1212. printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul
  1213. printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv
  1214. printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
  1215. printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd
  1216. printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz
  1217. printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod
  1218. printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp
  1219. printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding
  1220. printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  1221. printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding
  1222. printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits
  1223. printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
  1224. printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
  1225. printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
  1226. printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp
  1227. printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp
  1228. malloc.o(i.free) refers to mvars.o(.data) for __microlib_freelist
  1229. malloc.o(i.malloc) refers to mvars.o(.data) for __microlib_freelist_initialised
  1230. malloc.o(i.malloc) refers to mvars.o(.data) for __microlib_freelist
  1231. malloc.o(i.malloc) refers to startup_gd32f10x_xd.o(HEAP) for __heap_base
  1232. mallocr.o(i.__free$realloc) refers to mvars.o(.data) for __microlib_freelist
  1233. mallocr.o(i.__malloc$realloc) refers to mallocr.o(i.internal_alloc) for internal_alloc
  1234. mallocr.o(i.__malloc$realloc) refers to mvars.o(.data) for __microlib_freelist_initialised
  1235. mallocr.o(i.__malloc$realloc) refers to startup_gd32f10x_xd.o(HEAP) for __heap_base
  1236. mallocr.o(i.__malloc$realloc) refers to mvars.o(.data) for __microlib_freelist
  1237. mallocr.o(i.internal_alloc) refers to memcpya.o(.text) for __aeabi_memcpy
  1238. mallocr.o(i.internal_alloc) refers to mvars.o(.data) for __microlib_freelist
  1239. mallocr.o(i.realloc) refers to mallocr.o(i.__free$realloc) for free
  1240. mallocr.o(i.realloc) refers to mallocr.o(i.internal_alloc) for internal_alloc
  1241. mallocr.o(i.realloc) refers to mallocr.o(i.__malloc$realloc) for malloc
  1242. mallocr.o(i.realloc) refers to mvars.o(.data) for __microlib_freelist
  1243. malloca.o(i.__aligned_malloc) refers to mvars.o(.data) for __microlib_freelist_initialised
  1244. malloca.o(i.__aligned_malloc) refers to mvars.o(.data) for __microlib_freelist
  1245. malloca.o(i.__aligned_malloc) refers to startup_gd32f10x_xd.o(HEAP) for __heap_base
  1246. malloca.o(i.__free$memalign) refers to mvars.o(.data) for __microlib_freelist
  1247. malloca.o(i.__malloc$memalign) refers to malloca.o(i.__aligned_malloc) for __aligned_malloc
  1248. mallocra.o(i.__aligned_malloc$realloc) refers to mallocra.o(i.internal_alloc) for internal_alloc
  1249. mallocra.o(i.__aligned_malloc$realloc) refers to mvars.o(.data) for __microlib_freelist_initialised
  1250. mallocra.o(i.__aligned_malloc$realloc) refers to startup_gd32f10x_xd.o(HEAP) for __heap_base
  1251. mallocra.o(i.__aligned_malloc$realloc) refers to mvars.o(.data) for __microlib_freelist
  1252. mallocra.o(i.__free$realloc$memalign) refers to mvars.o(.data) for __microlib_freelist
  1253. mallocra.o(i.__malloc$realloc$memalign) refers to mallocra.o(i.__aligned_malloc$realloc) for __aligned_malloc$realloc
  1254. mallocra.o(i.__realloc$memalign) refers to mallocra.o(i.__free$realloc$memalign) for __free$realloc$memalign
  1255. mallocra.o(i.__realloc$memalign) refers to mallocra.o(i.internal_alloc) for internal_alloc
  1256. mallocra.o(i.__realloc$memalign) refers to mallocra.o(i.__malloc$realloc$memalign) for __malloc$realloc$memalign
  1257. mallocra.o(i.__realloc$memalign) refers to mvars.o(.data) for __microlib_freelist
  1258. mallocra.o(i.internal_alloc) refers to memcpya.o(.text) for __aeabi_memcpy
  1259. mallocra.o(i.internal_alloc) refers to mvars.o(.data) for __microlib_freelist
  1260. __0sscanf.o(.text) refers to scanf_char.o(.text) for __vfscanf_char
  1261. __0sscanf.o(.text) refers to _sgetc.o(.text) for _sgetc
  1262. _scanf_int.o(.text) refers to _chval.o(.text) for _chval
  1263. scanf_fp.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1264. scanf_fp.o(.text) refers to dfltul.o(.text) for __aeabi_ul2d
  1265. scanf_fp.o(.text) refers to dmul.o(.text) for __aeabi_dmul
  1266. scanf_fp.o(.text) refers to ddiv.o(.text) for __aeabi_ddiv
  1267. scanf_fp.o(.text) refers to scanf_fp.o(i._is_digit) for _is_digit
  1268. scanf_fp.o(.text) refers to d2f.o(.text) for __aeabi_d2f
  1269. strtol.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1270. strtol.o(.text) refers to _strtoul.o(.text) for _strtoul
  1271. strtol.o(.text) refers to errno.o(i.__aeabi_errno_addr) for __aeabi_errno_addr
  1272. fmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1273. fdiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1274. fdiv.o(.text) refers to fepilogue.o(.text) for _float_round
  1275. dadd.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1276. dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl
  1277. dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr
  1278. dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue
  1279. dmul.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1280. dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue
  1281. ddiv.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1282. ddiv.o(.text) refers to depilogue.o(.text) for _double_round
  1283. ffltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1284. ffltui.o(.text) refers to fepilogue.o(.text) for _float_epilogue
  1285. dflti.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1286. dflti.o(.text) refers to depilogue.o(.text) for _double_epilogue
  1287. dfltui.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1288. dfltui.o(.text) refers to depilogue.o(.text) for _double_epilogue
  1289. ffixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1290. dfixi.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1291. dfixi.o(.text) refers to llushr.o(.text) for __aeabi_llsr
  1292. f2d.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1293. cdcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1294. cdrcmple.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1295. d2f.o(.text) refers (Special) to iusefp.o(.text) for __I$use$fp
  1296. d2f.o(.text) refers to fepilogue.o(.text) for _float_round
  1297. dunder.o(i.__mathlib_dbl_divzero) refers to ddiv.o(.text) for __aeabi_ddiv
  1298. dunder.o(i.__mathlib_dbl_infnan) refers to dscalb.o(.text) for __ARM_scalbn
  1299. dunder.o(i.__mathlib_dbl_infnan2) refers to dadd.o(.text) for __aeabi_dadd
  1300. dunder.o(i.__mathlib_dbl_invalid) refers to ddiv.o(.text) for __aeabi_ddiv
  1301. dunder.o(i.__mathlib_dbl_overflow) refers to dscalb.o(.text) for __ARM_scalbn
  1302. dunder.o(i.__mathlib_dbl_posinfnan) refers to dmul.o(.text) for __aeabi_dmul
  1303. dunder.o(i.__mathlib_dbl_underflow) refers to dscalb.o(.text) for __ARM_scalbn
  1304. fpclassify.o(i.__ARM_fpclassify) refers (Special) to iusefp.o(.text) for __I$use$fp
  1305. poly.o(i.__kernel_poly) refers (Special) to iusefp.o(.text) for __I$use$fp
  1306. poly.o(i.__kernel_poly) refers to dmul.o(.text) for __aeabi_dmul
  1307. poly.o(i.__kernel_poly) refers to dadd.o(.text) for __aeabi_dadd
  1308. qnan.o(.constdata) refers (Special) to iusefp.o(.text) for __I$use$fp
  1309. sqrt.o(i.__softfp_sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp
  1310. sqrt.o(i.__softfp_sqrt) refers to dsqrt.o(.text) for _dsqrt
  1311. sqrt.o(i.__softfp_sqrt) refers to errno.o(i.__set_errno) for __set_errno
  1312. sqrt.o(i.sqrt) refers (Special) to iusefp.o(.text) for __I$use$fp
  1313. sqrt.o(i.sqrt) refers to dsqrt.o(.text) for _dsqrt
  1314. sqrt.o(i.sqrt) refers to errno.o(i.__set_errno) for __set_errno
  1315. sqrt_x.o(i.____softfp_sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
  1316. sqrt_x.o(i.____softfp_sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple
  1317. sqrt_x.o(i.____softfp_sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno
  1318. sqrt_x.o(i.____softfp_sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt
  1319. sqrt_x.o(i.__sqrt$lsc) refers (Special) to iusefp.o(.text) for __I$use$fp
  1320. sqrt_x.o(i.__sqrt$lsc) refers to cdcmple.o(.text) for __aeabi_cdcmple
  1321. sqrt_x.o(i.__sqrt$lsc) refers to errno.o(i.__set_errno) for __set_errno
  1322. sqrt_x.o(i.__sqrt$lsc) refers to dsqrt.o(.text) for _dsqrt
  1323. entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000
  1324. entry2.o(.ARM.Collect$$$$00002712) refers to startup_gd32f10x_xd.o(STACK) for __initial_sp
  1325. entry2.o(__vectab_stack_and_reset_area) refers to startup_gd32f10x_xd.o(STACK) for __initial_sp
  1326. entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main
  1327. entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload
  1328. entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main
  1329. entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main
  1330. uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
  1331. uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
  1332. ctype_o.o(.text) refers to ctype_o.o(.constdata) for .constdata
  1333. ctype_o.o(.constdata) refers to ctype_o.o(.constdata) for __ctype_table
  1334. isalnum_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1335. isalpha_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1336. isblank_o.o(.text) refers to ctype_o.o(.constdata) for __ctype_table
  1337. iscntrl_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1338. isdigit_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1339. isgraph_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1340. islower_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1341. isprint_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1342. ispunct_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1343. isspace_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1344. isupper_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1345. isxdigit_o.o(.text) refers to ctype_o.o(.text) for __rt_ctype_table
  1346. errno.o(i.__aeabi_errno_addr) refers to errno.o(.data) for .data
  1347. errno.o(i.__read_errno) refers to errno.o(.data) for .data
  1348. errno.o(i.__set_errno) refers to errno.o(.data) for .data
  1349. scanf_char.o(.text) refers to _scanf.o(.text) for __vfscanf
  1350. scanf_char.o(.text) refers to isspace_o.o(.text) for isspace
  1351. _strtoul.o(.text) refers to _chval.o(.text) for _chval
  1352. _strtoul.o(.text) refers to errno.o(i.__aeabi_errno_addr) for __aeabi_errno_addr
  1353. strtod.o(.text) refers to scanf_fp.o(.text) for _scanf_real
  1354. strtod.o(.text) refers to _sgetc.o(.text) for _sgetc
  1355. strtod.o(.text) refers to isspace_o.o(.text) for isspace
  1356. depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl
  1357. depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr
  1358. dfltul.o(.text) refers to depilogue.o(.text) for _double_epilogue
  1359. dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr
  1360. dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl
  1361. init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
  1362. isspace_c.o(.text) refers to ctype_c.o(.text) for __ctype_lookup
  1363. _scanf.o(.text) refers (Weak) to scanf_fp.o(.text) for _scanf_real
  1364. _scanf.o(.text) refers (Weak) to _scanf_int.o(.text) for _scanf_int
  1365. _scanf.o(.text) refers (Weak) to _scanf_str.o(.text) for _scanf_string
  1366. dsqrt.o(.text) refers to llushr.o(.text) for __aeabi_llsr
  1367. dsqrt.o(.text) refers to depilogue.o(.text) for _double_round
  1368. ctype_c.o(.text) refers to ctype_c.o(.constdata) for .constdata
  1369. scanf_fp.o(i._is_digit) refers (Special) to iusefp.o(.text) for __I$use$fp
  1370. ==============================================================================
  1371. Removing Unused input sections from the image.
  1372. Removing system_gd32f10x.o(.rev16_text), (4 bytes).
  1373. Removing system_gd32f10x.o(.revsh_text), (4 bytes).
  1374. Removing gd32f10x_it.o(.rev16_text), (4 bytes).
  1375. Removing gd32f10x_it.o(.revsh_text), (4 bytes).
  1376. Removing systick.o(.rev16_text), (4 bytes).
  1377. Removing systick.o(.revsh_text), (4 bytes).
  1378. Removing log.o(.rev16_text), (4 bytes).
  1379. Removing log.o(.revsh_text), (4 bytes).
  1380. Removing ec800m.o(.rev16_text), (4 bytes).
  1381. Removing ec800m.o(.revsh_text), (4 bytes).
  1382. Removing device_message.o(.rev16_text), (4 bytes).
  1383. Removing device_message.o(.revsh_text), (4 bytes).
  1384. Removing device_message.o(i.load_config_params), (68 bytes).
  1385. Removing device_message.o(i.save_config_params), (60 bytes).
  1386. Removing device_message.o(i.write_struct_to_flash), (42 bytes).
  1387. Removing parsedevicemessage.o(.rev16_text), (4 bytes).
  1388. Removing parsedevicemessage.o(.revsh_text), (4 bytes).
  1389. Removing parsedevicemessage.o(i.processHTTPjson), (1244 bytes).
  1390. Removing mmodbus.o(.rev16_text), (4 bytes).
  1391. Removing mmodbus.o(.revsh_text), (4 bytes).
  1392. Removing mmodbus.o(i.mmodbus_readCoil), (22 bytes).
  1393. Removing mmodbus.o(i.mmodbus_readDiscreteInput), (22 bytes).
  1394. Removing mmodbus.o(i.mmodbus_readDiscreteInputs), (220 bytes).
  1395. Removing mmodbus.o(i.mmodbus_readHoldingRegister16i), (22 bytes).
  1396. Removing mmodbus.o(i.mmodbus_readHoldingRegister32f), (22 bytes).
  1397. Removing mmodbus.o(i.mmodbus_readHoldingRegister32i), (22 bytes).
  1398. Removing mmodbus.o(i.mmodbus_readHoldingRegisters32f), (228 bytes).
  1399. Removing mmodbus.o(i.mmodbus_readHoldingRegisters32i), (28 bytes).
  1400. Removing mmodbus.o(i.mmodbus_readInputRegister16i), (22 bytes).
  1401. Removing mmodbus.o(i.mmodbus_readInputRegister32f), (22 bytes).
  1402. Removing mmodbus.o(i.mmodbus_readInputRegister32i), (22 bytes).
  1403. Removing mmodbus.o(i.mmodbus_readInputRegisters16i), (144 bytes).
  1404. Removing mmodbus.o(i.mmodbus_readInputRegisters32f), (228 bytes).
  1405. Removing mmodbus.o(i.mmodbus_readInputRegisters32i), (28 bytes).
  1406. Removing mmodbus.o(i.mmodbus_readInputRegisters8i), (220 bytes).
  1407. Removing mmodbus.o(i.mmodbus_set32bitOrder), (12 bytes).
  1408. Removing mmodbus.o(i.mmodbus_writeHoldingRegisters16i), (336 bytes).
  1409. Removing mqttrecv.o(.rev16_text), (4 bytes).
  1410. Removing mqttrecv.o(.revsh_text), (4 bytes).
  1411. Removing main.o(.rev16_text), (4 bytes).
  1412. Removing main.o(.revsh_text), (4 bytes).
  1413. Removing pc.o(.rev16_text), (4 bytes).
  1414. Removing pc.o(.revsh_text), (4 bytes).
  1415. Removing pc.o(i.ec800m_4G_Data_read), (44 bytes).
  1416. Removing otaevent.o(.rev16_text), (4 bytes).
  1417. Removing otaevent.o(.revsh_text), (4 bytes).
  1418. Removing gd32f10x_adc.o(.rev16_text), (4 bytes).
  1419. Removing gd32f10x_adc.o(.revsh_text), (4 bytes).
  1420. Removing gd32f10x_adc.o(i.adc_calibration_enable), (42 bytes).
  1421. Removing gd32f10x_adc.o(i.adc_channel_length_config), (70 bytes).
  1422. Removing gd32f10x_adc.o(i.adc_data_alignment_config), (22 bytes).
  1423. Removing gd32f10x_adc.o(i.adc_deinit), (88 bytes).
  1424. Removing gd32f10x_adc.o(i.adc_disable), (10 bytes).
  1425. Removing gd32f10x_adc.o(i.adc_discontinuous_mode_config), (76 bytes).
  1426. Removing gd32f10x_adc.o(i.adc_dma_mode_disable), (10 bytes).
  1427. Removing gd32f10x_adc.o(i.adc_dma_mode_enable), (10 bytes).
  1428. Removing gd32f10x_adc.o(i.adc_enable), (18 bytes).
  1429. Removing gd32f10x_adc.o(i.adc_external_trigger_config), (62 bytes).
  1430. Removing gd32f10x_adc.o(i.adc_external_trigger_source_config), (48 bytes).
  1431. Removing gd32f10x_adc.o(i.adc_flag_clear), (8 bytes).
  1432. Removing gd32f10x_adc.o(i.adc_flag_get), (14 bytes).
  1433. Removing gd32f10x_adc.o(i.adc_inserted_channel_config), (120 bytes).
  1434. Removing gd32f10x_adc.o(i.adc_inserted_channel_offset_config), (36 bytes).
  1435. Removing gd32f10x_adc.o(i.adc_inserted_data_read), (46 bytes).
  1436. Removing gd32f10x_adc.o(i.adc_inserted_software_startconv_flag_get), (16 bytes).
  1437. Removing gd32f10x_adc.o(i.adc_interrupt_disable), (44 bytes).
  1438. Removing gd32f10x_adc.o(i.adc_interrupt_enable), (44 bytes).
  1439. Removing gd32f10x_adc.o(i.adc_interrupt_flag_clear), (8 bytes).
  1440. Removing gd32f10x_adc.o(i.adc_interrupt_flag_get), (88 bytes).
  1441. Removing gd32f10x_adc.o(i.adc_mode_config), (28 bytes).
  1442. Removing gd32f10x_adc.o(i.adc_regular_channel_config), (172 bytes).
  1443. Removing gd32f10x_adc.o(i.adc_regular_data_read), (8 bytes).
  1444. Removing gd32f10x_adc.o(i.adc_regular_software_startconv_flag_get), (16 bytes).
  1445. Removing gd32f10x_adc.o(i.adc_software_trigger_enable), (30 bytes).
  1446. Removing gd32f10x_adc.o(i.adc_special_function_config), (90 bytes).
  1447. Removing gd32f10x_adc.o(i.adc_sync_mode_convert_value_read), (12 bytes).
  1448. Removing gd32f10x_adc.o(i.adc_tempsensor_vrefint_disable), (20 bytes).
  1449. Removing gd32f10x_adc.o(i.adc_tempsensor_vrefint_enable), (20 bytes).
  1450. Removing gd32f10x_adc.o(i.adc_watchdog_disable), (16 bytes).
  1451. Removing gd32f10x_adc.o(i.adc_watchdog_group_channel_enable), (64 bytes).
  1452. Removing gd32f10x_adc.o(i.adc_watchdog_single_channel_enable), (32 bytes).
  1453. Removing gd32f10x_adc.o(i.adc_watchdog_threshold_config), (14 bytes).
  1454. Removing gd32f10x_bkp.o(.rev16_text), (4 bytes).
  1455. Removing gd32f10x_bkp.o(.revsh_text), (4 bytes).
  1456. Removing gd32f10x_bkp.o(i.bkp_data_read), (56 bytes).
  1457. Removing gd32f10x_bkp.o(i.bkp_data_write), (52 bytes).
  1458. Removing gd32f10x_bkp.o(i.bkp_deinit), (12 bytes).
  1459. Removing gd32f10x_bkp.o(i.bkp_flag_clear), (20 bytes).
  1460. Removing gd32f10x_bkp.o(i.bkp_flag_get), (24 bytes).
  1461. Removing gd32f10x_bkp.o(i.bkp_interrupt_disable), (20 bytes).
  1462. Removing gd32f10x_bkp.o(i.bkp_interrupt_enable), (20 bytes).
  1463. Removing gd32f10x_bkp.o(i.bkp_interrupt_flag_clear), (20 bytes).
  1464. Removing gd32f10x_bkp.o(i.bkp_interrupt_flag_get), (24 bytes).
  1465. Removing gd32f10x_bkp.o(i.bkp_rtc_calibration_output_disable), (20 bytes).
  1466. Removing gd32f10x_bkp.o(i.bkp_rtc_calibration_output_enable), (20 bytes).
  1467. Removing gd32f10x_bkp.o(i.bkp_rtc_calibration_value_set), (28 bytes).
  1468. Removing gd32f10x_bkp.o(i.bkp_rtc_output_select), (28 bytes).
  1469. Removing gd32f10x_bkp.o(i.bkp_rtc_signal_output_disable), (20 bytes).
  1470. Removing gd32f10x_bkp.o(i.bkp_rtc_signal_output_enable), (20 bytes).
  1471. Removing gd32f10x_bkp.o(i.bkp_tamper_active_level_set), (28 bytes).
  1472. Removing gd32f10x_bkp.o(i.bkp_tamper_detection_disable), (20 bytes).
  1473. Removing gd32f10x_bkp.o(i.bkp_tamper_detection_enable), (20 bytes).
  1474. Removing gd32f10x_can.o(.rev16_text), (4 bytes).
  1475. Removing gd32f10x_can.o(.revsh_text), (4 bytes).
  1476. Removing gd32f10x_can.o(i.can1_filter_start_bank), (56 bytes).
  1477. Removing gd32f10x_can.o(i.can_debug_freeze_disable), (32 bytes).
  1478. Removing gd32f10x_can.o(i.can_debug_freeze_enable), (32 bytes).
  1479. Removing gd32f10x_can.o(i.can_deinit), (32 bytes).
  1480. Removing gd32f10x_can.o(i.can_error_get), (12 bytes).
  1481. Removing gd32f10x_can.o(i.can_fifo_release), (32 bytes).
  1482. Removing gd32f10x_can.o(i.can_filter_init), (272 bytes).
  1483. Removing gd32f10x_can.o(i.can_flag_clear), (52 bytes).
  1484. Removing gd32f10x_can.o(i.can_flag_get), (30 bytes).
  1485. Removing gd32f10x_can.o(i.can_init), (290 bytes).
  1486. Removing gd32f10x_can.o(i.can_interrupt_disable), (8 bytes).
  1487. Removing gd32f10x_can.o(i.can_interrupt_enable), (8 bytes).
  1488. Removing gd32f10x_can.o(i.can_interrupt_flag_clear), (56 bytes).
  1489. Removing gd32f10x_can.o(i.can_interrupt_flag_get), (116 bytes).
  1490. Removing gd32f10x_can.o(i.can_message_receive), (228 bytes).
  1491. Removing gd32f10x_can.o(i.can_message_transmit), (336 bytes).
  1492. Removing gd32f10x_can.o(i.can_receive_error_number_get), (8 bytes).
  1493. Removing gd32f10x_can.o(i.can_receive_message_length_get), (26 bytes).
  1494. Removing gd32f10x_can.o(i.can_struct_para_init), (158 bytes).
  1495. Removing gd32f10x_can.o(i.can_time_trigger_mode_disable), (48 bytes).
  1496. Removing gd32f10x_can.o(i.can_time_trigger_mode_enable), (48 bytes).
  1497. Removing gd32f10x_can.o(i.can_transmission_stop), (80 bytes).
  1498. Removing gd32f10x_can.o(i.can_transmit_error_number_get), (10 bytes).
  1499. Removing gd32f10x_can.o(i.can_transmit_states), (124 bytes).
  1500. Removing gd32f10x_can.o(i.can_wakeup), (48 bytes).
  1501. Removing gd32f10x_can.o(i.can_working_mode_set), (168 bytes).
  1502. Removing gd32f10x_crc.o(.rev16_text), (4 bytes).
  1503. Removing gd32f10x_crc.o(.revsh_text), (4 bytes).
  1504. Removing gd32f10x_crc.o(i.crc_block_data_calculate), (36 bytes).
  1505. Removing gd32f10x_crc.o(i.crc_data_register_read), (12 bytes).
  1506. Removing gd32f10x_crc.o(i.crc_data_register_reset), (20 bytes).
  1507. Removing gd32f10x_crc.o(i.crc_deinit), (24 bytes).
  1508. Removing gd32f10x_crc.o(i.crc_free_data_register_read), (12 bytes).
  1509. Removing gd32f10x_crc.o(i.crc_free_data_register_write), (12 bytes).
  1510. Removing gd32f10x_crc.o(i.crc_single_data_calculate), (16 bytes).
  1511. Removing gd32f10x_dac.o(.rev16_text), (4 bytes).
  1512. Removing gd32f10x_dac.o(.revsh_text), (4 bytes).
  1513. Removing gd32f10x_dac.o(i.dac_concurrent_data_set), (64 bytes).
  1514. Removing gd32f10x_dac.o(i.dac_concurrent_disable), (24 bytes).
  1515. Removing gd32f10x_dac.o(i.dac_concurrent_enable), (24 bytes).
  1516. Removing gd32f10x_dac.o(i.dac_concurrent_output_buffer_disable), (24 bytes).
  1517. Removing gd32f10x_dac.o(i.dac_concurrent_output_buffer_enable), (24 bytes).
  1518. Removing gd32f10x_dac.o(i.dac_concurrent_software_trigger_disable), (20 bytes).
  1519. Removing gd32f10x_dac.o(i.dac_concurrent_software_trigger_enable), (20 bytes).
  1520. Removing gd32f10x_dac.o(i.dac_data_set), (88 bytes).
  1521. Removing gd32f10x_dac.o(i.dac_deinit), (20 bytes).
  1522. Removing gd32f10x_dac.o(i.dac_disable), (36 bytes).
  1523. Removing gd32f10x_dac.o(i.dac_dma_disable), (36 bytes).
  1524. Removing gd32f10x_dac.o(i.dac_dma_enable), (36 bytes).
  1525. Removing gd32f10x_dac.o(i.dac_enable), (36 bytes).
  1526. Removing gd32f10x_dac.o(i.dac_lfsr_noise_config), (52 bytes).
  1527. Removing gd32f10x_dac.o(i.dac_output_buffer_disable), (36 bytes).
  1528. Removing gd32f10x_dac.o(i.dac_output_buffer_enable), (36 bytes).
  1529. Removing gd32f10x_dac.o(i.dac_output_value_get), (28 bytes).
  1530. Removing gd32f10x_dac.o(i.dac_software_trigger_disable), (36 bytes).
  1531. Removing gd32f10x_dac.o(i.dac_software_trigger_enable), (36 bytes).
  1532. Removing gd32f10x_dac.o(i.dac_triangle_noise_config), (52 bytes).
  1533. Removing gd32f10x_dac.o(i.dac_trigger_disable), (36 bytes).
  1534. Removing gd32f10x_dac.o(i.dac_trigger_enable), (36 bytes).
  1535. Removing gd32f10x_dac.o(i.dac_trigger_source_config), (52 bytes).
  1536. Removing gd32f10x_dac.o(i.dac_wave_bit_width_config), (52 bytes).
  1537. Removing gd32f10x_dac.o(i.dac_wave_mode_config), (52 bytes).
  1538. Removing gd32f10x_dbg.o(.rev16_text), (4 bytes).
  1539. Removing gd32f10x_dbg.o(.revsh_text), (4 bytes).
  1540. Removing gd32f10x_dbg.o(i.dbg_id_get), (12 bytes).
  1541. Removing gd32f10x_dbg.o(i.dbg_low_power_disable), (16 bytes).
  1542. Removing gd32f10x_dbg.o(i.dbg_low_power_enable), (16 bytes).
  1543. Removing gd32f10x_dbg.o(i.dbg_periph_disable), (16 bytes).
  1544. Removing gd32f10x_dbg.o(i.dbg_periph_enable), (16 bytes).
  1545. Removing gd32f10x_dbg.o(i.dbg_trace_pin_disable), (20 bytes).
  1546. Removing gd32f10x_dbg.o(i.dbg_trace_pin_enable), (20 bytes).
  1547. Removing gd32f10x_dbg.o(i.dbg_trace_pin_mode_set), (28 bytes).
  1548. Removing gd32f10x_dma.o(.rev16_text), (4 bytes).
  1549. Removing gd32f10x_dma.o(.revsh_text), (4 bytes).
  1550. Removing gd32f10x_dma.o(i.dma_circulation_enable), (50 bytes).
  1551. Removing gd32f10x_dma.o(i.dma_flag_clear), (16 bytes).
  1552. Removing gd32f10x_dma.o(i.dma_flag_get), (24 bytes).
  1553. Removing gd32f10x_dma.o(i.dma_interrupt_disable), (50 bytes).
  1554. Removing gd32f10x_dma.o(i.dma_interrupt_flag_get), (130 bytes).
  1555. Removing gd32f10x_dma.o(i.dma_memory_address_config), (36 bytes).
  1556. Removing gd32f10x_dma.o(i.dma_memory_increase_disable), (50 bytes).
  1557. Removing gd32f10x_dma.o(i.dma_memory_increase_enable), (50 bytes).
  1558. Removing gd32f10x_dma.o(i.dma_memory_to_memory_enable), (50 bytes).
  1559. Removing gd32f10x_dma.o(i.dma_memory_width_config), (58 bytes).
  1560. Removing gd32f10x_dma.o(i.dma_periph_address_config), (36 bytes).
  1561. Removing gd32f10x_dma.o(i.dma_periph_increase_disable), (50 bytes).
  1562. Removing gd32f10x_dma.o(i.dma_periph_increase_enable), (50 bytes).
  1563. Removing gd32f10x_dma.o(i.dma_periph_width_config), (58 bytes).
  1564. Removing gd32f10x_dma.o(i.dma_priority_config), (58 bytes).
  1565. Removing gd32f10x_dma.o(i.dma_struct_para_init), (22 bytes).
  1566. Removing gd32f10x_dma.o(i.dma_transfer_direction_config), (84 bytes).
  1567. Removing gd32f10x_dma.o(i.dma_transfer_number_config), (38 bytes).
  1568. Removing gd32f10x_dma.o(i.dma_transfer_number_get), (34 bytes).
  1569. Removing gd32f10x_enet.o(.rev16_text), (4 bytes).
  1570. Removing gd32f10x_enet.o(.revsh_text), (4 bytes).
  1571. Removing gd32f10x_exti.o(.rev16_text), (4 bytes).
  1572. Removing gd32f10x_exti.o(.revsh_text), (4 bytes).
  1573. Removing gd32f10x_exti.o(i.exti_deinit), (28 bytes).
  1574. Removing gd32f10x_exti.o(i.exti_event_disable), (16 bytes).
  1575. Removing gd32f10x_exti.o(i.exti_event_enable), (16 bytes).
  1576. Removing gd32f10x_exti.o(i.exti_flag_clear), (12 bytes).
  1577. Removing gd32f10x_exti.o(i.exti_flag_get), (24 bytes).
  1578. Removing gd32f10x_exti.o(i.exti_interrupt_disable), (16 bytes).
  1579. Removing gd32f10x_exti.o(i.exti_interrupt_enable), (16 bytes).
  1580. Removing gd32f10x_exti.o(i.exti_software_interrupt_disable), (16 bytes).
  1581. Removing gd32f10x_exti.o(i.exti_software_interrupt_enable), (16 bytes).
  1582. Removing gd32f10x_exmc.o(.rev16_text), (4 bytes).
  1583. Removing gd32f10x_exmc.o(.revsh_text), (4 bytes).
  1584. Removing gd32f10x_exmc.o(i.exmc_ecc_get), (12 bytes).
  1585. Removing gd32f10x_exmc.o(i.exmc_flag_clear), (20 bytes).
  1586. Removing gd32f10x_exmc.o(i.exmc_flag_get), (28 bytes).
  1587. Removing gd32f10x_exmc.o(i.exmc_interrupt_disable), (20 bytes).
  1588. Removing gd32f10x_exmc.o(i.exmc_interrupt_enable), (20 bytes).
  1589. Removing gd32f10x_exmc.o(i.exmc_interrupt_flag_clear), (22 bytes).
  1590. Removing gd32f10x_exmc.o(i.exmc_interrupt_flag_get), (38 bytes).
  1591. Removing gd32f10x_exmc.o(i.exmc_nand_deinit), (42 bytes).
  1592. Removing gd32f10x_exmc.o(i.exmc_nand_disable), (22 bytes).
  1593. Removing gd32f10x_exmc.o(i.exmc_nand_ecc_config), (48 bytes).
  1594. Removing gd32f10x_exmc.o(i.exmc_nand_enable), (22 bytes).
  1595. Removing gd32f10x_exmc.o(i.exmc_nand_init), (174 bytes).
  1596. Removing gd32f10x_exmc.o(i.exmc_nand_struct_para_init), (54 bytes).
  1597. Removing gd32f10x_exmc.o(i.exmc_norsram_deinit), (52 bytes).
  1598. Removing gd32f10x_exmc.o(i.exmc_norsram_disable), (22 bytes).
  1599. Removing gd32f10x_exmc.o(i.exmc_norsram_enable), (22 bytes).
  1600. Removing gd32f10x_exmc.o(i.exmc_norsram_init), (268 bytes).
  1601. Removing gd32f10x_exmc.o(i.exmc_norsram_struct_para_init), (106 bytes).
  1602. Removing gd32f10x_exmc.o(i.exmc_pccard_deinit), (40 bytes).
  1603. Removing gd32f10x_exmc.o(i.exmc_pccard_disable), (24 bytes).
  1604. Removing gd32f10x_exmc.o(i.exmc_pccard_enable), (24 bytes).
  1605. Removing gd32f10x_exmc.o(i.exmc_pccard_init), (192 bytes).
  1606. Removing gd32f10x_exmc.o(i.exmc_pccard_struct_para_init), (60 bytes).
  1607. Removing gd32f10x_fmc.o(.rev16_text), (4 bytes).
  1608. Removing gd32f10x_fmc.o(.revsh_text), (4 bytes).
  1609. Removing gd32f10x_fmc.o(i.fmc_bank0_erase), (68 bytes).
  1610. Removing gd32f10x_fmc.o(i.fmc_bank0_lock), (20 bytes).
  1611. Removing gd32f10x_fmc.o(i.fmc_bank0_ready_wait), (34 bytes).
  1612. Removing gd32f10x_fmc.o(i.fmc_bank0_state_get), (48 bytes).
  1613. Removing gd32f10x_fmc.o(i.fmc_bank0_unlock), (36 bytes).
  1614. Removing gd32f10x_fmc.o(i.fmc_bank1_erase), (68 bytes).
  1615. Removing gd32f10x_fmc.o(i.fmc_bank1_lock), (20 bytes).
  1616. Removing gd32f10x_fmc.o(i.fmc_bank1_ready_wait), (34 bytes).
  1617. Removing gd32f10x_fmc.o(i.fmc_bank1_state_get), (48 bytes).
  1618. Removing gd32f10x_fmc.o(i.fmc_bank1_unlock), (36 bytes).
  1619. Removing gd32f10x_fmc.o(i.fmc_flag_clear), (32 bytes).
  1620. Removing gd32f10x_fmc.o(i.fmc_flag_get), (36 bytes).
  1621. Removing gd32f10x_fmc.o(i.fmc_halfword_program), (192 bytes).
  1622. Removing gd32f10x_fmc.o(i.fmc_interrupt_disable), (32 bytes).
  1623. Removing gd32f10x_fmc.o(i.fmc_interrupt_enable), (32 bytes).
  1624. Removing gd32f10x_fmc.o(i.fmc_interrupt_flag_clear), (32 bytes).
  1625. Removing gd32f10x_fmc.o(i.fmc_interrupt_flag_get), (108 bytes).
  1626. Removing gd32f10x_fmc.o(i.fmc_lock), (44 bytes).
  1627. Removing gd32f10x_fmc.o(i.fmc_mass_erase), (196 bytes).
  1628. Removing gd32f10x_fmc.o(i.fmc_page_erase), (236 bytes).
  1629. Removing gd32f10x_fmc.o(i.fmc_unlock), (68 bytes).
  1630. Removing gd32f10x_fmc.o(i.fmc_word_program), (192 bytes).
  1631. Removing gd32f10x_fmc.o(i.fmc_wscnt_set), (24 bytes).
  1632. Removing gd32f10x_fmc.o(i.ob_data_get), (16 bytes).
  1633. Removing gd32f10x_fmc.o(i.ob_data_program), (68 bytes).
  1634. Removing gd32f10x_fmc.o(i.ob_erase), (140 bytes).
  1635. Removing gd32f10x_fmc.o(i.ob_lock), (20 bytes).
  1636. Removing gd32f10x_fmc.o(i.ob_security_protection_config), (132 bytes).
  1637. Removing gd32f10x_fmc.o(i.ob_spc_get), (24 bytes).
  1638. Removing gd32f10x_fmc.o(i.ob_unlock), (48 bytes).
  1639. Removing gd32f10x_fmc.o(i.ob_user_get), (16 bytes).
  1640. Removing gd32f10x_fmc.o(i.ob_user_write), (96 bytes).
  1641. Removing gd32f10x_fmc.o(i.ob_write_protection_enable), (168 bytes).
  1642. Removing gd32f10x_fmc.o(i.ob_write_protection_get), (12 bytes).
  1643. Removing gd32f10x_fwdgt.o(.rev16_text), (4 bytes).
  1644. Removing gd32f10x_fwdgt.o(.revsh_text), (4 bytes).
  1645. Removing gd32f10x_fwdgt.o(i.fwdgt_flag_get), (24 bytes).
  1646. Removing gd32f10x_fwdgt.o(i.fwdgt_prescaler_value_config), (60 bytes).
  1647. Removing gd32f10x_fwdgt.o(i.fwdgt_reload_value_config), (64 bytes).
  1648. Removing gd32f10x_fwdgt.o(i.fwdgt_write_disable), (12 bytes).
  1649. Removing gd32f10x_gpio.o(.rev16_text), (4 bytes).
  1650. Removing gd32f10x_gpio.o(.revsh_text), (4 bytes).
  1651. Removing gd32f10x_gpio.o(i.gpio_afio_deinit), (20 bytes).
  1652. Removing gd32f10x_gpio.o(i.gpio_deinit), (196 bytes).
  1653. Removing gd32f10x_gpio.o(i.gpio_event_output_config), (28 bytes).
  1654. Removing gd32f10x_gpio.o(i.gpio_event_output_disable), (20 bytes).
  1655. Removing gd32f10x_gpio.o(i.gpio_event_output_enable), (20 bytes).
  1656. Removing gd32f10x_gpio.o(i.gpio_input_port_get), (8 bytes).
  1657. Removing gd32f10x_gpio.o(i.gpio_output_bit_get), (16 bytes).
  1658. Removing gd32f10x_gpio.o(i.gpio_output_port_get), (8 bytes).
  1659. Removing gd32f10x_gpio.o(i.gpio_pin_lock), (18 bytes).
  1660. Removing gd32f10x_gpio.o(i.gpio_port_write), (4 bytes).
  1661. Removing gd32f10x_i2c.o(.rev16_text), (4 bytes).
  1662. Removing gd32f10x_i2c.o(.revsh_text), (4 bytes).
  1663. Removing gd32f10x_i2c.o(i.i2c_ack_config), (16 bytes).
  1664. Removing gd32f10x_i2c.o(i.i2c_ackpos_config), (16 bytes).
  1665. Removing gd32f10x_i2c.o(i.i2c_clock_config), (228 bytes).
  1666. Removing gd32f10x_i2c.o(i.i2c_data_receive), (8 bytes).
  1667. Removing gd32f10x_i2c.o(i.i2c_data_transmit), (6 bytes).
  1668. Removing gd32f10x_i2c.o(i.i2c_deinit), (64 bytes).
  1669. Removing gd32f10x_i2c.o(i.i2c_disable), (10 bytes).
  1670. Removing gd32f10x_i2c.o(i.i2c_dma_config), (16 bytes).
  1671. Removing gd32f10x_i2c.o(i.i2c_dma_last_transfer_config), (16 bytes).
  1672. Removing gd32f10x_i2c.o(i.i2c_dualaddr_disable), (10 bytes).
  1673. Removing gd32f10x_i2c.o(i.i2c_dualaddr_enable), (12 bytes).
  1674. Removing gd32f10x_i2c.o(i.i2c_enable), (10 bytes).
  1675. Removing gd32f10x_i2c.o(i.i2c_flag_clear), (40 bytes).
  1676. Removing gd32f10x_i2c.o(i.i2c_flag_get), (30 bytes).
  1677. Removing gd32f10x_i2c.o(i.i2c_interrupt_disable), (26 bytes).
  1678. Removing gd32f10x_i2c.o(i.i2c_interrupt_enable), (26 bytes).
  1679. Removing gd32f10x_i2c.o(i.i2c_interrupt_flag_clear), (44 bytes).
  1680. Removing gd32f10x_i2c.o(i.i2c_interrupt_flag_get), (92 bytes).
  1681. Removing gd32f10x_i2c.o(i.i2c_master_addressing), (20 bytes).
  1682. Removing gd32f10x_i2c.o(i.i2c_mode_addr_config), (28 bytes).
  1683. Removing gd32f10x_i2c.o(i.i2c_pec_config), (16 bytes).
  1684. Removing gd32f10x_i2c.o(i.i2c_pec_transfer_config), (16 bytes).
  1685. Removing gd32f10x_i2c.o(i.i2c_pec_value_get), (10 bytes).
  1686. Removing gd32f10x_i2c.o(i.i2c_slave_response_to_gcall_config), (16 bytes).
  1687. Removing gd32f10x_i2c.o(i.i2c_smbus_alert_config), (16 bytes).
  1688. Removing gd32f10x_i2c.o(i.i2c_smbus_arp_config), (16 bytes).
  1689. Removing gd32f10x_i2c.o(i.i2c_smbus_type_config), (24 bytes).
  1690. Removing gd32f10x_i2c.o(i.i2c_software_reset_config), (16 bytes).
  1691. Removing gd32f10x_i2c.o(i.i2c_start_on_bus), (10 bytes).
  1692. Removing gd32f10x_i2c.o(i.i2c_stop_on_bus), (10 bytes).
  1693. Removing gd32f10x_i2c.o(i.i2c_stretch_scl_low_config), (16 bytes).
  1694. Removing gd32f10x_misc.o(.rev16_text), (4 bytes).
  1695. Removing gd32f10x_misc.o(.revsh_text), (4 bytes).
  1696. Removing gd32f10x_misc.o(i.nvic_irq_disable), (24 bytes).
  1697. Removing gd32f10x_misc.o(i.system_lowpower_reset), (16 bytes).
  1698. Removing gd32f10x_misc.o(i.system_lowpower_set), (16 bytes).
  1699. Removing gd32f10x_misc.o(i.systick_clksource_set), (40 bytes).
  1700. Removing gd32f10x_pmu.o(.rev16_text), (4 bytes).
  1701. Removing gd32f10x_pmu.o(.revsh_text), (4 bytes).
  1702. Removing gd32f10x_pmu.o(i.pmu_backup_write_disable), (20 bytes).
  1703. Removing gd32f10x_pmu.o(i.pmu_backup_write_enable), (20 bytes).
  1704. Removing gd32f10x_pmu.o(i.pmu_deinit), (20 bytes).
  1705. Removing gd32f10x_pmu.o(i.pmu_flag_clear), (48 bytes).
  1706. Removing gd32f10x_pmu.o(i.pmu_flag_get), (24 bytes).
  1707. Removing gd32f10x_pmu.o(i.pmu_lvd_disable), (20 bytes).
  1708. Removing gd32f10x_pmu.o(i.pmu_lvd_select), (48 bytes).
  1709. Removing gd32f10x_pmu.o(i.pmu_to_deepsleepmode), (196 bytes).
  1710. Removing gd32f10x_pmu.o(i.pmu_to_sleepmode), (28 bytes).
  1711. Removing gd32f10x_pmu.o(i.pmu_to_standbymode), (100 bytes).
  1712. Removing gd32f10x_pmu.o(i.pmu_wakeup_pin_disable), (20 bytes).
  1713. Removing gd32f10x_pmu.o(i.pmu_wakeup_pin_enable), (20 bytes).
  1714. Removing gd32f10x_pmu.o(.bss), (16 bytes).
  1715. Removing gd32f10x_rcu.o(.rev16_text), (4 bytes).
  1716. Removing gd32f10x_rcu.o(.revsh_text), (4 bytes).
  1717. Removing gd32f10x_rcu.o(i.rcu_adc_clock_config), (72 bytes).
  1718. Removing gd32f10x_rcu.o(i.rcu_ahb_clock_config), (24 bytes).
  1719. Removing gd32f10x_rcu.o(i.rcu_all_reset_flag_clear), (20 bytes).
  1720. Removing gd32f10x_rcu.o(i.rcu_apb1_clock_config), (24 bytes).
  1721. Removing gd32f10x_rcu.o(i.rcu_apb2_clock_config), (24 bytes).
  1722. Removing gd32f10x_rcu.o(i.rcu_bkp_reset_disable), (20 bytes).
  1723. Removing gd32f10x_rcu.o(i.rcu_bkp_reset_enable), (20 bytes).
  1724. Removing gd32f10x_rcu.o(i.rcu_ckout0_config), (24 bytes).
  1725. Removing gd32f10x_rcu.o(i.rcu_deepsleep_voltage_set), (16 bytes).
  1726. Removing gd32f10x_rcu.o(i.rcu_deinit), (88 bytes).
  1727. Removing gd32f10x_rcu.o(i.rcu_flag_get), (36 bytes).
  1728. Removing gd32f10x_rcu.o(i.rcu_hxtal_clock_monitor_disable), (20 bytes).
  1729. Removing gd32f10x_rcu.o(i.rcu_hxtal_clock_monitor_enable), (20 bytes).
  1730. Removing gd32f10x_rcu.o(i.rcu_interrupt_disable), (32 bytes).
  1731. Removing gd32f10x_rcu.o(i.rcu_interrupt_enable), (32 bytes).
  1732. Removing gd32f10x_rcu.o(i.rcu_interrupt_flag_clear), (32 bytes).
  1733. Removing gd32f10x_rcu.o(i.rcu_interrupt_flag_get), (36 bytes).
  1734. Removing gd32f10x_rcu.o(i.rcu_irc8m_adjust_value_set), (28 bytes).
  1735. Removing gd32f10x_rcu.o(i.rcu_osci_bypass_mode_disable), (92 bytes).
  1736. Removing gd32f10x_rcu.o(i.rcu_osci_bypass_mode_enable), (92 bytes).
  1737. Removing gd32f10x_rcu.o(i.rcu_osci_off), (32 bytes).
  1738. Removing gd32f10x_rcu.o(i.rcu_osci_stab_wait), (224 bytes).
  1739. Removing gd32f10x_rcu.o(i.rcu_periph_clock_disable), (32 bytes).
  1740. Removing gd32f10x_rcu.o(i.rcu_periph_clock_sleep_disable), (32 bytes).
  1741. Removing gd32f10x_rcu.o(i.rcu_periph_clock_sleep_enable), (32 bytes).
  1742. Removing gd32f10x_rcu.o(i.rcu_pll_config), (32 bytes).
  1743. Removing gd32f10x_rcu.o(i.rcu_predv0_config), (32 bytes).
  1744. Removing gd32f10x_rcu.o(i.rcu_rtc_clock_config), (24 bytes).
  1745. Removing gd32f10x_rcu.o(i.rcu_system_clock_source_config), (24 bytes).
  1746. Removing gd32f10x_rcu.o(i.rcu_system_clock_source_get), (16 bytes).
  1747. Removing gd32f10x_rcu.o(i.rcu_usb_clock_config), (24 bytes).
  1748. Removing gd32f10x_rtc.o(.rev16_text), (4 bytes).
  1749. Removing gd32f10x_rtc.o(.revsh_text), (4 bytes).
  1750. Removing gd32f10x_rtc.o(i.rtc_alarm_config), (32 bytes).
  1751. Removing gd32f10x_rtc.o(i.rtc_configuration_mode_enter), (20 bytes).
  1752. Removing gd32f10x_rtc.o(i.rtc_configuration_mode_exit), (20 bytes).
  1753. Removing gd32f10x_rtc.o(i.rtc_counter_get), (20 bytes).
  1754. Removing gd32f10x_rtc.o(i.rtc_counter_set), (32 bytes).
  1755. Removing gd32f10x_rtc.o(i.rtc_divider_get), (24 bytes).
  1756. Removing gd32f10x_rtc.o(i.rtc_flag_clear), (16 bytes).
  1757. Removing gd32f10x_rtc.o(i.rtc_flag_get), (24 bytes).
  1758. Removing gd32f10x_rtc.o(i.rtc_interrupt_disable), (16 bytes).
  1759. Removing gd32f10x_rtc.o(i.rtc_interrupt_enable), (16 bytes).
  1760. Removing gd32f10x_rtc.o(i.rtc_interrupt_flag_clear), (16 bytes).
  1761. Removing gd32f10x_rtc.o(i.rtc_interrupt_flag_get), (24 bytes).
  1762. Removing gd32f10x_rtc.o(i.rtc_lwoff_wait), (20 bytes).
  1763. Removing gd32f10x_rtc.o(i.rtc_prescaler_set), (32 bytes).
  1764. Removing gd32f10x_rtc.o(i.rtc_register_sync_wait), (32 bytes).
  1765. Removing gd32f10x_sdio.o(.rev16_text), (4 bytes).
  1766. Removing gd32f10x_sdio.o(.revsh_text), (4 bytes).
  1767. Removing gd32f10x_sdio.o(i.sdio_bus_mode_set), (28 bytes).
  1768. Removing gd32f10x_sdio.o(i.sdio_ceata_command_completion_disable), (20 bytes).
  1769. Removing gd32f10x_sdio.o(i.sdio_ceata_command_completion_enable), (20 bytes).
  1770. Removing gd32f10x_sdio.o(i.sdio_ceata_command_disable), (20 bytes).
  1771. Removing gd32f10x_sdio.o(i.sdio_ceata_command_enable), (20 bytes).
  1772. Removing gd32f10x_sdio.o(i.sdio_ceata_interrupt_disable), (20 bytes).
  1773. Removing gd32f10x_sdio.o(i.sdio_ceata_interrupt_enable), (20 bytes).
  1774. Removing gd32f10x_sdio.o(i.sdio_clock_config), (36 bytes).
  1775. Removing gd32f10x_sdio.o(i.sdio_clock_disable), (20 bytes).
  1776. Removing gd32f10x_sdio.o(i.sdio_clock_enable), (20 bytes).
  1777. Removing gd32f10x_sdio.o(i.sdio_command_index_get), (12 bytes).
  1778. Removing gd32f10x_sdio.o(i.sdio_command_response_config), (44 bytes).
  1779. Removing gd32f10x_sdio.o(i.sdio_csm_disable), (20 bytes).
  1780. Removing gd32f10x_sdio.o(i.sdio_csm_enable), (20 bytes).
  1781. Removing gd32f10x_sdio.o(i.sdio_data_config), (52 bytes).
  1782. Removing gd32f10x_sdio.o(i.sdio_data_counter_get), (12 bytes).
  1783. Removing gd32f10x_sdio.o(i.sdio_data_read), (12 bytes).
  1784. Removing gd32f10x_sdio.o(i.sdio_data_transfer_config), (28 bytes).
  1785. Removing gd32f10x_sdio.o(i.sdio_data_write), (12 bytes).
  1786. Removing gd32f10x_sdio.o(i.sdio_deinit), (28 bytes).
  1787. Removing gd32f10x_sdio.o(i.sdio_dma_disable), (20 bytes).
  1788. Removing gd32f10x_sdio.o(i.sdio_dma_enable), (20 bytes).
  1789. Removing gd32f10x_sdio.o(i.sdio_dsm_disable), (20 bytes).
  1790. Removing gd32f10x_sdio.o(i.sdio_dsm_enable), (20 bytes).
  1791. Removing gd32f10x_sdio.o(i.sdio_fifo_counter_get), (12 bytes).
  1792. Removing gd32f10x_sdio.o(i.sdio_flag_clear), (12 bytes).
  1793. Removing gd32f10x_sdio.o(i.sdio_flag_get), (20 bytes).
  1794. Removing gd32f10x_sdio.o(i.sdio_hardware_clock_disable), (20 bytes).
  1795. Removing gd32f10x_sdio.o(i.sdio_hardware_clock_enable), (20 bytes).
  1796. Removing gd32f10x_sdio.o(i.sdio_interrupt_disable), (16 bytes).
  1797. Removing gd32f10x_sdio.o(i.sdio_interrupt_enable), (16 bytes).
  1798. Removing gd32f10x_sdio.o(i.sdio_interrupt_flag_clear), (12 bytes).
  1799. Removing gd32f10x_sdio.o(i.sdio_interrupt_flag_get), (24 bytes).
  1800. Removing gd32f10x_sdio.o(i.sdio_operation_disable), (20 bytes).
  1801. Removing gd32f10x_sdio.o(i.sdio_operation_enable), (20 bytes).
  1802. Removing gd32f10x_sdio.o(i.sdio_power_state_get), (12 bytes).
  1803. Removing gd32f10x_sdio.o(i.sdio_power_state_set), (12 bytes).
  1804. Removing gd32f10x_sdio.o(i.sdio_readwait_disable), (20 bytes).
  1805. Removing gd32f10x_sdio.o(i.sdio_readwait_enable), (20 bytes).
  1806. Removing gd32f10x_sdio.o(i.sdio_readwait_type_set), (40 bytes).
  1807. Removing gd32f10x_sdio.o(i.sdio_response_get), (56 bytes).
  1808. Removing gd32f10x_sdio.o(i.sdio_stop_readwait_disable), (20 bytes).
  1809. Removing gd32f10x_sdio.o(i.sdio_stop_readwait_enable), (20 bytes).
  1810. Removing gd32f10x_sdio.o(i.sdio_suspend_disable), (20 bytes).
  1811. Removing gd32f10x_sdio.o(i.sdio_suspend_enable), (20 bytes).
  1812. Removing gd32f10x_sdio.o(i.sdio_wait_type_set), (28 bytes).
  1813. Removing gd32f10x_spi.o(.rev16_text), (4 bytes).
  1814. Removing gd32f10x_spi.o(.revsh_text), (4 bytes).
  1815. Removing gd32f10x_spi.o(i.i2s_disable), (10 bytes).
  1816. Removing gd32f10x_spi.o(i.i2s_enable), (10 bytes).
  1817. Removing gd32f10x_spi.o(i.i2s_init), (28 bytes).
  1818. Removing gd32f10x_spi.o(i.i2s_psc_config), (164 bytes).
  1819. Removing gd32f10x_spi.o(i.spi_bidirectional_transfer_config), (26 bytes).
  1820. Removing gd32f10x_spi.o(i.spi_crc_error_clear), (10 bytes).
  1821. Removing gd32f10x_spi.o(i.spi_crc_get), (16 bytes).
  1822. Removing gd32f10x_spi.o(i.spi_crc_next), (10 bytes).
  1823. Removing gd32f10x_spi.o(i.spi_crc_off), (10 bytes).
  1824. Removing gd32f10x_spi.o(i.spi_crc_on), (10 bytes).
  1825. Removing gd32f10x_spi.o(i.spi_crc_polynomial_get), (8 bytes).
  1826. Removing gd32f10x_spi.o(i.spi_crc_polynomial_set), (12 bytes).
  1827. Removing gd32f10x_spi.o(i.spi_disable), (10 bytes).
  1828. Removing gd32f10x_spi.o(i.spi_dma_disable), (22 bytes).
  1829. Removing gd32f10x_spi.o(i.spi_dma_enable), (22 bytes).
  1830. Removing gd32f10x_spi.o(i.spi_i2s_data_frame_format_config), (16 bytes).
  1831. Removing gd32f10x_spi.o(i.spi_i2s_interrupt_disable), (8 bytes).
  1832. Removing gd32f10x_spi.o(i.spi_i2s_interrupt_enable), (8 bytes).
  1833. Removing gd32f10x_spi.o(i.spi_i2s_interrupt_flag_get), (100 bytes).
  1834. Removing gd32f10x_spi.o(i.spi_nss_internal_high), (10 bytes).
  1835. Removing gd32f10x_spi.o(i.spi_nss_internal_low), (10 bytes).
  1836. Removing gd32f10x_spi.o(i.spi_nss_output_disable), (10 bytes).
  1837. Removing gd32f10x_spi.o(i.spi_nss_output_enable), (10 bytes).
  1838. Removing gd32f10x_spi.o(i.spi_struct_para_init), (18 bytes).
  1839. Removing gd32f10x_timer.o(.rev16_text), (4 bytes).
  1840. Removing gd32f10x_timer.o(.revsh_text), (4 bytes).
  1841. Removing gd32f10x_timer.o(i.timer_auto_reload_shadow_disable), (10 bytes).
  1842. Removing gd32f10x_timer.o(i.timer_auto_reload_shadow_enable), (10 bytes).
  1843. Removing gd32f10x_timer.o(i.timer_automatic_output_disable), (10 bytes).
  1844. Removing gd32f10x_timer.o(i.timer_automatic_output_enable), (10 bytes).
  1845. Removing gd32f10x_timer.o(i.timer_autoreload_value_config), (4 bytes).
  1846. Removing gd32f10x_timer.o(i.timer_break_config), (30 bytes).
  1847. Removing gd32f10x_timer.o(i.timer_break_disable), (10 bytes).
  1848. Removing gd32f10x_timer.o(i.timer_break_enable), (10 bytes).
  1849. Removing gd32f10x_timer.o(i.timer_break_struct_para_init), (18 bytes).
  1850. Removing gd32f10x_timer.o(i.timer_channel_capture_value_register_read), (42 bytes).
  1851. Removing gd32f10x_timer.o(i.timer_channel_complementary_output_polarity_config), (70 bytes).
  1852. Removing gd32f10x_timer.o(i.timer_channel_complementary_output_state_config), (70 bytes).
  1853. Removing gd32f10x_timer.o(i.timer_channel_control_shadow_config), (24 bytes).
  1854. Removing gd32f10x_timer.o(i.timer_channel_control_shadow_update_config), (26 bytes).
  1855. Removing gd32f10x_timer.o(i.timer_channel_dma_request_source_select), (26 bytes).
  1856. Removing gd32f10x_timer.o(i.timer_channel_input_capture_prescaler_config), (90 bytes).
  1857. Removing gd32f10x_timer.o(i.timer_channel_input_struct_para_init), (16 bytes).
  1858. Removing gd32f10x_timer.o(i.timer_channel_output_clear_config), (90 bytes).
  1859. Removing gd32f10x_timer.o(i.timer_channel_output_config), (492 bytes).
  1860. Removing gd32f10x_timer.o(i.timer_channel_output_fast_config), (90 bytes).
  1861. Removing gd32f10x_timer.o(i.timer_channel_output_mode_config), (90 bytes).
  1862. Removing gd32f10x_timer.o(i.timer_channel_output_polarity_config), (92 bytes).
  1863. Removing gd32f10x_timer.o(i.timer_channel_output_pulse_value_config), (38 bytes).
  1864. Removing gd32f10x_timer.o(i.timer_channel_output_shadow_config), (90 bytes).
  1865. Removing gd32f10x_timer.o(i.timer_channel_output_state_config), (92 bytes).
  1866. Removing gd32f10x_timer.o(i.timer_channel_output_struct_para_init), (16 bytes).
  1867. Removing gd32f10x_timer.o(i.timer_counter_alignment), (16 bytes).
  1868. Removing gd32f10x_timer.o(i.timer_counter_down_direction), (10 bytes).
  1869. Removing gd32f10x_timer.o(i.timer_counter_read), (8 bytes).
  1870. Removing gd32f10x_timer.o(i.timer_counter_up_direction), (10 bytes).
  1871. Removing gd32f10x_timer.o(i.timer_counter_value_config), (4 bytes).
  1872. Removing gd32f10x_timer.o(i.timer_deinit), (388 bytes).
  1873. Removing gd32f10x_timer.o(i.timer_disable), (10 bytes).
  1874. Removing gd32f10x_timer.o(i.timer_dma_disable), (8 bytes).
  1875. Removing gd32f10x_timer.o(i.timer_dma_enable), (8 bytes).
  1876. Removing gd32f10x_timer.o(i.timer_dma_transfer_config), (24 bytes).
  1877. Removing gd32f10x_timer.o(i.timer_enable), (10 bytes).
  1878. Removing gd32f10x_timer.o(i.timer_event_software_generate), (8 bytes).
  1879. Removing gd32f10x_timer.o(i.timer_external_clock_mode0_config), (40 bytes).
  1880. Removing gd32f10x_timer.o(i.timer_external_clock_mode1_config), (32 bytes).
  1881. Removing gd32f10x_timer.o(i.timer_external_clock_mode1_disable), (10 bytes).
  1882. Removing gd32f10x_timer.o(i.timer_external_trigger_as_external_clock_config), (166 bytes).
  1883. Removing gd32f10x_timer.o(i.timer_external_trigger_config), (30 bytes).
  1884. Removing gd32f10x_timer.o(i.timer_flag_clear), (6 bytes).
  1885. Removing gd32f10x_timer.o(i.timer_flag_get), (16 bytes).
  1886. Removing gd32f10x_timer.o(i.timer_hall_mode_config), (26 bytes).
  1887. Removing gd32f10x_timer.o(i.timer_init), (224 bytes).
  1888. Removing gd32f10x_timer.o(i.timer_input_capture_config), (326 bytes).
  1889. Removing gd32f10x_timer.o(i.timer_input_pwm_capture_config), (356 bytes).
  1890. Removing gd32f10x_timer.o(i.timer_input_trigger_source_select), (16 bytes).
  1891. Removing gd32f10x_timer.o(i.timer_internal_clock_config), (10 bytes).
  1892. Removing gd32f10x_timer.o(i.timer_internal_trigger_as_external_clock_config), (32 bytes).
  1893. Removing gd32f10x_timer.o(i.timer_interrupt_disable), (8 bytes).
  1894. Removing gd32f10x_timer.o(i.timer_interrupt_enable), (8 bytes).
  1895. Removing gd32f10x_timer.o(i.timer_interrupt_flag_clear), (6 bytes).
  1896. Removing gd32f10x_timer.o(i.timer_interrupt_flag_get), (24 bytes).
  1897. Removing gd32f10x_timer.o(i.timer_master_output_trigger_source_select), (16 bytes).
  1898. Removing gd32f10x_timer.o(i.timer_master_slave_mode_config), (26 bytes).
  1899. Removing gd32f10x_timer.o(i.timer_prescaler_config), (16 bytes).
  1900. Removing gd32f10x_timer.o(i.timer_prescaler_read), (10 bytes).
  1901. Removing gd32f10x_timer.o(i.timer_primary_output_config), (24 bytes).
  1902. Removing gd32f10x_timer.o(i.timer_quadrature_decoder_mode_config), (64 bytes).
  1903. Removing gd32f10x_timer.o(i.timer_repetition_value_config), (4 bytes).
  1904. Removing gd32f10x_timer.o(i.timer_single_pulse_mode_config), (26 bytes).
  1905. Removing gd32f10x_timer.o(i.timer_slave_mode_select), (16 bytes).
  1906. Removing gd32f10x_timer.o(i.timer_struct_para_init), (22 bytes).
  1907. Removing gd32f10x_timer.o(i.timer_update_event_disable), (10 bytes).
  1908. Removing gd32f10x_timer.o(i.timer_update_event_enable), (10 bytes).
  1909. Removing gd32f10x_timer.o(i.timer_update_source_config), (26 bytes).
  1910. Removing gd32f10x_usart.o(.rev16_text), (4 bytes).
  1911. Removing gd32f10x_usart.o(.revsh_text), (4 bytes).
  1912. Removing gd32f10x_usart.o(i.usart_address_config), (20 bytes).
  1913. Removing gd32f10x_usart.o(i.usart_disable), (10 bytes).
  1914. Removing gd32f10x_usart.o(i.usart_dma_receive_config), (16 bytes).
  1915. Removing gd32f10x_usart.o(i.usart_guard_time_config), (24 bytes).
  1916. Removing gd32f10x_usart.o(i.usart_halfduplex_disable), (10 bytes).
  1917. Removing gd32f10x_usart.o(i.usart_halfduplex_enable), (10 bytes).
  1918. Removing gd32f10x_usart.o(i.usart_interrupt_disable), (26 bytes).
  1919. Removing gd32f10x_usart.o(i.usart_irda_lowpower_config), (20 bytes).
  1920. Removing gd32f10x_usart.o(i.usart_irda_mode_disable), (10 bytes).
  1921. Removing gd32f10x_usart.o(i.usart_irda_mode_enable), (10 bytes).
  1922. Removing gd32f10x_usart.o(i.usart_lin_break_detection_length_config), (20 bytes).
  1923. Removing gd32f10x_usart.o(i.usart_lin_mode_disable), (10 bytes).
  1924. Removing gd32f10x_usart.o(i.usart_lin_mode_enable), (10 bytes).
  1925. Removing gd32f10x_usart.o(i.usart_mute_mode_disable), (10 bytes).
  1926. Removing gd32f10x_usart.o(i.usart_mute_mode_enable), (10 bytes).
  1927. Removing gd32f10x_usart.o(i.usart_mute_mode_wakeup_config), (16 bytes).
  1928. Removing gd32f10x_usart.o(i.usart_prescaler_config), (16 bytes).
  1929. Removing gd32f10x_usart.o(i.usart_send_break), (10 bytes).
  1930. Removing gd32f10x_usart.o(i.usart_smartcard_mode_disable), (10 bytes).
  1931. Removing gd32f10x_usart.o(i.usart_smartcard_mode_enable), (10 bytes).
  1932. Removing gd32f10x_usart.o(i.usart_smartcard_mode_nack_disable), (10 bytes).
  1933. Removing gd32f10x_usart.o(i.usart_smartcard_mode_nack_enable), (10 bytes).
  1934. Removing gd32f10x_usart.o(i.usart_synchronous_clock_config), (34 bytes).
  1935. Removing gd32f10x_usart.o(i.usart_synchronous_clock_disable), (10 bytes).
  1936. Removing gd32f10x_usart.o(i.usart_synchronous_clock_enable), (10 bytes).
  1937. Removing gd32f10x_wwdgt.o(.rev16_text), (4 bytes).
  1938. Removing gd32f10x_wwdgt.o(.revsh_text), (4 bytes).
  1939. Removing gd32f10x_wwdgt.o(i.wwdgt_config), (28 bytes).
  1940. Removing gd32f10x_wwdgt.o(i.wwdgt_counter_update), (16 bytes).
  1941. Removing gd32f10x_wwdgt.o(i.wwdgt_deinit), (20 bytes).
  1942. Removing gd32f10x_wwdgt.o(i.wwdgt_enable), (20 bytes).
  1943. Removing gd32f10x_wwdgt.o(i.wwdgt_flag_clear), (12 bytes).
  1944. Removing gd32f10x_wwdgt.o(i.wwdgt_flag_get), (24 bytes).
  1945. Removing gd32f10x_wwdgt.o(i.wwdgt_interrupt_enable), (20 bytes).
  1946. Removing led.o(.rev16_text), (4 bytes).
  1947. Removing led.o(.revsh_text), (4 bytes).
  1948. Removing led.o(i.gd_eval_led_off), (24 bytes).
  1949. Removing led.o(i.gd_eval_led_on), (24 bytes).
  1950. Removing spi.o(.rev16_text), (4 bytes).
  1951. Removing spi.o(.revsh_text), (4 bytes).
  1952. Removing spi.o(i.SPI0_Read), (28 bytes).
  1953. Removing usart.o(.rev16_text), (4 bytes).
  1954. Removing usart.o(.revsh_text), (4 bytes).
  1955. Removing usart.o(i.gd_485_DE_rx), (16 bytes).
  1956. Removing usart.o(i.gd_com_232_Receive), (44 bytes).
  1957. Removing usart.o(i.gd_com_485_send), (64 bytes).
  1958. Removing ring_buffer.o(.rev16_text), (4 bytes).
  1959. Removing ring_buffer.o(.revsh_text), (4 bytes).
  1960. Removing w25q32.o(.rev16_text), (4 bytes).
  1961. Removing w25q32.o(.revsh_text), (4 bytes).
  1962. Removing w25q32.o(i.W25Q32_Read), (76 bytes).
  1963. Removing key.o(.rev16_text), (4 bytes).
  1964. Removing key.o(.revsh_text), (4 bytes).
  1965. Removing cjson.o(i.add_item_to_array), (54 bytes).
  1966. Removing cjson.o(i.add_item_to_object), (122 bytes).
  1967. Removing cjson.o(i.cJSON_AddArrayToObject), (48 bytes).
  1968. Removing cjson.o(i.cJSON_AddBoolToObject), (52 bytes).
  1969. Removing cjson.o(i.cJSON_AddFalseToObject), (48 bytes).
  1970. Removing cjson.o(i.cJSON_AddItemReferenceToArray), (36 bytes).
  1971. Removing cjson.o(i.cJSON_AddItemReferenceToObject), (48 bytes).
  1972. Removing cjson.o(i.cJSON_AddItemToArray), (16 bytes).
  1973. Removing cjson.o(i.cJSON_AddItemToObject), (32 bytes).
  1974. Removing cjson.o(i.cJSON_AddItemToObjectCS), (32 bytes).
  1975. Removing cjson.o(i.cJSON_AddNullToObject), (48 bytes).
  1976. Removing cjson.o(i.cJSON_AddNumberToObject), (60 bytes).
  1977. Removing cjson.o(i.cJSON_AddObjectToObject), (48 bytes).
  1978. Removing cjson.o(i.cJSON_AddRawToObject), (52 bytes).
  1979. Removing cjson.o(i.cJSON_AddStringToObject), (52 bytes).
  1980. Removing cjson.o(i.cJSON_AddTrueToObject), (48 bytes).
  1981. Removing cjson.o(i.cJSON_Compare), (384 bytes).
  1982. Removing cjson.o(i.cJSON_CreateArray), (24 bytes).
  1983. Removing cjson.o(i.cJSON_CreateArrayReference), (36 bytes).
  1984. Removing cjson.o(i.cJSON_CreateBool), (32 bytes).
  1985. Removing cjson.o(i.cJSON_CreateDoubleArray), (106 bytes).
  1986. Removing cjson.o(i.cJSON_CreateFalse), (24 bytes).
  1987. Removing cjson.o(i.cJSON_CreateFloatArray), (110 bytes).
  1988. Removing cjson.o(i.cJSON_CreateIntArray), (110 bytes).
  1989. Removing cjson.o(i.cJSON_CreateNull), (24 bytes).
  1990. Removing cjson.o(i.cJSON_CreateNumber), (100 bytes).
  1991. Removing cjson.o(i.cJSON_CreateObject), (24 bytes).
  1992. Removing cjson.o(i.cJSON_CreateObjectReference), (36 bytes).
  1993. Removing cjson.o(i.cJSON_CreateRaw), (52 bytes).
  1994. Removing cjson.o(i.cJSON_CreateString), (52 bytes).
  1995. Removing cjson.o(i.cJSON_CreateStringArray), (100 bytes).
  1996. Removing cjson.o(i.cJSON_CreateStringReference), (36 bytes).
  1997. Removing cjson.o(i.cJSON_CreateTrue), (24 bytes).
  1998. Removing cjson.o(i.cJSON_DeleteItemFromArray), (22 bytes).
  1999. Removing cjson.o(i.cJSON_DeleteItemFromObject), (22 bytes).
  2000. Removing cjson.o(i.cJSON_DeleteItemFromObjectCaseSensitive), (22 bytes).
  2001. Removing cjson.o(i.cJSON_DetachItemFromArray), (34 bytes).
  2002. Removing cjson.o(i.cJSON_DetachItemFromObject), (26 bytes).
  2003. Removing cjson.o(i.cJSON_DetachItemFromObjectCaseSensitive), (26 bytes).
  2004. Removing cjson.o(i.cJSON_DetachItemViaPointer), (64 bytes).
  2005. Removing cjson.o(i.cJSON_Duplicate), (192 bytes).
  2006. Removing cjson.o(i.cJSON_GetArrayItem), (24 bytes).
  2007. Removing cjson.o(i.cJSON_GetArraySize), (28 bytes).
  2008. Removing cjson.o(i.cJSON_GetErrorPtr), (16 bytes).
  2009. Removing cjson.o(i.cJSON_GetNumberValue), (28 bytes).
  2010. Removing cjson.o(i.cJSON_GetObjectItem), (18 bytes).
  2011. Removing cjson.o(i.cJSON_GetStringValue), (20 bytes).
  2012. Removing cjson.o(i.cJSON_HasObjectItem), (24 bytes).
  2013. Removing cjson.o(i.cJSON_InitHooks), (100 bytes).
  2014. Removing cjson.o(i.cJSON_InsertItemInArray), (70 bytes).
  2015. Removing cjson.o(i.cJSON_IsArray), (22 bytes).
  2016. Removing cjson.o(i.cJSON_IsBool), (24 bytes).
  2017. Removing cjson.o(i.cJSON_IsFalse), (20 bytes).
  2018. Removing cjson.o(i.cJSON_IsInvalid), (20 bytes).
  2019. Removing cjson.o(i.cJSON_IsNull), (22 bytes).
  2020. Removing cjson.o(i.cJSON_IsObject), (22 bytes).
  2021. Removing cjson.o(i.cJSON_IsRaw), (22 bytes).
  2022. Removing cjson.o(i.cJSON_IsTrue), (22 bytes).
  2023. Removing cjson.o(i.cJSON_Minify), (154 bytes).
  2024. Removing cjson.o(i.cJSON_ParseWithLength), (20 bytes).
  2025. Removing cjson.o(i.cJSON_Print), (20 bytes).
  2026. Removing cjson.o(i.cJSON_PrintBuffered), (96 bytes).
  2027. Removing cjson.o(i.cJSON_PrintPreallocated), (68 bytes).
  2028. Removing cjson.o(i.cJSON_PrintUnformatted), (20 bytes).
  2029. Removing cjson.o(i.cJSON_ReplaceItemInArray), (42 bytes).
  2030. Removing cjson.o(i.cJSON_ReplaceItemInObject), (22 bytes).
  2031. Removing cjson.o(i.cJSON_ReplaceItemInObjectCaseSensitive), (22 bytes).
  2032. Removing cjson.o(i.cJSON_ReplaceItemViaPointer), (96 bytes).
  2033. Removing cjson.o(i.cJSON_SetNumberHelper), (84 bytes).
  2034. Removing cjson.o(i.cJSON_SetValuestring), (100 bytes).
  2035. Removing cjson.o(i.cJSON_Version), (40 bytes).
  2036. Removing cjson.o(i.cJSON_free), (20 bytes).
  2037. Removing cjson.o(i.cJSON_malloc), (20 bytes).
  2038. Removing cjson.o(i.cJSON_strdup), (56 bytes).
  2039. Removing cjson.o(i.cast_away_const), (2 bytes).
  2040. Removing cjson.o(i.compare_double), (116 bytes).
  2041. Removing cjson.o(i.create_reference), (60 bytes).
  2042. Removing cjson.o(i.ensure), (184 bytes).
  2043. Removing cjson.o(i.get_array_item), (30 bytes).
  2044. Removing cjson.o(i.minify_string), (116 bytes).
  2045. Removing cjson.o(i.print), (178 bytes).
  2046. Removing cjson.o(i.print_array), (178 bytes).
  2047. Removing cjson.o(i.print_number), (340 bytes).
  2048. Removing cjson.o(i.print_object), (372 bytes).
  2049. Removing cjson.o(i.print_string), (16 bytes).
  2050. Removing cjson.o(i.print_string_ptr), (372 bytes).
  2051. Removing cjson.o(i.print_value), (260 bytes).
  2052. Removing cjson.o(i.replace_item_in_object), (96 bytes).
  2053. Removing cjson.o(i.skip_multiline_comment), (50 bytes).
  2054. Removing cjson.o(i.skip_oneline_comment), (42 bytes).
  2055. Removing cjson.o(i.suffix_object), (6 bytes).
  2056. Removing cjson.o(i.update_offset), (36 bytes).
  2057. Removing cjson.o(.bss), (15 bytes).
  2058. Removing dlt645.o(i.dlt645_set_debug), (8 bytes).
  2059. Removing dlt645_2007.o(i.dlt645_write_data), (198 bytes).
  2060. Removing dlt645_data.o(i.dec_to_bcd), (420 bytes).
  2061. Removing dlt645_data.o(i.dlt645_data_parse_by_format_to_float_and_DATE), (140 bytes).
  2062. Removing dlt645_data.o(i.str_to_bcd), (128 bytes).
  2063. Removing dlt645_port.o(.rev16_text), (4 bytes).
  2064. Removing dlt645_port.o(.revsh_text), (4 bytes).
  2065. 693 unused section(s) (total 30509 bytes) removed from the image.
  2066. ==============================================================================
  2067. Image Symbol Table
  2068. Local Symbols
  2069. Symbol Name Value Ov Type Size Object(Section)
  2070. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isgraph_o.o ABSOLUTE
  2071. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isalnum_o.o ABSOLUTE
  2072. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 ctype_o.o ABSOLUTE
  2073. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 ispunct_o.o ABSOLUTE
  2074. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isxdigit_o.o ABSOLUTE
  2075. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isalpha_o.o ABSOLUTE
  2076. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isblank_o.o ABSOLUTE
  2077. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 iscntrl_o.o ABSOLUTE
  2078. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isdigit_o.o ABSOLUTE
  2079. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 ctype_c.o ABSOLUTE
  2080. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isspace_c.o ABSOLUTE
  2081. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 islower_o.o ABSOLUTE
  2082. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isupper_o.o ABSOLUTE
  2083. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isprint_o.o ABSOLUTE
  2084. ../clib/microlib/ctype/ctype.c 0x00000000 Number 0 isspace_o.o ABSOLUTE
  2085. ../clib/microlib/ctype/tolower.c 0x00000000 Number 0 tolower.o ABSOLUTE
  2086. ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE
  2087. ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE
  2088. ../clib/microlib/errno.c 0x00000000 Number 0 errno.o ABSOLUTE
  2089. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE
  2090. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE
  2091. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE
  2092. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE
  2093. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE
  2094. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE
  2095. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE
  2096. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE
  2097. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE
  2098. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE
  2099. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE
  2100. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE
  2101. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE
  2102. ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE
  2103. ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE
  2104. ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE
  2105. ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 malloca.o ABSOLUTE
  2106. ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 mallocra.o ABSOLUTE
  2107. ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 mallocr.o ABSOLUTE
  2108. ../clib/microlib/malloc/malloc.c 0x00000000 Number 0 malloc.o ABSOLUTE
  2109. ../clib/microlib/malloc/mvars.c 0x00000000 Number 0 mvars.o ABSOLUTE
  2110. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE
  2111. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE
  2112. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE
  2113. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE
  2114. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE
  2115. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE
  2116. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE
  2117. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE
  2118. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE
  2119. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE
  2120. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE
  2121. ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE
  2122. ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE
  2123. ../clib/microlib/string/memcmp.c 0x00000000 Number 0 memcmp.o ABSOLUTE
  2124. ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE
  2125. ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE
  2126. ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE
  2127. ../clib/microlib/string/strchr.c 0x00000000 Number 0 strchr.o ABSOLUTE
  2128. ../clib/microlib/string/strcmp.c 0x00000000 Number 0 strcmp.o ABSOLUTE
  2129. ../clib/microlib/string/strcpy.c 0x00000000 Number 0 strcpy.o ABSOLUTE
  2130. ../clib/microlib/string/strlen.c 0x00000000 Number 0 strlen.o ABSOLUTE
  2131. ../clib/microlib/string/strncmp.c 0x00000000 Number 0 strncmp.o ABSOLUTE
  2132. ../clib/microlib/string/strstr.c 0x00000000 Number 0 strstr.o ABSOLUTE
  2133. ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE
  2134. ../clib/scanf.c 0x00000000 Number 0 _scanf.o ABSOLUTE
  2135. ../clib/scanf.c 0x00000000 Number 0 strtol.o ABSOLUTE
  2136. ../clib/scanf.c 0x00000000 Number 0 strtod.o ABSOLUTE
  2137. ../clib/scanf.c 0x00000000 Number 0 _strtoul.o ABSOLUTE
  2138. ../clib/scanf.c 0x00000000 Number 0 scanf_fp.o ABSOLUTE
  2139. ../clib/scanf.c 0x00000000 Number 0 _scanf_str.o ABSOLUTE
  2140. ../clib/scanf.c 0x00000000 Number 0 _sgetc.o ABSOLUTE
  2141. ../clib/scanf.c 0x00000000 Number 0 scanf_char.o ABSOLUTE
  2142. ../clib/scanf.c 0x00000000 Number 0 _scanf_int.o ABSOLUTE
  2143. ../clib/scanf.c 0x00000000 Number 0 _chval.o ABSOLUTE
  2144. ../clib/scanf.c 0x00000000 Number 0 __0sscanf.o ABSOLUTE
  2145. ../fplib/microlib/d2f.c 0x00000000 Number 0 d2f.o ABSOLUTE
  2146. ../fplib/microlib/f2d.c 0x00000000 Number 0 f2d.o ABSOLUTE
  2147. ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE
  2148. ../fplib/microlib/fpdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE
  2149. ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE
  2150. ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE
  2151. ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 fepilogue.o ABSOLUTE
  2152. ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixi.o ABSOLUTE
  2153. ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE
  2154. ../fplib/microlib/fpfix.c 0x00000000 Number 0 ffixi.o ABSOLUTE
  2155. ../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltul.o ABSOLUTE
  2156. ../fplib/microlib/fpflt.c 0x00000000 Number 0 ffltui.o ABSOLUTE
  2157. ../fplib/microlib/fpflt.c 0x00000000 Number 0 dfltui.o ABSOLUTE
  2158. ../fplib/microlib/fpflt.c 0x00000000 Number 0 dflti.o ABSOLUTE
  2159. ../fplib/microlib/fpmul.c 0x00000000 Number 0 fmul.o ABSOLUTE
  2160. ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE
  2161. ../fplib/microlib/fpscalb.c 0x00000000 Number 0 dscalb.o ABSOLUTE
  2162. ../fplib/microlib/fpsqrt.c 0x00000000 Number 0 dsqrt.o ABSOLUTE
  2163. ../mathlib/dunder.c 0x00000000 Number 0 dunder.o ABSOLUTE
  2164. ../mathlib/fpclassify.c 0x00000000 Number 0 fpclassify.o ABSOLUTE
  2165. ../mathlib/poly.c 0x00000000 Number 0 poly.o ABSOLUTE
  2166. ../mathlib/pow.c 0x00000000 Number 0 pow_x.o ABSOLUTE
  2167. ../mathlib/pow.c 0x00000000 Number 0 pow.o ABSOLUTE
  2168. ../mathlib/qnan.c 0x00000000 Number 0 qnan.o ABSOLUTE
  2169. ../mathlib/sqrt.c 0x00000000 Number 0 sqrt_x.o ABSOLUTE
  2170. ../mathlib/sqrt.c 0x00000000 Number 0 sqrt.o ABSOLUTE
  2171. ../mathlib/strtod.c 0x00000000 Number 0 strtod.o ABSOLUTE
  2172. ..\App\PC.c 0x00000000 Number 0 pc.o ABSOLUTE
  2173. ..\App\device_message.c 0x00000000 Number 0 device_message.o ABSOLUTE
  2174. ..\App\ec800m.c 0x00000000 Number 0 ec800m.o ABSOLUTE
  2175. ..\App\gd32f10x_it.c 0x00000000 Number 0 gd32f10x_it.o ABSOLUTE
  2176. ..\App\log.c 0x00000000 Number 0 log.o ABSOLUTE
  2177. ..\App\main.c 0x00000000 Number 0 main.o ABSOLUTE
  2178. ..\App\mmodbus.c 0x00000000 Number 0 mmodbus.o ABSOLUTE
  2179. ..\App\mqttRecv.c 0x00000000 Number 0 mqttrecv.o ABSOLUTE
  2180. ..\App\otaEvent.c 0x00000000 Number 0 otaevent.o ABSOLUTE
  2181. ..\App\parseDeviceMessage.c 0x00000000 Number 0 parsedevicemessage.o ABSOLUTE
  2182. ..\App\systick.c 0x00000000 Number 0 systick.o ABSOLUTE
  2183. ..\CMSIS\system_gd32f10x.c 0x00000000 Number 0 system_gd32f10x.o ABSOLUTE
  2184. ..\Firmware\Source\gd32f10x_adc.c 0x00000000 Number 0 gd32f10x_adc.o ABSOLUTE
  2185. ..\Firmware\Source\gd32f10x_bkp.c 0x00000000 Number 0 gd32f10x_bkp.o ABSOLUTE
  2186. ..\Firmware\Source\gd32f10x_can.c 0x00000000 Number 0 gd32f10x_can.o ABSOLUTE
  2187. ..\Firmware\Source\gd32f10x_crc.c 0x00000000 Number 0 gd32f10x_crc.o ABSOLUTE
  2188. ..\Firmware\Source\gd32f10x_dac.c 0x00000000 Number 0 gd32f10x_dac.o ABSOLUTE
  2189. ..\Firmware\Source\gd32f10x_dbg.c 0x00000000 Number 0 gd32f10x_dbg.o ABSOLUTE
  2190. ..\Firmware\Source\gd32f10x_dma.c 0x00000000 Number 0 gd32f10x_dma.o ABSOLUTE
  2191. ..\Firmware\Source\gd32f10x_enet.c 0x00000000 Number 0 gd32f10x_enet.o ABSOLUTE
  2192. ..\Firmware\Source\gd32f10x_exmc.c 0x00000000 Number 0 gd32f10x_exmc.o ABSOLUTE
  2193. ..\Firmware\Source\gd32f10x_exti.c 0x00000000 Number 0 gd32f10x_exti.o ABSOLUTE
  2194. ..\Firmware\Source\gd32f10x_fmc.c 0x00000000 Number 0 gd32f10x_fmc.o ABSOLUTE
  2195. ..\Firmware\Source\gd32f10x_fwdgt.c 0x00000000 Number 0 gd32f10x_fwdgt.o ABSOLUTE
  2196. ..\Firmware\Source\gd32f10x_gpio.c 0x00000000 Number 0 gd32f10x_gpio.o ABSOLUTE
  2197. ..\Firmware\Source\gd32f10x_i2c.c 0x00000000 Number 0 gd32f10x_i2c.o ABSOLUTE
  2198. ..\Firmware\Source\gd32f10x_misc.c 0x00000000 Number 0 gd32f10x_misc.o ABSOLUTE
  2199. ..\Firmware\Source\gd32f10x_pmu.c 0x00000000 Number 0 gd32f10x_pmu.o ABSOLUTE
  2200. ..\Firmware\Source\gd32f10x_rcu.c 0x00000000 Number 0 gd32f10x_rcu.o ABSOLUTE
  2201. ..\Firmware\Source\gd32f10x_rtc.c 0x00000000 Number 0 gd32f10x_rtc.o ABSOLUTE
  2202. ..\Firmware\Source\gd32f10x_sdio.c 0x00000000 Number 0 gd32f10x_sdio.o ABSOLUTE
  2203. ..\Firmware\Source\gd32f10x_spi.c 0x00000000 Number 0 gd32f10x_spi.o ABSOLUTE
  2204. ..\Firmware\Source\gd32f10x_timer.c 0x00000000 Number 0 gd32f10x_timer.o ABSOLUTE
  2205. ..\Firmware\Source\gd32f10x_usart.c 0x00000000 Number 0 gd32f10x_usart.o ABSOLUTE
  2206. ..\Firmware\Source\gd32f10x_wwdgt.c 0x00000000 Number 0 gd32f10x_wwdgt.o ABSOLUTE
  2207. ..\Startup\startup_gd32f10x_xd.s 0x00000000 Number 0 startup_gd32f10x_xd.o ABSOLUTE
  2208. ..\\App\\PC.c 0x00000000 Number 0 pc.o ABSOLUTE
  2209. ..\\App\\device_message.c 0x00000000 Number 0 device_message.o ABSOLUTE
  2210. ..\\App\\ec800m.c 0x00000000 Number 0 ec800m.o ABSOLUTE
  2211. ..\\App\\gd32f10x_it.c 0x00000000 Number 0 gd32f10x_it.o ABSOLUTE
  2212. ..\\App\\log.c 0x00000000 Number 0 log.o ABSOLUTE
  2213. ..\\App\\main.c 0x00000000 Number 0 main.o ABSOLUTE
  2214. ..\\App\\mmodbus.c 0x00000000 Number 0 mmodbus.o ABSOLUTE
  2215. ..\\App\\mqttRecv.c 0x00000000 Number 0 mqttrecv.o ABSOLUTE
  2216. ..\\App\\otaEvent.c 0x00000000 Number 0 otaevent.o ABSOLUTE
  2217. ..\\App\\parseDeviceMessage.c 0x00000000 Number 0 parsedevicemessage.o ABSOLUTE
  2218. ..\\App\\systick.c 0x00000000 Number 0 systick.o ABSOLUTE
  2219. ..\\CMSIS\\system_gd32f10x.c 0x00000000 Number 0 system_gd32f10x.o ABSOLUTE
  2220. ..\\Firmware\\Source\\gd32f10x_adc.c 0x00000000 Number 0 gd32f10x_adc.o ABSOLUTE
  2221. ..\\Firmware\\Source\\gd32f10x_bkp.c 0x00000000 Number 0 gd32f10x_bkp.o ABSOLUTE
  2222. ..\\Firmware\\Source\\gd32f10x_can.c 0x00000000 Number 0 gd32f10x_can.o ABSOLUTE
  2223. ..\\Firmware\\Source\\gd32f10x_crc.c 0x00000000 Number 0 gd32f10x_crc.o ABSOLUTE
  2224. ..\\Firmware\\Source\\gd32f10x_dac.c 0x00000000 Number 0 gd32f10x_dac.o ABSOLUTE
  2225. ..\\Firmware\\Source\\gd32f10x_dbg.c 0x00000000 Number 0 gd32f10x_dbg.o ABSOLUTE
  2226. ..\\Firmware\\Source\\gd32f10x_dma.c 0x00000000 Number 0 gd32f10x_dma.o ABSOLUTE
  2227. ..\\Firmware\\Source\\gd32f10x_enet.c 0x00000000 Number 0 gd32f10x_enet.o ABSOLUTE
  2228. ..\\Firmware\\Source\\gd32f10x_exmc.c 0x00000000 Number 0 gd32f10x_exmc.o ABSOLUTE
  2229. ..\\Firmware\\Source\\gd32f10x_exti.c 0x00000000 Number 0 gd32f10x_exti.o ABSOLUTE
  2230. ..\\Firmware\\Source\\gd32f10x_fmc.c 0x00000000 Number 0 gd32f10x_fmc.o ABSOLUTE
  2231. ..\\Firmware\\Source\\gd32f10x_fwdgt.c 0x00000000 Number 0 gd32f10x_fwdgt.o ABSOLUTE
  2232. ..\\Firmware\\Source\\gd32f10x_gpio.c 0x00000000 Number 0 gd32f10x_gpio.o ABSOLUTE
  2233. ..\\Firmware\\Source\\gd32f10x_i2c.c 0x00000000 Number 0 gd32f10x_i2c.o ABSOLUTE
  2234. ..\\Firmware\\Source\\gd32f10x_misc.c 0x00000000 Number 0 gd32f10x_misc.o ABSOLUTE
  2235. ..\\Firmware\\Source\\gd32f10x_pmu.c 0x00000000 Number 0 gd32f10x_pmu.o ABSOLUTE
  2236. ..\\Firmware\\Source\\gd32f10x_rcu.c 0x00000000 Number 0 gd32f10x_rcu.o ABSOLUTE
  2237. ..\\Firmware\\Source\\gd32f10x_rtc.c 0x00000000 Number 0 gd32f10x_rtc.o ABSOLUTE
  2238. ..\\Firmware\\Source\\gd32f10x_sdio.c 0x00000000 Number 0 gd32f10x_sdio.o ABSOLUTE
  2239. ..\\Firmware\\Source\\gd32f10x_spi.c 0x00000000 Number 0 gd32f10x_spi.o ABSOLUTE
  2240. ..\\Firmware\\Source\\gd32f10x_timer.c 0x00000000 Number 0 gd32f10x_timer.o ABSOLUTE
  2241. ..\\Firmware\\Source\\gd32f10x_usart.c 0x00000000 Number 0 gd32f10x_usart.o ABSOLUTE
  2242. ..\\Firmware\\Source\\gd32f10x_wwdgt.c 0x00000000 Number 0 gd32f10x_wwdgt.o ABSOLUTE
  2243. ..\\bsp\\key.c 0x00000000 Number 0 key.o ABSOLUTE
  2244. ..\\bsp\\led.c 0x00000000 Number 0 led.o ABSOLUTE
  2245. ..\\bsp\\ring_buffer.c 0x00000000 Number 0 ring_buffer.o ABSOLUTE
  2246. ..\\bsp\\spi.c 0x00000000 Number 0 spi.o ABSOLUTE
  2247. ..\\bsp\\usart.c 0x00000000 Number 0 usart.o ABSOLUTE
  2248. ..\\bsp\\w25q32.c 0x00000000 Number 0 w25q32.o ABSOLUTE
  2249. ..\\dlt\\port\\dlt645_port.c 0x00000000 Number 0 dlt645_port.o ABSOLUTE
  2250. ..\bsp\key.c 0x00000000 Number 0 key.o ABSOLUTE
  2251. ..\bsp\led.c 0x00000000 Number 0 led.o ABSOLUTE
  2252. ..\bsp\ring_buffer.c 0x00000000 Number 0 ring_buffer.o ABSOLUTE
  2253. ..\bsp\spi.c 0x00000000 Number 0 spi.o ABSOLUTE
  2254. ..\bsp\usart.c 0x00000000 Number 0 usart.o ABSOLUTE
  2255. ..\bsp\w25q32.c 0x00000000 Number 0 w25q32.o ABSOLUTE
  2256. ..\cjson\cJSON.c 0x00000000 Number 0 cjson.o ABSOLUTE
  2257. ..\dlt\port\dlt645_port.c 0x00000000 Number 0 dlt645_port.o ABSOLUTE
  2258. ..\dlt\src\dlt645.c 0x00000000 Number 0 dlt645.o ABSOLUTE
  2259. ..\dlt\src\dlt645_1997.c 0x00000000 Number 0 dlt645_1997.o ABSOLUTE
  2260. ..\dlt\src\dlt645_2007.c 0x00000000 Number 0 dlt645_2007.o ABSOLUTE
  2261. ..\dlt\src\dlt645_data.c 0x00000000 Number 0 dlt645_data.o ABSOLUTE
  2262. cdcmple.s 0x00000000 Number 0 cdcmple.o ABSOLUTE
  2263. cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE
  2264. dc.s 0x00000000 Number 0 dc.o ABSOLUTE
  2265. handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE
  2266. init.s 0x00000000 Number 0 init.o ABSOLUTE
  2267. RESET 0x08005000 Section 304 startup_gd32f10x_xd.o(RESET)
  2268. .ARM.Collect$$$$00000000 0x08005130 Section 0 entry.o(.ARM.Collect$$$$00000000)
  2269. .ARM.Collect$$$$00000001 0x08005130 Section 4 entry2.o(.ARM.Collect$$$$00000001)
  2270. .ARM.Collect$$$$00000004 0x08005134 Section 4 entry5.o(.ARM.Collect$$$$00000004)
  2271. .ARM.Collect$$$$00000008 0x08005138 Section 0 entry7b.o(.ARM.Collect$$$$00000008)
  2272. .ARM.Collect$$$$0000000A 0x08005138 Section 0 entry8b.o(.ARM.Collect$$$$0000000A)
  2273. .ARM.Collect$$$$0000000B 0x08005138 Section 8 entry9a.o(.ARM.Collect$$$$0000000B)
  2274. .ARM.Collect$$$$0000000D 0x08005140 Section 0 entry10a.o(.ARM.Collect$$$$0000000D)
  2275. .ARM.Collect$$$$0000000F 0x08005140 Section 0 entry11a.o(.ARM.Collect$$$$0000000F)
  2276. .ARM.Collect$$$$00002712 0x08005140 Section 4 entry2.o(.ARM.Collect$$$$00002712)
  2277. __lit__00000000 0x08005140 Data 4 entry2.o(.ARM.Collect$$$$00002712)
  2278. .text 0x08005144 Section 36 startup_gd32f10x_xd.o(.text)
  2279. .text 0x08005168 Section 0 tolower.o(.text)
  2280. .text 0x08005174 Section 0 memcpya.o(.text)
  2281. .text 0x08005198 Section 0 memseta.o(.text)
  2282. .text 0x080051bc Section 0 strstr.o(.text)
  2283. .text 0x080051e0 Section 0 strchr.o(.text)
  2284. .text 0x080051f4 Section 0 strlen.o(.text)
  2285. .text 0x08005202 Section 0 strcmp.o(.text)
  2286. .text 0x0800521e Section 0 memcmp.o(.text)
  2287. .text 0x08005238 Section 0 strcpy.o(.text)
  2288. .text 0x0800524a Section 0 strncmp.o(.text)
  2289. .text 0x08005268 Section 0 __0sscanf.o(.text)
  2290. .text 0x080052a0 Section 0 _scanf_int.o(.text)
  2291. .text 0x080053ec Section 0 _scanf_str.o(.text)
  2292. .text 0x080054cc Section 0 scanf_fp.o(.text)
  2293. _fp_value 0x080054cd Thumb Code 296 scanf_fp.o(.text)
  2294. .text 0x0800582c Section 0 strtol.o(.text)
  2295. .text 0x0800589c Section 0 fmul.o(.text)
  2296. .text 0x08005900 Section 0 fdiv.o(.text)
  2297. .text 0x0800597c Section 0 dadd.o(.text)
  2298. .text 0x08005aca Section 0 dmul.o(.text)
  2299. .text 0x08005bae Section 0 ddiv.o(.text)
  2300. .text 0x08005c8c Section 0 ffltui.o(.text)
  2301. .text 0x08005c96 Section 0 dflti.o(.text)
  2302. .text 0x08005cb8 Section 0 dfltui.o(.text)
  2303. .text 0x08005cd2 Section 0 ffixi.o(.text)
  2304. .text 0x08005d04 Section 0 dfixi.o(.text)
  2305. .text 0x08005d42 Section 0 f2d.o(.text)
  2306. .text 0x08005d68 Section 48 cdcmple.o(.text)
  2307. .text 0x08005d98 Section 48 cdrcmple.o(.text)
  2308. .text 0x08005dc8 Section 0 d2f.o(.text)
  2309. .text 0x08005e00 Section 0 uidiv.o(.text)
  2310. .text 0x08005e2c Section 0 uldiv.o(.text)
  2311. .text 0x08005e8e Section 0 llshl.o(.text)
  2312. .text 0x08005eac Section 0 llushr.o(.text)
  2313. .text 0x08005ecc Section 0 llsshr.o(.text)
  2314. .text 0x08005ef0 Section 0 ctype_o.o(.text)
  2315. .text 0x08005ef8 Section 0 isspace_o.o(.text)
  2316. .text 0x08005f0a Section 0 _chval.o(.text)
  2317. .text 0x08005f28 Section 0 scanf_char.o(.text)
  2318. _scanf_char_input 0x08005f29 Thumb Code 12 scanf_char.o(.text)
  2319. .text 0x08005f50 Section 0 _sgetc.o(.text)
  2320. .text 0x08005f90 Section 0 _strtoul.o(.text)
  2321. .text 0x08006030 Section 0 strtod.o(.text)
  2322. _local_sscanf 0x08006031 Thumb Code 54 strtod.o(.text)
  2323. .text 0x080060cc Section 0 iusefp.o(.text)
  2324. .text 0x080060cc Section 0 fepilogue.o(.text)
  2325. .text 0x0800613a Section 0 depilogue.o(.text)
  2326. .text 0x080061f4 Section 0 dscalb.o(.text)
  2327. .text 0x08006222 Section 0 dfltul.o(.text)
  2328. .text 0x0800623a Section 0 dfixul.o(.text)
  2329. .text 0x0800626c Section 36 init.o(.text)
  2330. .text 0x08006290 Section 0 _scanf.o(.text)
  2331. .text 0x080065bc Section 0 dsqrt.o(.text)
  2332. i.BusFault_Handler 0x0800665e Section 0 gd32f10x_it.o(i.BusFault_Handler)
  2333. i.Clear_DMA_Buffer 0x08006664 Section 0 usart.o(i.Clear_DMA_Buffer)
  2334. i.ConnectMQTTSever 0x08006680 Section 0 ec800m.o(i.ConnectMQTTSever)
  2335. i.DMA0_Channel4_IRQHandler 0x080067e8 Section 0 gd32f10x_it.o(i.DMA0_Channel4_IRQHandler)
  2336. i.DebugMon_Handler 0x080067fc Section 0 gd32f10x_it.o(i.DebugMon_Handler)
  2337. i.EC800MGetUrl 0x08006800 Section 0 ec800m.o(i.EC800MGetUrl)
  2338. i.EC800MPwoerOn 0x08006948 Section 0 ec800m.o(i.EC800MPwoerOn)
  2339. i.EC800MSendCmd 0x080069a0 Section 0 ec800m.o(i.EC800MSendCmd)
  2340. i.EC800MSetPDP 0x080069d4 Section 0 ec800m.o(i.EC800MSetPDP)
  2341. i.EC800MWaitReady 0x08006a44 Section 0 ec800m.o(i.EC800MWaitReady)
  2342. i.EXTI1_IRQHandler 0x08006a54 Section 0 key.o(i.EXTI1_IRQHandler)
  2343. i.HardFault_Handler 0x08006ab4 Section 0 gd32f10x_it.o(i.HardFault_Handler)
  2344. i.LogPrint 0x08006ab8 Section 0 log.o(i.LogPrint)
  2345. i.MQTTPublish 0x08006b7c Section 0 ec800m.o(i.MQTTPublish)
  2346. i.MQTTSubTopic 0x08007094 Section 0 ec800m.o(i.MQTTSubTopic)
  2347. i.MQTT_Alarm_clock 0x080070f0 Section 0 main.o(i.MQTT_Alarm_clock)
  2348. i.MQTT_BUFFER_READ 0x08007148 Section 0 mqttrecv.o(i.MQTT_BUFFER_READ)
  2349. i.MemManage_Handler 0x080071c8 Section 0 gd32f10x_it.o(i.MemManage_Handler)
  2350. i.NMI_Handler 0x080071cc Section 0 gd32f10x_it.o(i.NMI_Handler)
  2351. i.NVIC_SetPriority 0x080071d0 Section 0 systick.o(i.NVIC_SetPriority)
  2352. NVIC_SetPriority 0x080071d1 Thumb Code 32 systick.o(i.NVIC_SetPriority)
  2353. i.PendSV_Handler 0x080071f8 Section 0 gd32f10x_it.o(i.PendSV_Handler)
  2354. i.Receive_MQTT_DataPack 0x080071fc Section 0 mqttrecv.o(i.Receive_MQTT_DataPack)
  2355. i.SPI0_Init 0x0800729c Section 0 spi.o(i.SPI0_Init)
  2356. i.SPI0_ReadWriteByte 0x08007304 Section 0 spi.o(i.SPI0_ReadWriteByte)
  2357. i.SPI0_Write 0x0800733c Section 0 spi.o(i.SPI0_Write)
  2358. i.SVC_Handler 0x08007356 Section 0 gd32f10x_it.o(i.SVC_Handler)
  2359. i.SysTick_Handler 0x08007358 Section 0 gd32f10x_it.o(i.SysTick_Handler)
  2360. i.SystemInit 0x08007364 Section 0 system_gd32f10x.o(i.SystemInit)
  2361. i.USART0_IRQHandler 0x0800743c Section 0 gd32f10x_it.o(i.USART0_IRQHandler)
  2362. i.USART1_IRQHandler 0x08007484 Section 0 gd32f10x_it.o(i.USART1_IRQHandler)
  2363. i.USART2_IRQHandler 0x080074a8 Section 0 pc.o(i.USART2_IRQHandler)
  2364. i.UsageFault_Handler 0x0800764c Section 0 gd32f10x_it.o(i.UsageFault_Handler)
  2365. i.W25Q32_Enable 0x08007650 Section 0 w25q32.o(i.W25Q32_Enable)
  2366. i.W25Q32_Erase64K 0x08007674 Section 0 w25q32.o(i.W25Q32_Erase64K)
  2367. i.W25Q32_Init 0x080076c0 Section 0 w25q32.o(i.W25Q32_Init)
  2368. i.W25Q32_PageWrite 0x080076e8 Section 0 w25q32.o(i.W25Q32_PageWrite)
  2369. i.W25Q32_WaitBusy 0x0800773c Section 0 w25q32.o(i.W25Q32_WaitBusy)
  2370. i.WaitField 0x0800776c Section 0 pc.o(i.WaitField)
  2371. i.WaitForUpData 0x080077c0 Section 0 parsedevicemessage.o(i.WaitForUpData)
  2372. i.WaitResponse 0x08007800 Section 0 ec800m.o(i.WaitResponse)
  2373. i.Xmodem_CRC16 0x0800785c Section 0 otaevent.o(i.Xmodem_CRC16)
  2374. i.__0printf 0x080078a0 Section 0 printfa.o(i.__0printf)
  2375. i.__0sprintf 0x080078c0 Section 0 printfa.o(i.__0sprintf)
  2376. i.__0vsnprintf 0x080078e8 Section 0 printfa.o(i.__0vsnprintf)
  2377. i.__ARM_fpclassify 0x08007914 Section 0 fpclassify.o(i.__ARM_fpclassify)
  2378. i.__aeabi_errno_addr 0x0800793c Section 0 errno.o(i.__aeabi_errno_addr)
  2379. i.__free$realloc 0x08007944 Section 0 mallocr.o(i.__free$realloc)
  2380. i.__kernel_poly 0x080079a0 Section 0 poly.o(i.__kernel_poly)
  2381. i.__malloc$realloc 0x08007a4c Section 0 mallocr.o(i.__malloc$realloc)
  2382. i.__mathlib_dbl_divzero 0x08007a9c Section 0 dunder.o(i.__mathlib_dbl_divzero)
  2383. i.__mathlib_dbl_infnan2 0x08007aac Section 0 dunder.o(i.__mathlib_dbl_infnan2)
  2384. i.__mathlib_dbl_invalid 0x08007ab0 Section 0 dunder.o(i.__mathlib_dbl_invalid)
  2385. i.__mathlib_dbl_overflow 0x08007abc Section 0 dunder.o(i.__mathlib_dbl_overflow)
  2386. i.__mathlib_dbl_underflow 0x08007acc Section 0 dunder.o(i.__mathlib_dbl_underflow)
  2387. i.__scatterload_copy 0x08007adc Section 14 handlers.o(i.__scatterload_copy)
  2388. i.__scatterload_null 0x08007aea Section 2 handlers.o(i.__scatterload_null)
  2389. i.__scatterload_zeroinit 0x08007aec Section 14 handlers.o(i.__scatterload_zeroinit)
  2390. i.__set_errno 0x08007afc Section 0 errno.o(i.__set_errno)
  2391. i._crc 0x08007b08 Section 0 dlt645_data.o(i._crc)
  2392. i._fp_digits 0x08007b24 Section 0 printfa.o(i._fp_digits)
  2393. _fp_digits 0x08007b25 Thumb Code 366 printfa.o(i._fp_digits)
  2394. i._is_digit 0x08007ca8 Section 0 scanf_fp.o(i._is_digit)
  2395. i._printf_core 0x08007cb8 Section 0 printfa.o(i._printf_core)
  2396. _printf_core 0x08007cb9 Thumb Code 1744 printfa.o(i._printf_core)
  2397. i._printf_post_padding 0x08008394 Section 0 printfa.o(i._printf_post_padding)
  2398. _printf_post_padding 0x08008395 Thumb Code 36 printfa.o(i._printf_post_padding)
  2399. i._printf_pre_padding 0x080083b8 Section 0 printfa.o(i._printf_pre_padding)
  2400. _printf_pre_padding 0x080083b9 Thumb Code 46 printfa.o(i._printf_pre_padding)
  2401. i._snputc 0x080083e6 Section 0 printfa.o(i._snputc)
  2402. _snputc 0x080083e7 Thumb Code 22 printfa.o(i._snputc)
  2403. i._sputc 0x080083fc Section 0 printfa.o(i._sputc)
  2404. _sputc 0x080083fd Thumb Code 10 printfa.o(i._sputc)
  2405. i.buffer_skip_whitespace 0x08008406 Section 0 cjson.o(i.buffer_skip_whitespace)
  2406. buffer_skip_whitespace 0x08008407 Thumb Code 72 cjson.o(i.buffer_skip_whitespace)
  2407. i.cJSON_Delete 0x08008450 Section 0 cjson.o(i.cJSON_Delete)
  2408. i.cJSON_GetObjectItemCaseSensitive 0x080084a8 Section 0 cjson.o(i.cJSON_GetObjectItemCaseSensitive)
  2409. i.cJSON_IsNumber 0x080084ba Section 0 cjson.o(i.cJSON_IsNumber)
  2410. i.cJSON_IsString 0x080084d0 Section 0 cjson.o(i.cJSON_IsString)
  2411. i.cJSON_New_Item 0x080084e6 Section 0 cjson.o(i.cJSON_New_Item)
  2412. cJSON_New_Item 0x080084e7 Thumb Code 26 cjson.o(i.cJSON_New_Item)
  2413. i.cJSON_Parse 0x08008500 Section 0 cjson.o(i.cJSON_Parse)
  2414. i.cJSON_ParseWithLengthOpts 0x08008510 Section 0 cjson.o(i.cJSON_ParseWithLengthOpts)
  2415. i.cJSON_ParseWithOpts 0x080085e4 Section 0 cjson.o(i.cJSON_ParseWithOpts)
  2416. i.case_insensitive_strcmp 0x0800860c Section 0 cjson.o(i.case_insensitive_strcmp)
  2417. case_insensitive_strcmp 0x0800860d Thumb Code 72 cjson.o(i.case_insensitive_strcmp)
  2418. i.check_ota_event 0x08008654 Section 0 otaevent.o(i.check_ota_event)
  2419. i.checksum 0x080086a8 Section 0 parsedevicemessage.o(i.checksum)
  2420. checksum 0x080086a9 Thumb Code 66 parsedevicemessage.o(i.checksum)
  2421. i.clear_gateway_config_block 0x080086ea Section 0 device_message.o(i.clear_gateway_config_block)
  2422. i.config_485_port 0x080086f4 Section 0 usart.o(i.config_485_port)
  2423. i.data_package_translate_to_int 0x08008800 Section 0 dlt645_data.o(i.data_package_translate_to_int)
  2424. i.delay_1ms 0x08008904 Section 0 systick.o(i.delay_1ms)
  2425. i.delay_decrement 0x08008918 Section 0 systick.o(i.delay_decrement)
  2426. i.dlt645_1997_parsing_data 0x08008930 Section 0 dlt645_1997.o(i.dlt645_1997_parsing_data)
  2427. dlt645_1997_parsing_data 0x08008931 Thumb Code 206 dlt645_1997.o(i.dlt645_1997_parsing_data)
  2428. i.dlt645_1997_read_data 0x08008a14 Section 0 dlt645_1997.o(i.dlt645_1997_read_data)
  2429. i.dlt645_1997_recv_check 0x08008aac Section 0 dlt645_1997.o(i.dlt645_1997_recv_check)
  2430. i.dlt645_2007_parsing_data 0x08008b00 Section 0 dlt645_2007.o(i.dlt645_2007_parsing_data)
  2431. i.dlt645_2007_read_data 0x08008ee0 Section 0 dlt645_2007.o(i.dlt645_2007_read_data)
  2432. i.dlt645_2007_recv_check 0x08008f8e Section 0 dlt645_2007.o(i.dlt645_2007_recv_check)
  2433. i.dlt645_common_check 0x08008fe2 Section 0 dlt645_data.o(i.dlt645_common_check)
  2434. i.dlt645_data_parse_by_format_to_float 0x08009060 Section 0 dlt645_data.o(i.dlt645_data_parse_by_format_to_float)
  2435. i.dlt645_hw_read 0x080090ec Section 0 dlt645_port.o(i.dlt645_hw_read)
  2436. dlt645_hw_read 0x080090ed Thumb Code 92 dlt645_port.o(i.dlt645_hw_read)
  2437. i.dlt645_hw_write 0x0800914c Section 0 dlt645_port.o(i.dlt645_hw_write)
  2438. dlt645_hw_write 0x0800914d Thumb Code 98 dlt645_port.o(i.dlt645_hw_write)
  2439. i.dlt645_init 0x080091bc Section 0 dlt645_port.o(i.dlt645_init)
  2440. i.dlt645_read 0x080091e4 Section 0 parsedevicemessage.o(i.dlt645_read)
  2441. i.dlt645_read_data 0x08009328 Section 0 dlt645.o(i.dlt645_read_data)
  2442. i.dlt645_receive_msg 0x08009366 Section 0 dlt645.o(i.dlt645_receive_msg)
  2443. i.dlt645_send_msg 0x080093ac Section 0 dlt645.o(i.dlt645_send_msg)
  2444. i.dlt645_set_addr 0x080093da Section 0 dlt645.o(i.dlt645_set_addr)
  2445. i.dlt_callback 0x08009404 Section 0 dlt645_port.o(i.dlt_callback)
  2446. i.dma_channel_disable 0x0800948c Section 0 gd32f10x_dma.o(i.dma_channel_disable)
  2447. i.dma_channel_enable 0x080094be Section 0 gd32f10x_dma.o(i.dma_channel_enable)
  2448. i.dma_circulation_disable 0x080094f0 Section 0 gd32f10x_dma.o(i.dma_circulation_disable)
  2449. i.dma_config 0x08009524 Section 0 usart.o(i.dma_config)
  2450. i.dma_config_change 0x080095ac Section 0 usart.o(i.dma_config_change)
  2451. i.dma_deinit 0x0800962c Section 0 gd32f10x_dma.o(i.dma_deinit)
  2452. i.dma_init 0x0800969c Section 0 gd32f10x_dma.o(i.dma_init)
  2453. i.dma_interrupt_enable 0x080097ca Section 0 gd32f10x_dma.o(i.dma_interrupt_enable)
  2454. i.dma_interrupt_flag_clear 0x080097fc Section 0 gd32f10x_dma.o(i.dma_interrupt_flag_clear)
  2455. i.dma_memory_to_memory_disable 0x0800980c Section 0 gd32f10x_dma.o(i.dma_memory_to_memory_disable)
  2456. i.dma_periph_and_channel_check 0x08009840 Section 0 gd32f10x_dma.o(i.dma_periph_and_channel_check)
  2457. dma_periph_and_channel_check 0x08009841 Thumb Code 18 gd32f10x_dma.o(i.dma_periph_and_channel_check)
  2458. i.exti_init 0x08009858 Section 0 gd32f10x_exti.o(i.exti_init)
  2459. i.exti_interrupt_flag_clear 0x08009914 Section 0 gd32f10x_exti.o(i.exti_interrupt_flag_clear)
  2460. i.exti_interrupt_flag_get 0x08009920 Section 0 gd32f10x_exti.o(i.exti_interrupt_flag_get)
  2461. i.extract_data_from_buffer 0x08009938 Section 0 parsedevicemessage.o(i.extract_data_from_buffer)
  2462. extract_data_from_buffer 0x08009939 Thumb Code 78 parsedevicemessage.o(i.extract_data_from_buffer)
  2463. i.fputc 0x08009998 Section 0 log.o(i.fputc)
  2464. i.fwdgt_config 0x080099bc Section 0 gd32f10x_fwdgt.o(i.fwdgt_config)
  2465. i.fwdgt_counter_reload 0x08009a24 Section 0 gd32f10x_fwdgt.o(i.fwdgt_counter_reload)
  2466. i.fwdgt_enable 0x08009a34 Section 0 gd32f10x_fwdgt.o(i.fwdgt_enable)
  2467. i.fwdgt_init 0x08009a44 Section 0 main.o(i.fwdgt_init)
  2468. i.fwdgt_write_enable 0x08009a60 Section 0 gd32f10x_fwdgt.o(i.fwdgt_write_enable)
  2469. i.gd_485_DE_pin_init 0x08009a70 Section 0 usart.o(i.gd_485_DE_pin_init)
  2470. i.gd_485_DE_tx 0x08009a98 Section 0 usart.o(i.gd_485_DE_tx)
  2471. i.gd_EC800M_pin_init 0x08009aa8 Section 0 usart.o(i.gd_EC800M_pin_init)
  2472. i.gd_com_232_send 0x08009af0 Section 0 usart.o(i.gd_com_232_send)
  2473. i.gd_com_init 0x08009b20 Section 0 usart.o(i.gd_com_init)
  2474. i.gd_eval_key_init 0x08009c1c Section 0 key.o(i.gd_eval_key_init)
  2475. i.gd_eval_led_init 0x08009c9c Section 0 led.o(i.gd_eval_led_init)
  2476. i.gd_eval_led_toggle 0x08009ce8 Section 0 led.o(i.gd_eval_led_toggle)
  2477. i.gd_pull_EC800M_pwr_down 0x08009d20 Section 0 usart.o(i.gd_pull_EC800M_pwr_down)
  2478. i.gd_pull_EC800M_pwr_up 0x08009d2c Section 0 usart.o(i.gd_pull_EC800M_pwr_up)
  2479. i.gd_pull_EC800M_rst_down 0x08009d38 Section 0 usart.o(i.gd_pull_EC800M_rst_down)
  2480. i.gd_pull_EC800M_rst_up 0x08009d48 Section 0 usart.o(i.gd_pull_EC800M_rst_up)
  2481. i.get_config_params 0x08009d58 Section 0 device_message.o(i.get_config_params)
  2482. i.get_decimal_point 0x08009d60 Section 0 cjson.o(i.get_decimal_point)
  2483. get_decimal_point 0x08009d61 Thumb Code 4 cjson.o(i.get_decimal_point)
  2484. i.get_object_item 0x08009d64 Section 0 cjson.o(i.get_object_item)
  2485. get_object_item 0x08009d65 Thumb Code 82 cjson.o(i.get_object_item)
  2486. i.gettick 0x08009db8 Section 0 systick.o(i.gettick)
  2487. i.gpio_bit_reset 0x08009dc4 Section 0 gd32f10x_gpio.o(i.gpio_bit_reset)
  2488. i.gpio_bit_set 0x08009dc8 Section 0 gd32f10x_gpio.o(i.gpio_bit_set)
  2489. i.gpio_bit_write 0x08009dcc Section 0 gd32f10x_gpio.o(i.gpio_bit_write)
  2490. i.gpio_exti_source_select 0x08009dd8 Section 0 gd32f10x_gpio.o(i.gpio_exti_source_select)
  2491. i.gpio_init 0x08009e70 Section 0 gd32f10x_gpio.o(i.gpio_init)
  2492. i.gpio_input_bit_get 0x08009f1c Section 0 gd32f10x_gpio.o(i.gpio_input_bit_get)
  2493. i.gpio_pin_remap_config 0x08009f2c Section 0 gd32f10x_gpio.o(i.gpio_pin_remap_config)
  2494. i.http_load_config 0x08009fbc Section 0 main.o(i.http_load_config)
  2495. i.internal_alloc 0x0800a01c Section 0 mallocr.o(i.internal_alloc)
  2496. internal_alloc 0x0800a01d Thumb Code 76 mallocr.o(i.internal_alloc)
  2497. i.main 0x0800a06c Section 0 main.o(i.main)
  2498. i.mmodbus_callback 0x0800a244 Section 0 mmodbus.o(i.mmodbus_callback)
  2499. i.mmodbus_crc16 0x0800a2c0 Section 0 mmodbus.o(i.mmodbus_crc16)
  2500. i.mmodbus_init 0x0800a2f0 Section 0 mmodbus.o(i.mmodbus_init)
  2501. i.mmodbus_readCoils 0x0800a318 Section 0 mmodbus.o(i.mmodbus_readCoils)
  2502. i.mmodbus_readHoldingRegisters16i 0x0800a3f4 Section 0 mmodbus.o(i.mmodbus_readHoldingRegisters16i)
  2503. i.mmodbus_readHoldingRegisters8i 0x0800a484 Section 0 mmodbus.o(i.mmodbus_readHoldingRegisters8i)
  2504. i.mmodbus_receiveRaw 0x0800a58c Section 0 mmodbus.o(i.mmodbus_receiveRaw)
  2505. i.mmodbus_sendRaw 0x0800a5f4 Section 0 mmodbus.o(i.mmodbus_sendRaw)
  2506. i.mmodbus_set16bitOrder 0x0800a6ec Section 0 mmodbus.o(i.mmodbus_set16bitOrder)
  2507. i.mmodbus_writeCoil 0x0800a6f8 Section 0 mmodbus.o(i.mmodbus_writeCoil)
  2508. i.mmodbus_writeHoldingRegister16i 0x0800a788 Section 0 mmodbus.o(i.mmodbus_writeHoldingRegister16i)
  2509. i.modbusRead 0x0800a80c Section 0 parsedevicemessage.o(i.modbusRead)
  2510. i.nvic_config 0x0800ab60 Section 0 usart.o(i.nvic_config)
  2511. i.nvic_irq_enable 0x0800ab94 Section 0 gd32f10x_misc.o(i.nvic_irq_enable)
  2512. i.nvic_priority_group_set 0x0800ac40 Section 0 gd32f10x_misc.o(i.nvic_priority_group_set)
  2513. i.nvic_vector_table_set 0x0800ac54 Section 0 gd32f10x_misc.o(i.nvic_vector_table_set)
  2514. i.parseIntField 0x0800ac6c Section 0 parsedevicemessage.o(i.parseIntField)
  2515. i.parseMQTTData 0x0800ac98 Section 0 parsedevicemessage.o(i.parseMQTTData)
  2516. i.parseStringField 0x0800b76c Section 0 parsedevicemessage.o(i.parseStringField)
  2517. i.parse_array 0x0800b7a0 Section 0 cjson.o(i.parse_array)
  2518. parse_array 0x0800b7a1 Thumb Code 248 cjson.o(i.parse_array)
  2519. i.parse_hex4 0x0800b898 Section 0 cjson.o(i.parse_hex4)
  2520. parse_hex4 0x0800b899 Thumb Code 90 cjson.o(i.parse_hex4)
  2521. i.parse_number 0x0800b8f4 Section 0 cjson.o(i.parse_number)
  2522. parse_number 0x0800b8f5 Thumb Code 298 cjson.o(i.parse_number)
  2523. i.parse_object 0x0800ba2c Section 0 cjson.o(i.parse_object)
  2524. parse_object 0x0800ba2d Thumb Code 318 cjson.o(i.parse_object)
  2525. i.parse_string 0x0800bb6a Section 0 cjson.o(i.parse_string)
  2526. parse_string 0x0800bb6b Thumb Code 396 cjson.o(i.parse_string)
  2527. i.parse_value 0x0800bcf8 Section 0 cjson.o(i.parse_value)
  2528. parse_value 0x0800bcf9 Thumb Code 290 cjson.o(i.parse_value)
  2529. i.pow 0x0800be34 Section 0 pow.o(i.pow)
  2530. i.processHttp 0x0800c80c Section 0 parsedevicemessage.o(i.processHttp)
  2531. i.processIntData 0x0800cd4c Section 0 parsedevicemessage.o(i.processIntData)
  2532. i.processStringData 0x0800cd6e Section 0 parsedevicemessage.o(i.processStringData)
  2533. i.rcu_clock_freq_get 0x0800cd94 Section 0 gd32f10x_rcu.o(i.rcu_clock_freq_get)
  2534. i.rcu_osci_on 0x0800ceb8 Section 0 gd32f10x_rcu.o(i.rcu_osci_on)
  2535. i.rcu_periph_clock_enable 0x0800ced8 Section 0 gd32f10x_rcu.o(i.rcu_periph_clock_enable)
  2536. i.rcu_periph_reset_disable 0x0800cef8 Section 0 gd32f10x_rcu.o(i.rcu_periph_reset_disable)
  2537. i.rcu_periph_reset_enable 0x0800cf18 Section 0 gd32f10x_rcu.o(i.rcu_periph_reset_enable)
  2538. i.readGatewayMessage 0x0800cf38 Section 0 pc.o(i.readGatewayMessage)
  2539. i.readID 0x0800cfec Section 0 main.o(i.readID)
  2540. i.readSIMCARD 0x0800d0dc Section 0 pc.o(i.readSIMCARD)
  2541. i.read_json_config 0x0800d374 Section 0 pc.o(i.read_json_config)
  2542. i.realloc 0x0800d6b8 Section 0 mallocr.o(i.realloc)
  2543. i.ring_buffer_init 0x0800d724 Section 0 ring_buffer.o(i.ring_buffer_init)
  2544. i.ring_buffer_read 0x0800d72c Section 0 ring_buffer.o(i.ring_buffer_read)
  2545. i.ring_buffer_write 0x0800d754 Section 0 ring_buffer.o(i.ring_buffer_write)
  2546. i.runtime_increment 0x0800d770 Section 0 systick.o(i.runtime_increment)
  2547. i.skip_utf8_bom 0x0800d794 Section 0 cjson.o(i.skip_utf8_bom)
  2548. skip_utf8_bom 0x0800d795 Thumb Code 56 cjson.o(i.skip_utf8_bom)
  2549. i.spi_enable 0x0800d7d0 Section 0 gd32f10x_spi.o(i.spi_enable)
  2550. i.spi_i2s_data_receive 0x0800d7da Section 0 gd32f10x_spi.o(i.spi_i2s_data_receive)
  2551. i.spi_i2s_data_transmit 0x0800d7e2 Section 0 gd32f10x_spi.o(i.spi_i2s_data_transmit)
  2552. i.spi_i2s_deinit 0x0800d7e8 Section 0 gd32f10x_spi.o(i.spi_i2s_deinit)
  2553. i.spi_i2s_flag_get 0x0800d840 Section 0 gd32f10x_spi.o(i.spi_i2s_flag_get)
  2554. i.spi_init 0x0800d850 Section 0 gd32f10x_spi.o(i.spi_init)
  2555. i.sqrt 0x0800d882 Section 0 sqrt.o(i.sqrt)
  2556. i.strtod 0x0800d8ce Section 0 strtod.o(i.strtod)
  2557. i.system_clock_108m_hxtal 0x0800d8ec Section 0 system_gd32f10x.o(i.system_clock_108m_hxtal)
  2558. system_clock_108m_hxtal 0x0800d8ed Thumb Code 182 system_gd32f10x.o(i.system_clock_108m_hxtal)
  2559. i.system_clock_config 0x0800d9b0 Section 0 system_gd32f10x.o(i.system_clock_config)
  2560. system_clock_config 0x0800d9b1 Thumb Code 8 system_gd32f10x.o(i.system_clock_config)
  2561. i.systick_config 0x0800d9b8 Section 0 systick.o(i.systick_config)
  2562. i.task_fwdgt_reload 0x0800da08 Section 0 main.o(i.task_fwdgt_reload)
  2563. i.usart_baudrate_set 0x0800da14 Section 0 gd32f10x_usart.o(i.usart_baudrate_set)
  2564. i.usart_data_receive 0x0800daa4 Section 0 gd32f10x_usart.o(i.usart_data_receive)
  2565. i.usart_data_transmit 0x0800daae Section 0 gd32f10x_usart.o(i.usart_data_transmit)
  2566. i.usart_deinit 0x0800dab8 Section 0 gd32f10x_usart.o(i.usart_deinit)
  2567. i.usart_dma_transmit_config 0x0800db48 Section 0 gd32f10x_usart.o(i.usart_dma_transmit_config)
  2568. i.usart_enable 0x0800db58 Section 0 gd32f10x_usart.o(i.usart_enable)
  2569. i.usart_flag_clear 0x0800db62 Section 0 gd32f10x_usart.o(i.usart_flag_clear)
  2570. i.usart_flag_get 0x0800db7c Section 0 gd32f10x_usart.o(i.usart_flag_get)
  2571. i.usart_hardware_flow_cts_config 0x0800db9a Section 0 gd32f10x_usart.o(i.usart_hardware_flow_cts_config)
  2572. i.usart_hardware_flow_rts_config 0x0800dbaa Section 0 gd32f10x_usart.o(i.usart_hardware_flow_rts_config)
  2573. i.usart_interrupt_enable 0x0800dbba Section 0 gd32f10x_usart.o(i.usart_interrupt_enable)
  2574. i.usart_interrupt_flag_clear 0x0800dbd4 Section 0 gd32f10x_usart.o(i.usart_interrupt_flag_clear)
  2575. i.usart_interrupt_flag_get 0x0800dbee Section 0 gd32f10x_usart.o(i.usart_interrupt_flag_get)
  2576. i.usart_parity_config 0x0800dc26 Section 0 gd32f10x_usart.o(i.usart_parity_config)
  2577. i.usart_receive_config 0x0800dc36 Section 0 gd32f10x_usart.o(i.usart_receive_config)
  2578. i.usart_stop_bit_set 0x0800dc46 Section 0 gd32f10x_usart.o(i.usart_stop_bit_set)
  2579. i.usart_transmit_config 0x0800dc56 Section 0 gd32f10x_usart.o(i.usart_transmit_config)
  2580. i.usart_word_length_set 0x0800dc66 Section 0 gd32f10x_usart.o(i.usart_word_length_set)
  2581. i.utf16_literal_to_utf8 0x0800dc76 Section 0 cjson.o(i.utf16_literal_to_utf8)
  2582. utf16_literal_to_utf8 0x0800dc77 Thumb Code 300 cjson.o(i.utf16_literal_to_utf8)
  2583. i.write_json_config 0x0800dda4 Section 0 pc.o(i.write_json_config)
  2584. i.xmodem 0x0800de4c Section 0 otaevent.o(i.xmodem)
  2585. .constdata 0x0800e024 Section 14 parsedevicemessage.o(.constdata)
  2586. __func__ 0x0800e024 Data 14 parsedevicemessage.o(.constdata)
  2587. .constdata 0x0800e032 Section 512 mmodbus.o(.constdata)
  2588. wCRCTable 0x0800e032 Data 512 mmodbus.o(.constdata)
  2589. .constdata 0x0800e232 Section 5 main.o(.constdata)
  2590. __func__ 0x0800e232 Data 5 main.o(.constdata)
  2591. .constdata 0x0800e238 Section 136 pow.o(.constdata)
  2592. bp 0x0800e238 Data 16 pow.o(.constdata)
  2593. dp_h 0x0800e248 Data 16 pow.o(.constdata)
  2594. dp_l 0x0800e258 Data 16 pow.o(.constdata)
  2595. L 0x0800e268 Data 48 pow.o(.constdata)
  2596. P 0x0800e298 Data 40 pow.o(.constdata)
  2597. .constdata 0x0800e2c0 Section 8 qnan.o(.constdata)
  2598. .constdata 0x0800e2c8 Section 129 ctype_o.o(.constdata)
  2599. .constdata 0x0800e34c Section 4 ctype_o.o(.constdata)
  2600. table 0x0800e34c Data 4 ctype_o.o(.constdata)
  2601. .conststring 0x0800e350 Section 495 parsedevicemessage.o(.conststring)
  2602. .conststring 0x0800e540 Section 123 main.o(.conststring)
  2603. .conststring 0x0800e5bc Section 879 pc.o(.conststring)
  2604. .data 0x20000000 Section 4 system_gd32f10x.o(.data)
  2605. .data 0x20000004 Section 8 systick.o(.data)
  2606. delay 0x20000004 Data 4 systick.o(.data)
  2607. runtime 0x20000008 Data 4 systick.o(.data)
  2608. .data 0x2000000c Section 14 mmodbus.o(.data)
  2609. crc 0x2000000c Data 2 mmodbus.o(.data)
  2610. crc 0x2000000e Data 2 mmodbus.o(.data)
  2611. crc 0x20000010 Data 2 mmodbus.o(.data)
  2612. crc 0x20000012 Data 2 mmodbus.o(.data)
  2613. crc 0x20000014 Data 2 mmodbus.o(.data)
  2614. crc 0x20000016 Data 2 mmodbus.o(.data)
  2615. crc 0x20000018 Data 2 mmodbus.o(.data)
  2616. .data 0x2000001a Section 1 mqttrecv.o(.data)
  2617. json_len 0x2000001a Data 1 mqttrecv.o(.data)
  2618. .data 0x2000001c Section 8 main.o(.data)
  2619. hex_table 0x20000020 Data 4 main.o(.data)
  2620. .data 0x20000024 Section 16 pc.o(.data)
  2621. .data 0x20000034 Section 10 led.o(.data)
  2622. GPIO_PORT 0x20000034 Data 4 led.o(.data)
  2623. GPIO_PIN 0x20000038 Data 4 led.o(.data)
  2624. GPIO_CLK 0x2000003c Data 2 led.o(.data)
  2625. .data 0x20000040 Section 84 usart.o(.data)
  2626. COM_CLK 0x20000040 Data 6 usart.o(.data)
  2627. COM_TX_PIN 0x20000048 Data 12 usart.o(.data)
  2628. COM_RX_PIN 0x20000054 Data 12 usart.o(.data)
  2629. COM_GPIO_PORT 0x20000060 Data 12 usart.o(.data)
  2630. COM_GPIO_CLK 0x2000006c Data 6 usart.o(.data)
  2631. COM_IT_HANDLER 0x20000074 Data 12 usart.o(.data)
  2632. COM_BAUDTATE 0x20000080 Data 12 usart.o(.data)
  2633. .data 0x20000094 Section 19 key.o(.data)
  2634. KEY_PORT 0x20000094 Data 4 key.o(.data)
  2635. KEY_PIN 0x20000098 Data 4 key.o(.data)
  2636. KEY_CLK 0x2000009c Data 2 key.o(.data)
  2637. KEY_EXTI_LINE 0x200000a0 Data 4 key.o(.data)
  2638. KEY_PORT_SOURCE 0x200000a4 Data 1 key.o(.data)
  2639. KEY_PIN_SOURCE 0x200000a5 Data 1 key.o(.data)
  2640. KEY_IRQn 0x200000a6 Data 1 key.o(.data)
  2641. .data 0x200000a8 Section 20 cjson.o(.data)
  2642. global_error 0x200000a8 Data 8 cjson.o(.data)
  2643. global_hooks 0x200000b0 Data 12 cjson.o(.data)
  2644. .data 0x200000bc Section 20 dlt645_port.o(.data)
  2645. .data 0x200000d0 Section 4 stdout.o(.data)
  2646. .data 0x200000d4 Section 4 mvars.o(.data)
  2647. .data 0x200000d8 Section 4 mvars.o(.data)
  2648. .data 0x200000dc Section 4 errno.o(.data)
  2649. _errno 0x200000dc Data 4 errno.o(.data)
  2650. .bss 0x200000e0 Section 20372 device_message.o(.bss)
  2651. g_config_params 0x200000e0 Data 20372 device_message.o(.bss)
  2652. .bss 0x20005074 Section 4104 parsedevicemessage.o(.bss)
  2653. .bss 0x2000607c Section 84 mmodbus.o(.bss)
  2654. .bss 0x200060d0 Section 128 mqttrecv.o(.bss)
  2655. json_buf 0x200060d0 Data 128 mqttrecv.o(.bss)
  2656. .bss 0x20006150 Section 394 otaevent.o(.bss)
  2657. .bss 0x200062da Section 4354 usart.o(.bss)
  2658. .bss 0x200073dc Section 212 dlt645_port.o(.bss)
  2659. dlt645_port 0x200073dc Data 212 dlt645_port.o(.bss)
  2660. HEAP 0x200074b0 Section 65536 startup_gd32f10x_xd.o(HEAP)
  2661. STACK 0x200174b0 Section 2048 startup_gd32f10x_xd.o(STACK)
  2662. Global Symbols
  2663. Symbol Name Value Ov Type Size Object(Section)
  2664. BuildAttributes$$THM_ISAv4$P$D$K$B$S$PE$A:L22UL41UL21$X:L11$S22US41US21$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$IEEEX$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
  2665. __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE
  2666. _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE
  2667. _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE
  2668. _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE
  2669. _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE
  2670. _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE
  2671. _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE
  2672. _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE
  2673. _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE
  2674. _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE
  2675. _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE
  2676. _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE
  2677. _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE
  2678. _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE
  2679. _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE
  2680. _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE
  2681. _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE
  2682. _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE
  2683. _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE
  2684. _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE
  2685. _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE
  2686. _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE
  2687. _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE
  2688. _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE
  2689. _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE
  2690. _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE
  2691. _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE
  2692. _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE
  2693. _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE
  2694. _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE
  2695. _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE
  2696. _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE
  2697. _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE
  2698. _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE
  2699. _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE
  2700. _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE
  2701. _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE
  2702. _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE
  2703. _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE
  2704. _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE
  2705. _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE
  2706. _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE
  2707. __cpp_initialize__aeabi_ - Undefined Weak Reference
  2708. __cxa_finalize - Undefined Weak Reference
  2709. __decompress - Undefined Weak Reference
  2710. _clock_init - Undefined Weak Reference
  2711. _microlib_exit - Undefined Weak Reference
  2712. _scanf_longlong - Undefined Weak Reference
  2713. __Vectors_Size 0x00000130 Number 0 startup_gd32f10x_xd.o ABSOLUTE
  2714. __Vectors 0x08005000 Data 4 startup_gd32f10x_xd.o(RESET)
  2715. __Vectors_End 0x08005130 Data 0 startup_gd32f10x_xd.o(RESET)
  2716. __main 0x08005131 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000)
  2717. _main_stk 0x08005131 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001)
  2718. _main_scatterload 0x08005135 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004)
  2719. __main_after_scatterload 0x08005139 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004)
  2720. _main_clock 0x08005139 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008)
  2721. _main_cpp_init 0x08005139 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A)
  2722. _main_init 0x08005139 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B)
  2723. __rt_final_cpp 0x08005141 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D)
  2724. __rt_final_exit 0x08005141 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F)
  2725. Reset_Handler 0x08005145 Thumb Code 8 startup_gd32f10x_xd.o(.text)
  2726. ADC0_1_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2727. ADC2_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2728. CAN0_EWMC_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2729. CAN0_RX1_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2730. DMA0_Channel0_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2731. DMA0_Channel1_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2732. DMA0_Channel2_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2733. DMA0_Channel3_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2734. DMA0_Channel5_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2735. DMA0_Channel6_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2736. DMA1_Channel0_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2737. DMA1_Channel1_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2738. DMA1_Channel2_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2739. DMA1_Channel3_4_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2740. EXMC_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2741. EXTI0_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2742. EXTI10_15_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2743. EXTI2_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2744. EXTI3_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2745. EXTI4_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2746. EXTI5_9_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2747. FMC_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2748. I2C0_ER_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2749. I2C0_EV_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2750. I2C1_ER_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2751. I2C1_EV_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2752. LVD_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2753. RCU_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2754. RTC_Alarm_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2755. RTC_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2756. SDIO_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2757. SPI0_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2758. SPI1_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2759. SPI2_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2760. TAMPER_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2761. TIMER0_BRK_TIMER8_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2762. TIMER0_Channel_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2763. TIMER0_TRG_CMT_TIMER10_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2764. TIMER0_UP_TIMER9_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2765. TIMER1_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2766. TIMER2_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2767. TIMER3_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2768. TIMER4_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2769. TIMER5_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2770. TIMER6_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2771. TIMER7_BRK_TIMER11_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2772. TIMER7_Channel_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2773. TIMER7_TRG_CMT_TIMER13_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2774. TIMER7_UP_TIMER12_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2775. UART3_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2776. UART4_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2777. USBD_HP_CAN0_TX_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2778. USBD_LP_CAN0_RX0_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2779. USBD_WKUP_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2780. WWDGT_IRQHandler 0x0800515f Thumb Code 0 startup_gd32f10x_xd.o(.text)
  2781. tolower 0x08005169 Thumb Code 12 tolower.o(.text)
  2782. __aeabi_memcpy 0x08005175 Thumb Code 36 memcpya.o(.text)
  2783. __aeabi_memcpy4 0x08005175 Thumb Code 0 memcpya.o(.text)
  2784. __aeabi_memcpy8 0x08005175 Thumb Code 0 memcpya.o(.text)
  2785. __aeabi_memset 0x08005199 Thumb Code 14 memseta.o(.text)
  2786. __aeabi_memset4 0x08005199 Thumb Code 0 memseta.o(.text)
  2787. __aeabi_memset8 0x08005199 Thumb Code 0 memseta.o(.text)
  2788. __aeabi_memclr 0x080051a7 Thumb Code 4 memseta.o(.text)
  2789. __aeabi_memclr4 0x080051a7 Thumb Code 0 memseta.o(.text)
  2790. __aeabi_memclr8 0x080051a7 Thumb Code 0 memseta.o(.text)
  2791. _memset$wrapper 0x080051ab Thumb Code 18 memseta.o(.text)
  2792. strstr 0x080051bd Thumb Code 36 strstr.o(.text)
  2793. strchr 0x080051e1 Thumb Code 20 strchr.o(.text)
  2794. strlen 0x080051f5 Thumb Code 14 strlen.o(.text)
  2795. strcmp 0x08005203 Thumb Code 28 strcmp.o(.text)
  2796. memcmp 0x0800521f Thumb Code 26 memcmp.o(.text)
  2797. strcpy 0x08005239 Thumb Code 18 strcpy.o(.text)
  2798. strncmp 0x0800524b Thumb Code 30 strncmp.o(.text)
  2799. __0sscanf 0x08005269 Thumb Code 48 __0sscanf.o(.text)
  2800. _scanf_int 0x080052a1 Thumb Code 332 _scanf_int.o(.text)
  2801. _scanf_string 0x080053ed Thumb Code 224 _scanf_str.o(.text)
  2802. _scanf_real 0x080055f5 Thumb Code 0 scanf_fp.o(.text)
  2803. _scanf_really_real 0x080055f5 Thumb Code 556 scanf_fp.o(.text)
  2804. strtol 0x0800582d Thumb Code 112 strtol.o(.text)
  2805. __aeabi_fmul 0x0800589d Thumb Code 100 fmul.o(.text)
  2806. __aeabi_fdiv 0x08005901 Thumb Code 124 fdiv.o(.text)
  2807. __aeabi_dadd 0x0800597d Thumb Code 322 dadd.o(.text)
  2808. __aeabi_dsub 0x08005abf Thumb Code 6 dadd.o(.text)
  2809. __aeabi_drsub 0x08005ac5 Thumb Code 6 dadd.o(.text)
  2810. __aeabi_dmul 0x08005acb Thumb Code 228 dmul.o(.text)
  2811. __aeabi_ddiv 0x08005baf Thumb Code 222 ddiv.o(.text)
  2812. __aeabi_ui2f 0x08005c8d Thumb Code 10 ffltui.o(.text)
  2813. __aeabi_i2d 0x08005c97 Thumb Code 34 dflti.o(.text)
  2814. __aeabi_ui2d 0x08005cb9 Thumb Code 26 dfltui.o(.text)
  2815. __aeabi_f2iz 0x08005cd3 Thumb Code 50 ffixi.o(.text)
  2816. __aeabi_d2iz 0x08005d05 Thumb Code 62 dfixi.o(.text)
  2817. __aeabi_f2d 0x08005d43 Thumb Code 38 f2d.o(.text)
  2818. __aeabi_cdcmpeq 0x08005d69 Thumb Code 0 cdcmple.o(.text)
  2819. __aeabi_cdcmple 0x08005d69 Thumb Code 48 cdcmple.o(.text)
  2820. __aeabi_cdrcmple 0x08005d99 Thumb Code 48 cdrcmple.o(.text)
  2821. __aeabi_d2f 0x08005dc9 Thumb Code 56 d2f.o(.text)
  2822. __aeabi_uidiv 0x08005e01 Thumb Code 0 uidiv.o(.text)
  2823. __aeabi_uidivmod 0x08005e01 Thumb Code 44 uidiv.o(.text)
  2824. __aeabi_uldivmod 0x08005e2d Thumb Code 98 uldiv.o(.text)
  2825. __aeabi_llsl 0x08005e8f Thumb Code 30 llshl.o(.text)
  2826. _ll_shift_l 0x08005e8f Thumb Code 0 llshl.o(.text)
  2827. __aeabi_llsr 0x08005ead Thumb Code 32 llushr.o(.text)
  2828. _ll_ushift_r 0x08005ead Thumb Code 0 llushr.o(.text)
  2829. __aeabi_lasr 0x08005ecd Thumb Code 36 llsshr.o(.text)
  2830. _ll_sshift_r 0x08005ecd Thumb Code 0 llsshr.o(.text)
  2831. __rt_ctype_table 0x08005ef1 Thumb Code 4 ctype_o.o(.text)
  2832. isspace 0x08005ef9 Thumb Code 18 isspace_o.o(.text)
  2833. _chval 0x08005f0b Thumb Code 28 _chval.o(.text)
  2834. __vfscanf_char 0x08005f35 Thumb Code 20 scanf_char.o(.text)
  2835. _sgetc 0x08005f51 Thumb Code 30 _sgetc.o(.text)
  2836. _sbackspace 0x08005f6f Thumb Code 34 _sgetc.o(.text)
  2837. _strtoul 0x08005f91 Thumb Code 158 _strtoul.o(.text)
  2838. __strtod_int 0x08006067 Thumb Code 90 strtod.o(.text)
  2839. __I$use$fp 0x080060cd Thumb Code 0 iusefp.o(.text)
  2840. _float_round 0x080060cd Thumb Code 18 fepilogue.o(.text)
  2841. _float_epilogue 0x080060df Thumb Code 92 fepilogue.o(.text)
  2842. _double_round 0x0800613b Thumb Code 30 depilogue.o(.text)
  2843. _double_epilogue 0x08006159 Thumb Code 156 depilogue.o(.text)
  2844. __ARM_scalbn 0x080061f5 Thumb Code 46 dscalb.o(.text)
  2845. scalbn 0x080061f5 Thumb Code 0 dscalb.o(.text)
  2846. __aeabi_ul2d 0x08006223 Thumb Code 24 dfltul.o(.text)
  2847. __aeabi_d2ulz 0x0800623b Thumb Code 48 dfixul.o(.text)
  2848. __scatterload 0x0800626d Thumb Code 28 init.o(.text)
  2849. __scatterload_rt2 0x0800626d Thumb Code 0 init.o(.text)
  2850. __vfscanf 0x08006291 Thumb Code 808 _scanf.o(.text)
  2851. _dsqrt 0x080065bd Thumb Code 162 dsqrt.o(.text)
  2852. BusFault_Handler 0x0800665f Thumb Code 4 gd32f10x_it.o(i.BusFault_Handler)
  2853. Clear_DMA_Buffer 0x08006665 Thumb Code 20 usart.o(i.Clear_DMA_Buffer)
  2854. ConnectMQTTSever 0x08006681 Thumb Code 196 ec800m.o(i.ConnectMQTTSever)
  2855. DMA0_Channel4_IRQHandler 0x080067e9 Thumb Code 14 gd32f10x_it.o(i.DMA0_Channel4_IRQHandler)
  2856. DebugMon_Handler 0x080067fd Thumb Code 2 gd32f10x_it.o(i.DebugMon_Handler)
  2857. EC800MGetUrl 0x08006801 Thumb Code 188 ec800m.o(i.EC800MGetUrl)
  2858. EC800MPwoerOn 0x08006949 Thumb Code 82 ec800m.o(i.EC800MPwoerOn)
  2859. EC800MSendCmd 0x080069a1 Thumb Code 48 ec800m.o(i.EC800MSendCmd)
  2860. EC800MSetPDP 0x080069d5 Thumb Code 58 ec800m.o(i.EC800MSetPDP)
  2861. EC800MWaitReady 0x08006a45 Thumb Code 12 ec800m.o(i.EC800MWaitReady)
  2862. EXTI1_IRQHandler 0x08006a55 Thumb Code 78 key.o(i.EXTI1_IRQHandler)
  2863. HardFault_Handler 0x08006ab5 Thumb Code 4 gd32f10x_it.o(i.HardFault_Handler)
  2864. LogPrint 0x08006ab9 Thumb Code 136 log.o(i.LogPrint)
  2865. MQTTPublish 0x08006b7d Thumb Code 1258 ec800m.o(i.MQTTPublish)
  2866. MQTTSubTopic 0x08007095 Thumb Code 64 ec800m.o(i.MQTTSubTopic)
  2867. MQTT_Alarm_clock 0x080070f1 Thumb Code 86 main.o(i.MQTT_Alarm_clock)
  2868. MQTT_BUFFER_READ 0x08007149 Thumb Code 114 mqttrecv.o(i.MQTT_BUFFER_READ)
  2869. MemManage_Handler 0x080071c9 Thumb Code 4 gd32f10x_it.o(i.MemManage_Handler)
  2870. NMI_Handler 0x080071cd Thumb Code 2 gd32f10x_it.o(i.NMI_Handler)
  2871. PendSV_Handler 0x080071f9 Thumb Code 2 gd32f10x_it.o(i.PendSV_Handler)
  2872. Receive_MQTT_DataPack 0x080071fd Thumb Code 120 mqttrecv.o(i.Receive_MQTT_DataPack)
  2873. SPI0_Init 0x0800729d Thumb Code 94 spi.o(i.SPI0_Init)
  2874. SPI0_ReadWriteByte 0x08007305 Thumb Code 50 spi.o(i.SPI0_ReadWriteByte)
  2875. SPI0_Write 0x0800733d Thumb Code 26 spi.o(i.SPI0_Write)
  2876. SVC_Handler 0x08007357 Thumb Code 2 gd32f10x_it.o(i.SVC_Handler)
  2877. SysTick_Handler 0x08007359 Thumb Code 12 gd32f10x_it.o(i.SysTick_Handler)
  2878. SystemInit 0x08007365 Thumb Code 198 system_gd32f10x.o(i.SystemInit)
  2879. USART0_IRQHandler 0x0800743d Thumb Code 54 gd32f10x_it.o(i.USART0_IRQHandler)
  2880. USART1_IRQHandler 0x08007485 Thumb Code 30 gd32f10x_it.o(i.USART1_IRQHandler)
  2881. USART2_IRQHandler 0x080074a9 Thumb Code 390 pc.o(i.USART2_IRQHandler)
  2882. UsageFault_Handler 0x0800764d Thumb Code 4 gd32f10x_it.o(i.UsageFault_Handler)
  2883. W25Q32_Enable 0x08007651 Thumb Code 30 w25q32.o(i.W25Q32_Enable)
  2884. W25Q32_Erase64K 0x08007675 Thumb Code 70 w25q32.o(i.W25Q32_Erase64K)
  2885. W25Q32_Init 0x080076c1 Thumb Code 36 w25q32.o(i.W25Q32_Init)
  2886. W25Q32_PageWrite 0x080076e9 Thumb Code 80 w25q32.o(i.W25Q32_PageWrite)
  2887. W25Q32_WaitBusy 0x0800773d Thumb Code 44 w25q32.o(i.W25Q32_WaitBusy)
  2888. WaitField 0x0800776d Thumb Code 74 pc.o(i.WaitField)
  2889. WaitForUpData 0x080077c1 Thumb Code 58 parsedevicemessage.o(i.WaitForUpData)
  2890. WaitResponse 0x08007801 Thumb Code 82 ec800m.o(i.WaitResponse)
  2891. Xmodem_CRC16 0x0800785d Thumb Code 68 otaevent.o(i.Xmodem_CRC16)
  2892. __0printf 0x080078a1 Thumb Code 22 printfa.o(i.__0printf)
  2893. __1printf 0x080078a1 Thumb Code 0 printfa.o(i.__0printf)
  2894. __2printf 0x080078a1 Thumb Code 0 printfa.o(i.__0printf)
  2895. __c89printf 0x080078a1 Thumb Code 0 printfa.o(i.__0printf)
  2896. printf 0x080078a1 Thumb Code 0 printfa.o(i.__0printf)
  2897. __0sprintf 0x080078c1 Thumb Code 34 printfa.o(i.__0sprintf)
  2898. __1sprintf 0x080078c1 Thumb Code 0 printfa.o(i.__0sprintf)
  2899. __2sprintf 0x080078c1 Thumb Code 0 printfa.o(i.__0sprintf)
  2900. __c89sprintf 0x080078c1 Thumb Code 0 printfa.o(i.__0sprintf)
  2901. sprintf 0x080078c1 Thumb Code 0 printfa.o(i.__0sprintf)
  2902. __0vsnprintf 0x080078e9 Thumb Code 40 printfa.o(i.__0vsnprintf)
  2903. __1vsnprintf 0x080078e9 Thumb Code 0 printfa.o(i.__0vsnprintf)
  2904. __2vsnprintf 0x080078e9 Thumb Code 0 printfa.o(i.__0vsnprintf)
  2905. __c89vsnprintf 0x080078e9 Thumb Code 0 printfa.o(i.__0vsnprintf)
  2906. vsnprintf 0x080078e9 Thumb Code 0 printfa.o(i.__0vsnprintf)
  2907. __ARM_fpclassify 0x08007915 Thumb Code 40 fpclassify.o(i.__ARM_fpclassify)
  2908. __aeabi_errno_addr 0x0800793d Thumb Code 4 errno.o(i.__aeabi_errno_addr)
  2909. __rt_errno_addr 0x0800793d Thumb Code 0 errno.o(i.__aeabi_errno_addr)
  2910. free 0x08007945 Thumb Code 88 mallocr.o(i.__free$realloc)
  2911. __kernel_poly 0x080079a1 Thumb Code 170 poly.o(i.__kernel_poly)
  2912. malloc 0x08007a4d Thumb Code 64 mallocr.o(i.__malloc$realloc)
  2913. __mathlib_dbl_divzero 0x08007a9d Thumb Code 12 dunder.o(i.__mathlib_dbl_divzero)
  2914. __mathlib_dbl_infnan2 0x08007aad Thumb Code 4 dunder.o(i.__mathlib_dbl_infnan2)
  2915. __mathlib_dbl_invalid 0x08007ab1 Thumb Code 12 dunder.o(i.__mathlib_dbl_invalid)
  2916. __mathlib_dbl_overflow 0x08007abd Thumb Code 14 dunder.o(i.__mathlib_dbl_overflow)
  2917. __mathlib_dbl_underflow 0x08007acd Thumb Code 10 dunder.o(i.__mathlib_dbl_underflow)
  2918. __scatterload_copy 0x08007add Thumb Code 14 handlers.o(i.__scatterload_copy)
  2919. __scatterload_null 0x08007aeb Thumb Code 2 handlers.o(i.__scatterload_null)
  2920. __scatterload_zeroinit 0x08007aed Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
  2921. __set_errno 0x08007afd Thumb Code 6 errno.o(i.__set_errno)
  2922. _crc 0x08007b09 Thumb Code 26 dlt645_data.o(i._crc)
  2923. _is_digit 0x08007ca9 Thumb Code 14 scanf_fp.o(i._is_digit)
  2924. cJSON_Delete 0x08008451 Thumb Code 84 cjson.o(i.cJSON_Delete)
  2925. cJSON_GetObjectItemCaseSensitive 0x080084a9 Thumb Code 18 cjson.o(i.cJSON_GetObjectItemCaseSensitive)
  2926. cJSON_IsNumber 0x080084bb Thumb Code 22 cjson.o(i.cJSON_IsNumber)
  2927. cJSON_IsString 0x080084d1 Thumb Code 22 cjson.o(i.cJSON_IsString)
  2928. cJSON_Parse 0x08008501 Thumb Code 16 cjson.o(i.cJSON_Parse)
  2929. cJSON_ParseWithLengthOpts 0x08008511 Thumb Code 204 cjson.o(i.cJSON_ParseWithLengthOpts)
  2930. cJSON_ParseWithOpts 0x080085e5 Thumb Code 40 cjson.o(i.cJSON_ParseWithOpts)
  2931. check_ota_event 0x08008655 Thumb Code 72 otaevent.o(i.check_ota_event)
  2932. clear_gateway_config_block 0x080086eb Thumb Code 10 device_message.o(i.clear_gateway_config_block)
  2933. config_485_port 0x080086f5 Thumb Code 242 usart.o(i.config_485_port)
  2934. data_package_translate_to_int 0x08008801 Thumb Code 254 dlt645_data.o(i.data_package_translate_to_int)
  2935. delay_1ms 0x08008905 Thumb Code 16 systick.o(i.delay_1ms)
  2936. delay_decrement 0x08008919 Thumb Code 18 systick.o(i.delay_decrement)
  2937. dlt645_1997_read_data 0x08008a15 Thumb Code 152 dlt645_1997.o(i.dlt645_1997_read_data)
  2938. dlt645_1997_recv_check 0x08008aad Thumb Code 82 dlt645_1997.o(i.dlt645_1997_recv_check)
  2939. dlt645_2007_parsing_data 0x08008b01 Thumb Code 888 dlt645_2007.o(i.dlt645_2007_parsing_data)
  2940. dlt645_2007_read_data 0x08008ee1 Thumb Code 174 dlt645_2007.o(i.dlt645_2007_read_data)
  2941. dlt645_2007_recv_check 0x08008f8f Thumb Code 84 dlt645_2007.o(i.dlt645_2007_recv_check)
  2942. dlt645_common_check 0x08008fe3 Thumb Code 124 dlt645_data.o(i.dlt645_common_check)
  2943. dlt645_data_parse_by_format_to_float 0x08009061 Thumb Code 136 dlt645_data.o(i.dlt645_data_parse_by_format_to_float)
  2944. dlt645_init 0x080091bd Thumb Code 30 dlt645_port.o(i.dlt645_init)
  2945. dlt645_read 0x080091e5 Thumb Code 320 parsedevicemessage.o(i.dlt645_read)
  2946. dlt645_read_data 0x08009329 Thumb Code 62 dlt645.o(i.dlt645_read_data)
  2947. dlt645_receive_msg 0x08009367 Thumb Code 70 dlt645.o(i.dlt645_receive_msg)
  2948. dlt645_send_msg 0x080093ad Thumb Code 46 dlt645.o(i.dlt645_send_msg)
  2949. dlt645_set_addr 0x080093db Thumb Code 42 dlt645.o(i.dlt645_set_addr)
  2950. dlt_callback 0x08009405 Thumb Code 118 dlt645_port.o(i.dlt_callback)
  2951. dma_channel_disable 0x0800948d Thumb Code 50 gd32f10x_dma.o(i.dma_channel_disable)
  2952. dma_channel_enable 0x080094bf Thumb Code 50 gd32f10x_dma.o(i.dma_channel_enable)
  2953. dma_circulation_disable 0x080094f1 Thumb Code 50 gd32f10x_dma.o(i.dma_circulation_disable)
  2954. dma_config 0x08009525 Thumb Code 122 usart.o(i.dma_config)
  2955. dma_config_change 0x080095ad Thumb Code 120 usart.o(i.dma_config_change)
  2956. dma_deinit 0x0800962d Thumb Code 112 gd32f10x_dma.o(i.dma_deinit)
  2957. dma_init 0x0800969d Thumb Code 302 gd32f10x_dma.o(i.dma_init)
  2958. dma_interrupt_enable 0x080097cb Thumb Code 50 gd32f10x_dma.o(i.dma_interrupt_enable)
  2959. dma_interrupt_flag_clear 0x080097fd Thumb Code 16 gd32f10x_dma.o(i.dma_interrupt_flag_clear)
  2960. dma_memory_to_memory_disable 0x0800980d Thumb Code 50 gd32f10x_dma.o(i.dma_memory_to_memory_disable)
  2961. exti_init 0x08009859 Thumb Code 184 gd32f10x_exti.o(i.exti_init)
  2962. exti_interrupt_flag_clear 0x08009915 Thumb Code 6 gd32f10x_exti.o(i.exti_interrupt_flag_clear)
  2963. exti_interrupt_flag_get 0x08009921 Thumb Code 18 gd32f10x_exti.o(i.exti_interrupt_flag_get)
  2964. fputc 0x08009999 Thumb Code 32 log.o(i.fputc)
  2965. fwdgt_config 0x080099bd Thumb Code 94 gd32f10x_fwdgt.o(i.fwdgt_config)
  2966. fwdgt_counter_reload 0x08009a25 Thumb Code 10 gd32f10x_fwdgt.o(i.fwdgt_counter_reload)
  2967. fwdgt_enable 0x08009a35 Thumb Code 10 gd32f10x_fwdgt.o(i.fwdgt_enable)
  2968. fwdgt_init 0x08009a45 Thumb Code 26 main.o(i.fwdgt_init)
  2969. fwdgt_write_enable 0x08009a61 Thumb Code 10 gd32f10x_fwdgt.o(i.fwdgt_write_enable)
  2970. gd_485_DE_pin_init 0x08009a71 Thumb Code 36 usart.o(i.gd_485_DE_pin_init)
  2971. gd_485_DE_tx 0x08009a99 Thumb Code 10 usart.o(i.gd_485_DE_tx)
  2972. gd_EC800M_pin_init 0x08009aa9 Thumb Code 62 usart.o(i.gd_EC800M_pin_init)
  2973. gd_com_232_send 0x08009af1 Thumb Code 44 usart.o(i.gd_com_232_send)
  2974. gd_com_init 0x08009b21 Thumb Code 210 usart.o(i.gd_com_init)
  2975. gd_eval_key_init 0x08009c1d Thumb Code 98 key.o(i.gd_eval_key_init)
  2976. gd_eval_led_init 0x08009c9d Thumb Code 60 led.o(i.gd_eval_led_init)
  2977. gd_eval_led_toggle 0x08009ce9 Thumb Code 46 led.o(i.gd_eval_led_toggle)
  2978. gd_pull_EC800M_pwr_down 0x08009d21 Thumb Code 8 usart.o(i.gd_pull_EC800M_pwr_down)
  2979. gd_pull_EC800M_pwr_up 0x08009d2d Thumb Code 8 usart.o(i.gd_pull_EC800M_pwr_up)
  2980. gd_pull_EC800M_rst_down 0x08009d39 Thumb Code 10 usart.o(i.gd_pull_EC800M_rst_down)
  2981. gd_pull_EC800M_rst_up 0x08009d49 Thumb Code 10 usart.o(i.gd_pull_EC800M_rst_up)
  2982. get_config_params 0x08009d59 Thumb Code 4 device_message.o(i.get_config_params)
  2983. gettick 0x08009db9 Thumb Code 6 systick.o(i.gettick)
  2984. gpio_bit_reset 0x08009dc5 Thumb Code 4 gd32f10x_gpio.o(i.gpio_bit_reset)
  2985. gpio_bit_set 0x08009dc9 Thumb Code 4 gd32f10x_gpio.o(i.gpio_bit_set)
  2986. gpio_bit_write 0x08009dcd Thumb Code 10 gd32f10x_gpio.o(i.gpio_bit_write)
  2987. gpio_exti_source_select 0x08009dd9 Thumb Code 146 gd32f10x_gpio.o(i.gpio_exti_source_select)
  2988. gpio_init 0x08009e71 Thumb Code 172 gd32f10x_gpio.o(i.gpio_init)
  2989. gpio_input_bit_get 0x08009f1d Thumb Code 16 gd32f10x_gpio.o(i.gpio_input_bit_get)
  2990. gpio_pin_remap_config 0x08009f2d Thumb Code 138 gd32f10x_gpio.o(i.gpio_pin_remap_config)
  2991. http_load_config 0x08009fbd Thumb Code 74 main.o(i.http_load_config)
  2992. main 0x0800a06d Thumb Code 362 main.o(i.main)
  2993. mmodbus_callback 0x0800a245 Thumb Code 108 mmodbus.o(i.mmodbus_callback)
  2994. mmodbus_crc16 0x0800a2c1 Thumb Code 42 mmodbus.o(i.mmodbus_crc16)
  2995. mmodbus_init 0x0800a2f1 Thumb Code 30 mmodbus.o(i.mmodbus_init)
  2996. mmodbus_readCoils 0x0800a319 Thumb Code 210 mmodbus.o(i.mmodbus_readCoils)
  2997. mmodbus_readHoldingRegisters16i 0x0800a3f5 Thumb Code 138 mmodbus.o(i.mmodbus_readHoldingRegisters16i)
  2998. mmodbus_readHoldingRegisters8i 0x0800a485 Thumb Code 256 mmodbus.o(i.mmodbus_readHoldingRegisters8i)
  2999. mmodbus_receiveRaw 0x0800a58d Thumb Code 90 mmodbus.o(i.mmodbus_receiveRaw)
  3000. mmodbus_sendRaw 0x0800a5f5 Thumb Code 236 mmodbus.o(i.mmodbus_sendRaw)
  3001. mmodbus_set16bitOrder 0x0800a6ed Thumb Code 8 mmodbus.o(i.mmodbus_set16bitOrder)
  3002. mmodbus_writeCoil 0x0800a6f9 Thumb Code 134 mmodbus.o(i.mmodbus_writeCoil)
  3003. mmodbus_writeHoldingRegister16i 0x0800a789 Thumb Code 124 mmodbus.o(i.mmodbus_writeHoldingRegister16i)
  3004. modbusRead 0x0800a80d Thumb Code 846 parsedevicemessage.o(i.modbusRead)
  3005. nvic_config 0x0800ab61 Thumb Code 52 usart.o(i.nvic_config)
  3006. nvic_irq_enable 0x0800ab95 Thumb Code 162 gd32f10x_misc.o(i.nvic_irq_enable)
  3007. nvic_priority_group_set 0x0800ac41 Thumb Code 10 gd32f10x_misc.o(i.nvic_priority_group_set)
  3008. nvic_vector_table_set 0x0800ac55 Thumb Code 16 gd32f10x_misc.o(i.nvic_vector_table_set)
  3009. parseIntField 0x0800ac6d Thumb Code 42 parsedevicemessage.o(i.parseIntField)
  3010. parseMQTTData 0x0800ac99 Thumb Code 2718 parsedevicemessage.o(i.parseMQTTData)
  3011. parseStringField 0x0800b76d Thumb Code 44 parsedevicemessage.o(i.parseStringField)
  3012. pow 0x0800be35 Thumb Code 2512 pow.o(i.pow)
  3013. processHttp 0x0800c80d Thumb Code 916 parsedevicemessage.o(i.processHttp)
  3014. processIntData 0x0800cd4d Thumb Code 34 parsedevicemessage.o(i.processIntData)
  3015. processStringData 0x0800cd6f Thumb Code 36 parsedevicemessage.o(i.processStringData)
  3016. rcu_clock_freq_get 0x0800cd95 Thumb Code 264 gd32f10x_rcu.o(i.rcu_clock_freq_get)
  3017. rcu_osci_on 0x0800ceb9 Thumb Code 28 gd32f10x_rcu.o(i.rcu_osci_on)
  3018. rcu_periph_clock_enable 0x0800ced9 Thumb Code 28 gd32f10x_rcu.o(i.rcu_periph_clock_enable)
  3019. rcu_periph_reset_disable 0x0800cef9 Thumb Code 28 gd32f10x_rcu.o(i.rcu_periph_reset_disable)
  3020. rcu_periph_reset_enable 0x0800cf19 Thumb Code 28 gd32f10x_rcu.o(i.rcu_periph_reset_enable)
  3021. readGatewayMessage 0x0800cf39 Thumb Code 180 pc.o(i.readGatewayMessage)
  3022. readID 0x0800cfed Thumb Code 232 main.o(i.readID)
  3023. readSIMCARD 0x0800d0dd Thumb Code 450 pc.o(i.readSIMCARD)
  3024. read_json_config 0x0800d375 Thumb Code 780 pc.o(i.read_json_config)
  3025. realloc 0x0800d6b9 Thumb Code 102 mallocr.o(i.realloc)
  3026. ring_buffer_init 0x0800d725 Thumb Code 8 ring_buffer.o(i.ring_buffer_init)
  3027. ring_buffer_read 0x0800d72d Thumb Code 40 ring_buffer.o(i.ring_buffer_read)
  3028. ring_buffer_write 0x0800d755 Thumb Code 28 ring_buffer.o(i.ring_buffer_write)
  3029. runtime_increment 0x0800d771 Thumb Code 30 systick.o(i.runtime_increment)
  3030. spi_enable 0x0800d7d1 Thumb Code 10 gd32f10x_spi.o(i.spi_enable)
  3031. spi_i2s_data_receive 0x0800d7db Thumb Code 8 gd32f10x_spi.o(i.spi_i2s_data_receive)
  3032. spi_i2s_data_transmit 0x0800d7e3 Thumb Code 4 gd32f10x_spi.o(i.spi_i2s_data_transmit)
  3033. spi_i2s_deinit 0x0800d7e9 Thumb Code 82 gd32f10x_spi.o(i.spi_i2s_deinit)
  3034. spi_i2s_flag_get 0x0800d841 Thumb Code 16 gd32f10x_spi.o(i.spi_i2s_flag_get)
  3035. spi_init 0x0800d851 Thumb Code 50 gd32f10x_spi.o(i.spi_init)
  3036. sqrt 0x0800d883 Thumb Code 76 sqrt.o(i.sqrt)
  3037. strtod 0x0800d8cf Thumb Code 28 strtod.o(i.strtod)
  3038. systick_config 0x0800d9b9 Thumb Code 74 systick.o(i.systick_config)
  3039. task_fwdgt_reload 0x0800da09 Thumb Code 12 main.o(i.task_fwdgt_reload)
  3040. usart_baudrate_set 0x0800da15 Thumb Code 136 gd32f10x_usart.o(i.usart_baudrate_set)
  3041. usart_data_receive 0x0800daa5 Thumb Code 10 gd32f10x_usart.o(i.usart_data_receive)
  3042. usart_data_transmit 0x0800daaf Thumb Code 8 gd32f10x_usart.o(i.usart_data_transmit)
  3043. usart_deinit 0x0800dab9 Thumb Code 136 gd32f10x_usart.o(i.usart_deinit)
  3044. usart_dma_transmit_config 0x0800db49 Thumb Code 16 gd32f10x_usart.o(i.usart_dma_transmit_config)
  3045. usart_enable 0x0800db59 Thumb Code 10 gd32f10x_usart.o(i.usart_enable)
  3046. usart_flag_clear 0x0800db63 Thumb Code 26 gd32f10x_usart.o(i.usart_flag_clear)
  3047. usart_flag_get 0x0800db7d Thumb Code 30 gd32f10x_usart.o(i.usart_flag_get)
  3048. usart_hardware_flow_cts_config 0x0800db9b Thumb Code 16 gd32f10x_usart.o(i.usart_hardware_flow_cts_config)
  3049. usart_hardware_flow_rts_config 0x0800dbab Thumb Code 16 gd32f10x_usart.o(i.usart_hardware_flow_rts_config)
  3050. usart_interrupt_enable 0x0800dbbb Thumb Code 26 gd32f10x_usart.o(i.usart_interrupt_enable)
  3051. usart_interrupt_flag_clear 0x0800dbd5 Thumb Code 26 gd32f10x_usart.o(i.usart_interrupt_flag_clear)
  3052. usart_interrupt_flag_get 0x0800dbef Thumb Code 56 gd32f10x_usart.o(i.usart_interrupt_flag_get)
  3053. usart_parity_config 0x0800dc27 Thumb Code 16 gd32f10x_usart.o(i.usart_parity_config)
  3054. usart_receive_config 0x0800dc37 Thumb Code 16 gd32f10x_usart.o(i.usart_receive_config)
  3055. usart_stop_bit_set 0x0800dc47 Thumb Code 16 gd32f10x_usart.o(i.usart_stop_bit_set)
  3056. usart_transmit_config 0x0800dc57 Thumb Code 16 gd32f10x_usart.o(i.usart_transmit_config)
  3057. usart_word_length_set 0x0800dc67 Thumb Code 16 gd32f10x_usart.o(i.usart_word_length_set)
  3058. write_json_config 0x0800dda5 Thumb Code 154 pc.o(i.write_json_config)
  3059. xmodem 0x0800de4d Thumb Code 460 otaevent.o(i.xmodem)
  3060. __mathlib_zero 0x0800e2c0 Data 8 qnan.o(.constdata)
  3061. __ctype_table 0x0800e2c8 Data 129 ctype_o.o(.constdata)
  3062. Region$$Table$$Base 0x0800e92c Number 0 anon$$obj.o(Region$$Table)
  3063. Region$$Table$$Limit 0x0800e94c Number 0 anon$$obj.o(Region$$Table)
  3064. SystemCoreClock 0x20000000 Data 4 system_gd32f10x.o(.data)
  3065. protocol 0x2000001c Data 1 main.o(.data)
  3066. RxState 0x20000024 Data 4 pc.o(.data)
  3067. RxPacket 0x20000028 Data 8 pc.o(.data)
  3068. json_buf_num 0x20000030 Data 4 pc.o(.data)
  3069. UART0_RX_STAT 0x2000008c Data 1 usart.o(.data)
  3070. UART0_RX_MQTT_SUB_STAT 0x2000008d Data 1 usart.o(.data)
  3071. UART0_RX_NUM 0x20000090 Data 4 usart.o(.data)
  3072. dlt645 0x200000bc Data 20 dlt645_port.o(.data)
  3073. __stdout 0x200000d0 Data 4 stdout.o(.data)
  3074. __microlib_freelist 0x200000d4 Data 4 mvars.o(.data)
  3075. __microlib_freelist_initialised 0x200000d8 Data 4 mvars.o(.data)
  3076. mqttRecv 0x20005074 Data 4104 parsedevicemessage.o(.bss)
  3077. mmodbus 0x2000607c Data 84 mmodbus.o(.bss)
  3078. ota_data 0x20006150 Data 138 otaevent.o(.bss)
  3079. w25q32_data 0x200061da Data 256 otaevent.o(.bss)
  3080. UART0_RX_BUF 0x200062da Data 4096 usart.o(.bss)
  3081. usart1_rx_buf 0x200072da Data 258 usart.o(.bss)
  3082. __heap_base 0x200074b0 Data 0 startup_gd32f10x_xd.o(HEAP)
  3083. __heap_limit 0x200174b0 Data 0 startup_gd32f10x_xd.o(HEAP)
  3084. __initial_sp 0x20017cb0 Data 0 startup_gd32f10x_xd.o(STACK)
  3085. ==============================================================================
  3086. Memory Map of the image
  3087. Image Entry point : 0x08005131
  3088. Load Region LR_IROM1 (Base: 0x08005000, Size: 0x00009a2c, Max: 0x00100000, ABSOLUTE)
  3089. Execution Region ER_IROM1 (Exec base: 0x08005000, Load base: 0x08005000, Size: 0x0000994c, Max: 0x00100000, ABSOLUTE)
  3090. Exec Addr Load Addr Size Type Attr Idx E Section Name Object
  3091. 0x08005000 0x08005000 0x00000130 Data RO 133 RESET startup_gd32f10x_xd.o
  3092. 0x08005130 0x08005130 0x00000000 Code RO 5730 * .ARM.Collect$$$$00000000 mc_w.l(entry.o)
  3093. 0x08005130 0x08005130 0x00000004 Code RO 6111 .ARM.Collect$$$$00000001 mc_w.l(entry2.o)
  3094. 0x08005134 0x08005134 0x00000004 Code RO 6114 .ARM.Collect$$$$00000004 mc_w.l(entry5.o)
  3095. 0x08005138 0x08005138 0x00000000 Code RO 6116 .ARM.Collect$$$$00000008 mc_w.l(entry7b.o)
  3096. 0x08005138 0x08005138 0x00000000 Code RO 6118 .ARM.Collect$$$$0000000A mc_w.l(entry8b.o)
  3097. 0x08005138 0x08005138 0x00000008 Code RO 6119 .ARM.Collect$$$$0000000B mc_w.l(entry9a.o)
  3098. 0x08005140 0x08005140 0x00000000 Code RO 6121 .ARM.Collect$$$$0000000D mc_w.l(entry10a.o)
  3099. 0x08005140 0x08005140 0x00000000 Code RO 6123 .ARM.Collect$$$$0000000F mc_w.l(entry11a.o)
  3100. 0x08005140 0x08005140 0x00000004 Code RO 6112 .ARM.Collect$$$$00002712 mc_w.l(entry2.o)
  3101. 0x08005144 0x08005144 0x00000024 Code RO 134 .text startup_gd32f10x_xd.o
  3102. 0x08005168 0x08005168 0x0000000c Code RO 5733 .text mc_w.l(tolower.o)
  3103. 0x08005174 0x08005174 0x00000024 Code RO 5735 .text mc_w.l(memcpya.o)
  3104. 0x08005198 0x08005198 0x00000024 Code RO 5737 .text mc_w.l(memseta.o)
  3105. 0x080051bc 0x080051bc 0x00000024 Code RO 5739 .text mc_w.l(strstr.o)
  3106. 0x080051e0 0x080051e0 0x00000014 Code RO 5741 .text mc_w.l(strchr.o)
  3107. 0x080051f4 0x080051f4 0x0000000e Code RO 5743 .text mc_w.l(strlen.o)
  3108. 0x08005202 0x08005202 0x0000001c Code RO 5745 .text mc_w.l(strcmp.o)
  3109. 0x0800521e 0x0800521e 0x0000001a Code RO 5747 .text mc_w.l(memcmp.o)
  3110. 0x08005238 0x08005238 0x00000012 Code RO 5749 .text mc_w.l(strcpy.o)
  3111. 0x0800524a 0x0800524a 0x0000001e Code RO 5751 .text mc_w.l(strncmp.o)
  3112. 0x08005268 0x08005268 0x00000038 Code RO 6044 .text mc_w.l(__0sscanf.o)
  3113. 0x080052a0 0x080052a0 0x0000014c Code RO 6046 .text mc_w.l(_scanf_int.o)
  3114. 0x080053ec 0x080053ec 0x000000e0 Code RO 6048 .text mc_w.l(_scanf_str.o)
  3115. 0x080054cc 0x080054cc 0x00000360 Code RO 6050 .text mc_w.l(scanf_fp.o)
  3116. 0x0800582c 0x0800582c 0x00000070 Code RO 6054 .text mc_w.l(strtol.o)
  3117. 0x0800589c 0x0800589c 0x00000064 Code RO 6056 .text mf_w.l(fmul.o)
  3118. 0x08005900 0x08005900 0x0000007c Code RO 6058 .text mf_w.l(fdiv.o)
  3119. 0x0800597c 0x0800597c 0x0000014e Code RO 6060 .text mf_w.l(dadd.o)
  3120. 0x08005aca 0x08005aca 0x000000e4 Code RO 6062 .text mf_w.l(dmul.o)
  3121. 0x08005bae 0x08005bae 0x000000de Code RO 6064 .text mf_w.l(ddiv.o)
  3122. 0x08005c8c 0x08005c8c 0x0000000a Code RO 6066 .text mf_w.l(ffltui.o)
  3123. 0x08005c96 0x08005c96 0x00000022 Code RO 6068 .text mf_w.l(dflti.o)
  3124. 0x08005cb8 0x08005cb8 0x0000001a Code RO 6070 .text mf_w.l(dfltui.o)
  3125. 0x08005cd2 0x08005cd2 0x00000032 Code RO 6072 .text mf_w.l(ffixi.o)
  3126. 0x08005d04 0x08005d04 0x0000003e Code RO 6074 .text mf_w.l(dfixi.o)
  3127. 0x08005d42 0x08005d42 0x00000026 Code RO 6076 .text mf_w.l(f2d.o)
  3128. 0x08005d68 0x08005d68 0x00000030 Code RO 6078 .text mf_w.l(cdcmple.o)
  3129. 0x08005d98 0x08005d98 0x00000030 Code RO 6080 .text mf_w.l(cdrcmple.o)
  3130. 0x08005dc8 0x08005dc8 0x00000038 Code RO 6082 .text mf_w.l(d2f.o)
  3131. 0x08005e00 0x08005e00 0x0000002c Code RO 6126 .text mc_w.l(uidiv.o)
  3132. 0x08005e2c 0x08005e2c 0x00000062 Code RO 6128 .text mc_w.l(uldiv.o)
  3133. 0x08005e8e 0x08005e8e 0x0000001e Code RO 6130 .text mc_w.l(llshl.o)
  3134. 0x08005eac 0x08005eac 0x00000020 Code RO 6132 .text mc_w.l(llushr.o)
  3135. 0x08005ecc 0x08005ecc 0x00000024 Code RO 6134 .text mc_w.l(llsshr.o)
  3136. 0x08005ef0 0x08005ef0 0x00000008 Code RO 6136 .text mc_w.l(ctype_o.o)
  3137. 0x08005ef8 0x08005ef8 0x00000012 Code RO 6158 .text mc_w.l(isspace_o.o)
  3138. 0x08005f0a 0x08005f0a 0x0000001c Code RO 6173 .text mc_w.l(_chval.o)
  3139. 0x08005f26 0x08005f26 0x00000002 PAD
  3140. 0x08005f28 0x08005f28 0x00000028 Code RO 6175 .text mc_w.l(scanf_char.o)
  3141. 0x08005f50 0x08005f50 0x00000040 Code RO 6177 .text mc_w.l(_sgetc.o)
  3142. 0x08005f90 0x08005f90 0x0000009e Code RO 6179 .text mc_w.l(_strtoul.o)
  3143. 0x0800602e 0x0800602e 0x00000002 PAD
  3144. 0x08006030 0x08006030 0x0000009c Code RO 6181 .text mc_w.l(strtod.o)
  3145. 0x080060cc 0x080060cc 0x00000000 Code RO 6183 .text mc_w.l(iusefp.o)
  3146. 0x080060cc 0x080060cc 0x0000006e Code RO 6184 .text mf_w.l(fepilogue.o)
  3147. 0x0800613a 0x0800613a 0x000000ba Code RO 6186 .text mf_w.l(depilogue.o)
  3148. 0x080061f4 0x080061f4 0x0000002e Code RO 6188 .text mf_w.l(dscalb.o)
  3149. 0x08006222 0x08006222 0x00000018 Code RO 6190 .text mf_w.l(dfltul.o)
  3150. 0x0800623a 0x0800623a 0x00000030 Code RO 6192 .text mf_w.l(dfixul.o)
  3151. 0x0800626a 0x0800626a 0x00000002 PAD
  3152. 0x0800626c 0x0800626c 0x00000024 Code RO 6194 .text mc_w.l(init.o)
  3153. 0x08006290 0x08006290 0x0000032c Code RO 6198 .text mc_w.l(_scanf.o)
  3154. 0x080065bc 0x080065bc 0x000000a2 Code RO 6200 .text mf_w.l(dsqrt.o)
  3155. 0x0800665e 0x0800665e 0x00000004 Code RO 140 i.BusFault_Handler gd32f10x_it.o
  3156. 0x08006662 0x08006662 0x00000002 PAD
  3157. 0x08006664 0x08006664 0x0000001c Code RO 4617 i.Clear_DMA_Buffer usart.o
  3158. 0x08006680 0x08006680 0x00000168 Code RO 367 i.ConnectMQTTSever ec800m.o
  3159. 0x080067e8 0x080067e8 0x00000014 Code RO 141 i.DMA0_Channel4_IRQHandler gd32f10x_it.o
  3160. 0x080067fc 0x080067fc 0x00000002 Code RO 142 i.DebugMon_Handler gd32f10x_it.o
  3161. 0x080067fe 0x080067fe 0x00000002 PAD
  3162. 0x08006800 0x08006800 0x00000148 Code RO 368 i.EC800MGetUrl ec800m.o
  3163. 0x08006948 0x08006948 0x00000058 Code RO 369 i.EC800MPwoerOn ec800m.o
  3164. 0x080069a0 0x080069a0 0x00000034 Code RO 370 i.EC800MSendCmd ec800m.o
  3165. 0x080069d4 0x080069d4 0x00000070 Code RO 371 i.EC800MSetPDP ec800m.o
  3166. 0x08006a44 0x08006a44 0x00000010 Code RO 372 i.EC800MWaitReady ec800m.o
  3167. 0x08006a54 0x08006a54 0x00000060 Code RO 4822 i.EXTI1_IRQHandler key.o
  3168. 0x08006ab4 0x08006ab4 0x00000004 Code RO 143 i.HardFault_Handler gd32f10x_it.o
  3169. 0x08006ab8 0x08006ab8 0x000000c4 Code RO 331 i.LogPrint log.o
  3170. 0x08006b7c 0x08006b7c 0x00000518 Code RO 373 i.MQTTPublish ec800m.o
  3171. 0x08007094 0x08007094 0x0000005c Code RO 374 i.MQTTSubTopic ec800m.o
  3172. 0x080070f0 0x080070f0 0x00000056 Code RO 825 i.MQTT_Alarm_clock main.o
  3173. 0x08007146 0x08007146 0x00000002 PAD
  3174. 0x08007148 0x08007148 0x00000080 Code RO 789 i.MQTT_BUFFER_READ mqttrecv.o
  3175. 0x080071c8 0x080071c8 0x00000004 Code RO 144 i.MemManage_Handler gd32f10x_it.o
  3176. 0x080071cc 0x080071cc 0x00000002 Code RO 145 i.NMI_Handler gd32f10x_it.o
  3177. 0x080071ce 0x080071ce 0x00000002 PAD
  3178. 0x080071d0 0x080071d0 0x00000028 Code RO 276 i.NVIC_SetPriority systick.o
  3179. 0x080071f8 0x080071f8 0x00000002 Code RO 146 i.PendSV_Handler gd32f10x_it.o
  3180. 0x080071fa 0x080071fa 0x00000002 PAD
  3181. 0x080071fc 0x080071fc 0x000000a0 Code RO 790 i.Receive_MQTT_DataPack mqttrecv.o
  3182. 0x0800729c 0x0800729c 0x00000068 Code RO 4576 i.SPI0_Init spi.o
  3183. 0x08007304 0x08007304 0x00000038 Code RO 4578 i.SPI0_ReadWriteByte spi.o
  3184. 0x0800733c 0x0800733c 0x0000001a Code RO 4579 i.SPI0_Write spi.o
  3185. 0x08007356 0x08007356 0x00000002 Code RO 147 i.SVC_Handler gd32f10x_it.o
  3186. 0x08007358 0x08007358 0x0000000c Code RO 148 i.SysTick_Handler gd32f10x_it.o
  3187. 0x08007364 0x08007364 0x000000d8 Code RO 3 i.SystemInit system_gd32f10x.o
  3188. 0x0800743c 0x0800743c 0x00000048 Code RO 149 i.USART0_IRQHandler gd32f10x_it.o
  3189. 0x08007484 0x08007484 0x00000024 Code RO 150 i.USART1_IRQHandler gd32f10x_it.o
  3190. 0x080074a8 0x080074a8 0x000001a4 Code RO 893 i.USART2_IRQHandler pc.o
  3191. 0x0800764c 0x0800764c 0x00000004 Code RO 151 i.UsageFault_Handler gd32f10x_it.o
  3192. 0x08007650 0x08007650 0x00000024 Code RO 4772 i.W25Q32_Enable w25q32.o
  3193. 0x08007674 0x08007674 0x0000004c Code RO 4773 i.W25Q32_Erase64K w25q32.o
  3194. 0x080076c0 0x080076c0 0x00000028 Code RO 4774 i.W25Q32_Init w25q32.o
  3195. 0x080076e8 0x080076e8 0x00000054 Code RO 4775 i.W25Q32_PageWrite w25q32.o
  3196. 0x0800773c 0x0800773c 0x00000030 Code RO 4777 i.W25Q32_WaitBusy w25q32.o
  3197. 0x0800776c 0x0800776c 0x00000054 Code RO 894 i.WaitField pc.o
  3198. 0x080077c0 0x080077c0 0x00000040 Code RO 496 i.WaitForUpData parsedevicemessage.o
  3199. 0x08007800 0x08007800 0x0000005c Code RO 375 i.WaitResponse ec800m.o
  3200. 0x0800785c 0x0800785c 0x00000044 Code RO 960 i.Xmodem_CRC16 otaevent.o
  3201. 0x080078a0 0x080078a0 0x00000020 Code RO 5988 i.__0printf mc_w.l(printfa.o)
  3202. 0x080078c0 0x080078c0 0x00000028 Code RO 5990 i.__0sprintf mc_w.l(printfa.o)
  3203. 0x080078e8 0x080078e8 0x0000002c Code RO 5993 i.__0vsnprintf mc_w.l(printfa.o)
  3204. 0x08007914 0x08007914 0x00000028 Code RO 6098 i.__ARM_fpclassify m_ws.l(fpclassify.o)
  3205. 0x0800793c 0x0800793c 0x00000008 Code RO 6166 i.__aeabi_errno_addr mc_w.l(errno.o)
  3206. 0x08007944 0x08007944 0x0000005c Code RO 6020 i.__free$realloc mc_w.l(mallocr.o)
  3207. 0x080079a0 0x080079a0 0x000000aa Code RO 6100 i.__kernel_poly m_ws.l(poly.o)
  3208. 0x08007a4a 0x08007a4a 0x00000002 PAD
  3209. 0x08007a4c 0x08007a4c 0x00000050 Code RO 6021 i.__malloc$realloc mc_w.l(mallocr.o)
  3210. 0x08007a9c 0x08007a9c 0x00000010 Code RO 6084 i.__mathlib_dbl_divzero m_ws.l(dunder.o)
  3211. 0x08007aac 0x08007aac 0x00000004 Code RO 6086 i.__mathlib_dbl_infnan2 m_ws.l(dunder.o)
  3212. 0x08007ab0 0x08007ab0 0x0000000c Code RO 6087 i.__mathlib_dbl_invalid m_ws.l(dunder.o)
  3213. 0x08007abc 0x08007abc 0x0000000e Code RO 6088 i.__mathlib_dbl_overflow m_ws.l(dunder.o)
  3214. 0x08007aca 0x08007aca 0x00000002 PAD
  3215. 0x08007acc 0x08007acc 0x00000010 Code RO 6090 i.__mathlib_dbl_underflow m_ws.l(dunder.o)
  3216. 0x08007adc 0x08007adc 0x0000000e Code RO 6207 i.__scatterload_copy mc_w.l(handlers.o)
  3217. 0x08007aea 0x08007aea 0x00000002 Code RO 6208 i.__scatterload_null mc_w.l(handlers.o)
  3218. 0x08007aec 0x08007aec 0x0000000e Code RO 6209 i.__scatterload_zeroinit mc_w.l(handlers.o)
  3219. 0x08007afa 0x08007afa 0x00000002 PAD
  3220. 0x08007afc 0x08007afc 0x0000000c Code RO 6168 i.__set_errno mc_w.l(errno.o)
  3221. 0x08007b08 0x08007b08 0x0000001a Code RO 5602 i._crc dlt645_data.o
  3222. 0x08007b22 0x08007b22 0x00000002 PAD
  3223. 0x08007b24 0x08007b24 0x00000184 Code RO 5995 i._fp_digits mc_w.l(printfa.o)
  3224. 0x08007ca8 0x08007ca8 0x0000000e Code RO 6052 i._is_digit mc_w.l(scanf_fp.o)
  3225. 0x08007cb6 0x08007cb6 0x00000002 PAD
  3226. 0x08007cb8 0x08007cb8 0x000006dc Code RO 5996 i._printf_core mc_w.l(printfa.o)
  3227. 0x08008394 0x08008394 0x00000024 Code RO 5997 i._printf_post_padding mc_w.l(printfa.o)
  3228. 0x080083b8 0x080083b8 0x0000002e Code RO 5998 i._printf_pre_padding mc_w.l(printfa.o)
  3229. 0x080083e6 0x080083e6 0x00000016 Code RO 5999 i._snputc mc_w.l(printfa.o)
  3230. 0x080083fc 0x080083fc 0x0000000a Code RO 6000 i._sputc mc_w.l(printfa.o)
  3231. 0x08008406 0x08008406 0x00000048 Code RO 4850 i.buffer_skip_whitespace cjson.o
  3232. 0x0800844e 0x0800844e 0x00000002 PAD
  3233. 0x08008450 0x08008450 0x00000058 Code RO 4882 i.cJSON_Delete cjson.o
  3234. 0x080084a8 0x080084a8 0x00000012 Code RO 4896 i.cJSON_GetObjectItemCaseSensitive cjson.o
  3235. 0x080084ba 0x080084ba 0x00000016 Code RO 4906 i.cJSON_IsNumber cjson.o
  3236. 0x080084d0 0x080084d0 0x00000016 Code RO 4909 i.cJSON_IsString cjson.o
  3237. 0x080084e6 0x080084e6 0x0000001a Code RO 4912 i.cJSON_New_Item cjson.o
  3238. 0x08008500 0x08008500 0x00000010 Code RO 4913 i.cJSON_Parse cjson.o
  3239. 0x08008510 0x08008510 0x000000d4 Code RO 4915 i.cJSON_ParseWithLengthOpts cjson.o
  3240. 0x080085e4 0x080085e4 0x00000028 Code RO 4916 i.cJSON_ParseWithOpts cjson.o
  3241. 0x0800860c 0x0800860c 0x00000048 Code RO 4931 i.case_insensitive_strcmp cjson.o
  3242. 0x08008654 0x08008654 0x00000054 Code RO 961 i.check_ota_event otaevent.o
  3243. 0x080086a8 0x080086a8 0x00000042 Code RO 497 i.checksum parsedevicemessage.o
  3244. 0x080086ea 0x080086ea 0x0000000a Code RO 447 i.clear_gateway_config_block device_message.o
  3245. 0x080086f4 0x080086f4 0x0000010c Code RO 4618 i.config_485_port usart.o
  3246. 0x08008800 0x08008800 0x00000104 Code RO 5603 i.data_package_translate_to_int dlt645_data.o
  3247. 0x08008904 0x08008904 0x00000014 Code RO 277 i.delay_1ms systick.o
  3248. 0x08008918 0x08008918 0x00000018 Code RO 278 i.delay_decrement systick.o
  3249. 0x08008930 0x08008930 0x000000e4 Code RO 5690 i.dlt645_1997_parsing_data dlt645_1997.o
  3250. 0x08008a14 0x08008a14 0x00000098 Code RO 5691 i.dlt645_1997_read_data dlt645_1997.o
  3251. 0x08008aac 0x08008aac 0x00000052 Code RO 5692 i.dlt645_1997_recv_check dlt645_1997.o
  3252. 0x08008afe 0x08008afe 0x00000002 PAD
  3253. 0x08008b00 0x08008b00 0x000003e0 Code RO 5569 i.dlt645_2007_parsing_data dlt645_2007.o
  3254. 0x08008ee0 0x08008ee0 0x000000ae Code RO 5570 i.dlt645_2007_read_data dlt645_2007.o
  3255. 0x08008f8e 0x08008f8e 0x00000054 Code RO 5571 i.dlt645_2007_recv_check dlt645_2007.o
  3256. 0x08008fe2 0x08008fe2 0x0000007c Code RO 5605 i.dlt645_common_check dlt645_data.o
  3257. 0x0800905e 0x0800905e 0x00000002 PAD
  3258. 0x08009060 0x08009060 0x0000008c Code RO 5606 i.dlt645_data_parse_by_format_to_float dlt645_data.o
  3259. 0x080090ec 0x080090ec 0x00000060 Code RO 5652 i.dlt645_hw_read dlt645_port.o
  3260. 0x0800914c 0x0800914c 0x00000070 Code RO 5653 i.dlt645_hw_write dlt645_port.o
  3261. 0x080091bc 0x080091bc 0x00000028 Code RO 5654 i.dlt645_init dlt645_port.o
  3262. 0x080091e4 0x080091e4 0x00000144 Code RO 498 i.dlt645_read parsedevicemessage.o
  3263. 0x08009328 0x08009328 0x0000003e Code RO 5524 i.dlt645_read_data dlt645.o
  3264. 0x08009366 0x08009366 0x00000046 Code RO 5525 i.dlt645_receive_msg dlt645.o
  3265. 0x080093ac 0x080093ac 0x0000002e Code RO 5526 i.dlt645_send_msg dlt645.o
  3266. 0x080093da 0x080093da 0x0000002a Code RO 5527 i.dlt645_set_addr dlt645.o
  3267. 0x08009404 0x08009404 0x00000088 Code RO 5655 i.dlt_callback dlt645_port.o
  3268. 0x0800948c 0x0800948c 0x00000032 Code RO 1790 i.dma_channel_disable gd32f10x_dma.o
  3269. 0x080094be 0x080094be 0x00000032 Code RO 1791 i.dma_channel_enable gd32f10x_dma.o
  3270. 0x080094f0 0x080094f0 0x00000032 Code RO 1792 i.dma_circulation_disable gd32f10x_dma.o
  3271. 0x08009522 0x08009522 0x00000002 PAD
  3272. 0x08009524 0x08009524 0x00000088 Code RO 4619 i.dma_config usart.o
  3273. 0x080095ac 0x080095ac 0x00000080 Code RO 4620 i.dma_config_change usart.o
  3274. 0x0800962c 0x0800962c 0x00000070 Code RO 1794 i.dma_deinit gd32f10x_dma.o
  3275. 0x0800969c 0x0800969c 0x0000012e Code RO 1797 i.dma_init gd32f10x_dma.o
  3276. 0x080097ca 0x080097ca 0x00000032 Code RO 1799 i.dma_interrupt_enable gd32f10x_dma.o
  3277. 0x080097fc 0x080097fc 0x00000010 Code RO 1800 i.dma_interrupt_flag_clear gd32f10x_dma.o
  3278. 0x0800980c 0x0800980c 0x00000032 Code RO 1805 i.dma_memory_to_memory_disable gd32f10x_dma.o
  3279. 0x0800983e 0x0800983e 0x00000002 PAD
  3280. 0x08009840 0x08009840 0x00000018 Code RO 1809 i.dma_periph_and_channel_check gd32f10x_dma.o
  3281. 0x08009858 0x08009858 0x000000bc Code RO 1990 i.exti_init gd32f10x_exti.o
  3282. 0x08009914 0x08009914 0x0000000c Code RO 1993 i.exti_interrupt_flag_clear gd32f10x_exti.o
  3283. 0x08009920 0x08009920 0x00000018 Code RO 1994 i.exti_interrupt_flag_get gd32f10x_exti.o
  3284. 0x08009938 0x08009938 0x00000060 Code RO 499 i.extract_data_from_buffer parsedevicemessage.o
  3285. 0x08009998 0x08009998 0x00000024 Code RO 332 i.fputc log.o
  3286. 0x080099bc 0x080099bc 0x00000068 Code RO 2441 i.fwdgt_config gd32f10x_fwdgt.o
  3287. 0x08009a24 0x08009a24 0x00000010 Code RO 2442 i.fwdgt_counter_reload gd32f10x_fwdgt.o
  3288. 0x08009a34 0x08009a34 0x00000010 Code RO 2443 i.fwdgt_enable gd32f10x_fwdgt.o
  3289. 0x08009a44 0x08009a44 0x0000001a Code RO 826 i.fwdgt_init main.o
  3290. 0x08009a5e 0x08009a5e 0x00000002 PAD
  3291. 0x08009a60 0x08009a60 0x00000010 Code RO 2448 i.fwdgt_write_enable gd32f10x_fwdgt.o
  3292. 0x08009a70 0x08009a70 0x00000028 Code RO 4621 i.gd_485_DE_pin_init usart.o
  3293. 0x08009a98 0x08009a98 0x00000010 Code RO 4623 i.gd_485_DE_tx usart.o
  3294. 0x08009aa8 0x08009aa8 0x00000048 Code RO 4624 i.gd_EC800M_pin_init usart.o
  3295. 0x08009af0 0x08009af0 0x00000030 Code RO 4626 i.gd_com_232_send usart.o
  3296. 0x08009b20 0x08009b20 0x000000fc Code RO 4628 i.gd_com_init usart.o
  3297. 0x08009c1c 0x08009c1c 0x00000080 Code RO 4823 i.gd_eval_key_init key.o
  3298. 0x08009c9c 0x08009c9c 0x0000004c Code RO 4536 i.gd_eval_led_init led.o
  3299. 0x08009ce8 0x08009ce8 0x00000038 Code RO 4539 i.gd_eval_led_toggle led.o
  3300. 0x08009d20 0x08009d20 0x0000000c Code RO 4629 i.gd_pull_EC800M_pwr_down usart.o
  3301. 0x08009d2c 0x08009d2c 0x0000000c Code RO 4630 i.gd_pull_EC800M_pwr_up usart.o
  3302. 0x08009d38 0x08009d38 0x00000010 Code RO 4631 i.gd_pull_EC800M_rst_down usart.o
  3303. 0x08009d48 0x08009d48 0x00000010 Code RO 4632 i.gd_pull_EC800M_rst_up usart.o
  3304. 0x08009d58 0x08009d58 0x00000008 Code RO 448 i.get_config_params device_message.o
  3305. 0x08009d60 0x08009d60 0x00000004 Code RO 4937 i.get_decimal_point cjson.o
  3306. 0x08009d64 0x08009d64 0x00000052 Code RO 4938 i.get_object_item cjson.o
  3307. 0x08009db6 0x08009db6 0x00000002 PAD
  3308. 0x08009db8 0x08009db8 0x0000000c Code RO 279 i.gettick systick.o
  3309. 0x08009dc4 0x08009dc4 0x00000004 Code RO 2504 i.gpio_bit_reset gd32f10x_gpio.o
  3310. 0x08009dc8 0x08009dc8 0x00000004 Code RO 2505 i.gpio_bit_set gd32f10x_gpio.o
  3311. 0x08009dcc 0x08009dcc 0x0000000a Code RO 2506 i.gpio_bit_write gd32f10x_gpio.o
  3312. 0x08009dd6 0x08009dd6 0x00000002 PAD
  3313. 0x08009dd8 0x08009dd8 0x00000098 Code RO 2511 i.gpio_exti_source_select gd32f10x_gpio.o
  3314. 0x08009e70 0x08009e70 0x000000ac Code RO 2512 i.gpio_init gd32f10x_gpio.o
  3315. 0x08009f1c 0x08009f1c 0x00000010 Code RO 2513 i.gpio_input_bit_get gd32f10x_gpio.o
  3316. 0x08009f2c 0x08009f2c 0x00000090 Code RO 2518 i.gpio_pin_remap_config gd32f10x_gpio.o
  3317. 0x08009fbc 0x08009fbc 0x00000060 Code RO 827 i.http_load_config main.o
  3318. 0x0800a01c 0x0800a01c 0x00000050 Code RO 6022 i.internal_alloc mc_w.l(mallocr.o)
  3319. 0x0800a06c 0x0800a06c 0x000001d8 Code RO 828 i.main main.o
  3320. 0x0800a244 0x0800a244 0x0000007c Code RO 595 i.mmodbus_callback mmodbus.o
  3321. 0x0800a2c0 0x0800a2c0 0x00000030 Code RO 596 i.mmodbus_crc16 mmodbus.o
  3322. 0x0800a2f0 0x0800a2f0 0x00000028 Code RO 597 i.mmodbus_init mmodbus.o
  3323. 0x0800a318 0x0800a318 0x000000dc Code RO 599 i.mmodbus_readCoils mmodbus.o
  3324. 0x0800a3f4 0x0800a3f4 0x00000090 Code RO 605 i.mmodbus_readHoldingRegisters16i mmodbus.o
  3325. 0x0800a484 0x0800a484 0x00000108 Code RO 608 i.mmodbus_readHoldingRegisters8i mmodbus.o
  3326. 0x0800a58c 0x0800a58c 0x00000068 Code RO 616 i.mmodbus_receiveRaw mmodbus.o
  3327. 0x0800a5f4 0x0800a5f4 0x000000f8 Code RO 617 i.mmodbus_sendRaw mmodbus.o
  3328. 0x0800a6ec 0x0800a6ec 0x0000000c Code RO 618 i.mmodbus_set16bitOrder mmodbus.o
  3329. 0x0800a6f8 0x0800a6f8 0x00000090 Code RO 620 i.mmodbus_writeCoil mmodbus.o
  3330. 0x0800a788 0x0800a788 0x00000084 Code RO 621 i.mmodbus_writeHoldingRegister16i mmodbus.o
  3331. 0x0800a80c 0x0800a80c 0x00000354 Code RO 500 i.modbusRead parsedevicemessage.o
  3332. 0x0800ab60 0x0800ab60 0x00000034 Code RO 4633 i.nvic_config usart.o
  3333. 0x0800ab94 0x0800ab94 0x000000ac Code RO 2820 i.nvic_irq_enable gd32f10x_misc.o
  3334. 0x0800ac40 0x0800ac40 0x00000014 Code RO 2821 i.nvic_priority_group_set gd32f10x_misc.o
  3335. 0x0800ac54 0x0800ac54 0x00000018 Code RO 2822 i.nvic_vector_table_set gd32f10x_misc.o
  3336. 0x0800ac6c 0x0800ac6c 0x0000002a Code RO 501 i.parseIntField parsedevicemessage.o
  3337. 0x0800ac96 0x0800ac96 0x00000002 PAD
  3338. 0x0800ac98 0x0800ac98 0x00000ad4 Code RO 502 i.parseMQTTData parsedevicemessage.o
  3339. 0x0800b76c 0x0800b76c 0x00000034 Code RO 503 i.parseStringField parsedevicemessage.o
  3340. 0x0800b7a0 0x0800b7a0 0x000000f8 Code RO 4940 i.parse_array cjson.o
  3341. 0x0800b898 0x0800b898 0x0000005a Code RO 4941 i.parse_hex4 cjson.o
  3342. 0x0800b8f2 0x0800b8f2 0x00000002 PAD
  3343. 0x0800b8f4 0x0800b8f4 0x00000138 Code RO 4942 i.parse_number cjson.o
  3344. 0x0800ba2c 0x0800ba2c 0x0000013e Code RO 4943 i.parse_object cjson.o
  3345. 0x0800bb6a 0x0800bb6a 0x0000018c Code RO 4944 i.parse_string cjson.o
  3346. 0x0800bcf6 0x0800bcf6 0x00000002 PAD
  3347. 0x0800bcf8 0x0800bcf8 0x0000013c Code RO 4945 i.parse_value cjson.o
  3348. 0x0800be34 0x0800be34 0x000009d8 Code RO 5717 i.pow m_ws.l(pow.o)
  3349. 0x0800c80c 0x0800c80c 0x00000540 Code RO 505 i.processHttp parsedevicemessage.o
  3350. 0x0800cd4c 0x0800cd4c 0x00000022 Code RO 506 i.processIntData parsedevicemessage.o
  3351. 0x0800cd6e 0x0800cd6e 0x00000024 Code RO 507 i.processStringData parsedevicemessage.o
  3352. 0x0800cd92 0x0800cd92 0x00000002 PAD
  3353. 0x0800cd94 0x0800cd94 0x00000124 Code RO 2970 i.rcu_clock_freq_get gd32f10x_rcu.o
  3354. 0x0800ceb8 0x0800ceb8 0x00000020 Code RO 2984 i.rcu_osci_on gd32f10x_rcu.o
  3355. 0x0800ced8 0x0800ced8 0x00000020 Code RO 2987 i.rcu_periph_clock_enable gd32f10x_rcu.o
  3356. 0x0800cef8 0x0800cef8 0x00000020 Code RO 2990 i.rcu_periph_reset_disable gd32f10x_rcu.o
  3357. 0x0800cf18 0x0800cf18 0x00000020 Code RO 2991 i.rcu_periph_reset_enable gd32f10x_rcu.o
  3358. 0x0800cf38 0x0800cf38 0x000000b4 Code RO 896 i.readGatewayMessage pc.o
  3359. 0x0800cfec 0x0800cfec 0x000000f0 Code RO 829 i.readID main.o
  3360. 0x0800d0dc 0x0800d0dc 0x00000298 Code RO 897 i.readSIMCARD pc.o
  3361. 0x0800d374 0x0800d374 0x00000344 Code RO 898 i.read_json_config pc.o
  3362. 0x0800d6b8 0x0800d6b8 0x0000006c Code RO 6023 i.realloc mc_w.l(mallocr.o)
  3363. 0x0800d724 0x0800d724 0x00000008 Code RO 4740 i.ring_buffer_init ring_buffer.o
  3364. 0x0800d72c 0x0800d72c 0x00000028 Code RO 4741 i.ring_buffer_read ring_buffer.o
  3365. 0x0800d754 0x0800d754 0x0000001c Code RO 4742 i.ring_buffer_write ring_buffer.o
  3366. 0x0800d770 0x0800d770 0x00000024 Code RO 280 i.runtime_increment systick.o
  3367. 0x0800d794 0x0800d794 0x0000003c Code RO 4956 i.skip_utf8_bom cjson.o
  3368. 0x0800d7d0 0x0800d7d0 0x0000000a Code RO 3601 i.spi_enable gd32f10x_spi.o
  3369. 0x0800d7da 0x0800d7da 0x00000008 Code RO 3603 i.spi_i2s_data_receive gd32f10x_spi.o
  3370. 0x0800d7e2 0x0800d7e2 0x00000004 Code RO 3604 i.spi_i2s_data_transmit gd32f10x_spi.o
  3371. 0x0800d7e6 0x0800d7e6 0x00000002 PAD
  3372. 0x0800d7e8 0x0800d7e8 0x00000058 Code RO 3605 i.spi_i2s_deinit gd32f10x_spi.o
  3373. 0x0800d840 0x0800d840 0x00000010 Code RO 3606 i.spi_i2s_flag_get gd32f10x_spi.o
  3374. 0x0800d850 0x0800d850 0x00000032 Code RO 3610 i.spi_init gd32f10x_spi.o
  3375. 0x0800d882 0x0800d882 0x0000004c Code RO 6104 i.sqrt m_ws.l(sqrt.o)
  3376. 0x0800d8ce 0x0800d8ce 0x0000001c Code RO 5727 i.strtod m_ws.l(strtod.o)
  3377. 0x0800d8ea 0x0800d8ea 0x00000002 PAD
  3378. 0x0800d8ec 0x0800d8ec 0x000000c4 Code RO 4 i.system_clock_108m_hxtal system_gd32f10x.o
  3379. 0x0800d9b0 0x0800d9b0 0x00000008 Code RO 5 i.system_clock_config system_gd32f10x.o
  3380. 0x0800d9b8 0x0800d9b8 0x00000050 Code RO 281 i.systick_config systick.o
  3381. 0x0800da08 0x0800da08 0x0000000c Code RO 830 i.task_fwdgt_reload main.o
  3382. 0x0800da14 0x0800da14 0x00000090 Code RO 4209 i.usart_baudrate_set gd32f10x_usart.o
  3383. 0x0800daa4 0x0800daa4 0x0000000a Code RO 4210 i.usart_data_receive gd32f10x_usart.o
  3384. 0x0800daae 0x0800daae 0x00000008 Code RO 4211 i.usart_data_transmit gd32f10x_usart.o
  3385. 0x0800dab6 0x0800dab6 0x00000002 PAD
  3386. 0x0800dab8 0x0800dab8 0x00000090 Code RO 4212 i.usart_deinit gd32f10x_usart.o
  3387. 0x0800db48 0x0800db48 0x00000010 Code RO 4215 i.usart_dma_transmit_config gd32f10x_usart.o
  3388. 0x0800db58 0x0800db58 0x0000000a Code RO 4216 i.usart_enable gd32f10x_usart.o
  3389. 0x0800db62 0x0800db62 0x0000001a Code RO 4217 i.usart_flag_clear gd32f10x_usart.o
  3390. 0x0800db7c 0x0800db7c 0x0000001e Code RO 4218 i.usart_flag_get gd32f10x_usart.o
  3391. 0x0800db9a 0x0800db9a 0x00000010 Code RO 4222 i.usart_hardware_flow_cts_config gd32f10x_usart.o
  3392. 0x0800dbaa 0x0800dbaa 0x00000010 Code RO 4223 i.usart_hardware_flow_rts_config gd32f10x_usart.o
  3393. 0x0800dbba 0x0800dbba 0x0000001a Code RO 4225 i.usart_interrupt_enable gd32f10x_usart.o
  3394. 0x0800dbd4 0x0800dbd4 0x0000001a Code RO 4226 i.usart_interrupt_flag_clear gd32f10x_usart.o
  3395. 0x0800dbee 0x0800dbee 0x00000038 Code RO 4227 i.usart_interrupt_flag_get gd32f10x_usart.o
  3396. 0x0800dc26 0x0800dc26 0x00000010 Code RO 4237 i.usart_parity_config gd32f10x_usart.o
  3397. 0x0800dc36 0x0800dc36 0x00000010 Code RO 4239 i.usart_receive_config gd32f10x_usart.o
  3398. 0x0800dc46 0x0800dc46 0x00000010 Code RO 4245 i.usart_stop_bit_set gd32f10x_usart.o
  3399. 0x0800dc56 0x0800dc56 0x00000010 Code RO 4249 i.usart_transmit_config gd32f10x_usart.o
  3400. 0x0800dc66 0x0800dc66 0x00000010 Code RO 4250 i.usart_word_length_set gd32f10x_usart.o
  3401. 0x0800dc76 0x0800dc76 0x0000012c Code RO 4959 i.utf16_literal_to_utf8 cjson.o
  3402. 0x0800dda2 0x0800dda2 0x00000002 PAD
  3403. 0x0800dda4 0x0800dda4 0x000000a8 Code RO 899 i.write_json_config pc.o
  3404. 0x0800de4c 0x0800de4c 0x000001d8 Code RO 962 i.xmodem otaevent.o
  3405. 0x0800e024 0x0800e024 0x0000000e Data RO 509 .constdata parsedevicemessage.o
  3406. 0x0800e032 0x0800e032 0x00000200 Data RO 624 .constdata mmodbus.o
  3407. 0x0800e232 0x0800e232 0x00000005 Data RO 831 .constdata main.o
  3408. 0x0800e237 0x0800e237 0x00000001 PAD
  3409. 0x0800e238 0x0800e238 0x00000088 Data RO 5718 .constdata m_ws.l(pow.o)
  3410. 0x0800e2c0 0x0800e2c0 0x00000008 Data RO 6102 .constdata m_ws.l(qnan.o)
  3411. 0x0800e2c8 0x0800e2c8 0x00000081 Data RO 6137 .constdata mc_w.l(ctype_o.o)
  3412. 0x0800e349 0x0800e349 0x00000003 PAD
  3413. 0x0800e34c 0x0800e34c 0x00000004 Data RO 6138 .constdata mc_w.l(ctype_o.o)
  3414. 0x0800e350 0x0800e350 0x000001ef Data RO 510 .conststring parsedevicemessage.o
  3415. 0x0800e53f 0x0800e53f 0x00000001 PAD
  3416. 0x0800e540 0x0800e540 0x0000007b Data RO 832 .conststring main.o
  3417. 0x0800e5bb 0x0800e5bb 0x00000001 PAD
  3418. 0x0800e5bc 0x0800e5bc 0x0000036f Data RO 900 .conststring pc.o
  3419. 0x0800e92b 0x0800e92b 0x00000001 PAD
  3420. 0x0800e92c 0x0800e92c 0x00000020 Data RO 6205 Region$$Table anon$$obj.o
  3421. Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x0800e94c, Size: 0x00017cb0, Max: 0x00018000, ABSOLUTE)
  3422. Exec Addr Load Addr Size Type Attr Idx E Section Name Object
  3423. 0x20000000 0x0800e94c 0x00000004 Data RW 6 .data system_gd32f10x.o
  3424. 0x20000004 0x0800e950 0x00000008 Data RW 282 .data systick.o
  3425. 0x2000000c 0x0800e958 0x0000000e Data RW 625 .data mmodbus.o
  3426. 0x2000001a 0x0800e966 0x00000001 Data RW 792 .data mqttrecv.o
  3427. 0x2000001b 0x0800e967 0x00000001 PAD
  3428. 0x2000001c 0x0800e968 0x00000008 Data RW 833 .data main.o
  3429. 0x20000024 0x0800e970 0x00000010 Data RW 901 .data pc.o
  3430. 0x20000034 0x0800e980 0x0000000a Data RW 4540 .data led.o
  3431. 0x2000003e 0x0800e98a 0x00000002 PAD
  3432. 0x20000040 0x0800e98c 0x00000054 Data RW 4635 .data usart.o
  3433. 0x20000094 0x0800e9e0 0x00000013 Data RW 4824 .data key.o
  3434. 0x200000a7 0x0800e9f3 0x00000001 PAD
  3435. 0x200000a8 0x0800e9f4 0x00000014 Data RW 4961 .data cjson.o
  3436. 0x200000bc 0x0800ea08 0x00000014 Data RW 5657 .data dlt645_port.o
  3437. 0x200000d0 0x0800ea1c 0x00000004 Data RW 6125 .data mc_w.l(stdout.o)
  3438. 0x200000d4 0x0800ea20 0x00000004 Data RW 6164 .data mc_w.l(mvars.o)
  3439. 0x200000d8 0x0800ea24 0x00000004 Data RW 6165 .data mc_w.l(mvars.o)
  3440. 0x200000dc 0x0800ea28 0x00000004 Data RW 6169 .data mc_w.l(errno.o)
  3441. 0x200000e0 - 0x00004f94 Zero RW 452 .bss device_message.o
  3442. 0x20005074 - 0x00001008 Zero RW 508 .bss parsedevicemessage.o
  3443. 0x2000607c - 0x00000054 Zero RW 623 .bss mmodbus.o
  3444. 0x200060d0 - 0x00000080 Zero RW 791 .bss mqttrecv.o
  3445. 0x20006150 - 0x0000018a Zero RW 963 .bss otaevent.o
  3446. 0x200062da - 0x00001102 Zero RW 4634 .bss usart.o
  3447. 0x200073dc - 0x000000d4 Zero RW 5656 .bss dlt645_port.o
  3448. 0x200074b0 - 0x00010000 Zero RW 132 HEAP startup_gd32f10x_xd.o
  3449. 0x200174b0 - 0x00000800 Zero RW 131 STACK startup_gd32f10x_xd.o
  3450. ==============================================================================
  3451. Image component sizes
  3452. Code (inc. data) RO Data RW Data ZI Data Debug Object Name
  3453. 2714 66 0 20 0 17944 cjson.o
  3454. 18 4 0 0 20372 1377 device_message.o
  3455. 220 0 0 0 0 3048 dlt645.o
  3456. 462 22 0 0 0 2789 dlt645_1997.o
  3457. 1250 104 0 0 0 3144 dlt645_2007.o
  3458. 550 10 0 0 0 3580 dlt645_data.o
  3459. 384 46 0 20 212 3070 dlt645_port.o
  3460. 2444 658 0 0 0 9971 ec800m.o
  3461. 704 6 0 0 0 5634 gd32f10x_dma.o
  3462. 224 16 0 0 0 1650 gd32f10x_exti.o
  3463. 152 28 0 0 0 2054 gd32f10x_fwdgt.o
  3464. 502 12 0 0 0 4332 gd32f10x_gpio.o
  3465. 164 30 0 0 0 7249 gd32f10x_it.o
  3466. 216 28 0 0 0 1760 gd32f10x_misc.o
  3467. 420 44 0 0 0 2986 gd32f10x_rcu.o
  3468. 176 6 0 0 0 3759 gd32f10x_spi.o
  3469. 608 16 0 0 0 10035 gd32f10x_usart.o
  3470. 224 48 0 19 0 1714 key.o
  3471. 132 26 0 10 0 1388 led.o
  3472. 232 64 0 0 0 3143 log.o
  3473. 932 140 128 8 0 5650 main.o
  3474. 1480 104 512 14 84 10923 mmodbus.o
  3475. 288 54 0 1 128 23694 mqttrecv.o
  3476. 624 24 0 0 394 3373 otaevent.o
  3477. 5682 728 509 0 4104 11308 parsedevicemessage.o
  3478. 2352 332 879 16 0 5734 pc.o
  3479. 76 0 0 0 0 1838 ring_buffer.o
  3480. 186 16 0 0 0 1770 spi.o
  3481. 36 8 304 0 67584 764 startup_gd32f10x_xd.o
  3482. 420 32 0 4 0 55535 system_gd32f10x.o
  3483. 212 36 0 8 0 24980 systick.o
  3484. 1096 142 0 84 4354 9016 usart.o
  3485. 284 24 0 0 0 2641 w25q32.o
  3486. ----------------------------------------------------------------------
  3487. 25506 2874 2368 208 97232 247853 Object Totals
  3488. 0 0 32 0 0 0 (incl. Generated)
  3489. 42 0 4 4 0 0 (incl. Padding)
  3490. ----------------------------------------------------------------------
  3491. Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name
  3492. 62 10 0 0 0 340 dunder.o
  3493. 40 0 0 0 0 68 fpclassify.o
  3494. 170 0 0 0 0 96 poly.o
  3495. 2520 190 136 0 0 324 pow.o
  3496. 0 0 8 0 0 0 qnan.o
  3497. 76 0 0 0 0 84 sqrt.o
  3498. 28 0 0 0 0 80 strtod.o
  3499. 56 8 0 0 0 84 __0sscanf.o
  3500. 28 0 0 0 0 68 _chval.o
  3501. 812 4 0 0 0 112 _scanf.o
  3502. 332 0 0 0 0 96 _scanf_int.o
  3503. 224 0 0 0 0 96 _scanf_str.o
  3504. 64 0 0 0 0 84 _sgetc.o
  3505. 158 0 0 0 0 92 _strtoul.o
  3506. 8 4 133 0 0 68 ctype_o.o
  3507. 0 0 0 0 0 0 entry.o
  3508. 0 0 0 0 0 0 entry10a.o
  3509. 0 0 0 0 0 0 entry11a.o
  3510. 8 4 0 0 0 0 entry2.o
  3511. 4 0 0 0 0 0 entry5.o
  3512. 0 0 0 0 0 0 entry7b.o
  3513. 0 0 0 0 0 0 entry8b.o
  3514. 8 4 0 0 0 0 entry9a.o
  3515. 20 10 0 4 0 136 errno.o
  3516. 30 0 0 0 0 0 handlers.o
  3517. 36 8 0 0 0 68 init.o
  3518. 18 0 0 0 0 76 isspace_o.o
  3519. 0 0 0 0 0 0 iusefp.o
  3520. 30 0 0 0 0 68 llshl.o
  3521. 36 0 0 0 0 68 llsshr.o
  3522. 32 0 0 0 0 68 llushr.o
  3523. 360 30 0 0 0 356 mallocr.o
  3524. 26 0 0 0 0 80 memcmp.o
  3525. 36 0 0 0 0 68 memcpya.o
  3526. 36 0 0 0 0 108 memseta.o
  3527. 0 0 0 8 0 0 mvars.o
  3528. 2374 100 0 0 0 752 printfa.o
  3529. 40 8 0 0 0 84 scanf_char.o
  3530. 878 12 0 0 0 216 scanf_fp.o
  3531. 0 0 0 4 0 0 stdout.o
  3532. 20 0 0 0 0 68 strchr.o
  3533. 28 0 0 0 0 76 strcmp.o
  3534. 18 0 0 0 0 68 strcpy.o
  3535. 14 0 0 0 0 68 strlen.o
  3536. 30 0 0 0 0 80 strncmp.o
  3537. 36 0 0 0 0 80 strstr.o
  3538. 156 12 0 0 0 120 strtod.o
  3539. 112 0 0 0 0 88 strtol.o
  3540. 12 0 0 0 0 68 tolower.o
  3541. 44 0 0 0 0 80 uidiv.o
  3542. 98 0 0 0 0 92 uldiv.o
  3543. 48 0 0 0 0 68 cdcmple.o
  3544. 48 0 0 0 0 68 cdrcmple.o
  3545. 56 0 0 0 0 88 d2f.o
  3546. 334 0 0 0 0 148 dadd.o
  3547. 222 0 0 0 0 100 ddiv.o
  3548. 186 0 0 0 0 176 depilogue.o
  3549. 62 0 0 0 0 80 dfixi.o
  3550. 48 0 0 0 0 68 dfixul.o
  3551. 34 0 0 0 0 76 dflti.o
  3552. 26 0 0 0 0 76 dfltui.o
  3553. 24 0 0 0 0 76 dfltul.o
  3554. 228 0 0 0 0 96 dmul.o
  3555. 46 0 0 0 0 80 dscalb.o
  3556. 162 0 0 0 0 100 dsqrt.o
  3557. 38 0 0 0 0 68 f2d.o
  3558. 124 0 0 0 0 88 fdiv.o
  3559. 110 0 0 0 0 168 fepilogue.o
  3560. 50 0 0 0 0 68 ffixi.o
  3561. 10 0 0 0 0 68 ffltui.o
  3562. 100 0 0 0 0 76 fmul.o
  3563. ----------------------------------------------------------------------
  3564. 11090 404 280 16 0 6564 Library Totals
  3565. 16 0 3 0 0 0 (incl. Padding)
  3566. ----------------------------------------------------------------------
  3567. Code (inc. data) RO Data RW Data ZI Data Debug Library Name
  3568. 2896 200 144 0 0 992 m_ws.l
  3569. 6222 204 133 16 0 3736 mc_w.l
  3570. 1956 0 0 0 0 1836 mf_w.l
  3571. ----------------------------------------------------------------------
  3572. 11090 404 280 16 0 6564 Library Totals
  3573. ----------------------------------------------------------------------
  3574. ==============================================================================
  3575. Code (inc. data) RO Data RW Data ZI Data Debug
  3576. 36596 3278 2648 224 97232 240945 Grand Totals
  3577. 36596 3278 2648 224 97232 240945 ELF Image Totals
  3578. 36596 3278 2648 224 0 0 ROM Totals
  3579. ==============================================================================
  3580. Total RO Size (Code + RO Data) 39244 ( 38.32kB)
  3581. Total RW Size (RW Data + ZI Data) 97456 ( 95.17kB)
  3582. Total ROM Size (Code + RO Data + RW Data) 39468 ( 38.54kB)
  3583. ==============================================================================