AirControlValve.map 233 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616
  1. Component: ARM Compiler 5.06 update 7 (build 960) Tool: armlink [4d3601]
  2. ==============================================================================
  3. Section Cross References
  4. main.o(i.main) refers to system_ac780x.o(i.InitDelay) for InitDelay
  5. main.o(i.main) refers to cfg.o(i.Config_Init) for Config_Init
  6. main.o(i.main) refers to gpio.o(i.GPIO_PortInit) for GPIO_PortInit
  7. main.o(i.main) refers to process.o(i.Process_Init) for Process_Init
  8. main.o(i.main) refers to timer.o(i.TIMER_PrdInit) for TIMER_PrdInit
  9. main.o(i.main) refers to main_task.o(i.Task_Init) for Task_Init
  10. main.o(i.main) refers to main_task.o(i.Task_Handle) for Task_Handle
  11. comm.o(i.ComRxDataHandle) refers to fifo.o(i.Fifo_strchr) for Fifo_strchr
  12. comm.o(i.ComRxDataHandle) refers to fifo.o(i.fifo_Reset) for fifo_Reset
  13. comm.o(i.ComRxDataHandle) refers to fifo.o(i.fifo_retrieve) for fifo_retrieve
  14. comm.o(i.ComRxDataHandle) refers to cobs.o(i.cobs_decode) for cobs_decode
  15. comm.o(i.ComRxDataHandle) refers to crc16.o(i.crc16) for crc16
  16. comm.o(i.ComRxDataHandle) refers to comm.o(i.TransferExitHostHandle) for TransferExitHostHandle
  17. comm.o(i.ComRxDataHandle) refers to noretval__2printf.o(.text) for __2printf
  18. comm.o(i.ComRxDataHandle) refers to comm.o(i.DataTransferCmdHandle) for DataTransferCmdHandle
  19. comm.o(i.ComRxDataHandle) refers to comm.o(i.DataTransferRequestHostHandle) for DataTransferRequestHostHandle
  20. comm.o(i.ComRxDataHandle) refers to comm.o(i.TransferDataHostHandle) for TransferDataHostHandle
  21. comm.o(i.ComRxDataHandle) refers to comm.o(.bss) for .bss
  22. comm.o(i.Comm_Init) refers to fifo.o(i.fifo_Init) for fifo_Init
  23. comm.o(i.Comm_Init) refers to uart.o(i.uart_Initialize) for uart_Initialize
  24. comm.o(i.Comm_Init) refers to comm.o(.bss) for .bss
  25. comm.o(i.DataTransferCmdHandle) refers to noretval__2printf.o(.text) for __2printf
  26. comm.o(i.DataTransferCmdHandle) refers to comm.o(i.TransferExitHandle) for TransferExitHandle
  27. comm.o(i.DataTransferCmdHandle) refers to comm.o(i.DataTransferRequestHandle) for DataTransferRequestHandle
  28. comm.o(i.DataTransferCmdHandle) refers to comm.o(i.TransferDataHandle) for TransferDataHandle
  29. comm.o(i.DataTransferRequestHandle) refers to iap.o(i.IAP_Start) for IAP_Start
  30. comm.o(i.DataTransferRequestHandle) refers to crc16.o(i.crc16) for crc16
  31. comm.o(i.DataTransferRequestHandle) refers to comm.o(i.SendFrame) for SendFrame
  32. comm.o(i.DataTransferRequestHandle) refers to comm.o(.data) for .data
  33. comm.o(i.DataTransferRequestHostHandle) refers to _printf_pad.o(.text) for _printf_pre_padding
  34. comm.o(i.DataTransferRequestHostHandle) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  35. comm.o(i.DataTransferRequestHostHandle) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x
  36. comm.o(i.DataTransferRequestHostHandle) refers to _printf_hex_int.o(.text) for _printf_longlong_hex
  37. comm.o(i.DataTransferRequestHostHandle) refers to noretval__2printf.o(.text) for __2printf
  38. comm.o(i.DataTransferRequestHostHandle) refers to rt_memcpy.o(.text) for __aeabi_memcpy
  39. comm.o(i.DataTransferRequestHostHandle) refers to crc16.o(i.crc16) for crc16
  40. comm.o(i.DataTransferRequestHostHandle) refers to comm.o(i.SendFrame) for SendFrame
  41. comm.o(i.DataTransferRequestHostHandle) refers to comm.o(.bss) for .bss
  42. comm.o(i.DataTransferRequestHostHandle) refers to comm.o(.data) for .data
  43. comm.o(i.SendFrame) refers to cobs.o(i.cobs_encode) for cobs_encode
  44. comm.o(i.SendFrame) refers to uart.o(i.uart0_TransmitData) for uart0_TransmitData
  45. comm.o(i.SendFrame) refers to comm.o(.bss) for .bss
  46. comm.o(i.Start_IAPTest) refers to _printf_pad.o(.text) for _printf_pre_padding
  47. comm.o(i.Start_IAPTest) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  48. comm.o(i.Start_IAPTest) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x
  49. comm.o(i.Start_IAPTest) refers to _printf_hex_int.o(.text) for _printf_longlong_hex
  50. comm.o(i.Start_IAPTest) refers to noretval__2printf.o(.text) for __2printf
  51. comm.o(i.Start_IAPTest) refers to crc16.o(i.crc16) for crc16
  52. comm.o(i.Start_IAPTest) refers to comm.o(i.SendFrame) for SendFrame
  53. comm.o(i.Start_IAPTest) refers to comm.o(.data) for .data
  54. comm.o(i.Start_IAPTest) refers to comm.o(.bss) for .bss
  55. comm.o(i.TransferDataHandle) refers to iap.o(i.IAP_Stop) for IAP_Stop
  56. comm.o(i.TransferDataHandle) refers to iap.o(i.IAP_Write) for IAP_Write
  57. comm.o(i.TransferDataHandle) refers to crc16.o(i.crc16) for crc16
  58. comm.o(i.TransferDataHandle) refers to comm.o(i.SendFrame) for SendFrame
  59. comm.o(i.TransferDataHandle) refers to comm.o(.data) for .data
  60. comm.o(i.TransferDataHostHandle) refers to _printf_pad.o(.text) for _printf_pre_padding
  61. comm.o(i.TransferDataHostHandle) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  62. comm.o(i.TransferDataHostHandle) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x
  63. comm.o(i.TransferDataHostHandle) refers to _printf_hex_int.o(.text) for _printf_longlong_hex
  64. comm.o(i.TransferDataHostHandle) refers to noretval__2printf.o(.text) for __2printf
  65. comm.o(i.TransferDataHostHandle) refers to rt_memcpy.o(.text) for __aeabi_memcpy
  66. comm.o(i.TransferDataHostHandle) refers to crc16.o(i.crc16) for crc16
  67. comm.o(i.TransferDataHostHandle) refers to comm.o(i.SendFrame) for SendFrame
  68. comm.o(i.TransferDataHostHandle) refers to comm.o(.data) for .data
  69. comm.o(i.TransferDataHostHandle) refers to comm.o(.bss) for .bss
  70. comm.o(i.TransferExitHandle) refers to iap.o(i.IAP_Stop) for IAP_Stop
  71. comm.o(i.TransferExitHandle) refers to crc16.o(i.crc16) for crc16
  72. comm.o(i.TransferExitHandle) refers to comm.o(i.SendFrame) for SendFrame
  73. comm.o(i.TransferExitHandle) refers to comm.o(.data) for .data
  74. comm.o(i.TransferExitHandle) refers to cfg.o(.data) for config
  75. comm.o(i.TransferExitHostHandle) refers to _printf_pad.o(.text) for _printf_pre_padding
  76. comm.o(i.TransferExitHostHandle) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  77. comm.o(i.TransferExitHostHandle) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x
  78. comm.o(i.TransferExitHostHandle) refers to _printf_hex_int.o(.text) for _printf_longlong_hex
  79. comm.o(i.TransferExitHostHandle) refers to noretval__2printf.o(.text) for __2printf
  80. comm.o(i.TransferExitHostHandle) refers to crc16.o(i.crc16) for crc16
  81. comm.o(i.TransferExitHostHandle) refers to comm.o(i.SendFrame) for SendFrame
  82. comm.o(i.TransferExitHostHandle) refers to comm.o(.bss) for .bss
  83. iap.o(i.IAP_Start) refers to iap.o(.data) for .data
  84. iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_UnlockCtrl) for EFLASH_UnlockCtrl
  85. iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_PageErase) for EFLASH_PageErase
  86. iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_PageEraseVerify) for EFLASH_PageEraseVerify
  87. iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_PageProgram) for EFLASH_PageProgram
  88. iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_LockCtrl) for EFLASH_LockCtrl
  89. iap.o(i.IAP_Stop) refers to iap.o(.data) for .data
  90. iap.o(i.IAP_Stop) refers to iap.o(.bss) for .bss
  91. iap.o(i.IAP_Write) refers to rt_memcpy.o(.text) for __aeabi_memcpy
  92. iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_UnlockCtrl) for EFLASH_UnlockCtrl
  93. iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_PageErase) for EFLASH_PageErase
  94. iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_PageEraseVerify) for EFLASH_PageEraseVerify
  95. iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_PageProgram) for EFLASH_PageProgram
  96. iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_LockCtrl) for EFLASH_LockCtrl
  97. iap.o(i.IAP_Write) refers to iap.o(.data) for .data
  98. iap.o(i.IAP_Write) refers to iap.o(.bss) for .bss
  99. main_task.o(i.Task_Handle) refers to process.o(i.Process_RunLedPrd) for Process_RunLedPrd
  100. main_task.o(i.Task_Handle) refers to process.o(i.Process_ThreeStatus) for Process_ThreeStatus
  101. main_task.o(i.Task_Handle) refers to main_task.o(i.Uart0_RxDataHandle) for Uart0_RxDataHandle
  102. main_task.o(i.Task_Init) refers to uart.o(i.uart_Initialize) for uart_Initialize
  103. main_task.o(i.Uart0_RxDataHandle) refers to crc16.o(i.crc16) for crc16
  104. main_task.o(i.Uart0_RxDataHandle) refers to rt_memcpy.o(.text) for __aeabi_memcpy
  105. main_task.o(i.Uart0_RxDataHandle) refers to uart.o(i.uart0_TransmitData) for uart0_TransmitData
  106. main_task.o(i.Uart0_RxDataHandle) refers to uart.o(i.uart0_RecvData) for uart0_RecvData
  107. main_task.o(i.Uart0_RxDataHandle) refers to ac780x_gpio.o(i.GPIO_SetPinLevel) for GPIO_SetPinLevel
  108. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_FirmwareVersion) for Read_FirmwareVersion
  109. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_HardwareVersion) for Read_HardwareVersion
  110. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_Deviceid) for Read_Deviceid
  111. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_Devicetype) for Read_Devicetype
  112. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_Addr) for Read_Addr
  113. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_Baudrate) for Read_Baudrate
  114. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_LockStatus) for Read_LockStatus
  115. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_HardwareVersion) for Write_HardwareVersion
  116. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_Deviceid) for Write_Deviceid
  117. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_Devicetype) for Write_Devicetype
  118. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_Addr) for Write_Addr
  119. main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_Baudrate) for Write_Baudrate
  120. main_task.o(i.Uart0_RxDataHandle) refers to cfg.o(i.ResetConfig) for ResetConfig
  121. main_task.o(i.Uart0_RxDataHandle) refers to cfg.o(i.SaveConfig) for SaveConfig
  122. main_task.o(i.Uart0_RxDataHandle) refers to uart.o(.bss) for uart0_info
  123. main_task.o(i.Uart0_RxDataHandle) refers to cfg.o(.data) for config
  124. protocol.o(i.Read_Addr) refers to cfg.o(.data) for config
  125. protocol.o(i.Read_Baudrate) refers to cfg.o(.data) for config
  126. protocol.o(i.Read_Deviceid) refers to cfg.o(.data) for config
  127. protocol.o(i.Read_Devicetype) refers to cfg.o(.data) for config
  128. protocol.o(i.Read_FirmwareVersion) refers to protocol.o(.data) for .data
  129. protocol.o(i.Read_HardwareVersion) refers to cfg.o(.data) for config
  130. protocol.o(i.Read_LockStatus) refers to process.o(i.Process_LockStatus) for Process_LockStatus
  131. protocol.o(i.Read_LockStatus) refers to process.o(i.Process_UnlockStatus) for Process_UnlockStatus
  132. protocol.o(i.Read_LockStatus) refers to process.o(i.Process_CoverStatus) for Process_CoverStatus
  133. protocol.o(i.Write_Addr) refers to cfg.o(.data) for config
  134. protocol.o(i.Write_Baudrate) refers to cfg.o(.data) for config
  135. protocol.o(i.Write_Deviceid) refers to cfg.o(.data) for config
  136. protocol.o(i.Write_Devicetype) refers to cfg.o(.data) for config
  137. protocol.o(i.Write_HardwareVersion) refers to cfg.o(.data) for config
  138. cfg.o(i.Config_Init) refers to rt_memcpy.o(.emb_text) for __aeabi_memcpy4
  139. cfg.o(i.Config_Init) refers to rt_memclr.o(.text) for __aeabi_memclr4
  140. cfg.o(i.Config_Init) refers to cfg.o(i.Factory_reset) for Factory_reset
  141. cfg.o(i.Config_Init) refers to cfg.o(i.SaveConfig) for SaveConfig
  142. cfg.o(i.Config_Init) refers to cfg.o(.bss) for .bss
  143. cfg.o(i.Config_Init) refers to cfg.o(.data) for .data
  144. cfg.o(i.Factory_reset) refers to cfg.o(.data) for .data
  145. cfg.o(i.ResetConfig) refers to cfg.o(i.Factory_reset) for Factory_reset
  146. cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_UnlockCtrl) for EFLASH_UnlockCtrl
  147. cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_PageErase) for EFLASH_PageErase
  148. cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_PageEraseVerify) for EFLASH_PageEraseVerify
  149. cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_PageProgram) for EFLASH_PageProgram
  150. cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_LockCtrl) for EFLASH_LockCtrl
  151. cfg.o(i.SaveConfig) refers to cfg.o(.bss) for .bss
  152. cfg.o(.data) refers to cfg.o(.bss) for reflectionBuff
  153. process.o(i.Process_CoverStatus) refers to process.o(.data) for .data
  154. process.o(i.Process_Init) refers to ac780x_gpio.o(i.GPIO_GetPinLevel) for GPIO_GetPinLevel
  155. process.o(i.Process_Init) refers to ac780x_gpio.o(i.GPIO_SetPinLevel) for GPIO_SetPinLevel
  156. process.o(i.Process_Init) refers to process.o(.data) for .data
  157. process.o(i.Process_LockStatus) refers to process.o(.data) for .data
  158. process.o(i.Process_RunLedPrd) refers to ac780x_gpio.o(i.GPIO_GetPinLevel) for GPIO_GetPinLevel
  159. process.o(i.Process_RunLedPrd) refers to ac780x_gpio.o(i.GPIO_SetPinLevel) for GPIO_SetPinLevel
  160. process.o(i.Process_RunLedPrd) refers to process.o(.data) for .data
  161. process.o(i.Process_ThreeStatus) refers to ac780x_gpio.o(i.GPIO_GetPinLevel) for GPIO_GetPinLevel
  162. process.o(i.Process_ThreeStatus) refers to process.o(.data) for .data
  163. process.o(i.Process_UnlockStatus) refers to process.o(.data) for .data
  164. crc16.o(i.crc16) refers to crc16.o(.constdata) for .constdata
  165. fifo.o(i.Fifo_strchr) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
  166. fifo.o(i.fifo_DeInit) refers to rt_memclr.o(.text) for __aeabi_memclr
  167. fifo.o(i.fifo_Init) refers to rt_memclr.o(.text) for __aeabi_memclr
  168. fifo.o(i.fifo_Reset) refers to rt_memclr.o(.text) for __aeabi_memclr
  169. fifo.o(i.fifo_insert) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
  170. fifo.o(i.fifo_insert) refers to rt_memcpy.o(.text) for __aeabi_memcpy
  171. fifo.o(i.fifo_retrieve) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
  172. fifo.o(i.fifo_retrieve) refers to rt_memcpy.o(.text) for __aeabi_memcpy
  173. timer.o(i.TIMER_PrdInit) refers to ac780x_timer.o(i.TIMER_Init) for TIMER_Init
  174. timer.o(i.TIMER_PrdInit) refers to timer.o(i.TIM_CHN2_Callback) for TIM_CHN2_Callback
  175. timer.o(i.TIM_CHN2_Callback) refers to process.o(.data) for g_blinkLedTime
  176. timer.o(i.TIM_CHN2_Callback) refers to uart.o(.bss) for uart0_info
  177. gpio.o(i.GPIO_PortInit) refers to ac780x_gpio.o(i.GPIO_SetFunc) for GPIO_SetFunc
  178. gpio.o(i.GPIO_PortInit) refers to ac780x_gpio.o(i.GPIO_SetDir) for GPIO_SetDir
  179. gpio.o(i.GPIO_PortInit) refers to ac780x_gpio.o(i.GPIO_SetPullup) for GPIO_SetPullup
  180. uart.o(i.UartRxIdleCallBack) refers to ac780x_dma.o(i.DMA_SetChannel) for DMA_SetChannel
  181. uart.o(i.UartRxIdleCallBack) refers to ac780x_dma.o(i.DMA_ChannelFlush) for DMA_ChannelFlush
  182. uart.o(i.UartRxIdleCallBack) refers to uart.o(.bss) for .bss
  183. uart.o(i.UartTxDMAEventCallback) refers to uart.o(.bss) for .bss
  184. uart.o(i.uart0_RecvData) refers to ac780x_uart.o(i.UART_ReceiveDMA) for UART_ReceiveDMA
  185. uart.o(i.uart0_RecvData) refers to uart.o(.bss) for .bss
  186. uart.o(i.uart0_RecvData) refers to uart.o(i.UartRxDMAEventCallback) for UartRxDMAEventCallback
  187. uart.o(i.uart0_TransmitData) refers to ac780x_gpio.o(i.GPIO_SetPinLevel) for GPIO_SetPinLevel
  188. uart.o(i.uart0_TransmitData) refers to ac780x_uart.o(i.UART_TransmitDMA) for UART_TransmitDMA
  189. uart.o(i.uart0_TransmitData) refers to uart.o(.bss) for .bss
  190. uart.o(i.uart0_TransmitData) refers to uart.o(i.UartTxDMAEventCallback) for UartTxDMAEventCallback
  191. uart.o(i.uart_Initialize) refers to uart.o(i.__ARM_common_switch8) for __ARM_common_switch8
  192. uart.o(i.uart_Initialize) refers to ac780x_uart.o(i.UART_Init) for UART_Init
  193. uart.o(i.uart_Initialize) refers to ac780x_uart.o(i.UART_ReceiveDMA) for UART_ReceiveDMA
  194. uart.o(i.uart_Initialize) refers to cfg.o(.data) for config
  195. uart.o(i.uart_Initialize) refers to uart.o(i.UartRxIdleCallBack) for UartRxIdleCallBack
  196. uart.o(i.uart_Initialize) refers to uart.o(.bss) for .bss
  197. uart.o(i.uart_Initialize) refers to uart.o(i.UartRxDMAEventCallback) for UartRxDMAEventCallback
  198. ac780x_acmp.o(i.ACMP0_IRQHandler) refers to ac780x_acmp.o(.data) for .data
  199. ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_acmp.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  200. ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  201. ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  202. ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_acmp.o(.data) for .data
  203. ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_acmp.o(.constdata) for .constdata
  204. ac780x_acmp.o(i.ACMP_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  205. ac780x_acmp.o(i.ACMP_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  206. ac780x_acmp.o(i.ACMP_Init) refers to ac780x_acmp.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  207. ac780x_acmp.o(i.ACMP_Init) refers to ac780x_acmp.o(.data) for .data
  208. ac780x_acmp.o(i.ACMP_Init) refers to ac780x_acmp.o(.constdata) for .constdata
  209. ac780x_acmp.o(i.ACMP_SetCallback) refers to ac780x_acmp.o(.data) for .data
  210. ac780x_adc.o(i.ADC0_IRQHandler) refers to ac780x_adc.o(.data) for .data
  211. ac780x_adc.o(i.ADC_DeInit) refers to ac780x_adc.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  212. ac780x_adc.o(i.ADC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  213. ac780x_adc.o(i.ADC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  214. ac780x_adc.o(i.ADC_DeInit) refers to ac780x_adc.o(.constdata) for .constdata
  215. ac780x_adc.o(i.ADC_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  216. ac780x_adc.o(i.ADC_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  217. ac780x_adc.o(i.ADC_Init) refers to ac780x_adc.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  218. ac780x_adc.o(i.ADC_Init) refers to ac780x_adc.o(.data) for .data
  219. ac780x_adc.o(i.ADC_Init) refers to ac780x_adc.o(.constdata) for .constdata
  220. ac780x_adc.o(i.ADC_SetCallback) refers to ac780x_adc.o(.data) for .data
  221. ac780x_adc.o(i.ADC_SetInjectGroupChannel) refers to ac780x_adc.o(i.ADC_SetChannelSampleTime) for ADC_SetChannelSampleTime
  222. ac780x_adc.o(i.ADC_SetReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  223. ac780x_adc.o(i.ADC_SetRegularGroupChannel) refers to ac780x_adc.o(i.ADC_SetChannelSampleTime) for ADC_SetChannelSampleTime
  224. ac780x_can.o(i.CAN0_Handler) refers to ac780x_can.o(i.CAN_HandleEvent) for CAN_HandleEvent
  225. ac780x_can.o(i.CAN_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  226. ac780x_can.o(i.CAN_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  227. ac780x_can.o(i.CAN_DeInit) refers to ac780x_can.o(.constdata) for .constdata
  228. ac780x_can.o(i.CAN_DeInit) refers to ac780x_can.o(.bss) for .bss
  229. ac780x_can.o(i.CAN_GetError) refers to ac780x_can.o(.bss) for .bss
  230. ac780x_can.o(i.CAN_GetPayloadSize) refers to uart.o(i.__ARM_common_switch8) for __ARM_common_switch8
  231. ac780x_can.o(i.CAN_HandleEvent) refers to ac780x_can.o(.bss) for .bss
  232. ac780x_can.o(i.CAN_Init) refers to ac780x_ckgen.o(i.CKGEN_SetCANClock) for CKGEN_SetCANClock
  233. ac780x_can.o(i.CAN_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  234. ac780x_can.o(i.CAN_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  235. ac780x_can.o(i.CAN_Init) refers to ac780x_can.o(i.CAN_SetBitrate) for CAN_SetBitrate
  236. ac780x_can.o(i.CAN_Init) refers to ac780x_can.o(i.CAN_SetFilter) for CAN_SetFilter
  237. ac780x_can.o(i.CAN_Init) refers to ac780x_ckgen.o(i.CKGEN_SetCANTimeDivider) for CKGEN_SetCANTimeDivider
  238. ac780x_can.o(i.CAN_Init) refers to ac780x_can.o(.bss) for .bss
  239. ac780x_can.o(i.CAN_Init) refers to ac780x_can.o(.constdata) for .constdata
  240. ac780x_can.o(i.CAN_ReceiveMessage) refers to ac780x_can.o(i.CAN_GetPayloadSize) for CAN_GetPayloadSize
  241. ac780x_can.o(i.CAN_SetCallBack) refers to ac780x_can.o(.bss) for .bss
  242. ac780x_can.o(i.CAN_SetMsgInfo) refers to ac780x_can.o(i.CAN_GetPayloadSize) for CAN_GetPayloadSize
  243. ac780x_can.o(i.CAN_SetMsgInfo) refers to ac780x_can.o(.bss) for .bss
  244. ac780x_can.o(i.CAN_SetTransmitAmount) refers to ac780x_can.o(.bss) for .bss
  245. ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(i.CAN_IsTransmitting) for CAN_IsTransmitting
  246. ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(i.CAN_WaitTransmissionIdle) for CAN_WaitTransmissionIdle
  247. ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(i.CAN_SetMsgInfo) for CAN_SetMsgInfo
  248. ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(i.CAN_WaitTransmissionDone) for CAN_WaitTransmissionDone
  249. ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(.bss) for .bss
  250. ac780x_can.o(i.CAN_WaitTransmissionDone) refers to ac780x_can.o(i.WaitTransmitSecondaryDone) for WaitTransmitSecondaryDone
  251. ac780x_can.o(i.CAN_WaitTransmissionDone) refers to ac780x_can.o(i.WaitTransmitPrimaryDone) for WaitTransmitPrimaryDone
  252. ac780x_can.o(i.CAN_WaitTransmissionDone) refers to ac780x_can.o(.bss) for .bss
  253. ac780x_can.o(i.CAN_WaitTransmissionIdle) refers to ac780x_can.o(i.CAN_IsTransmitting) for CAN_IsTransmitting
  254. ac780x_crc.o(i.CRC_Check) refers to ac780x_crc.o(i.CRC_SetSeedOrDataMode) for CRC_SetSeedOrDataMode
  255. ac780x_crc.o(i.CRC_Check) refers to ac780x_crc.o(.data) for .data
  256. ac780x_crc.o(i.CRC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  257. ac780x_crc.o(i.CRC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  258. ac780x_crc.o(i.CRC_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  259. ac780x_crc.o(i.CRC_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  260. ac780x_crc.o(i.CRC_Init) refers to ac780x_crc.o(.data) for .data
  261. ac780x_ctu.o(i.CTU_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  262. ac780x_ctu.o(i.CTU_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  263. ac780x_ctu.o(i.CTU_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  264. ac780x_ctu.o(i.CTU_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  265. ac780x_ctu.o(i.CTU_Init) refers to ac780x_ctu.o(i.CTU_SetPwdtIn3InputSource) for CTU_SetPwdtIn3InputSource
  266. ac780x_dma.o(i.DMA0_Channel0_IRQHandler) refers to ac780x_dma.o(i.DMA_ClearFlag) for DMA_ClearFlag
  267. ac780x_dma.o(i.DMA0_Channel0_IRQHandler) refers to ac780x_dma.o(.bss) for .bss
  268. ac780x_dma.o(i.DMA0_Channel1_IRQHandler) refers to ac780x_dma.o(i.DMA_ClearFlag) for DMA_ClearFlag
  269. ac780x_dma.o(i.DMA0_Channel1_IRQHandler) refers to ac780x_dma.o(.bss) for .bss
  270. ac780x_dma.o(i.DMA0_Channel2_IRQHandler) refers to ac780x_dma.o(i.DMA_ClearFlag) for DMA_ClearFlag
  271. ac780x_dma.o(i.DMA0_Channel2_IRQHandler) refers to ac780x_dma.o(.bss) for .bss
  272. ac780x_dma.o(i.DMA0_Channel3_IRQHandler) refers to ac780x_dma.o(i.DMA_ClearFlag) for DMA_ClearFlag
  273. ac780x_dma.o(i.DMA0_Channel3_IRQHandler) refers to ac780x_dma.o(.bss) for .bss
  274. ac780x_dma.o(i.DMA_ClearFlag) refers to ac780x_dma.o(i.DMA_ChannelHardRst) for DMA_ChannelHardRst
  275. ac780x_dma.o(i.DMA_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  276. ac780x_dma.o(i.DMA_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  277. ac780x_dma.o(i.DMA_DeInit) refers to ac780x_dma.o(i.DMA_ChannelHardRst) for DMA_ChannelHardRst
  278. ac780x_dma.o(i.DMA_DeInit) refers to ac780x_dma.o(.constdata) for .constdata
  279. ac780x_dma.o(i.DMA_DeInit) refers to ac780x_dma.o(.bss) for .bss
  280. ac780x_dma.o(i.DMA_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  281. ac780x_dma.o(i.DMA_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  282. ac780x_dma.o(i.DMA_Init) refers to ac780x_dma.o(i.DMA_ChannelHardRst) for DMA_ChannelHardRst
  283. ac780x_dma.o(i.DMA_Init) refers to ac780x_dma.o(.bss) for .bss
  284. ac780x_dma.o(i.DMA_Init) refers to ac780x_dma.o(.constdata) for .constdata
  285. ac780x_dma.o(i.DMA_SetCallback) refers to ac780x_dma.o(.bss) for .bss
  286. ac780x_ecc_sram.o(i.ECC_SRAM_DeInit) refers to ac780x_ecc_sram.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  287. ac780x_ecc_sram.o(i.ECC_SRAM_DeInit) refers to ac780x_ecc_sram.o(.data) for .data
  288. ac780x_ecc_sram.o(i.ECC_SRAM_IRQHandler) refers to ac780x_ecc_sram.o(.data) for .data
  289. ac780x_ecc_sram.o(i.ECC_SRAM_Init) refers to ac780x_ecc_sram.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  290. ac780x_ecc_sram.o(i.ECC_SRAM_Init) refers to ac780x_ecc_sram.o(i.ECC_SRAM_Enable2BitErrReset) for ECC_SRAM_Enable2BitErrReset
  291. ac780x_ecc_sram.o(i.ECC_SRAM_Init) refers to ac780x_ecc_sram.o(.data) for .data
  292. ac780x_ecc_sram.o(i.ECC_SRAM_SetCallBack) refers to ac780x_ecc_sram.o(.data) for .data
  293. ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to rt_memclr.o(.text) for __aeabi_memclr4
  294. ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_UnlockCtrl) for EFLASH_UnlockCtrl
  295. ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_Read) for EFLASH_Read
  296. ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_OptionPageErase) for EFLASH_OptionPageErase
  297. ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_LockCtrl) for EFLASH_LockCtrl
  298. ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_OptionPageProgram) for EFLASH_OptionPageProgram
  299. ac780x_eflash.o(i.EFLASH_DisableReadOut) refers to rt_memclr.o(.text) for __aeabi_memclr4
  300. ac780x_eflash.o(i.EFLASH_DisableReadOut) refers to ac780x_eflash.o(i.EFLASH_Read) for EFLASH_Read
  301. ac780x_eflash.o(i.EFLASH_DisableReadOut) refers to ac780x_eflash.o(i.EFLASH_OptionPageErase) for EFLASH_OptionPageErase
  302. ac780x_eflash.o(i.EFLASH_DisableReadOut) refers to ac780x_eflash.o(i.EFLASH_OptionPageProgram) for EFLASH_OptionPageProgram
  303. ac780x_eflash.o(i.EFLASH_EnableReadOut) refers to rt_memclr.o(.text) for __aeabi_memclr4
  304. ac780x_eflash.o(i.EFLASH_EnableReadOut) refers to ac780x_eflash.o(i.EFLASH_Read) for EFLASH_Read
  305. ac780x_eflash.o(i.EFLASH_EnableReadOut) refers to ac780x_eflash.o(i.EFLASH_OptionPageErase) for EFLASH_OptionPageErase
  306. ac780x_eflash.o(i.EFLASH_EnableReadOut) refers to ac780x_eflash.o(i.EFLASH_OptionPageProgram) for EFLASH_OptionPageProgram
  307. ac780x_eflash.o(i.EFLASH_MassErase) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
  308. ac780x_eflash.o(i.EFLASH_MassErase) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
  309. ac780x_eflash.o(i.EFLASH_MassErase) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
  310. ac780x_eflash.o(i.EFLASH_MassEraseVerify) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
  311. ac780x_eflash.o(i.EFLASH_MassEraseVerify) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
  312. ac780x_eflash.o(i.EFLASH_OptionPageErase) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
  313. ac780x_eflash.o(i.EFLASH_OptionPageErase) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
  314. ac780x_eflash.o(i.EFLASH_OptionPageErase) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
  315. ac780x_eflash.o(i.EFLASH_OptionPageProgram) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
  316. ac780x_eflash.o(i.EFLASH_OptionPageProgram) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
  317. ac780x_eflash.o(i.EFLASH_OptionPageProgram) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
  318. ac780x_eflash.o(i.EFLASH_PageErase) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
  319. ac780x_eflash.o(i.EFLASH_PageErase) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
  320. ac780x_eflash.o(i.EFLASH_PageErase) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
  321. ac780x_eflash.o(i.EFLASH_PageEraseVerify) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
  322. ac780x_eflash.o(i.EFLASH_PageEraseVerify) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
  323. ac780x_eflash.o(i.EFLASH_PageProgram) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
  324. ac780x_eflash.o(i.EFLASH_PageProgram) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
  325. ac780x_eflash.o(i.EFLASH_PageProgram) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
  326. ac780x_eflash.o(i.EFLASH_SetWriteProtect) refers to rt_memclr.o(.text) for __aeabi_memclr4
  327. ac780x_eflash.o(i.EFLASH_SetWriteProtect) refers to ac780x_eflash.o(i.EFLASH_Read) for EFLASH_Read
  328. ac780x_eflash.o(i.EFLASH_SetWriteProtect) refers to ac780x_eflash.o(i.EFLASH_OptionPageErase) for EFLASH_OptionPageErase
  329. ac780x_eflash.o(i.EFLASH_SetWriteProtect) refers to ac780x_eflash.o(i.EFLASH_OptionPageProgram) for EFLASH_OptionPageProgram
  330. ac780x_gpio.o(i.EXTI0_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
  331. ac780x_gpio.o(i.EXTI0_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
  332. ac780x_gpio.o(i.EXTI0_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
  333. ac780x_gpio.o(i.EXTI1_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
  334. ac780x_gpio.o(i.EXTI1_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
  335. ac780x_gpio.o(i.EXTI1_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
  336. ac780x_gpio.o(i.EXTI2_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
  337. ac780x_gpio.o(i.EXTI2_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
  338. ac780x_gpio.o(i.EXTI2_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
  339. ac780x_gpio.o(i.EXTI3_8_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtInterrupt) for GPIO_GetPendingExtInterrupt
  340. ac780x_gpio.o(i.EXTI3_8_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
  341. ac780x_gpio.o(i.EXTI3_8_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
  342. ac780x_gpio.o(i.EXTI3_8_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
  343. ac780x_gpio.o(i.EXTI9_15_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtInterrupt) for GPIO_GetPendingExtInterrupt
  344. ac780x_gpio.o(i.EXTI9_15_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
  345. ac780x_gpio.o(i.EXTI9_15_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
  346. ac780x_gpio.o(i.EXTI9_15_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
  347. ac780x_gpio.o(i.GPIO_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  348. ac780x_gpio.o(i.GPIO_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  349. ac780x_gpio.o(i.GPIO_DeInit) refers to ac780x_gpio.o(.constdata) for .constdata
  350. ac780x_gpio.o(i.GPIO_DeInit) refers to ac780x_gpio.o(.bss) for .bss
  351. ac780x_gpio.o(i.GPIO_DisableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinExtIntMask) for GPIO_SetPinExtIntMask
  352. ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinExtIntMask) for GPIO_SetPinExtIntMask
  353. ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinExtIntSource) for GPIO_SetPinExtIntSource
  354. ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinRisingEdge) for GPIO_SetPinRisingEdge
  355. ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinFallingEdge) for GPIO_SetPinFallingEdge
  356. ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
  357. ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
  358. ac780x_gpio.o(i.GPIO_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  359. ac780x_gpio.o(i.GPIO_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  360. ac780x_gpio.o(i.GPIO_Init) refers to ac780x_gpio.o(i.GPIO_SetFunc) for GPIO_SetFunc
  361. ac780x_gpio.o(i.GPIO_SetCallback) refers to ac780x_gpio.o(.bss) for .bss
  362. ac780x_gpio.o(i.GPIO_SetFuncGroup) refers to ac780x_gpio.o(i.GPIO_SetFunc) for GPIO_SetFunc
  363. ac780x_i2c.o(i.I2C0_IRQHandler) refers to ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) for I2C_MasterSlaveIntHandler
  364. ac780x_i2c.o(i.I2C0_IRQHandler) refers to ac780x_i2c.o(.data) for .data
  365. ac780x_i2c.o(i.I2C1_IRQHandler) refers to ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) for I2C_MasterSlaveIntHandler
  366. ac780x_i2c.o(i.I2C1_IRQHandler) refers to ac780x_i2c.o(.data) for .data
  367. ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_i2c.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  368. ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_i2c.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
  369. ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  370. ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  371. ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_i2c.o(.data) for .data
  372. ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_i2c.o(.constdata) for .constdata
  373. ac780x_i2c.o(i.I2C_GetTransmitReceiveStatus) refers to ac780x_i2c.o(.data) for .data
  374. ac780x_i2c.o(i.I2C_GetTransmittedReceivedLength) refers to ac780x_i2c.o(.bss) for .bss
  375. ac780x_i2c.o(i.I2C_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  376. ac780x_i2c.o(i.I2C_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  377. ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(i.I2C_SetInterrupt) for I2C_SetInterrupt
  378. ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  379. ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
  380. ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(.constdata) for .constdata
  381. ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(.data) for .data
  382. ac780x_i2c.o(i.I2C_MasterIntHandler) refers to ac780x_i2c.o(i.I2C_ReceiveLastOneByte) for I2C_ReceiveLastOneByte
  383. ac780x_i2c.o(i.I2C_MasterIntHandler) refers to ac780x_i2c.o(.data) for .data
  384. ac780x_i2c.o(i.I2C_MasterIntHandler) refers to ac780x_i2c.o(.bss) for .bss
  385. ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  386. ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
  387. ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
  388. ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
  389. ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_Restart) for I2C_Restart
  390. ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_Stop) for I2C_Stop
  391. ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
  392. ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
  393. ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_SetInterrupt) for I2C_SetInterrupt
  394. ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
  395. ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_Restart) for I2C_Restart
  396. ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(.bss) for .bss
  397. ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(.data) for .data
  398. ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
  399. ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
  400. ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
  401. ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_Restart) for I2C_Restart
  402. ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_ReceiveOneByte) for I2C_ReceiveOneByte
  403. ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_ReceiveLastOneByte) for I2C_ReceiveLastOneByte
  404. ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_Stop) for I2C_Stop
  405. ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) refers to ac780x_i2c.o(i.I2C_ClearStartFlag) for I2C_ClearStartFlag
  406. ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) refers to ac780x_i2c.o(i.I2C_MasterIntHandler) for I2C_MasterIntHandler
  407. ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) refers to ac780x_i2c.o(i.I2C_SlaveIntHandler) for I2C_SlaveIntHandler
  408. ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) refers to ac780x_i2c.o(.data) for .data
  409. ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  410. ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
  411. ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
  412. ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_i2c.o(i.I2C_SetInterrupt) for I2C_SetInterrupt
  413. ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
  414. ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
  415. ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
  416. ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(i.I2C_SetInterrupt) for I2C_SetInterrupt
  417. ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
  418. ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(.bss) for .bss
  419. ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(.data) for .data
  420. ac780x_i2c.o(i.I2C_MasterTransmitPoll) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
  421. ac780x_i2c.o(i.I2C_MasterTransmitPoll) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
  422. ac780x_i2c.o(i.I2C_MasterTransmitPoll) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
  423. ac780x_i2c.o(i.I2C_MasterTransmitPoll) refers to ac780x_i2c.o(i.I2C_Stop) for I2C_Stop
  424. ac780x_i2c.o(i.I2C_ResetTransmitReceiveStatus) refers to ac780x_i2c.o(.bss) for .bss
  425. ac780x_i2c.o(i.I2C_ResetTransmitReceiveStatus) refers to ac780x_i2c.o(.data) for .data
  426. ac780x_i2c.o(i.I2C_Restart) refers to ac780x_i2c.o(i.I2C_ClearStartFlag) for I2C_ClearStartFlag
  427. ac780x_i2c.o(i.I2C_SetCallback) refers to ac780x_i2c.o(.data) for .data
  428. ac780x_i2c.o(i.I2C_SlaveIntHandler) refers to ac780x_i2c.o(.data) for .data
  429. ac780x_i2c.o(i.I2C_SlaveIntHandler) refers to ac780x_i2c.o(.bss) for .bss
  430. ac780x_i2c.o(i.I2C_SlaveReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  431. ac780x_i2c.o(i.I2C_SlaveTransmitDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  432. ac780x_i2c.o(i.I2C_SlaveTransmitReceiveInt) refers to ac780x_i2c.o(.bss) for .bss
  433. ac780x_i2c.o(i.I2C_SlaveTransmitReceiveInt) refers to ac780x_i2c.o(.data) for .data
  434. ac780x_i2c.o(i.I2C_Start) refers to ac780x_i2c.o(i.I2C_ClearStartFlag) for I2C_ClearStartFlag
  435. ac780x_i2c.o(i.I2C_TransmitOneByte) refers to ac780x_i2c.o(i.I2C_WaitOneByteFinished) for I2C_WaitOneByteFinished
  436. ac780x_pwdt.o(i.PWDT0_IRQHandler) refers to ac780x_pwdt.o(i.PWDT_CommonISR) for PWDT_CommonISR
  437. ac780x_pwdt.o(i.PWDT1_IRQHandler) refers to ac780x_pwdt.o(i.PWDT_CommonISR) for PWDT_CommonISR
  438. ac780x_pwdt.o(i.PWDT_CommonISR) refers to ac780x_pwdt.o(.data) for .data
  439. ac780x_pwdt.o(i.PWDT_DeInit) refers to ac780x_pwdt.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  440. ac780x_pwdt.o(i.PWDT_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  441. ac780x_pwdt.o(i.PWDT_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  442. ac780x_pwdt.o(i.PWDT_DeInit) refers to ac780x_pwdt.o(.constdata) for .constdata
  443. ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  444. ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  445. ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_pwdt.o(i.PWDT_SetClockPrescaler) for PWDT_SetClockPrescaler
  446. ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_pwdt.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  447. ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_pwdt.o(.constdata) for .constdata
  448. ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_pwdt.o(.data) for .data
  449. ac780x_pwdt.o(i.PWDT_SetCallback) refers to ac780x_pwdt.o(.data) for .data
  450. ac780x_pwm.o(i.PWM0_IRQHandler) refers to ac780x_pwm.o(i.PWM_CommonISR) for PWM_CommonISR
  451. ac780x_pwm.o(i.PWM1_IRQHandler) refers to ac780x_pwm.o(i.PWM_CommonISR) for PWM_CommonISR
  452. ac780x_pwm.o(i.PWM_CommonISR) refers to ac780x_pwm.o(.data) for .data
  453. ac780x_pwm.o(i.PWM_DeInit) refers to ac780x_pwm.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  454. ac780x_pwm.o(i.PWM_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  455. ac780x_pwm.o(i.PWM_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  456. ac780x_pwm.o(i.PWM_DeInit) refers to ac780x_pwm.o(.constdata) for .constdata
  457. ac780x_pwm.o(i.PWM_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  458. ac780x_pwm.o(i.PWM_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  459. ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  460. ac780x_pwm.o(i.PWM_Init) refers to uart.o(i.__ARM_common_switch8) for __ARM_common_switch8
  461. ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
  462. ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.PWM_SetPWMMode) for PWM_SetPWMMode
  463. ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.PWM_SetInputCaptureMode) for PWM_SetInputCaptureMode
  464. ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.PWM_SetOutputCompareMode) for PWM_SetOutputCompareMode
  465. ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.PWM_SetQuadDecodeMode) for PWM_SetQuadDecodeMode
  466. ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(.constdata) for .constdata
  467. ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(.data) for .data
  468. ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetMCVRSyncTriggerMode) for PWM_SetMCVRSyncTriggerMode
  469. ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetOMCRSyncTriggerMode) for PWM_SetOMCRSyncTriggerMode
  470. ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetINVCRSyncTriggerMode) for PWM_SetINVCRSyncTriggerMode
  471. ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetCHOSWCRSyncTriggerMode) for PWM_SetCHOSWCRSyncTriggerMode
  472. ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetCHOPOLCRSyncTriggerMode) for PWM_SetCHOPOLCRSyncTriggerMode
  473. ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetHardwareTriggerSyncSrc) for PWM_SetHardwareTriggerSyncSrc
  474. ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetCNTSyncTriggerMode) for PWM_SetCNTSyncTriggerMode
  475. ac780x_pwm.o(i.PWM_SetCallback) refers to ac780x_pwm.o(.data) for .data
  476. ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetCountMode) for PWM_SetCountMode
  477. ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetChannelMSR) for PWM_SetChannelMSR
  478. ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetChannelELSR) for PWM_SetChannelELSR
  479. ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetChannelInterrupt) for PWM_SetChannelInterrupt
  480. ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetChannelInputFilter) for PWM_SetChannelInputFilter
  481. ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelOutputInitLevel) for PWM_SetChannelOutputInitLevel
  482. ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetCountMode) for PWM_SetCountMode
  483. ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelMSR) for PWM_SetChannelMSR
  484. ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelELSR) for PWM_SetChannelELSR
  485. ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelInterrupt) for PWM_SetChannelInterrupt
  486. ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelTrigger) for PWM_SetChannelTrigger
  487. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelOutputInitLevel) for PWM_SetChannelOutputInitLevel
  488. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetCountMode) for PWM_SetCountMode
  489. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelMSR) for PWM_SetChannelMSR
  490. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelELSR) for PWM_SetChannelELSR
  491. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelPolarity) for PWM_SetChannelPolarity
  492. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelInterrupt) for PWM_SetChannelInterrupt
  493. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelTrigger) for PWM_SetChannelTrigger
  494. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetPairChannelCombine) for PWM_SetPairChannelCombine
  495. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetPairChannelDeadtime) for PWM_SetPairChannelDeadtime
  496. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetPairChannelComplement) for PWM_SetPairChannelComplement
  497. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelMatchDir) for PWM_SetChannelMatchDir
  498. ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetDeadtime) for PWM_SetDeadtime
  499. ac780x_pwm.o(i.PWM_SetQuadDecodeMode) refers to ac780x_pwm.o(i.PWM_SetChannelInputFilter) for PWM_SetChannelInputFilter
  500. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  501. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  502. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetChannelOutputInitLevel) for PWM_SetChannelOutputInitLevel
  503. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetCountMode) for PWM_SetCountMode
  504. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetPairChannelCombine) for PWM_SetPairChannelCombine
  505. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetPairChannelDeadtime) for PWM_SetPairChannelDeadtime
  506. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetPairChannelComplement) for PWM_SetPairChannelComplement
  507. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetChannelELSR) for PWM_SetChannelELSR
  508. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetChannelMSR) for PWM_SetChannelMSR
  509. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetChannelPolarity) for PWM_SetChannelPolarity
  510. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetDeadtime) for PWM_SetDeadtime
  511. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  512. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
  513. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(.constdata) for .constdata
  514. ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(.data) for .data
  515. ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_rtc.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  516. ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_rtc.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
  517. ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  518. ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  519. ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_rtc.o(.data) for .data
  520. ac780x_rtc.o(i.RTC_IRQHandler) refers to ac780x_rtc.o(i.RTC_ClearRTIF) for RTC_ClearRTIF
  521. ac780x_rtc.o(i.RTC_IRQHandler) refers to ac780x_rtc.o(i.RTC_ClearRPIF) for RTC_ClearRPIF
  522. ac780x_rtc.o(i.RTC_IRQHandler) refers to ac780x_rtc.o(.data) for .data
  523. ac780x_rtc.o(i.RTC_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  524. ac780x_rtc.o(i.RTC_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  525. ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(i.RTC_ClearRTIF) for RTC_ClearRTIF
  526. ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(i.RTC_ClearRPIF) for RTC_ClearRPIF
  527. ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  528. ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
  529. ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(.data) for .data
  530. ac780x_rtc.o(i.RTC_SetCallback) refers to ac780x_rtc.o(.data) for .data
  531. ac780x_spi.o(i.SPI0_IRQHandler) refers to ac780x_spi.o(i.SPI_InterruptHandler) for SPI_InterruptHandler
  532. ac780x_spi.o(i.SPI0_IRQHandler) refers to ac780x_spi.o(.data) for .data
  533. ac780x_spi.o(i.SPI1_IRQHandler) refers to ac780x_spi.o(i.SPI_InterruptHandler) for SPI_InterruptHandler
  534. ac780x_spi.o(i.SPI1_IRQHandler) refers to ac780x_spi.o(.data) for .data
  535. ac780x_spi.o(i.SPI_DeInit) refers to ac780x_spi.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  536. ac780x_spi.o(i.SPI_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  537. ac780x_spi.o(i.SPI_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  538. ac780x_spi.o(i.SPI_DeInit) refers to ac780x_spi.o(.constdata) for .constdata
  539. ac780x_spi.o(i.SPI_DeInit) refers to ac780x_spi.o(.data) for .data
  540. ac780x_spi.o(i.SPI_GetTransmitReceiveStatus) refers to ac780x_spi.o(.data) for .data
  541. ac780x_spi.o(i.SPI_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  542. ac780x_spi.o(i.SPI_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  543. ac780x_spi.o(i.SPI_Init) refers to ac780x_spi.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  544. ac780x_spi.o(i.SPI_Init) refers to ac780x_spi.o(.constdata) for .constdata
  545. ac780x_spi.o(i.SPI_Init) refers to ac780x_spi.o(.data) for .data
  546. ac780x_spi.o(i.SPI_InterruptHandler) refers to ac780x_spi.o(i.SPI_MasterInterruptHandler) for SPI_MasterInterruptHandler
  547. ac780x_spi.o(i.SPI_InterruptHandler) refers to ac780x_spi.o(i.SPI_SlaveInterruptHandler) for SPI_SlaveInterruptHandler
  548. ac780x_spi.o(i.SPI_MasterInterruptHandler) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  549. ac780x_spi.o(i.SPI_MasterInterruptHandler) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
  550. ac780x_spi.o(i.SPI_MasterInterruptHandler) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
  551. ac780x_spi.o(i.SPI_MasterInterruptHandler) refers to ac780x_spi.o(.data) for .data
  552. ac780x_spi.o(i.SPI_ReceiveDMA) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
  553. ac780x_spi.o(i.SPI_ReceiveDMA) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  554. ac780x_spi.o(i.SPI_ReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  555. ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
  556. ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  557. ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
  558. ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
  559. ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(.data) for .data
  560. ac780x_spi.o(i.SPI_ReceivePoll) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
  561. ac780x_spi.o(i.SPI_ReceivePoll) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  562. ac780x_spi.o(i.SPI_ReceivePoll) refers to ac780x_spi.o(i.SPI_ClearTxUFRxOF) for SPI_ClearTxUFRxOF
  563. ac780x_spi.o(i.SPI_ResetTransmitReceiveStatus) refers to ac780x_spi.o(.data) for .data
  564. ac780x_spi.o(i.SPI_SetCallback) refers to ac780x_spi.o(.data) for .data
  565. ac780x_spi.o(i.SPI_SlaveInterruptHandler) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
  566. ac780x_spi.o(i.SPI_SlaveInterruptHandler) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
  567. ac780x_spi.o(i.SPI_SlaveInterruptHandler) refers to ac780x_spi.o(.data) for .data
  568. ac780x_spi.o(i.SPI_TransmitDMA) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
  569. ac780x_spi.o(i.SPI_TransmitDMA) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  570. ac780x_spi.o(i.SPI_TransmitDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  571. ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
  572. ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  573. ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
  574. ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
  575. ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(.data) for .data
  576. ac780x_spi.o(i.SPI_TransmitPoll) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
  577. ac780x_spi.o(i.SPI_TransmitPoll) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  578. ac780x_spi.o(i.SPI_TransmitPoll) refers to ac780x_spi.o(i.SPI_ClearTxUFRxOF) for SPI_ClearTxUFRxOF
  579. ac780x_spi.o(i.SPI_TransmitReceiveDMA) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
  580. ac780x_spi.o(i.SPI_TransmitReceiveDMA) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  581. ac780x_spi.o(i.SPI_TransmitReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  582. ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
  583. ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  584. ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
  585. ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
  586. ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(.data) for .data
  587. ac780x_spi.o(i.SPI_TransmitReceivePoll) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
  588. ac780x_spi.o(i.SPI_TransmitReceivePoll) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
  589. ac780x_spi.o(i.SPI_TransmitReceivePoll) refers to ac780x_spi.o(i.SPI_ClearTxUFRxOF) for SPI_ClearTxUFRxOF
  590. ac780x_spi.o(i.SPI_WaitReceiveFinish) refers to ac780x_spi.o(i.SPI_ResetTransmitReceiveStatus) for SPI_ResetTransmitReceiveStatus
  591. ac780x_spi.o(i.SPI_WaitReceiveFinish) refers to ac780x_spi.o(i.SPI_GetTransmitReceiveStatus) for SPI_GetTransmitReceiveStatus
  592. ac780x_spm.o(i.NMI_Handler) refers to ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag) for SPM_GetModuleWakeupSourceFlag
  593. ac780x_spm.o(i.NMI_Handler) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
  594. ac780x_spm.o(i.NMI_Handler) refers to ac780x_ckgen.o(i.CKGEN_SetPLLReference) for CKGEN_SetPLLReference
  595. ac780x_spm.o(i.NMI_Handler) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
  596. ac780x_spm.o(i.NMI_Handler) refers to ac780x_ckgen.o(i.CKGEN_SetAPBClockDivider) for CKGEN_SetAPBClockDivider
  597. ac780x_spm.o(i.NMI_Handler) refers to ac780x_spm.o(i.SPM_EnablePLL) for SPM_EnablePLL
  598. ac780x_spm.o(i.NMI_Handler) refers to system_ac780x.o(i.mdelay) for mdelay
  599. ac780x_spm.o(i.PVD_IRQHandler) refers to ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag) for SPM_GetModuleWakeupSourceFlag
  600. ac780x_spm.o(i.PVD_IRQHandler) refers to ac780x_spm.o(.data) for .data
  601. ac780x_spm.o(i.PVD_SetCallback) refers to ac780x_spm.o(.data) for .data
  602. ac780x_spm.o(i.SPM_EnableXOSC) refers to ac780x_spm.o(i.SPM_XOSCOKBypassSet) for SPM_XOSCOKBypassSet
  603. ac780x_spm.o(i.SPM_IRQHandler) refers to ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag) for SPM_GetModuleWakeupSourceFlag
  604. ac780x_spm.o(i.SPM_IRQHandler) refers to ac780x_spm.o(.data) for .data
  605. ac780x_spm.o(i.SPM_SetCallback) refers to ac780x_spm.o(.data) for .data
  606. ac780x_timer.o(i.TIMER_Channel0_IRQHandler) refers to ac780x_timer.o(i.TIMER_CommonISR) for TIMER_CommonISR
  607. ac780x_timer.o(i.TIMER_Channel1_IRQHandler) refers to ac780x_timer.o(i.TIMER_CommonISR) for TIMER_CommonISR
  608. ac780x_timer.o(i.TIMER_Channel2_IRQHandler) refers to ac780x_timer.o(i.TIMER_CommonISR) for TIMER_CommonISR
  609. ac780x_timer.o(i.TIMER_Channel3_IRQHandler) refers to ac780x_timer.o(i.TIMER_CommonISR) for TIMER_CommonISR
  610. ac780x_timer.o(i.TIMER_CommonISR) refers to ac780x_timer.o(.bss) for .bss
  611. ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_timer.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  612. ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_timer.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
  613. ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  614. ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  615. ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_timer.o(.bss) for .bss
  616. ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_timer.o(.constdata) for .constdata
  617. ac780x_timer.o(i.TIMER_DeInitChannel) refers to ac780x_timer.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  618. ac780x_timer.o(i.TIMER_DeInitChannel) refers to ac780x_timer.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
  619. ac780x_timer.o(i.TIMER_DeInitChannel) refers to ac780x_timer.o(.bss) for .bss
  620. ac780x_timer.o(i.TIMER_DeInitChannel) refers to ac780x_timer.o(.constdata) for .constdata
  621. ac780x_timer.o(i.TIMER_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  622. ac780x_timer.o(i.TIMER_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  623. ac780x_timer.o(i.TIMER_Init) refers to ac780x_timer.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  624. ac780x_timer.o(i.TIMER_Init) refers to ac780x_timer.o(.bss) for .bss
  625. ac780x_timer.o(i.TIMER_Init) refers to ac780x_timer.o(.constdata) for .constdata
  626. ac780x_timer.o(i.TIMER_SetCallback) refers to ac780x_timer.o(.bss) for .bss
  627. ac780x_uart.o(i.UART0_IRQHandler) refers to ac780x_uart.o(i.UART_InterruptHandler) for UART_InterruptHandler
  628. ac780x_uart.o(i.UART1_IRQHandler) refers to ac780x_uart.o(i.UART_InterruptHandler) for UART_InterruptHandler
  629. ac780x_uart.o(i.UART2_IRQHandler) refers to ac780x_uart.o(i.UART_InterruptHandler) for UART_InterruptHandler
  630. ac780x_uart.o(i.UART_DeInit) refers to ac780x_uart.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  631. ac780x_uart.o(i.UART_DeInit) refers to ac780x_uart.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
  632. ac780x_uart.o(i.UART_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  633. ac780x_uart.o(i.UART_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  634. ac780x_uart.o(i.UART_DeInit) refers to ac780x_uart.o(.bss) for .bss
  635. ac780x_uart.o(i.UART_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  636. ac780x_uart.o(i.UART_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  637. ac780x_uart.o(i.UART_Init) refers to ac780x_uart.o(i.UART_SetParity) for UART_SetParity
  638. ac780x_uart.o(i.UART_Init) refers to ac780x_uart.o(i.UART_SetBaudrate) for UART_SetBaudrate
  639. ac780x_uart.o(i.UART_Init) refers to ac780x_uart.o(.bss) for .bss
  640. ac780x_uart.o(i.UART_InterruptHandler) refers to ac780x_uart.o(.bss) for .bss
  641. ac780x_uart.o(i.UART_ReceiveDMA) refers to ac780x_dma.o(i.DMA_DeInit) for DMA_DeInit
  642. ac780x_uart.o(i.UART_ReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  643. ac780x_uart.o(i.UART_SetBaudrate) refers to fflti.o(.text) for __aeabi_ui2f
  644. ac780x_uart.o(i.UART_SetBaudrate) refers to fdiv.o(.text) for __aeabi_fdiv
  645. ac780x_uart.o(i.UART_SetBaudrate) refers to ffixul.o(.text) for __aeabi_f2ulz
  646. ac780x_uart.o(i.UART_SetBaudrate) refers to faddsub.o(x$fpl$frsb) for __aeabi_frsub
  647. ac780x_uart.o(i.UART_SetBaudrate) refers to fscalbn.o(.text) for __ARM_scalbnf
  648. ac780x_uart.o(i.UART_SetBaudrate) refers to ffixui.o(.text) for __aeabi_f2uiz
  649. ac780x_uart.o(i.UART_SetCallback) refers to ac780x_uart.o(.constdata) for .constdata
  650. ac780x_uart.o(i.UART_SetCallback) refers to ac780x_uart.o(.bss) for .bss
  651. ac780x_uart.o(i.UART_TransmitDMA) refers to ac780x_dma.o(i.DMA_DeInit) for DMA_DeInit
  652. ac780x_uart.o(i.UART_TransmitDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
  653. ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_wdg.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  654. ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_wdg.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
  655. ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  656. ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  657. ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_wdg.o(.data) for .data
  658. ac780x_wdg.o(i.WDG_IRQHandler) refers to ac780x_wdg.o(.data) for .data
  659. ac780x_wdg.o(i.WDG_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
  660. ac780x_wdg.o(i.WDG_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
  661. ac780x_wdg.o(i.WDG_Init) refers to ac780x_wdg.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
  662. ac780x_wdg.o(i.WDG_Init) refers to ac780x_wdg.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
  663. ac780x_wdg.o(i.WDG_Init) refers to ac780x_wdg.o(.data) for .data
  664. ac780x_wdg.o(i.WDG_SetCallback) refers to ac780x_wdg.o(.data) for .data
  665. startup_ac780x.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
  666. startup_ac780x.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
  667. startup_ac780x.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
  668. startup_ac780x.o(RESET) refers to startup_ac780x.o(STACK) for __initial_sp
  669. startup_ac780x.o(RESET) refers to startup_ac780x.o(.text) for Reset_Handler
  670. startup_ac780x.o(RESET) refers to ac780x_spm.o(i.NMI_Handler) for NMI_Handler
  671. startup_ac780x.o(RESET) refers to ac780x_pwdt.o(i.PWDT0_IRQHandler) for PWDT0_IRQHandler
  672. startup_ac780x.o(RESET) refers to ac780x_pwdt.o(i.PWDT1_IRQHandler) for PWDT1_IRQHandler
  673. startup_ac780x.o(RESET) refers to ac780x_pwm.o(i.PWM0_IRQHandler) for PWM0_IRQHandler
  674. startup_ac780x.o(RESET) refers to ac780x_pwm.o(i.PWM1_IRQHandler) for PWM1_IRQHandler
  675. startup_ac780x.o(RESET) refers to ac780x_acmp.o(i.ACMP0_IRQHandler) for ACMP0_IRQHandler
  676. startup_ac780x.o(RESET) refers to ac780x_uart.o(i.UART0_IRQHandler) for UART0_IRQHandler
  677. startup_ac780x.o(RESET) refers to ac780x_uart.o(i.UART1_IRQHandler) for UART1_IRQHandler
  678. startup_ac780x.o(RESET) refers to ac780x_uart.o(i.UART2_IRQHandler) for UART2_IRQHandler
  679. startup_ac780x.o(RESET) refers to ac780x_wdg.o(i.WDG_IRQHandler) for WDG_IRQHandler
  680. startup_ac780x.o(RESET) refers to ac780x_spi.o(i.SPI0_IRQHandler) for SPI0_IRQHandler
  681. startup_ac780x.o(RESET) refers to ac780x_spi.o(i.SPI1_IRQHandler) for SPI1_IRQHandler
  682. startup_ac780x.o(RESET) refers to ac780x_i2c.o(i.I2C0_IRQHandler) for I2C0_IRQHandler
  683. startup_ac780x.o(RESET) refers to ac780x_i2c.o(i.I2C1_IRQHandler) for I2C1_IRQHandler
  684. startup_ac780x.o(RESET) refers to ac780x_dma.o(i.DMA0_Channel0_IRQHandler) for DMA0_Channel0_IRQHandler
  685. startup_ac780x.o(RESET) refers to ac780x_dma.o(i.DMA0_Channel1_IRQHandler) for DMA0_Channel1_IRQHandler
  686. startup_ac780x.o(RESET) refers to ac780x_dma.o(i.DMA0_Channel2_IRQHandler) for DMA0_Channel2_IRQHandler
  687. startup_ac780x.o(RESET) refers to ac780x_dma.o(i.DMA0_Channel3_IRQHandler) for DMA0_Channel3_IRQHandler
  688. startup_ac780x.o(RESET) refers to ac780x_timer.o(i.TIMER_Channel0_IRQHandler) for TIMER_Channel0_IRQHandler
  689. startup_ac780x.o(RESET) refers to ac780x_timer.o(i.TIMER_Channel1_IRQHandler) for TIMER_Channel1_IRQHandler
  690. startup_ac780x.o(RESET) refers to ac780x_timer.o(i.TIMER_Channel2_IRQHandler) for TIMER_Channel2_IRQHandler
  691. startup_ac780x.o(RESET) refers to ac780x_timer.o(i.TIMER_Channel3_IRQHandler) for TIMER_Channel3_IRQHandler
  692. startup_ac780x.o(RESET) refers to ac780x_rtc.o(i.RTC_IRQHandler) for RTC_IRQHandler
  693. startup_ac780x.o(RESET) refers to ac780x_spm.o(i.PVD_IRQHandler) for PVD_IRQHandler
  694. startup_ac780x.o(RESET) refers to ac780x_spm.o(i.SPM_IRQHandler) for SPM_IRQHandler
  695. startup_ac780x.o(RESET) refers to ac780x_can.o(i.CAN0_Handler) for CAN0_Handler
  696. startup_ac780x.o(RESET) refers to ac780x_adc.o(i.ADC0_IRQHandler) for ADC0_IRQHandler
  697. startup_ac780x.o(RESET) refers to ac780x_ecc_sram.o(i.ECC_SRAM_IRQHandler) for ECC_SRAM_IRQHandler
  698. startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI0_IRQHandler) for EXTI0_IRQHandler
  699. startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI1_IRQHandler) for EXTI1_IRQHandler
  700. startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI2_IRQHandler) for EXTI2_IRQHandler
  701. startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI3_8_IRQHandler) for EXTI3_8_IRQHandler
  702. startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI9_15_IRQHandler) for EXTI9_15_IRQHandler
  703. startup_ac780x.o(.text) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
  704. startup_ac780x.o(.text) refers to system_ac780x.o(i.SystemInit) for SystemInit
  705. startup_ac780x.o(.text) refers to __main.o(!!!main) for __main
  706. startup_ac780x.o(.text) refers to startup_ac780x.o(HEAP) for Heap_Mem
  707. startup_ac780x.o(.text) refers to startup_ac780x.o(STACK) for Stack_Mem
  708. system_ac780x.o(i.InitDelay) refers to system_ac780x.o(.data) for .data
  709. system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_spm.o(i.SPM_EnableXOSCBypassMode) for SPM_EnableXOSCBypassMode
  710. system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
  711. system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_spm.o(i.SPM_EnableXOSC) for SPM_EnableXOSC
  712. system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetPLLReference) for CKGEN_SetPLLReference
  713. system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_spm.o(i.SPM_EnablePLL) for SPM_EnablePLL
  714. system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
  715. system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv) for CKGEN_SetPllPrevDiv
  716. system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPostDiv) for CKGEN_SetPllPostDiv
  717. system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv) for CKGEN_SetPllFeedbackDiv
  718. system_ac780x.o(i.SetHSEClock) refers to ac780x_spm.o(i.SPM_EnableXOSC) for SPM_EnableXOSC
  719. system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetPLLReference) for CKGEN_SetPLLReference
  720. system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
  721. system_ac780x.o(i.SetHSEClock) refers to ac780x_spm.o(i.SPM_EnablePLL) for SPM_EnablePLL
  722. system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
  723. system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv) for CKGEN_SetPllPrevDiv
  724. system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPostDiv) for CKGEN_SetPllPostDiv
  725. system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv) for CKGEN_SetPllFeedbackDiv
  726. system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetPLLReference) for CKGEN_SetPLLReference
  727. system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv) for CKGEN_SetPllPrevDiv
  728. system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPostDiv) for CKGEN_SetPllPostDiv
  729. system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv) for CKGEN_SetPllFeedbackDiv
  730. system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
  731. system_ac780x.o(i.SetHSIClock) refers to ac780x_spm.o(i.SPM_EnablePLL) for SPM_EnablePLL
  732. system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
  733. system_ac780x.o(i.SetSysClock) refers to system_ac780x.o(i.SetHSEClock) for SetHSEClock
  734. system_ac780x.o(i.SetXOSCClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
  735. system_ac780x.o(i.SetXOSCClock) refers to ac780x_spm.o(i.SPM_EnableXOSC) for SPM_EnableXOSC
  736. system_ac780x.o(i.SetXOSCClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
  737. system_ac780x.o(i.SysStandby) refers to ac780x_spm.o(i.SPM_SetLowPowerMode) for SPM_SetLowPowerMode
  738. system_ac780x.o(i.SysStop) refers to ac780x_spm.o(i.SPM_SetLowPowerMode) for SPM_SetLowPowerMode
  739. system_ac780x.o(i.SysTickRepeatDelay) refers to system_ac780x.o(i.SysTickDelay) for SysTickDelay
  740. system_ac780x.o(i.SystemCoreClockUpdate) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
  741. system_ac780x.o(i.SystemCoreClockUpdate) refers to system_ac780x.o(.data) for .data
  742. system_ac780x.o(i.SystemInit) refers to system_ac780x.o(i.SetEflashClock) for SetEflashClock
  743. system_ac780x.o(i.SystemInit) refers to system_ac780x.o(i.SetHSEClock) for SetHSEClock
  744. system_ac780x.o(i.SystemInit) refers to ac780x_ckgen.o(i.CKGEN_SetAPBClockDivider) for CKGEN_SetAPBClockDivider
  745. system_ac780x.o(i.SystemInit) refers to startup_ac780x.o(RESET) for __Vectors
  746. system_ac780x.o(i.SystemInit) refers to system_ac780x.o(.data) for .data
  747. system_ac780x.o(i.mdelay) refers to system_ac780x.o(i.SysTickRepeatDelay) for SysTickRepeatDelay
  748. system_ac780x.o(i.mdelay) refers to system_ac780x.o(i.SysTickDelay) for SysTickDelay
  749. system_ac780x.o(i.mdelay) refers to system_ac780x.o(.data) for .data
  750. system_ac780x.o(i.udelay) refers to system_ac780x.o(i.SysTickRepeatDelay) for SysTickRepeatDelay
  751. system_ac780x.o(i.udelay) refers to system_ac780x.o(i.SysTickDelay) for SysTickDelay
  752. system_ac780x.o(i.udelay) refers to system_ac780x.o(.data) for .data
  753. __2printf.o(.text) refers to _printf_char_file.o(.text) for _printf_char_file
  754. __2printf.o(.text) refers to stdio_streams.o(.bss) for __stdout
  755. noretval__2printf.o(.text) refers to _printf_char_file.o(.text) for _printf_char_file
  756. noretval__2printf.o(.text) refers to stdio_streams.o(.bss) for __stdout
  757. __printf.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  758. _printf_hex_ll.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
  759. _printf_hex_ll.o(.text) refers to _printf_hex_ll.o(.constdata) for .constdata
  760. _printf_hex_int.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
  761. _printf_hex_int.o(.text) refers to _printf_hex_int.o(.constdata) for .constdata
  762. _printf_hex_int_ll.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
  763. _printf_hex_int_ll.o(.text) refers to _printf_hex_int_ll.o(.constdata) for .constdata
  764. _printf_hex_ptr.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
  765. _printf_hex_ptr.o(.text) refers to _printf_hex_ptr.o(.constdata) for .constdata
  766. _printf_hex_int_ptr.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
  767. _printf_hex_int_ptr.o(.text) refers to _printf_hex_int_ptr.o(.constdata) for .constdata
  768. _printf_hex_ll_ptr.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
  769. _printf_hex_ll_ptr.o(.text) refers to _printf_hex_ll_ptr.o(.constdata) for .constdata
  770. _printf_hex_int_ll_ptr.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
  771. _printf_hex_int_ll_ptr.o(.text) refers to _printf_hex_int_ll_ptr.o(.constdata) for .constdata
  772. __printf_flags.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  773. __printf_flags.o(.text) refers to __printf_flags.o(.constdata) for .constdata
  774. __printf_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  775. __printf_flags_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  776. __printf_flags_ss.o(.text) refers to __printf_flags_ss.o(.constdata) for .constdata
  777. __printf_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
  778. __printf_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  779. __printf_flags_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
  780. __printf_flags_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  781. __printf_flags_wp.o(.text) refers to __printf_flags_wp.o(.constdata) for .constdata
  782. __printf_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
  783. __printf_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  784. __printf_flags_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
  785. __printf_flags_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
  786. __printf_flags_ss_wp.o(.text) refers to __printf_flags_ss_wp.o(.constdata) for .constdata
  787. _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) refers (Weak) to _printf_hex_int.o(.text) for _printf_int_hex
  788. _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) refers (Special) to _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017) for _printf_percent_end
  789. rt_memcpy.o(.text) refers to rt_memcpy.o(.emb_text) for __aeabi_memcpy4
  790. __main.o(!!!main) refers to __rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry
  791. faddsub.o(x$fpl$fadd) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
  792. faddsub.o(x$fpl$fadd) refers to faddsub.o(x$fpl$fsub) for _fsub1
  793. faddsub.o(x$fpl$frsb) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
  794. faddsub.o(x$fpl$frsb) refers to faddsub.o(x$fpl$fsub) for _fsub1
  795. faddsub.o(x$fpl$frsb) refers to faddsub.o(x$fpl$fadd) for _fadd1
  796. faddsub.o(x$fpl$fsub) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
  797. faddsub.o(x$fpl$fsub) refers to faddsub.o(x$fpl$fadd) for _fadd1
  798. fdiv.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
  799. fdiv.o(.text) refers to fdiv.o(.constdata) for .constdata
  800. fdiv.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
  801. ffixui.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
  802. ffixul.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
  803. fflti.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
  804. fscalbn.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
  805. __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for __rt_entry_li
  806. __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for __rt_entry_main
  807. __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000C) for __rt_entry_postli_1
  808. __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$00000009) for __rt_entry_postsh_1
  809. __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$00000002) for __rt_entry_presh_1
  810. __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry4.o(.ARM.Collect$$rtentry$$00000004) for __rt_entry_sh
  811. aeabi_idiv0_sigfpe.o(.text) refers to rt_div0.o(.text) for __rt_div0
  812. _printf_intcommon.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_pre_padding
  813. _printf_intcommon.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_pre_padding
  814. _printf_intcommon.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_post_padding
  815. _printf_char_file.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
  816. _printf_char_file.o(.text) refers to ferror.o(.text) for ferror
  817. _printf_char_file.o(.text) refers to fputc.o(i.fputc) for fputc
  818. stdio_streams.o(.bss) refers (Special) to initio.o(.text) for _initio
  819. stdio_streams.o(.bss) refers (Special) to initio.o(.text) for _initio
  820. stdio_streams.o(.bss) refers (Special) to initio.o(.text) for _initio
  821. stdio_streams.o(.data) refers (Special) to initio.o(.text) for _initio
  822. stdio_streams.o(.data) refers (Special) to initio.o(.text) for _initio
  823. stdio_streams.o(.data) refers (Special) to initio.o(.text) for _initio
  824. __rtentry2.o(.ARM.Collect$$rtentry$$00000008) refers to boardinit2.o(.text) for _platform_post_stackheap_init
  825. __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) refers to libinit.o(.ARM.Collect$$libinit$$00000000) for __rt_lib_init
  826. __rtentry2.o(.ARM.Collect$$rtentry$$0000000B) refers to boardinit3.o(.text) for _platform_post_lib_init
  827. __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to main.o(i.main) for main
  828. __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to exit.o(.text) for exit
  829. __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$00000001) for .ARM.Collect$$rtentry$$00000001
  830. __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$00000008) for .ARM.Collect$$rtentry$$00000008
  831. __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for .ARM.Collect$$rtentry$$0000000A
  832. __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$0000000B) for .ARM.Collect$$rtentry$$0000000B
  833. __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for .ARM.Collect$$rtentry$$0000000D
  834. __rtentry4.o(.ARM.Collect$$rtentry$$00000004) refers to sys_stackheap_outer.o(.text) for __user_setup_stackheap
  835. __rtentry4.o(.ARM.exidx) refers to __rtentry4.o(.ARM.Collect$$rtentry$$00000004) for .ARM.Collect$$rtentry$$00000004
  836. rt_div0.o(.text) refers to defsig_fpe_outer.o(.text) for __rt_SIGFPE
  837. _printf_char_common.o(.text) refers to __printf_flags_wp.o(.text) for __printf
  838. fputc.o(i.fputc) refers to flsbuf.o(.text) for __flsbuf_byte
  839. initio.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000024) for __rt_lib_init_stdio_2
  840. initio.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000005) for __rt_lib_shutdown_stdio_2
  841. initio.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
  842. initio.o(.text) refers to fopen.o(.text) for freopen
  843. initio.o(.text) refers to defsig_rtred_outer.o(.text) for __rt_SIGRTRED
  844. initio.o(.text) refers to setvbuf.o(.text) for setvbuf
  845. initio.o(.text) refers to fclose.o(.text) for _fclose_internal
  846. initio.o(.text) refers to h1_free.o(.text) for free
  847. initio.o(.text) refers to stdio_streams.o(.bss) for __stdin
  848. initio.o(.text) refers to stdio_streams.o(.bss) for __stdout
  849. initio.o(.text) refers to stdio_streams.o(.bss) for __stderr
  850. initio.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdin
  851. initio.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdout
  852. initio.o(.text) refers to stdio_streams.o(.data) for __aeabi_stderr
  853. initio.o(.text) refers to sys_io.o(.constdata) for __stdin_name
  854. initio.o(.text) refers to sys_io.o(.constdata) for __stdout_name
  855. initio.o(.text) refers to sys_io.o(.constdata) for __stderr_name
  856. initio_locked.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000024) for __rt_lib_init_stdio_2
  857. initio_locked.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000005) for __rt_lib_shutdown_stdio_2
  858. initio_locked.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
  859. initio_locked.o(.text) refers to fopen.o(.text) for freopen
  860. initio_locked.o(.text) refers to defsig_rtred_outer.o(.text) for __rt_SIGRTRED
  861. initio_locked.o(.text) refers to setvbuf.o(.text) for setvbuf
  862. initio_locked.o(.text) refers to fclose.o(.text) for _fclose_internal
  863. initio_locked.o(.text) refers to h1_free.o(.text) for free
  864. initio_locked.o(.text) refers to stdio_streams.o(.bss) for __stdin
  865. initio_locked.o(.text) refers to stdio_streams.o(.bss) for __stdout
  866. initio_locked.o(.text) refers to stdio_streams.o(.bss) for __stderr
  867. initio_locked.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdin
  868. initio_locked.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdout
  869. initio_locked.o(.text) refers to stdio_streams.o(.data) for __aeabi_stderr
  870. initio_locked.o(.text) refers to streamlock.o(.data) for _stream_list_lock
  871. initio_locked.o(.text) refers to sys_io.o(.constdata) for __stdin_name
  872. initio_locked.o(.text) refers to sys_io.o(.constdata) for __stdout_name
  873. initio_locked.o(.text) refers to sys_io.o(.constdata) for __stderr_name
  874. sys_io.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
  875. sys_io.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
  876. sys_io.o(.text) refers to strlen.o(.text) for strlen
  877. sys_io.o(.constdata) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
  878. sys_io.o(.constdata) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
  879. sys_io.o(.constdata) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
  880. sys_io.o(.constdata) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
  881. sys_io.o(.constdata) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
  882. sys_io.o(.constdata) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
  883. sys_stackheap_outer.o(.text) refers to libspace.o(.text) for __user_perproc_libspace
  884. sys_stackheap_outer.o(.text) refers to startup_ac780x.o(.text) for __user_initial_stackheap
  885. sys_stackheap_outer.o(__vectab_stack_and_reset_area) refers to tempstk.o(.text) for __temporary_stack_top
  886. sys_stackheap_outer.o(__vectab_stack_and_reset_area) refers to __main.o(!!!main) for __main
  887. free.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
  888. free.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  889. h1_free.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  890. h1_free_mt.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  891. heap2.o(i._FDIterate) refers to heap2.o(.conststring) for .conststring
  892. heap2.o(i.___Heap_ProvideMemory$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
  893. heap2.o(i.___Heap_ProvideMemory$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  894. heap2.o(i.___Heap_Stats$realtime) refers to heap2.o(i._Heap2_StatsIterate) for _Heap2_StatsIterate
  895. heap2.o(i.___Heap_Stats$realtime) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
  896. heap2.o(i.___Heap_Valid$realtime) refers to heap2.o(i._FDIterate) for _FDIterate
  897. heap2.o(i.___Heap_Valid$realtime) refers to heap2.o(.conststring) for .conststring
  898. heap2.o(i._free$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  899. heap2.o(i._free$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
  900. heap2.o(i._free$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  901. heap2.o(i._malloc$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  902. heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
  903. heap2.o(i._malloc$realtime) refers to init_alloc.o(.text) for __Heap_Full
  904. heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
  905. heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  906. heap2.o(i._posix_memalign$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  907. heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
  908. heap2.o(i._posix_memalign$realtime) refers to init_alloc.o(.text) for __Heap_Full
  909. heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
  910. heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  911. heap2.o(i._realloc$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  912. heap2.o(i._realloc$realtime) refers to h1_free.o(.text) for free
  913. heap2.o(i._realloc$realtime) refers to h1_alloc.o(.text) for malloc
  914. heap2.o(i._realloc$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
  915. heap2.o(i._realloc$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  916. heap2.o(i._realloc$realtime) refers to rt_memcpy.o(.emb_text) for __aeabi_memcpy4
  917. heap2mt.o(i._FDIterate) refers to heap2mt.o(.conststring) for .conststring
  918. heap2mt.o(i.___Heap_ProvideMemory$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
  919. heap2mt.o(i.___Heap_ProvideMemory$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  920. heap2mt.o(i.___Heap_Stats$realtime$concurrent) refers to heap2mt.o(i._Heap2_StatsIterate) for _Heap2_StatsIterate
  921. heap2mt.o(i.___Heap_Stats$realtime$concurrent) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
  922. heap2mt.o(i.___Heap_Valid$realtime$concurrent) refers to heap2mt.o(i._FDIterate) for _FDIterate
  923. heap2mt.o(i.___Heap_Valid$realtime$concurrent) refers to heap2mt.o(.conststring) for .conststring
  924. heap2mt.o(i._free$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  925. heap2mt.o(i._free$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
  926. heap2mt.o(i._free$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  927. heap2mt.o(i._malloc$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  928. heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
  929. heap2mt.o(i._malloc$realtime$concurrent) refers to init_alloc.o(.text) for __Heap_Full
  930. heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
  931. heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  932. heap2mt.o(i._posix_memalign$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  933. heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
  934. heap2mt.o(i._posix_memalign$realtime$concurrent) refers to init_alloc.o(.text) for __Heap_Full
  935. heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
  936. heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  937. heap2mt.o(i._realloc$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  938. heap2mt.o(i._realloc$realtime$concurrent) refers to h1_free.o(.text) for free
  939. heap2mt.o(i._realloc$realtime$concurrent) refers to h1_alloc.o(.text) for malloc
  940. heap2mt.o(i._realloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
  941. heap2mt.o(i._realloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
  942. heap2mt.o(i._realloc$realtime$concurrent) refers to rt_memcpy.o(.emb_text) for __aeabi_memcpy4
  943. flsbuf.o(.text) refers to stdio.o(.text) for _deferredlazyseek
  944. flsbuf.o(.text) refers to sys_io.o(.text) for _sys_flen
  945. flsbuf.o(.text) refers to h1_alloc.o(.text) for malloc
  946. streamlock.o(.data) refers (Special) to initio.o(.text) for _initio
  947. fopen.o(.text) refers to fclose.o(.text) for _fclose_internal
  948. fopen.o(.text) refers to sys_io.o(.text) for _sys_open
  949. fopen.o(.text) refers to fseek.o(.text) for _fseek
  950. fopen.o(.text) refers to h1_alloc.o(.text) for malloc
  951. fopen.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
  952. fopen.o(.text) refers to stdio_streams.o(.bss) for __stdin
  953. fclose.o(.text) refers to stdio.o(.text) for _fflush
  954. fclose.o(.text) refers to sys_io.o(.text) for _sys_close
  955. fclose.o(.text) refers to h1_free.o(.text) for free
  956. fclose.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
  957. fopen_locked.o(.text) refers to fclose.o(.text) for _fclose_internal
  958. fopen_locked.o(.text) refers to sys_io.o(.text) for _sys_open
  959. fopen_locked.o(.text) refers to fseek.o(.text) for _fseek
  960. fopen_locked.o(.text) refers to h1_alloc.o(.text) for malloc
  961. fopen_locked.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
  962. fopen_locked.o(.text) refers to streamlock.o(.data) for _stream_list_lock
  963. fopen_locked.o(.text) refers to stdio_streams.o(.bss) for __stdin
  964. exit.o(.text) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for __rt_exit
  965. defsig_fpe_outer.o(.text) refers to defsig_fpe_inner.o(.text) for __rt_SIGFPE_inner
  966. defsig_fpe_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
  967. defsig_fpe_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
  968. defsig_rtred_outer.o(.text) refers to defsig_rtred_inner.o(.text) for __rt_SIGRTRED_inner
  969. defsig_rtred_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
  970. defsig_rtred_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
  971. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002E) for __rt_lib_init_alloca_1
  972. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002C) for __rt_lib_init_argv_1
  973. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001B) for __rt_lib_init_atexit_1
  974. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000021) for __rt_lib_init_clock_1
  975. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000032) for __rt_lib_init_cpp_1
  976. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000030) for __rt_lib_init_exceptions_1
  977. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000002) for __rt_lib_init_fp_1
  978. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001F) for __rt_lib_init_fp_trap_1
  979. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000023) for __rt_lib_init_getenv_1
  980. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000A) for __rt_lib_init_heap_1
  981. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000011) for __rt_lib_init_lc_collate_1
  982. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000013) for __rt_lib_init_lc_ctype_1
  983. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000015) for __rt_lib_init_lc_monetary_1
  984. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000017) for __rt_lib_init_lc_numeric_1
  985. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000019) for __rt_lib_init_lc_time_1
  986. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000004) for __rt_lib_init_preinit_1
  987. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000E) for __rt_lib_init_rand_1
  988. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000033) for __rt_lib_init_return
  989. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001D) for __rt_lib_init_signal_1
  990. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000025) for __rt_lib_init_stdio_1
  991. libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000C) for __rt_lib_init_user_alloc_1
  992. libinit2.o(.ARM.Collect$$libinit$$00000005) refers (Weak) to init_alloc.o(.text) for _init_alloc
  993. libinit2.o(.ARM.Collect$$libinit$$00000010) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
  994. libinit2.o(.ARM.Collect$$libinit$$00000012) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
  995. libinit2.o(.ARM.Collect$$libinit$$00000014) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
  996. libinit2.o(.ARM.Collect$$libinit$$00000016) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
  997. libinit2.o(.ARM.Collect$$libinit$$00000018) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
  998. libinit2.o(.ARM.Collect$$libinit$$00000024) refers (Weak) to initio.o(.text) for _initio
  999. libinit2.o(.ARM.Collect$$libinit$$00000026) refers to argv_veneer.o(.text) for __ARM_argv_veneer
  1000. libinit2.o(.ARM.Collect$$libinit$$00000027) refers to argv_veneer.o(.text) for __ARM_argv_veneer
  1001. libshutdown2.o(.ARM.Collect$$libshutdown$$00000005) refers (Weak) to initio.o(.text) for _terminateio
  1002. libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) refers (Weak) to term_alloc.o(.text) for _terminate_alloc
  1003. flsbuf_fwide.o(.text) refers to flsbuf.o(.text) for __flsbuf
  1004. libspace.o(.text) refers to libspace.o(.bss) for __libspace_start
  1005. rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
  1006. rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
  1007. rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
  1008. rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
  1009. rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
  1010. rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
  1011. rtexit.o(.ARM.exidx) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for .ARM.Collect$$rtexit$$00000000
  1012. rt_raise.o(.text) refers to __raise.o(.text) for __raise
  1013. rt_raise.o(.text) refers to sys_exit.o(.text) for _sys_exit
  1014. rt_heap_descriptor.o(.text) refers to rt_heap_descriptor.o(.bss) for __rt_heap_descriptor_data
  1015. rt_heap_descriptor_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
  1016. init_alloc.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
  1017. init_alloc.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000005) for __rt_lib_init_heap_2
  1018. init_alloc.o(.text) refers (Special) to maybetermalloc1.o(.emb_text) for _maybe_terminate_alloc
  1019. init_alloc.o(.text) refers to h1_extend.o(.text) for __Heap_ProvideMemory
  1020. init_alloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
  1021. init_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  1022. init_alloc.o(.text) refers to h1_init.o(.text) for __Heap_Initialize
  1023. malloc.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
  1024. malloc.o(.text) refers (Special) to init_alloc.o(.text) for _init_alloc
  1025. malloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  1026. h1_alloc.o(.text) refers (Special) to h1_init.o(.text) for __Heap_Initialize
  1027. h1_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  1028. h1_alloc.o(.text) refers to init_alloc.o(.text) for __Heap_Full
  1029. h1_alloc_mt.o(.text) refers (Special) to h1_init.o(.text) for __Heap_Initialize
  1030. h1_alloc_mt.o(.text) refers to init_alloc.o(.text) for __Heap_Full
  1031. h1_alloc_mt.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  1032. _printf_char_file_locked.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
  1033. _printf_char_file_locked.o(.text) refers to fputc.o(i._fputc$unlocked) for _fputc$unlocked
  1034. fseek.o(.text) refers to sys_io.o(.text) for _sys_istty
  1035. fseek.o(.text) refers to ftell.o(.text) for _ftell_internal
  1036. fseek.o(.text) refers to stdio.o(.text) for _seterr
  1037. stdio.o(.text) refers to sys_io.o(.text) for _sys_seek
  1038. fwritefast.o(.text) refers to stdio.o(.text) for _writebuf
  1039. fwritefast.o(.text) refers to flsbuf.o(.text) for __flsbuf_byte
  1040. fwritefast.o(.text) refers to rt_memcpy.o(.text) for __aeabi_memcpy
  1041. fwritefast_locked.o(.text) refers to stdio.o(.text) for _writebuf
  1042. fwritefast_locked.o(.text) refers to flsbuf.o(.text) for __flsbuf_byte
  1043. fwritefast_locked.o(.text) refers to rt_memcpy.o(.text) for __aeabi_memcpy
  1044. defsig_exit.o(.text) refers to sys_exit.o(.text) for _sys_exit
  1045. defsig_fpe_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
  1046. defsig_rtred_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
  1047. assert_stdio.o(.text) refers to fputs.o(.text) for fputs
  1048. assert_stdio.o(.text) refers to fflush.o(.text) for fflush
  1049. assert_stdio.o(.text) refers to stdio_streams.o(.bss) for __stderr
  1050. sys_exit.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
  1051. sys_exit.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
  1052. rtexit2.o(.ARM.Collect$$rtexit$$00000003) refers to libshutdown.o(.ARM.Collect$$libshutdown$$00000000) for __rt_lib_shutdown
  1053. rtexit2.o(.ARM.Collect$$rtexit$$00000004) refers to sys_exit.o(.text) for _sys_exit
  1054. rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000001) for .ARM.Collect$$rtexit$$00000001
  1055. rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for .ARM.Collect$$rtexit$$00000003
  1056. rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for .ARM.Collect$$rtexit$$00000004
  1057. maybetermalloc2.o(.emb_text) refers (Special) to term_alloc.o(.text) for _terminate_alloc
  1058. h1_extend.o(.text) refers to h1_free.o(.text) for free
  1059. h1_extend_mt.o(.text) refers to h1_free_mt.o(.text) for _free_internal
  1060. fflush.o(.text) refers to stdio.o(.text) for _fflush
  1061. fflush.o(.text) refers to fseek.o(.text) for _fseek
  1062. fflush.o(.text) refers to stdio_streams.o(.bss) for __stdin
  1063. fputs.o(.text) refers to fputc.o(i.fputc) for fputc
  1064. ftell.o(.text) refers to rt_errno_addr_intlibspace.o(.text) for __aeabi_errno_addr
  1065. fflush_locked.o(.text) refers to stdio.o(.text) for _fflush
  1066. fflush_locked.o(.text) refers to fseek.o(.text) for _fseek
  1067. fflush_locked.o(.text) refers to fflush.o(.text) for _do_fflush
  1068. fflush_locked.o(.text) refers to streamlock.o(.data) for _stream_list_lock
  1069. fflush_locked.o(.text) refers to stdio_streams.o(.bss) for __stdin
  1070. __raise.o(.text) refers to defsig.o(CL$$defsig) for __default_signal_handler
  1071. defsig_general.o(.text) refers to sys_wrch.o(.text) for _ttywrch
  1072. defsig_rtmem_outer.o(.text) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
  1073. defsig_rtmem_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
  1074. defsig_rtmem_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
  1075. heapauxa.o(.text) refers to heapauxa.o(.data) for .data
  1076. _get_argv.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard
  1077. _get_argv.o(.text) refers to h1_alloc.o(.text) for malloc
  1078. _get_argv.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
  1079. _get_argv.o(.text) refers to sys_command.o(.text) for _sys_command_string
  1080. _get_argv_nomalloc.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard
  1081. _get_argv_nomalloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
  1082. _get_argv_nomalloc.o(.text) refers to sys_command.o(.text) for _sys_command_string
  1083. sys_wrch.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
  1084. sys_wrch.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
  1085. sys_command.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
  1086. sys_command.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
  1087. rt_errno_addr.o(.text) refers to rt_errno_addr.o(.bss) for __aeabi_errno_addr_data
  1088. rt_errno_addr_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
  1089. term_alloc.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) for __rt_lib_shutdown_heap_2
  1090. term_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
  1091. defsig_rtmem_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
  1092. defsig.o(CL$$defsig) refers to defsig_fpe_inner.o(.text) for __rt_SIGFPE_inner
  1093. defsig.o(CL$$defsig) refers to defsig_rtred_inner.o(.text) for __rt_SIGRTRED_inner
  1094. defsig.o(CL$$defsig) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
  1095. libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) for __rt_lib_shutdown_cpp_1
  1096. libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) for __rt_lib_shutdown_fini_1
  1097. libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000009) for __rt_lib_shutdown_fp_trap_1
  1098. libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000011) for __rt_lib_shutdown_heap_1
  1099. libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000012) for __rt_lib_shutdown_return
  1100. libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) for __rt_lib_shutdown_signal_1
  1101. libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000006) for __rt_lib_shutdown_stdio_1
  1102. libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E) for __rt_lib_shutdown_user_alloc_1
  1103. defsig_abrt_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
  1104. defsig_stak_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
  1105. defsig_pvfn_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
  1106. defsig_cppl_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
  1107. defsig_segv_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
  1108. defsig_other.o(.text) refers to defsig_general.o(.text) for __default_signal_display
  1109. ==============================================================================
  1110. Removing Unused input sections from the image.
  1111. Removing main.o(.rev16_text), (4 bytes).
  1112. Removing main.o(.revsh_text), (4 bytes).
  1113. Removing comm.o(.rev16_text), (4 bytes).
  1114. Removing comm.o(.revsh_text), (4 bytes).
  1115. Removing comm.o(i.ComRxDataHandle), (260 bytes).
  1116. Removing comm.o(i.Comm_Init), (28 bytes).
  1117. Removing comm.o(i.DataTransferCmdHandle), (148 bytes).
  1118. Removing comm.o(i.DataTransferRequestHandle), (128 bytes).
  1119. Removing comm.o(i.DataTransferRequestHostHandle), (172 bytes).
  1120. Removing comm.o(i.SendFrame), (68 bytes).
  1121. Removing comm.o(i.Start_IAPTest), (120 bytes).
  1122. Removing comm.o(i.TransferDataHandle), (128 bytes).
  1123. Removing comm.o(i.TransferDataHostHandle), (188 bytes).
  1124. Removing comm.o(i.TransferExitHandle), (136 bytes).
  1125. Removing comm.o(i.TransferExitHostHandle), (116 bytes).
  1126. Removing comm.o(.bss), (1368 bytes).
  1127. Removing comm.o(.data), (24 bytes).
  1128. Removing iap.o(.rev16_text), (4 bytes).
  1129. Removing iap.o(.revsh_text), (4 bytes).
  1130. Removing iap.o(i.IAP_Start), (28 bytes).
  1131. Removing iap.o(i.IAP_Stop), (88 bytes).
  1132. Removing iap.o(i.IAP_Write), (164 bytes).
  1133. Removing iap.o(.bss), (2048 bytes).
  1134. Removing iap.o(.data), (12 bytes).
  1135. Removing main_task.o(.rev16_text), (4 bytes).
  1136. Removing main_task.o(.revsh_text), (4 bytes).
  1137. Removing protocol.o(.rev16_text), (4 bytes).
  1138. Removing protocol.o(.revsh_text), (4 bytes).
  1139. Removing cfg.o(.rev16_text), (4 bytes).
  1140. Removing cfg.o(.revsh_text), (4 bytes).
  1141. Removing process.o(.rev16_text), (4 bytes).
  1142. Removing process.o(.revsh_text), (4 bytes).
  1143. Removing cobs.o(.rev16_text), (4 bytes).
  1144. Removing cobs.o(.revsh_text), (4 bytes).
  1145. Removing cobs.o(i.cobs_decode), (188 bytes).
  1146. Removing cobs.o(i.cobs_encode), (142 bytes).
  1147. Removing crc16.o(.rev16_text), (4 bytes).
  1148. Removing crc16.o(.revsh_text), (4 bytes).
  1149. Removing fifo.o(.rev16_text), (4 bytes).
  1150. Removing fifo.o(.revsh_text), (4 bytes).
  1151. Removing fifo.o(i.Fifo_strchr), (54 bytes).
  1152. Removing fifo.o(i.fifo_DeInit), (36 bytes).
  1153. Removing fifo.o(i.fifo_GetFreeSpace), (16 bytes).
  1154. Removing fifo.o(i.fifo_GetLen), (10 bytes).
  1155. Removing fifo.o(i.fifo_Init), (48 bytes).
  1156. Removing fifo.o(i.fifo_NotFull), (24 bytes).
  1157. Removing fifo.o(i.fifo_Reset), (30 bytes).
  1158. Removing fifo.o(i.fifo_insert), (68 bytes).
  1159. Removing fifo.o(i.fifo_retrieve), (66 bytes).
  1160. Removing timer.o(.rev16_text), (4 bytes).
  1161. Removing timer.o(.revsh_text), (4 bytes).
  1162. Removing gpio.o(.rev16_text), (4 bytes).
  1163. Removing gpio.o(.revsh_text), (4 bytes).
  1164. Removing uart.o(.rev16_text), (4 bytes).
  1165. Removing uart.o(.revsh_text), (4 bytes).
  1166. Removing ac780x_acmp.o(.rev16_text), (4 bytes).
  1167. Removing ac780x_acmp.o(.revsh_text), (4 bytes).
  1168. Removing ac780x_acmp.o(i.ACMP_DeInit), (76 bytes).
  1169. Removing ac780x_acmp.o(i.ACMP_Init), (364 bytes).
  1170. Removing ac780x_acmp.o(i.ACMP_SetCallback), (24 bytes).
  1171. Removing ac780x_acmp.o(i.__NVIC_DisableIRQ), (32 bytes).
  1172. Removing ac780x_acmp.o(.constdata), (1 bytes).
  1173. Removing ac780x_adc.o(.rev16_text), (4 bytes).
  1174. Removing ac780x_adc.o(.revsh_text), (4 bytes).
  1175. Removing ac780x_adc.o(i.ADC_DeInit), (64 bytes).
  1176. Removing ac780x_adc.o(i.ADC_Init), (372 bytes).
  1177. Removing ac780x_adc.o(i.ADC_SetAnalogMonitor), (144 bytes).
  1178. Removing ac780x_adc.o(i.ADC_SetCallback), (24 bytes).
  1179. Removing ac780x_adc.o(i.ADC_SetChannelSampleTime), (46 bytes).
  1180. Removing ac780x_adc.o(i.ADC_SetInjectGroupChannel), (32 bytes).
  1181. Removing ac780x_adc.o(i.ADC_SetReceiveDMA), (74 bytes).
  1182. Removing ac780x_adc.o(i.ADC_SetRegularGroupChannel), (56 bytes).
  1183. Removing ac780x_adc.o(i.__NVIC_DisableIRQ), (32 bytes).
  1184. Removing ac780x_adc.o(.constdata), (1 bytes).
  1185. Removing ac780x_can.o(.rev16_text), (4 bytes).
  1186. Removing ac780x_can.o(.revsh_text), (4 bytes).
  1187. Removing ac780x_can.o(i.CAN_DeInit), (124 bytes).
  1188. Removing ac780x_can.o(i.CAN_GetError), (48 bytes).
  1189. Removing ac780x_can.o(i.CAN_GetPayloadSize), (62 bytes).
  1190. Removing ac780x_can.o(i.CAN_Init), (484 bytes).
  1191. Removing ac780x_can.o(i.CAN_IsTransmitting), (24 bytes).
  1192. Removing ac780x_can.o(i.CAN_ReceiveMessage), (182 bytes).
  1193. Removing ac780x_can.o(i.CAN_SetBitrate), (36 bytes).
  1194. Removing ac780x_can.o(i.CAN_SetCallBack), (32 bytes).
  1195. Removing ac780x_can.o(i.CAN_SetFilter), (82 bytes).
  1196. Removing ac780x_can.o(i.CAN_SetMsgInfo), (244 bytes).
  1197. Removing ac780x_can.o(i.CAN_SetTransmitAmount), (32 bytes).
  1198. Removing ac780x_can.o(i.CAN_TransmitMessage), (148 bytes).
  1199. Removing ac780x_can.o(i.CAN_WaitTransmissionDone), (52 bytes).
  1200. Removing ac780x_can.o(i.CAN_WaitTransmissionIdle), (48 bytes).
  1201. Removing ac780x_can.o(i.WaitTransmitPrimaryDone), (52 bytes).
  1202. Removing ac780x_can.o(i.WaitTransmitSecondaryDone), (52 bytes).
  1203. Removing ac780x_can.o(.constdata), (3 bytes).
  1204. Removing ac780x_ckgen.o(.rev16_text), (4 bytes).
  1205. Removing ac780x_ckgen.o(.revsh_text), (4 bytes).
  1206. Removing ac780x_ckgen.o(i.CKGEN_SetCANClock), (18 bytes).
  1207. Removing ac780x_ckgen.o(i.CKGEN_SetCANTimeDivider), (20 bytes).
  1208. Removing ac780x_crc.o(.rev16_text), (4 bytes).
  1209. Removing ac780x_crc.o(.revsh_text), (4 bytes).
  1210. Removing ac780x_crc.o(i.CRC_Check), (216 bytes).
  1211. Removing ac780x_crc.o(i.CRC_DeInit), (20 bytes).
  1212. Removing ac780x_crc.o(i.CRC_Init), (96 bytes).
  1213. Removing ac780x_crc.o(i.CRC_SetSeedOrDataMode), (20 bytes).
  1214. Removing ac780x_crc.o(.data), (1 bytes).
  1215. Removing ac780x_ctu.o(.rev16_text), (4 bytes).
  1216. Removing ac780x_ctu.o(.revsh_text), (4 bytes).
  1217. Removing ac780x_ctu.o(i.CTU_DeInit), (20 bytes).
  1218. Removing ac780x_ctu.o(i.CTU_Init), (188 bytes).
  1219. Removing ac780x_ctu.o(i.CTU_SetPwdtIn3InputSource), (36 bytes).
  1220. Removing ac780x_dma.o(.rev16_text), (4 bytes).
  1221. Removing ac780x_dma.o(.revsh_text), (4 bytes).
  1222. Removing ac780x_dma.o(i.DMA_GetInterFIFODataLeftNum), (8 bytes).
  1223. Removing ac780x_dma.o(i.DMA_GetTransferedDataNum), (6 bytes).
  1224. Removing ac780x_dma.o(i.DMA_GetTransmissionLength), (6 bytes).
  1225. Removing ac780x_dma.o(i.DMA_SetCallback), (24 bytes).
  1226. Removing ac780x_ecc_sram.o(.rev16_text), (4 bytes).
  1227. Removing ac780x_ecc_sram.o(.revsh_text), (4 bytes).
  1228. Removing ac780x_ecc_sram.o(i.ECC_SRAM_DeInit), (20 bytes).
  1229. Removing ac780x_ecc_sram.o(i.ECC_SRAM_Enable2BitErrReset), (18 bytes).
  1230. Removing ac780x_ecc_sram.o(i.ECC_SRAM_Init), (72 bytes).
  1231. Removing ac780x_ecc_sram.o(i.ECC_SRAM_SetCallBack), (16 bytes).
  1232. Removing ac780x_ecc_sram.o(i.__NVIC_DisableIRQ), (32 bytes).
  1233. Removing ac780x_eflash.o(.rev16_text), (4 bytes).
  1234. Removing ac780x_eflash.o(.revsh_text), (4 bytes).
  1235. Removing ac780x_eflash.o(i.EFLASH_ConfigWdg), (96 bytes).
  1236. Removing ac780x_eflash.o(i.EFLASH_DisableReadOut), (68 bytes).
  1237. Removing ac780x_eflash.o(i.EFLASH_EnableReadOut), (56 bytes).
  1238. Removing ac780x_eflash.o(i.EFLASH_MassErase), (76 bytes).
  1239. Removing ac780x_eflash.o(i.EFLASH_MassEraseVerify), (72 bytes).
  1240. Removing ac780x_eflash.o(i.EFLASH_OptionPageErase), (72 bytes).
  1241. Removing ac780x_eflash.o(i.EFLASH_OptionPageProgram), (100 bytes).
  1242. Removing ac780x_eflash.o(i.EFLASH_Read), (20 bytes).
  1243. Removing ac780x_eflash.o(i.EFLASH_ReadDWord), (4 bytes).
  1244. Removing ac780x_eflash.o(i.EFLASH_SetWriteProtect), (132 bytes).
  1245. Removing ac780x_gpio.o(.rev16_text), (4 bytes).
  1246. Removing ac780x_gpio.o(.revsh_text), (4 bytes).
  1247. Removing ac780x_gpio.o(i.GPIO_DeInit), (104 bytes).
  1248. Removing ac780x_gpio.o(i.GPIO_DisableExtInterrupt), (10 bytes).
  1249. Removing ac780x_gpio.o(i.GPIO_EnableExtInterrupt), (146 bytes).
  1250. Removing ac780x_gpio.o(i.GPIO_GetDir), (10 bytes).
  1251. Removing ac780x_gpio.o(i.GPIO_GetPinFunc), (100 bytes).
  1252. Removing ac780x_gpio.o(i.GPIO_GetPortLevel), (6 bytes).
  1253. Removing ac780x_gpio.o(i.GPIO_Init), (162 bytes).
  1254. Removing ac780x_gpio.o(i.GPIO_ResetPinBit), (12 bytes).
  1255. Removing ac780x_gpio.o(i.GPIO_SetCallback), (28 bytes).
  1256. Removing ac780x_gpio.o(i.GPIO_SetDirGroup), (42 bytes).
  1257. Removing ac780x_gpio.o(i.GPIO_SetDrivingAbility), (20 bytes).
  1258. Removing ac780x_gpio.o(i.GPIO_SetFuncGroup), (44 bytes).
  1259. Removing ac780x_gpio.o(i.GPIO_SetPinBit), (60 bytes).
  1260. Removing ac780x_gpio.o(i.GPIO_SetPinExtIntMask), (24 bytes).
  1261. Removing ac780x_gpio.o(i.GPIO_SetPinExtIntSource), (116 bytes).
  1262. Removing ac780x_gpio.o(i.GPIO_SetPinFallingEdge), (24 bytes).
  1263. Removing ac780x_gpio.o(i.GPIO_SetPinRisingEdge), (24 bytes).
  1264. Removing ac780x_gpio.o(i.GPIO_SetPortLevel), (4 bytes).
  1265. Removing ac780x_gpio.o(i.GPIO_SetPulldown), (18 bytes).
  1266. Removing ac780x_gpio.o(i.__NVIC_EnableIRQ), (24 bytes).
  1267. Removing ac780x_gpio.o(.constdata), (5 bytes).
  1268. Removing ac780x_i2c.o(.rev16_text), (4 bytes).
  1269. Removing ac780x_i2c.o(.revsh_text), (4 bytes).
  1270. Removing ac780x_i2c.o(i.I2C_DeInit), (68 bytes).
  1271. Removing ac780x_i2c.o(i.I2C_GetTransmitReceiveStatus), (24 bytes).
  1272. Removing ac780x_i2c.o(i.I2C_GetTransmittedReceivedLength), (24 bytes).
  1273. Removing ac780x_i2c.o(i.I2C_Init), (416 bytes).
  1274. Removing ac780x_i2c.o(i.I2C_MasterReceiveDMA), (208 bytes).
  1275. Removing ac780x_i2c.o(i.I2C_MasterReceiveInt), (180 bytes).
  1276. Removing ac780x_i2c.o(i.I2C_MasterReceivePoll), (200 bytes).
  1277. Removing ac780x_i2c.o(i.I2C_MasterTransmitDMA), (228 bytes).
  1278. Removing ac780x_i2c.o(i.I2C_MasterTransmitInt), (156 bytes).
  1279. Removing ac780x_i2c.o(i.I2C_MasterTransmitPoll), (116 bytes).
  1280. Removing ac780x_i2c.o(i.I2C_ReceiveOneByte), (64 bytes).
  1281. Removing ac780x_i2c.o(i.I2C_ResetTransmitReceiveStatus), (40 bytes).
  1282. Removing ac780x_i2c.o(i.I2C_Restart), (78 bytes).
  1283. Removing ac780x_i2c.o(i.I2C_SetCallback), (24 bytes).
  1284. Removing ac780x_i2c.o(i.I2C_SetInterrupt), (14 bytes).
  1285. Removing ac780x_i2c.o(i.I2C_SlaveReceiveDMA), (92 bytes).
  1286. Removing ac780x_i2c.o(i.I2C_SlaveTransmitDMA), (100 bytes).
  1287. Removing ac780x_i2c.o(i.I2C_SlaveTransmitReceiveInt), (44 bytes).
  1288. Removing ac780x_i2c.o(i.I2C_Start), (82 bytes).
  1289. Removing ac780x_i2c.o(i.I2C_Stop), (84 bytes).
  1290. Removing ac780x_i2c.o(i.I2C_TransmitOneByte), (18 bytes).
  1291. Removing ac780x_i2c.o(i.I2C_WaitForReady), (36 bytes).
  1292. Removing ac780x_i2c.o(i.I2C_WaitOneByteFinished), (60 bytes).
  1293. Removing ac780x_i2c.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
  1294. Removing ac780x_i2c.o(i.__NVIC_DisableIRQ), (32 bytes).
  1295. Removing ac780x_i2c.o(.constdata), (16 bytes).
  1296. Removing ac780x_mmdivsqrt.o(.rev16_text), (4 bytes).
  1297. Removing ac780x_mmdivsqrt.o(.revsh_text), (4 bytes).
  1298. Removing ac780x_mmdivsqrt.o(i.MMDIVSQRT_CalculateSignDivision), (52 bytes).
  1299. Removing ac780x_mmdivsqrt.o(i.MMDIVSQRT_CalculateSquareRoot), (24 bytes).
  1300. Removing ac780x_mmdivsqrt.o(i.MMDIVSQRT_CalculateUnsignDivision), (52 bytes).
  1301. Removing ac780x_pwdt.o(.rev16_text), (4 bytes).
  1302. Removing ac780x_pwdt.o(.revsh_text), (4 bytes).
  1303. Removing ac780x_pwdt.o(i.PWDT_DeInit), (76 bytes).
  1304. Removing ac780x_pwdt.o(i.PWDT_Init), (320 bytes).
  1305. Removing ac780x_pwdt.o(i.PWDT_SetCallback), (24 bytes).
  1306. Removing ac780x_pwdt.o(i.PWDT_SetClockPrescaler), (62 bytes).
  1307. Removing ac780x_pwdt.o(i.__NVIC_DisableIRQ), (32 bytes).
  1308. Removing ac780x_pwdt.o(.constdata), (6 bytes).
  1309. Removing ac780x_pwm.o(.rev16_text), (4 bytes).
  1310. Removing ac780x_pwm.o(.revsh_text), (4 bytes).
  1311. Removing ac780x_pwm.o(i.PWM_DeInit), (76 bytes).
  1312. Removing ac780x_pwm.o(i.PWM_Init), (212 bytes).
  1313. Removing ac780x_pwm.o(i.PWM_InitFaultControl), (148 bytes).
  1314. Removing ac780x_pwm.o(i.PWM_InitSyncControl), (364 bytes).
  1315. Removing ac780x_pwm.o(i.PWM_SetCHOPOLCRSyncTriggerMode), (32 bytes).
  1316. Removing ac780x_pwm.o(i.PWM_SetCHOSWCRSyncTriggerMode), (32 bytes).
  1317. Removing ac780x_pwm.o(i.PWM_SetCNTSyncTriggerMode), (32 bytes).
  1318. Removing ac780x_pwm.o(i.PWM_SetCallback), (24 bytes).
  1319. Removing ac780x_pwm.o(i.PWM_SetChannelELSR), (20 bytes).
  1320. Removing ac780x_pwm.o(i.PWM_SetChannelInputFilter), (22 bytes).
  1321. Removing ac780x_pwm.o(i.PWM_SetChannelInterrupt), (18 bytes).
  1322. Removing ac780x_pwm.o(i.PWM_SetChannelMSR), (20 bytes).
  1323. Removing ac780x_pwm.o(i.PWM_SetChannelMatchDir), (18 bytes).
  1324. Removing ac780x_pwm.o(i.PWM_SetChannelOutputInitLevel), (18 bytes).
  1325. Removing ac780x_pwm.o(i.PWM_SetChannelPolarity), (18 bytes).
  1326. Removing ac780x_pwm.o(i.PWM_SetChannelTrigger), (18 bytes).
  1327. Removing ac780x_pwm.o(i.PWM_SetCountMode), (14 bytes).
  1328. Removing ac780x_pwm.o(i.PWM_SetDeadtime), (26 bytes).
  1329. Removing ac780x_pwm.o(i.PWM_SetHardwareTriggerSyncSrc), (20 bytes).
  1330. Removing ac780x_pwm.o(i.PWM_SetINVCRSyncTriggerMode), (32 bytes).
  1331. Removing ac780x_pwm.o(i.PWM_SetInputCaptureMode), (294 bytes).
  1332. Removing ac780x_pwm.o(i.PWM_SetMCVRSyncTriggerMode), (32 bytes).
  1333. Removing ac780x_pwm.o(i.PWM_SetOMCRSyncTriggerMode), (32 bytes).
  1334. Removing ac780x_pwm.o(i.PWM_SetOutputCompareMode), (152 bytes).
  1335. Removing ac780x_pwm.o(i.PWM_SetPWMMode), (498 bytes).
  1336. Removing ac780x_pwm.o(i.PWM_SetPairChannelCombine), (20 bytes).
  1337. Removing ac780x_pwm.o(i.PWM_SetPairChannelComplement), (22 bytes).
  1338. Removing ac780x_pwm.o(i.PWM_SetPairChannelDeadtime), (22 bytes).
  1339. Removing ac780x_pwm.o(i.PWM_SetQuadDecodeMode), (106 bytes).
  1340. Removing ac780x_pwm.o(i.PWM_SimplyInit), (332 bytes).
  1341. Removing ac780x_pwm.o(i.__NVIC_DisableIRQ), (32 bytes).
  1342. Removing ac780x_pwm.o(i.__NVIC_EnableIRQ), (24 bytes).
  1343. Removing ac780x_pwm.o(.constdata), (6 bytes).
  1344. Removing ac780x_rtc.o(.rev16_text), (4 bytes).
  1345. Removing ac780x_rtc.o(.revsh_text), (4 bytes).
  1346. Removing ac780x_rtc.o(i.RTC_DeInit), (44 bytes).
  1347. Removing ac780x_rtc.o(i.RTC_Init), (176 bytes).
  1348. Removing ac780x_rtc.o(i.RTC_SetCallback), (12 bytes).
  1349. Removing ac780x_rtc.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
  1350. Removing ac780x_rtc.o(i.__NVIC_DisableIRQ), (32 bytes).
  1351. Removing ac780x_spi.o(.rev16_text), (4 bytes).
  1352. Removing ac780x_spi.o(.revsh_text), (4 bytes).
  1353. Removing ac780x_spi.o(i.SPI_ClearTxUFRxOF), (30 bytes).
  1354. Removing ac780x_spi.o(i.SPI_DeInit), (84 bytes).
  1355. Removing ac780x_spi.o(i.SPI_GetTransmitReceiveStatus), (24 bytes).
  1356. Removing ac780x_spi.o(i.SPI_Init), (428 bytes).
  1357. Removing ac780x_spi.o(i.SPI_MasterReleaseCS), (16 bytes).
  1358. Removing ac780x_spi.o(i.SPI_ReceiveDMA), (164 bytes).
  1359. Removing ac780x_spi.o(i.SPI_ReceiveInt), (140 bytes).
  1360. Removing ac780x_spi.o(i.SPI_ReceivePoll), (258 bytes).
  1361. Removing ac780x_spi.o(i.SPI_ResetTransmitReceiveStatus), (24 bytes).
  1362. Removing ac780x_spi.o(i.SPI_SetCallback), (24 bytes).
  1363. Removing ac780x_spi.o(i.SPI_SetTxOnly), (14 bytes).
  1364. Removing ac780x_spi.o(i.SPI_TransmitDMA), (152 bytes).
  1365. Removing ac780x_spi.o(i.SPI_TransmitInt), (124 bytes).
  1366. Removing ac780x_spi.o(i.SPI_TransmitPoll), (130 bytes).
  1367. Removing ac780x_spi.o(i.SPI_TransmitReceiveDMA), (204 bytes).
  1368. Removing ac780x_spi.o(i.SPI_TransmitReceiveInt), (144 bytes).
  1369. Removing ac780x_spi.o(i.SPI_TransmitReceivePoll), (174 bytes).
  1370. Removing ac780x_spi.o(i.SPI_WaitReceiveFinish), (52 bytes).
  1371. Removing ac780x_spi.o(i.__NVIC_DisableIRQ), (32 bytes).
  1372. Removing ac780x_spi.o(.constdata), (16 bytes).
  1373. Removing ac780x_spm.o(.rev16_text), (4 bytes).
  1374. Removing ac780x_spm.o(.revsh_text), (4 bytes).
  1375. Removing ac780x_spm.o(i.EnablePLLDetectorFunction), (44 bytes).
  1376. Removing ac780x_spm.o(i.PVD_SetCallback), (12 bytes).
  1377. Removing ac780x_spm.o(i.SPM_ClearWakeupSourceFlag), (16 bytes).
  1378. Removing ac780x_spm.o(i.SPM_EnableCANLowpassFilter), (24 bytes).
  1379. Removing ac780x_spm.o(i.SPM_EnableFastBoot), (20 bytes).
  1380. Removing ac780x_spm.o(i.SPM_EnableLVD), (20 bytes).
  1381. Removing ac780x_spm.o(i.SPM_EnableModuleSleepACK), (28 bytes).
  1382. Removing ac780x_spm.o(i.SPM_EnableModuleWakeup), (28 bytes).
  1383. Removing ac780x_spm.o(i.SPM_EnablePVD), (20 bytes).
  1384. Removing ac780x_spm.o(i.SPM_EnableXOSCBypassMode), (20 bytes).
  1385. Removing ac780x_spm.o(i.SPM_GetModuleSleepACKStatus), (16 bytes).
  1386. Removing ac780x_spm.o(i.SPM_SetCallback), (12 bytes).
  1387. Removing ac780x_spm.o(i.SPM_SetLowPowerMode), (120 bytes).
  1388. Removing ac780x_timer.o(.rev16_text), (4 bytes).
  1389. Removing ac780x_timer.o(.revsh_text), (4 bytes).
  1390. Removing ac780x_timer.o(i.TIMER_DeInit), (60 bytes).
  1391. Removing ac780x_timer.o(i.TIMER_DeInitChannel), (80 bytes).
  1392. Removing ac780x_timer.o(i.TIMER_SetCallback), (24 bytes).
  1393. Removing ac780x_timer.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
  1394. Removing ac780x_uart.o(.rev16_text), (4 bytes).
  1395. Removing ac780x_uart.o(.revsh_text), (4 bytes).
  1396. Removing ac780x_uart.o(i.UART_DeInit), (132 bytes).
  1397. Removing ac780x_uart.o(i.UART_GetUARTCtrl), (20 bytes).
  1398. Removing ac780x_uart.o(i.UART_ReceiveData), (8 bytes).
  1399. Removing ac780x_uart.o(i.UART_SendData), (40 bytes).
  1400. Removing ac780x_uart.o(i.UART_SetCTSRTS), (58 bytes).
  1401. Removing ac780x_uart.o(i.UART_SetCallback), (40 bytes).
  1402. Removing ac780x_uart.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
  1403. Removing ac780x_uart.o(i.__NVIC_DisableIRQ), (32 bytes).
  1404. Removing ac780x_uart.o(.constdata), (12 bytes).
  1405. Removing ac780x_wdg.o(.rev16_text), (4 bytes).
  1406. Removing ac780x_wdg.o(.revsh_text), (4 bytes).
  1407. Removing ac780x_wdg.o(i.WDG_DeInit), (44 bytes).
  1408. Removing ac780x_wdg.o(i.WDG_Init), (212 bytes).
  1409. Removing ac780x_wdg.o(i.WDG_SetCallback), (12 bytes).
  1410. Removing ac780x_wdg.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
  1411. Removing ac780x_wdg.o(i.__NVIC_DisableIRQ), (32 bytes).
  1412. Removing system_ac780x.o(.rev16_text), (4 bytes).
  1413. Removing system_ac780x.o(.revsh_text), (4 bytes).
  1414. Removing system_ac780x.o(i.ClearAllResetStatus), (14 bytes).
  1415. Removing system_ac780x.o(i.GetCPUID), (12 bytes).
  1416. Removing system_ac780x.o(i.GetCpuType), (12 bytes).
  1417. Removing system_ac780x.o(i.GetResetStatus), (8 bytes).
  1418. Removing system_ac780x.o(i.GetUUID), (32 bytes).
  1419. Removing system_ac780x.o(i.SetHSEBYPClock), (106 bytes).
  1420. Removing system_ac780x.o(i.SetHSIClock), (50 bytes).
  1421. Removing system_ac780x.o(i.SetSysClock), (8 bytes).
  1422. Removing system_ac780x.o(i.SetXOSCClock), (30 bytes).
  1423. Removing system_ac780x.o(i.SysSleep), (20 bytes).
  1424. Removing system_ac780x.o(i.SysStandby), (28 bytes).
  1425. Removing system_ac780x.o(i.SysStop), (28 bytes).
  1426. Removing system_ac780x.o(i.SystemCoreClockUpdate), (184 bytes).
  1427. Removing system_ac780x.o(i.udelay), (36 bytes).
  1428. 317 unused section(s) (total 21901 bytes) removed from the image.
  1429. ==============================================================================
  1430. Image Symbol Table
  1431. Local Symbols
  1432. Symbol Name Value Ov Type Size Object(Section)
  1433. ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit1.o ABSOLUTE
  1434. ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit3.o ABSOLUTE
  1435. ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE
  1436. ../clib/angel/boardlib.s 0x00000000 Number 0 boardshut.o ABSOLUTE
  1437. ../clib/angel/handlers.s 0x00000000 Number 0 __scatter_copy.o ABSOLUTE
  1438. ../clib/angel/handlers.s 0x00000000 Number 0 __scatter_zi.o ABSOLUTE
  1439. ../clib/angel/kernel.s 0x00000000 Number 0 rtexit2.o ABSOLUTE
  1440. ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry.o ABSOLUTE
  1441. ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry2.o ABSOLUTE
  1442. ../clib/angel/kernel.s 0x00000000 Number 0 rtexit.o ABSOLUTE
  1443. ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry4.o ABSOLUTE
  1444. ../clib/angel/rt.s 0x00000000 Number 0 rt_heap_descriptor_intlibspace.o ABSOLUTE
  1445. ../clib/angel/rt.s 0x00000000 Number 0 rt_errno_addr.o ABSOLUTE
  1446. ../clib/angel/rt.s 0x00000000 Number 0 rt_errno_addr_intlibspace.o ABSOLUTE
  1447. ../clib/angel/rt.s 0x00000000 Number 0 aeabi_idiv0.o ABSOLUTE
  1448. ../clib/angel/rt.s 0x00000000 Number 0 aeabi_idiv0_sigfpe.o ABSOLUTE
  1449. ../clib/angel/rt.s 0x00000000 Number 0 rt_div0.o ABSOLUTE
  1450. ../clib/angel/rt.s 0x00000000 Number 0 rt_raise.o ABSOLUTE
  1451. ../clib/angel/rt.s 0x00000000 Number 0 rt_heap_descriptor.o ABSOLUTE
  1452. ../clib/angel/scatterp.s 0x00000000 Number 0 __scatter.o ABSOLUTE
  1453. ../clib/angel/startup.s 0x00000000 Number 0 __main.o ABSOLUTE
  1454. ../clib/angel/sys.s 0x00000000 Number 0 libspace.o ABSOLUTE
  1455. ../clib/angel/sys.s 0x00000000 Number 0 sys_stackheap_outer.o ABSOLUTE
  1456. ../clib/angel/sys.s 0x00000000 Number 0 mutex_dummy.o ABSOLUTE
  1457. ../clib/angel/sys.s 0x00000000 Number 0 use_no_semi.o ABSOLUTE
  1458. ../clib/angel/sys.s 0x00000000 Number 0 indicate_semi.o ABSOLUTE
  1459. ../clib/angel/sys.s 0x00000000 Number 0 tempstk.o ABSOLUTE
  1460. ../clib/angel/sysapp.c 0x00000000 Number 0 sys_exit.o ABSOLUTE
  1461. ../clib/angel/sysapp.c 0x00000000 Number 0 sys_io.o ABSOLUTE
  1462. ../clib/angel/sysapp.c 0x00000000 Number 0 sys_command.o ABSOLUTE
  1463. ../clib/angel/sysapp.c 0x00000000 Number 0 sys_wrch.o ABSOLUTE
  1464. ../clib/armsys.c 0x00000000 Number 0 _get_argv_nomalloc.o ABSOLUTE
  1465. ../clib/armsys.c 0x00000000 Number 0 no_argv.o ABSOLUTE
  1466. ../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE
  1467. ../clib/armsys.c 0x00000000 Number 0 _get_argv.o ABSOLUTE
  1468. ../clib/assert.c 0x00000000 Number 0 assert_stdio.o ABSOLUTE
  1469. ../clib/division.s 0x00000000 Number 0 aeabi_sdiv.o ABSOLUTE
  1470. ../clib/division.s 0x00000000 Number 0 aeabi_sdiv_div0.o ABSOLUTE
  1471. ../clib/heap1.c 0x00000000 Number 0 h1_init.o ABSOLUTE
  1472. ../clib/heap1.c 0x00000000 Number 0 h1_extend.o ABSOLUTE
  1473. ../clib/heap1.c 0x00000000 Number 0 h1_free.o ABSOLUTE
  1474. ../clib/heap1.c 0x00000000 Number 0 h1_final_mt.o ABSOLUTE
  1475. ../clib/heap1.c 0x00000000 Number 0 h1_final.o ABSOLUTE
  1476. ../clib/heap1.c 0x00000000 Number 0 h1_alloc.o ABSOLUTE
  1477. ../clib/heap1.c 0x00000000 Number 0 h1_alloc_mt.o ABSOLUTE
  1478. ../clib/heap1.c 0x00000000 Number 0 h1_init_mt.o ABSOLUTE
  1479. ../clib/heap1.c 0x00000000 Number 0 h1_free_mt.o ABSOLUTE
  1480. ../clib/heap1.c 0x00000000 Number 0 h1_extend_mt.o ABSOLUTE
  1481. ../clib/heap2.c 0x00000000 Number 0 heap2.o ABSOLUTE
  1482. ../clib/heap2.c 0x00000000 Number 0 fdtree.o ABSOLUTE
  1483. ../clib/heap2.c 0x00000000 Number 0 heap2mt.o ABSOLUTE
  1484. ../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc1.o ABSOLUTE
  1485. ../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc1.o ABSOLUTE
  1486. ../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc2.o ABSOLUTE
  1487. ../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc2.o ABSOLUTE
  1488. ../clib/heapalloc.c 0x00000000 Number 0 hrguard.o ABSOLUTE
  1489. ../clib/heapalloc.c 0x00000000 Number 0 heapstubs.o ABSOLUTE
  1490. ../clib/heapalloc.c 0x00000000 Number 0 malloc.o ABSOLUTE
  1491. ../clib/heapalloc.c 0x00000000 Number 0 init_alloc.o ABSOLUTE
  1492. ../clib/heapalloc.c 0x00000000 Number 0 hguard.o ABSOLUTE
  1493. ../clib/heapalloc.c 0x00000000 Number 0 term_alloc.o ABSOLUTE
  1494. ../clib/heapalloc.c 0x00000000 Number 0 free.o ABSOLUTE
  1495. ../clib/heapaux.c 0x00000000 Number 0 heapauxi.o ABSOLUTE
  1496. ../clib/heapaux.c 0x00000000 Number 0 heapauxa.o ABSOLUTE
  1497. ../clib/libinit.s 0x00000000 Number 0 libinit2.o ABSOLUTE
  1498. ../clib/libinit.s 0x00000000 Number 0 libinit.o ABSOLUTE
  1499. ../clib/libinit.s 0x00000000 Number 0 libshutdown.o ABSOLUTE
  1500. ../clib/libinit.s 0x00000000 Number 0 libshutdown2.o ABSOLUTE
  1501. ../clib/memcpset.c 0x00000000 Number 0 rt_memcpy.o ABSOLUTE
  1502. ../clib/memcpset.c 0x00000000 Number 0 rt_memcpy.o ABSOLUTE
  1503. ../clib/memcpset.c 0x00000000 Number 0 rt_memclr.o ABSOLUTE
  1504. ../clib/misc.s 0x00000000 Number 0 printf_stubs.o ABSOLUTE
  1505. ../clib/printf.c 0x00000000 Number 0 __printf_flags.o ABSOLUTE
  1506. ../clib/printf.c 0x00000000 Number 0 __printf_ss.o ABSOLUTE
  1507. ../clib/printf.c 0x00000000 Number 0 _printf_hex_ll_ptr.o ABSOLUTE
  1508. ../clib/printf.c 0x00000000 Number 0 _printf_intcommon.o ABSOLUTE
  1509. ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ptr.o ABSOLUTE
  1510. ../clib/printf.c 0x00000000 Number 0 _printf_hex_ptr.o ABSOLUTE
  1511. ../clib/printf.c 0x00000000 Number 0 __printf_wp.o ABSOLUTE
  1512. ../clib/printf.c 0x00000000 Number 0 _printf_char_file.o ABSOLUTE
  1513. ../clib/printf.c 0x00000000 Number 0 __printf_flags_ss_wp.o ABSOLUTE
  1514. ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ll.o ABSOLUTE
  1515. ../clib/printf.c 0x00000000 Number 0 _printf_hex_int.o ABSOLUTE
  1516. ../clib/printf.c 0x00000000 Number 0 __printf_ss_wp.o ABSOLUTE
  1517. ../clib/printf.c 0x00000000 Number 0 _printf_char_file_locked.o ABSOLUTE
  1518. ../clib/printf.c 0x00000000 Number 0 _printf_char_common.o ABSOLUTE
  1519. ../clib/printf.c 0x00000000 Number 0 __2printf.o ABSOLUTE
  1520. ../clib/printf.c 0x00000000 Number 0 noretval__2printf.o ABSOLUTE
  1521. ../clib/printf.c 0x00000000 Number 0 __printf.o ABSOLUTE
  1522. ../clib/printf.c 0x00000000 Number 0 __printf_nopercent.o ABSOLUTE
  1523. ../clib/printf.c 0x00000000 Number 0 _printf_pad.o ABSOLUTE
  1524. ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ll_ptr.o ABSOLUTE
  1525. ../clib/printf.c 0x00000000 Number 0 _printf_hex_ll.o ABSOLUTE
  1526. ../clib/printf.c 0x00000000 Number 0 __printf_flags_wp.o ABSOLUTE
  1527. ../clib/printf.c 0x00000000 Number 0 __printf_flags_ss.o ABSOLUTE
  1528. ../clib/printf_percent.s 0x00000000 Number 0 _printf_x.o ABSOLUTE
  1529. ../clib/printf_percent.s 0x00000000 Number 0 _printf_percent.o ABSOLUTE
  1530. ../clib/printf_percent.s 0x00000000 Number 0 _printf_percent_end.o ABSOLUTE
  1531. ../clib/signal.c 0x00000000 Number 0 defsig_rtred_formal.o ABSOLUTE
  1532. ../clib/signal.c 0x00000000 Number 0 defsig_rtred_inner.o ABSOLUTE
  1533. ../clib/signal.c 0x00000000 Number 0 defsig_exit.o ABSOLUTE
  1534. ../clib/signal.c 0x00000000 Number 0 defsig_rtred_outer.o ABSOLUTE
  1535. ../clib/signal.c 0x00000000 Number 0 defsig_fpe_formal.o ABSOLUTE
  1536. ../clib/signal.c 0x00000000 Number 0 defsig_fpe_outer.o ABSOLUTE
  1537. ../clib/signal.c 0x00000000 Number 0 defsig_fpe_inner.o ABSOLUTE
  1538. ../clib/signal.c 0x00000000 Number 0 defsig_other.o ABSOLUTE
  1539. ../clib/signal.c 0x00000000 Number 0 defsig_segv_inner.o ABSOLUTE
  1540. ../clib/signal.c 0x00000000 Number 0 defsig_cppl_inner.o ABSOLUTE
  1541. ../clib/signal.c 0x00000000 Number 0 defsig_pvfn_inner.o ABSOLUTE
  1542. ../clib/signal.c 0x00000000 Number 0 defsig_stak_inner.o ABSOLUTE
  1543. ../clib/signal.c 0x00000000 Number 0 defsig_abrt_inner.o ABSOLUTE
  1544. ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_inner.o ABSOLUTE
  1545. ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.o ABSOLUTE
  1546. ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_outer.o ABSOLUTE
  1547. ../clib/signal.c 0x00000000 Number 0 defsig_general.o ABSOLUTE
  1548. ../clib/signal.c 0x00000000 Number 0 __raise.o ABSOLUTE
  1549. ../clib/signal.s 0x00000000 Number 0 defsig.o ABSOLUTE
  1550. ../clib/stdio.c 0x00000000 Number 0 stdio_streams.o ABSOLUTE
  1551. ../clib/stdio.c 0x00000000 Number 0 ferror.o ABSOLUTE
  1552. ../clib/stdio.c 0x00000000 Number 0 fputc_locked.o ABSOLUTE
  1553. ../clib/stdio.c 0x00000000 Number 0 ferror_locked.o ABSOLUTE
  1554. ../clib/stdio.c 0x00000000 Number 0 initio_locked.o ABSOLUTE
  1555. ../clib/stdio.c 0x00000000 Number 0 initio.o ABSOLUTE
  1556. ../clib/stdio.c 0x00000000 Number 0 flsbuf.o ABSOLUTE
  1557. ../clib/stdio.c 0x00000000 Number 0 setvbuf.o ABSOLUTE
  1558. ../clib/stdio.c 0x00000000 Number 0 streamlock.o ABSOLUTE
  1559. ../clib/stdio.c 0x00000000 Number 0 fseek.o ABSOLUTE
  1560. ../clib/stdio.c 0x00000000 Number 0 fflush_locked.o ABSOLUTE
  1561. ../clib/stdio.c 0x00000000 Number 0 fputs_locked.o ABSOLUTE
  1562. ../clib/stdio.c 0x00000000 Number 0 ftell.o ABSOLUTE
  1563. ../clib/stdio.c 0x00000000 Number 0 fputs.o ABSOLUTE
  1564. ../clib/stdio.c 0x00000000 Number 0 fflush.o ABSOLUTE
  1565. ../clib/stdio.c 0x00000000 Number 0 fopen.o ABSOLUTE
  1566. ../clib/stdio.c 0x00000000 Number 0 setvbuf_locked.o ABSOLUTE
  1567. ../clib/stdio.c 0x00000000 Number 0 fopen_locked.o ABSOLUTE
  1568. ../clib/stdio.c 0x00000000 Number 0 stdio.o ABSOLUTE
  1569. ../clib/stdio.c 0x00000000 Number 0 fwritefast.o ABSOLUTE
  1570. ../clib/stdio.c 0x00000000 Number 0 fwritefast_locked.o ABSOLUTE
  1571. ../clib/stdio.c 0x00000000 Number 0 fclose.o ABSOLUTE
  1572. ../clib/stdio.c 0x00000000 Number 0 fputc.o ABSOLUTE
  1573. ../clib/stdlib.c 0x00000000 Number 0 exit.o ABSOLUTE
  1574. ../clib/string.c 0x00000000 Number 0 strlen.o ABSOLUTE
  1575. ../clib/wchar.c 0x00000000 Number 0 flsbuf_fwide.o ABSOLUTE
  1576. ../fplib/cfplib/fdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE
  1577. ../fplib/cfplib/ffix.c 0x00000000 Number 0 ffixul.o ABSOLUTE
  1578. ../fplib/cfplib/ffix.c 0x00000000 Number 0 ffixui.o ABSOLUTE
  1579. ../fplib/cfplib/fflt.c 0x00000000 Number 0 fflti.o ABSOLUTE
  1580. ../fplib/cfplib/fpinit.c 0x00000000 Number 0 fpinit.o ABSOLUTE
  1581. ../fplib/cfplib/scalbn.c 0x00000000 Number 0 fscalbn.o ABSOLUTE
  1582. ../fplib/faddsub6m.s 0x00000000 Number 0 faddsub.o ABSOLUTE
  1583. ../fplib/usenofp.s 0x00000000 Number 0 usenofp.o ABSOLUTE
  1584. ..\Device\gpio.c 0x00000000 Number 0 gpio.o ABSOLUTE
  1585. ..\Device\timer.c 0x00000000 Number 0 timer.o ABSOLUTE
  1586. ..\Device\uart.c 0x00000000 Number 0 uart.o ABSOLUTE
  1587. ..\Lib\cobs.c 0x00000000 Number 0 cobs.o ABSOLUTE
  1588. ..\Lib\crc16.c 0x00000000 Number 0 crc16.o ABSOLUTE
  1589. ..\Lib\fifo.c 0x00000000 Number 0 fifo.o ABSOLUTE
  1590. ..\User\Comm.c 0x00000000 Number 0 comm.o ABSOLUTE
  1591. ..\User\IAP.c 0x00000000 Number 0 iap.o ABSOLUTE
  1592. ..\User\cfg.c 0x00000000 Number 0 cfg.o ABSOLUTE
  1593. ..\User\main.c 0x00000000 Number 0 main.o ABSOLUTE
  1594. ..\User\main_task.c 0x00000000 Number 0 main_task.o ABSOLUTE
  1595. ..\User\process.c 0x00000000 Number 0 process.o ABSOLUTE
  1596. ..\User\protocol.c 0x00000000 Number 0 protocol.o ABSOLUTE
  1597. ..\\Device\\gpio.c 0x00000000 Number 0 gpio.o ABSOLUTE
  1598. ..\\Device\\timer.c 0x00000000 Number 0 timer.o ABSOLUTE
  1599. ..\\Device\\uart.c 0x00000000 Number 0 uart.o ABSOLUTE
  1600. ..\\Lib\\cobs.c 0x00000000 Number 0 cobs.o ABSOLUTE
  1601. ..\\Lib\\crc16.c 0x00000000 Number 0 crc16.o ABSOLUTE
  1602. ..\\Lib\\fifo.c 0x00000000 Number 0 fifo.o ABSOLUTE
  1603. ..\\User\\Comm.c 0x00000000 Number 0 comm.o ABSOLUTE
  1604. ..\\User\\IAP.c 0x00000000 Number 0 iap.o ABSOLUTE
  1605. ..\\User\\cfg.c 0x00000000 Number 0 cfg.o ABSOLUTE
  1606. ..\\User\\main.c 0x00000000 Number 0 main.o ABSOLUTE
  1607. ..\\User\\main_task.c 0x00000000 Number 0 main_task.o ABSOLUTE
  1608. ..\\User\\process.c 0x00000000 Number 0 process.o ABSOLUTE
  1609. ..\\User\\protocol.c 0x00000000 Number 0 protocol.o ABSOLUTE
  1610. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_acmp.c 0x00000000 Number 0 ac780x_acmp.o ABSOLUTE
  1611. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_adc.c 0x00000000 Number 0 ac780x_adc.o ABSOLUTE
  1612. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_can.c 0x00000000 Number 0 ac780x_can.o ABSOLUTE
  1613. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_ckgen.c 0x00000000 Number 0 ac780x_ckgen.o ABSOLUTE
  1614. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_crc.c 0x00000000 Number 0 ac780x_crc.o ABSOLUTE
  1615. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_ctu.c 0x00000000 Number 0 ac780x_ctu.o ABSOLUTE
  1616. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_dma.c 0x00000000 Number 0 ac780x_dma.o ABSOLUTE
  1617. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_ecc_sram.c 0x00000000 Number 0 ac780x_ecc_sram.o ABSOLUTE
  1618. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_eflash.c 0x00000000 Number 0 ac780x_eflash.o ABSOLUTE
  1619. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_gpio.c 0x00000000 Number 0 ac780x_gpio.o ABSOLUTE
  1620. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_i2c.c 0x00000000 Number 0 ac780x_i2c.o ABSOLUTE
  1621. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_mmdivsqrt.c 0x00000000 Number 0 ac780x_mmdivsqrt.o ABSOLUTE
  1622. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_pwdt.c 0x00000000 Number 0 ac780x_pwdt.o ABSOLUTE
  1623. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_pwm.c 0x00000000 Number 0 ac780x_pwm.o ABSOLUTE
  1624. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_rtc.c 0x00000000 Number 0 ac780x_rtc.o ABSOLUTE
  1625. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_spi.c 0x00000000 Number 0 ac780x_spi.o ABSOLUTE
  1626. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_spm.c 0x00000000 Number 0 ac780x_spm.o ABSOLUTE
  1627. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_timer.c 0x00000000 Number 0 ac780x_timer.o ABSOLUTE
  1628. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_uart.c 0x00000000 Number 0 ac780x_uart.o ABSOLUTE
  1629. C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_wdg.c 0x00000000 Number 0 ac780x_wdg.o ABSOLUTE
  1630. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_acmp.c 0x00000000 Number 0 ac780x_acmp.o ABSOLUTE
  1631. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_adc.c 0x00000000 Number 0 ac780x_adc.o ABSOLUTE
  1632. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_can.c 0x00000000 Number 0 ac780x_can.o ABSOLUTE
  1633. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_ckgen.c 0x00000000 Number 0 ac780x_ckgen.o ABSOLUTE
  1634. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_crc.c 0x00000000 Number 0 ac780x_crc.o ABSOLUTE
  1635. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_ctu.c 0x00000000 Number 0 ac780x_ctu.o ABSOLUTE
  1636. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_dma.c 0x00000000 Number 0 ac780x_dma.o ABSOLUTE
  1637. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_ecc_sram.c 0x00000000 Number 0 ac780x_ecc_sram.o ABSOLUTE
  1638. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_eflash.c 0x00000000 Number 0 ac780x_eflash.o ABSOLUTE
  1639. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_gpio.c 0x00000000 Number 0 ac780x_gpio.o ABSOLUTE
  1640. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_i2c.c 0x00000000 Number 0 ac780x_i2c.o ABSOLUTE
  1641. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_mmdivsqrt.c 0x00000000 Number 0 ac780x_mmdivsqrt.o ABSOLUTE
  1642. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_pwdt.c 0x00000000 Number 0 ac780x_pwdt.o ABSOLUTE
  1643. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_pwm.c 0x00000000 Number 0 ac780x_pwm.o ABSOLUTE
  1644. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_rtc.c 0x00000000 Number 0 ac780x_rtc.o ABSOLUTE
  1645. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_spi.c 0x00000000 Number 0 ac780x_spi.o ABSOLUTE
  1646. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_spm.c 0x00000000 Number 0 ac780x_spm.o ABSOLUTE
  1647. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_timer.c 0x00000000 Number 0 ac780x_timer.o ABSOLUTE
  1648. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_uart.c 0x00000000 Number 0 ac780x_uart.o ABSOLUTE
  1649. C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_wdg.c 0x00000000 Number 0 ac780x_wdg.o ABSOLUTE
  1650. RTE\Device\AC78013MDQA\startup_ac780x.s 0x00000000 Number 0 startup_ac780x.o ABSOLUTE
  1651. RTE\Device\AC78013MDQA\system_ac780x.c 0x00000000 Number 0 system_ac780x.o ABSOLUTE
  1652. RTE\\Device\\AC78013MDQA\\system_ac780x.c 0x00000000 Number 0 system_ac780x.o ABSOLUTE
  1653. dc.s 0x00000000 Number 0 dc.o ABSOLUTE
  1654. RESET 0x08000000 Section 192 startup_ac780x.o(RESET)
  1655. !!!main 0x080000c0 Section 8 __main.o(!!!main)
  1656. !!!scatter 0x080000c8 Section 60 __scatter.o(!!!scatter)
  1657. !!handler_copy 0x08000104 Section 26 __scatter_copy.o(!!handler_copy)
  1658. !!handler_zi 0x08000120 Section 28 __scatter_zi.o(!!handler_zi)
  1659. .ARM.Collect$$libinit$$00000000 0x0800013c Section 2 libinit.o(.ARM.Collect$$libinit$$00000000)
  1660. .ARM.Collect$$libinit$$00000002 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
  1661. .ARM.Collect$$libinit$$00000004 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000004)
  1662. .ARM.Collect$$libinit$$0000000A 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
  1663. .ARM.Collect$$libinit$$0000000C 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
  1664. .ARM.Collect$$libinit$$0000000E 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000E)
  1665. .ARM.Collect$$libinit$$00000011 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
  1666. .ARM.Collect$$libinit$$00000013 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
  1667. .ARM.Collect$$libinit$$00000015 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
  1668. .ARM.Collect$$libinit$$00000017 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
  1669. .ARM.Collect$$libinit$$00000019 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
  1670. .ARM.Collect$$libinit$$0000001B 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
  1671. .ARM.Collect$$libinit$$0000001D 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
  1672. .ARM.Collect$$libinit$$0000001F 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
  1673. .ARM.Collect$$libinit$$00000021 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
  1674. .ARM.Collect$$libinit$$00000023 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
  1675. .ARM.Collect$$libinit$$00000025 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000025)
  1676. .ARM.Collect$$libinit$$0000002C 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
  1677. .ARM.Collect$$libinit$$0000002E 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
  1678. .ARM.Collect$$libinit$$00000030 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
  1679. .ARM.Collect$$libinit$$00000032 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000032)
  1680. .ARM.Collect$$libinit$$00000033 0x0800013e Section 2 libinit2.o(.ARM.Collect$$libinit$$00000033)
  1681. .ARM.Collect$$libshutdown$$00000000 0x08000140 Section 2 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
  1682. .ARM.Collect$$libshutdown$$00000002 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)
  1683. .ARM.Collect$$libshutdown$$00000004 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)
  1684. .ARM.Collect$$libshutdown$$00000006 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
  1685. .ARM.Collect$$libshutdown$$00000009 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
  1686. .ARM.Collect$$libshutdown$$0000000C 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)
  1687. .ARM.Collect$$libshutdown$$0000000E 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
  1688. .ARM.Collect$$libshutdown$$00000011 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000011)
  1689. .ARM.Collect$$libshutdown$$00000012 0x08000142 Section 2 libshutdown2.o(.ARM.Collect$$libshutdown$$00000012)
  1690. .ARM.Collect$$rtentry$$00000000 0x08000144 Section 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000)
  1691. .ARM.Collect$$rtentry$$00000002 0x08000144 Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002)
  1692. .ARM.Collect$$rtentry$$00000004 0x08000144 Section 6 __rtentry4.o(.ARM.Collect$$rtentry$$00000004)
  1693. .ARM.Collect$$rtentry$$00000009 0x0800014a Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009)
  1694. .ARM.Collect$$rtentry$$0000000A 0x0800014a Section 4 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
  1695. .ARM.Collect$$rtentry$$0000000C 0x0800014e Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
  1696. .ARM.Collect$$rtentry$$0000000D 0x0800014e Section 8 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
  1697. .ARM.Collect$$rtexit$$00000000 0x08000156 Section 2 rtexit.o(.ARM.Collect$$rtexit$$00000000)
  1698. .ARM.Collect$$rtexit$$00000002 0x08000158 Section 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
  1699. .ARM.Collect$$rtexit$$00000003 0x08000158 Section 4 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
  1700. .ARM.Collect$$rtexit$$00000004 0x0800015c Section 6 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
  1701. .emb_text 0x08000164 Section 56 rt_memcpy.o(.emb_text)
  1702. .text 0x0800019c Section 120 startup_ac780x.o(.text)
  1703. .text 0x08000214 Section 0 rt_memcpy.o(.text)
  1704. .text 0x08000296 Section 0 rt_memclr.o(.text)
  1705. .text 0x080002d6 Section 0 heapauxi.o(.text)
  1706. .text 0x080002dc Section 0 fdiv.o(.text)
  1707. .text 0x0800043c Section 0 ffixui.o(.text)
  1708. .text 0x0800046c Section 0 ffixul.o(.text)
  1709. .text 0x080004b6 Section 0 fflti.o(.text)
  1710. .text 0x08000514 Section 0 fscalbn.o(.text)
  1711. .text 0x08000558 Section 62 sys_stackheap_outer.o(.text)
  1712. .text 0x08000596 Section 0 exit.o(.text)
  1713. .text 0x080005a8 Section 8 libspace.o(.text)
  1714. .text 0x080005b0 Section 2 use_no_semi.o(.text)
  1715. .text 0x080005b2 Section 0 indicate_semi.o(.text)
  1716. .text 0x080005b4 Section 0 sys_exit.o(.text)
  1717. i.ACMP0_IRQHandler 0x080005c0 Section 0 ac780x_acmp.o(i.ACMP0_IRQHandler)
  1718. i.ADC0_IRQHandler 0x080005dc Section 0 ac780x_adc.o(i.ADC0_IRQHandler)
  1719. i.CAN0_Handler 0x080005fc Section 0 ac780x_can.o(i.CAN0_Handler)
  1720. i.CAN_HandleEvent 0x0800060c Section 0 ac780x_can.o(i.CAN_HandleEvent)
  1721. i.CKGEN_Enable 0x08000654 Section 0 ac780x_ckgen.o(i.CKGEN_Enable)
  1722. i.CKGEN_SetAPBClockDivider 0x08000694 Section 0 ac780x_ckgen.o(i.CKGEN_SetAPBClockDivider)
  1723. i.CKGEN_SetPLLReference 0x080006a8 Section 0 ac780x_ckgen.o(i.CKGEN_SetPLLReference)
  1724. i.CKGEN_SetPllFeedbackDiv 0x080006bc Section 0 ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv)
  1725. i.CKGEN_SetPllPostDiv 0x080006d4 Section 0 ac780x_ckgen.o(i.CKGEN_SetPllPostDiv)
  1726. i.CKGEN_SetPllPrevDiv 0x080006ec Section 0 ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv)
  1727. i.CKGEN_SetSysclkDiv 0x08000700 Section 0 ac780x_ckgen.o(i.CKGEN_SetSysclkDiv)
  1728. i.CKGEN_SetSysclkSrc 0x08000712 Section 0 ac780x_ckgen.o(i.CKGEN_SetSysclkSrc)
  1729. i.CKGEN_SoftReset 0x08000722 Section 0 ac780x_ckgen.o(i.CKGEN_SoftReset)
  1730. i.Config_Init 0x08000764 Section 0 cfg.o(i.Config_Init)
  1731. i.DMA0_Channel0_IRQHandler 0x080007a0 Section 0 ac780x_dma.o(i.DMA0_Channel0_IRQHandler)
  1732. i.DMA0_Channel1_IRQHandler 0x080007c4 Section 0 ac780x_dma.o(i.DMA0_Channel1_IRQHandler)
  1733. i.DMA0_Channel2_IRQHandler 0x080007e8 Section 0 ac780x_dma.o(i.DMA0_Channel2_IRQHandler)
  1734. i.DMA0_Channel3_IRQHandler 0x0800080c Section 0 ac780x_dma.o(i.DMA0_Channel3_IRQHandler)
  1735. i.DMA_ChannelFlush 0x08000830 Section 0 ac780x_dma.o(i.DMA_ChannelFlush)
  1736. i.DMA_ChannelHardRst 0x0800083a Section 0 ac780x_dma.o(i.DMA_ChannelHardRst)
  1737. DMA_ChannelHardRst 0x0800083b Thumb Code 16 ac780x_dma.o(i.DMA_ChannelHardRst)
  1738. i.DMA_ClearFlag 0x0800084a Section 0 ac780x_dma.o(i.DMA_ClearFlag)
  1739. i.DMA_DeInit 0x08000864 Section 0 ac780x_dma.o(i.DMA_DeInit)
  1740. i.DMA_Init 0x080008d8 Section 0 ac780x_dma.o(i.DMA_Init)
  1741. i.DMA_SetChannel 0x08000a1c Section 0 ac780x_dma.o(i.DMA_SetChannel)
  1742. i.ECC_SRAM_IRQHandler 0x08000a28 Section 0 ac780x_ecc_sram.o(i.ECC_SRAM_IRQHandler)
  1743. i.EFLASH_LockCtrl 0x08000a54 Section 0 ac780x_eflash.o(i.EFLASH_LockCtrl)
  1744. i.EFLASH_PageErase 0x08000a64 Section 0 ac780x_eflash.o(i.EFLASH_PageErase)
  1745. i.EFLASH_PageEraseVerify 0x08000abc Section 0 ac780x_eflash.o(i.EFLASH_PageEraseVerify)
  1746. i.EFLASH_PageProgram 0x08000b08 Section 0 ac780x_eflash.o(i.EFLASH_PageProgram)
  1747. i.EFLASH_TrigCtrlCmdReg 0x08000b88 Section 0 ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg)
  1748. EFLASH_TrigCtrlCmdReg 0x08000b89 Thumb Code 12 ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg)
  1749. i.EFLASH_UnlockCtrl 0x08000b98 Section 0 ac780x_eflash.o(i.EFLASH_UnlockCtrl)
  1750. i.EFLASH_WaitEop 0x08000bd0 Section 0 ac780x_eflash.o(i.EFLASH_WaitEop)
  1751. i.EFLASH_WaitForLastOperation 0x08000bf4 Section 0 ac780x_eflash.o(i.EFLASH_WaitForLastOperation)
  1752. i.EXTI0_IRQHandler 0x08000c38 Section 0 ac780x_gpio.o(i.EXTI0_IRQHandler)
  1753. i.EXTI1_IRQHandler 0x08000c60 Section 0 ac780x_gpio.o(i.EXTI1_IRQHandler)
  1754. i.EXTI2_IRQHandler 0x08000c88 Section 0 ac780x_gpio.o(i.EXTI2_IRQHandler)
  1755. i.EXTI3_8_IRQHandler 0x08000cb0 Section 0 ac780x_gpio.o(i.EXTI3_8_IRQHandler)
  1756. i.EXTI9_15_IRQHandler 0x08000cf4 Section 0 ac780x_gpio.o(i.EXTI9_15_IRQHandler)
  1757. i.Factory_reset 0x08000d38 Section 0 cfg.o(i.Factory_reset)
  1758. Factory_reset 0x08000d39 Thumb Code 24 cfg.o(i.Factory_reset)
  1759. i.GPIO_ClearPendingExtInterrupt 0x08000d58 Section 0 ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt)
  1760. i.GPIO_GetPendingExtIntSource 0x08000d68 Section 0 ac780x_gpio.o(i.GPIO_GetPendingExtIntSource)
  1761. GPIO_GetPendingExtIntSource 0x08000d69 Thumb Code 84 ac780x_gpio.o(i.GPIO_GetPendingExtIntSource)
  1762. i.GPIO_GetPendingExtInterrupt 0x08000dc4 Section 0 ac780x_gpio.o(i.GPIO_GetPendingExtInterrupt)
  1763. i.GPIO_GetPinLevel 0x08000dd0 Section 0 ac780x_gpio.o(i.GPIO_GetPinLevel)
  1764. i.GPIO_PortInit 0x08000ddc Section 0 gpio.o(i.GPIO_PortInit)
  1765. i.GPIO_SetDir 0x08000e80 Section 0 ac780x_gpio.o(i.GPIO_SetDir)
  1766. i.GPIO_SetFunc 0x08000e94 Section 0 ac780x_gpio.o(i.GPIO_SetFunc)
  1767. i.GPIO_SetPinLevel 0x08000f34 Section 0 ac780x_gpio.o(i.GPIO_SetPinLevel)
  1768. i.GPIO_SetPullup 0x08000f46 Section 0 ac780x_gpio.o(i.GPIO_SetPullup)
  1769. i.I2C0_IRQHandler 0x08000f58 Section 0 ac780x_i2c.o(i.I2C0_IRQHandler)
  1770. i.I2C1_IRQHandler 0x08000f84 Section 0 ac780x_i2c.o(i.I2C1_IRQHandler)
  1771. i.I2C_ClearStartFlag 0x08000fb0 Section 0 ac780x_i2c.o(i.I2C_ClearStartFlag)
  1772. I2C_ClearStartFlag 0x08000fb1 Thumb Code 14 ac780x_i2c.o(i.I2C_ClearStartFlag)
  1773. i.I2C_MasterIntHandler 0x08000fc0 Section 0 ac780x_i2c.o(i.I2C_MasterIntHandler)
  1774. I2C_MasterIntHandler 0x08000fc1 Thumb Code 418 ac780x_i2c.o(i.I2C_MasterIntHandler)
  1775. i.I2C_MasterSlaveIntHandler 0x0800116c Section 0 ac780x_i2c.o(i.I2C_MasterSlaveIntHandler)
  1776. I2C_MasterSlaveIntHandler 0x0800116d Thumb Code 102 ac780x_i2c.o(i.I2C_MasterSlaveIntHandler)
  1777. i.I2C_ReceiveLastOneByte 0x080011d8 Section 0 ac780x_i2c.o(i.I2C_ReceiveLastOneByte)
  1778. i.I2C_SlaveIntHandler 0x080011ec Section 0 ac780x_i2c.o(i.I2C_SlaveIntHandler)
  1779. I2C_SlaveIntHandler 0x080011ed Thumb Code 336 ac780x_i2c.o(i.I2C_SlaveIntHandler)
  1780. i.InitDelay 0x08001344 Section 0 system_ac780x.o(i.InitDelay)
  1781. i.NMI_Handler 0x08001358 Section 0 ac780x_spm.o(i.NMI_Handler)
  1782. i.PVD_IRQHandler 0x080013e4 Section 0 ac780x_spm.o(i.PVD_IRQHandler)
  1783. i.PWDT0_IRQHandler 0x0800140c Section 0 ac780x_pwdt.o(i.PWDT0_IRQHandler)
  1784. i.PWDT1_IRQHandler 0x0800141c Section 0 ac780x_pwdt.o(i.PWDT1_IRQHandler)
  1785. i.PWDT_CommonISR 0x0800142c Section 0 ac780x_pwdt.o(i.PWDT_CommonISR)
  1786. PWDT_CommonISR 0x0800142d Thumb Code 76 ac780x_pwdt.o(i.PWDT_CommonISR)
  1787. i.PWM0_IRQHandler 0x0800147c Section 0 ac780x_pwm.o(i.PWM0_IRQHandler)
  1788. i.PWM1_IRQHandler 0x0800148c Section 0 ac780x_pwm.o(i.PWM1_IRQHandler)
  1789. i.PWM_CommonISR 0x0800149c Section 0 ac780x_pwm.o(i.PWM_CommonISR)
  1790. PWM_CommonISR 0x0800149d Thumb Code 82 ac780x_pwm.o(i.PWM_CommonISR)
  1791. i.Process_CoverStatus 0x080014f4 Section 0 process.o(i.Process_CoverStatus)
  1792. i.Process_Init 0x08001500 Section 0 process.o(i.Process_Init)
  1793. i.Process_LockStatus 0x0800158c Section 0 process.o(i.Process_LockStatus)
  1794. i.Process_RunLedPrd 0x08001598 Section 0 process.o(i.Process_RunLedPrd)
  1795. i.Process_ThreeStatus 0x080015d0 Section 0 process.o(i.Process_ThreeStatus)
  1796. i.Process_UnlockStatus 0x0800168c Section 0 process.o(i.Process_UnlockStatus)
  1797. i.RTC_ClearRPIF 0x08001698 Section 0 ac780x_rtc.o(i.RTC_ClearRPIF)
  1798. RTC_ClearRPIF 0x08001699 Thumb Code 16 ac780x_rtc.o(i.RTC_ClearRPIF)
  1799. i.RTC_ClearRTIF 0x080016ac Section 0 ac780x_rtc.o(i.RTC_ClearRTIF)
  1800. RTC_ClearRTIF 0x080016ad Thumb Code 18 ac780x_rtc.o(i.RTC_ClearRTIF)
  1801. i.RTC_IRQHandler 0x080016c4 Section 0 ac780x_rtc.o(i.RTC_IRQHandler)
  1802. i.Read_Addr 0x080016f4 Section 0 protocol.o(i.Read_Addr)
  1803. i.Read_Baudrate 0x08001710 Section 0 protocol.o(i.Read_Baudrate)
  1804. i.Read_Deviceid 0x0800172c Section 0 protocol.o(i.Read_Deviceid)
  1805. i.Read_Devicetype 0x0800175c Section 0 protocol.o(i.Read_Devicetype)
  1806. i.Read_FirmwareVersion 0x0800177c Section 0 protocol.o(i.Read_FirmwareVersion)
  1807. i.Read_HardwareVersion 0x080017b4 Section 0 protocol.o(i.Read_HardwareVersion)
  1808. i.Read_LockStatus 0x080017d4 Section 0 protocol.o(i.Read_LockStatus)
  1809. i.ResetConfig 0x080017f6 Section 0 cfg.o(i.ResetConfig)
  1810. i.SPI0_IRQHandler 0x08001800 Section 0 ac780x_spi.o(i.SPI0_IRQHandler)
  1811. i.SPI1_IRQHandler 0x08001828 Section 0 ac780x_spi.o(i.SPI1_IRQHandler)
  1812. i.SPI_InterruptHandler 0x08001850 Section 0 ac780x_spi.o(i.SPI_InterruptHandler)
  1813. SPI_InterruptHandler 0x08001851 Thumb Code 20 ac780x_spi.o(i.SPI_InterruptHandler)
  1814. i.SPI_MasterInterruptHandler 0x08001864 Section 0 ac780x_spi.o(i.SPI_MasterInterruptHandler)
  1815. SPI_MasterInterruptHandler 0x08001865 Thumb Code 312 ac780x_spi.o(i.SPI_MasterInterruptHandler)
  1816. i.SPI_SetRxFInterrupt 0x080019a8 Section 0 ac780x_spi.o(i.SPI_SetRxFInterrupt)
  1817. SPI_SetRxFInterrupt 0x080019a9 Thumb Code 16 ac780x_spi.o(i.SPI_SetRxFInterrupt)
  1818. i.SPI_SetRxOnly 0x080019b8 Section 0 ac780x_spi.o(i.SPI_SetRxOnly)
  1819. SPI_SetRxOnly 0x080019b9 Thumb Code 14 ac780x_spi.o(i.SPI_SetRxOnly)
  1820. i.SPI_SetTxEInterrupt 0x080019c6 Section 0 ac780x_spi.o(i.SPI_SetTxEInterrupt)
  1821. SPI_SetTxEInterrupt 0x080019c7 Thumb Code 16 ac780x_spi.o(i.SPI_SetTxEInterrupt)
  1822. i.SPI_SlaveInterruptHandler 0x080019d8 Section 0 ac780x_spi.o(i.SPI_SlaveInterruptHandler)
  1823. SPI_SlaveInterruptHandler 0x080019d9 Thumb Code 226 ac780x_spi.o(i.SPI_SlaveInterruptHandler)
  1824. i.SPM_EnablePLL 0x08001ac4 Section 0 ac780x_spm.o(i.SPM_EnablePLL)
  1825. i.SPM_EnableXOSC 0x08001b18 Section 0 ac780x_spm.o(i.SPM_EnableXOSC)
  1826. i.SPM_GetModuleWakeupSourceFlag 0x08001ba0 Section 0 ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag)
  1827. i.SPM_IRQHandler 0x08001bb0 Section 0 ac780x_spm.o(i.SPM_IRQHandler)
  1828. i.SPM_XOSCOKBypassSet 0x08001bd8 Section 0 ac780x_spm.o(i.SPM_XOSCOKBypassSet)
  1829. i.SaveConfig 0x08001bec Section 0 cfg.o(i.SaveConfig)
  1830. i.SetEflashClock 0x08001c30 Section 0 system_ac780x.o(i.SetEflashClock)
  1831. i.SetHSEClock 0x08001c74 Section 0 system_ac780x.o(i.SetHSEClock)
  1832. i.SysTickDelay 0x08001cd8 Section 0 system_ac780x.o(i.SysTickDelay)
  1833. SysTickDelay 0x08001cd9 Thumb Code 44 system_ac780x.o(i.SysTickDelay)
  1834. i.SysTickRepeatDelay 0x08001d08 Section 0 system_ac780x.o(i.SysTickRepeatDelay)
  1835. SysTickRepeatDelay 0x08001d09 Thumb Code 24 system_ac780x.o(i.SysTickRepeatDelay)
  1836. i.SystemInit 0x08001d20 Section 0 system_ac780x.o(i.SystemInit)
  1837. i.TIMER_Channel0_IRQHandler 0x08001d50 Section 0 ac780x_timer.o(i.TIMER_Channel0_IRQHandler)
  1838. i.TIMER_Channel1_IRQHandler 0x08001d60 Section 0 ac780x_timer.o(i.TIMER_Channel1_IRQHandler)
  1839. i.TIMER_Channel2_IRQHandler 0x08001d70 Section 0 ac780x_timer.o(i.TIMER_Channel2_IRQHandler)
  1840. i.TIMER_Channel3_IRQHandler 0x08001d80 Section 0 ac780x_timer.o(i.TIMER_Channel3_IRQHandler)
  1841. i.TIMER_CommonISR 0x08001d90 Section 0 ac780x_timer.o(i.TIMER_CommonISR)
  1842. TIMER_CommonISR 0x08001d91 Thumb Code 48 ac780x_timer.o(i.TIMER_CommonISR)
  1843. i.TIMER_Init 0x08001dc4 Section 0 ac780x_timer.o(i.TIMER_Init)
  1844. i.TIMER_PrdInit 0x08001e58 Section 0 timer.o(i.TIMER_PrdInit)
  1845. i.TIM_CHN2_Callback 0x08001e88 Section 0 timer.o(i.TIM_CHN2_Callback)
  1846. i.Task_Handle 0x08001ec0 Section 0 main_task.o(i.Task_Handle)
  1847. i.Task_Init 0x08001ed0 Section 0 main_task.o(i.Task_Init)
  1848. i.UART0_IRQHandler 0x08001ed8 Section 0 ac780x_uart.o(i.UART0_IRQHandler)
  1849. i.UART1_IRQHandler 0x08001ee8 Section 0 ac780x_uart.o(i.UART1_IRQHandler)
  1850. i.UART2_IRQHandler 0x08001ef8 Section 0 ac780x_uart.o(i.UART2_IRQHandler)
  1851. i.UART_Init 0x08001f08 Section 0 ac780x_uart.o(i.UART_Init)
  1852. i.UART_InterruptHandler 0x08002024 Section 0 ac780x_uart.o(i.UART_InterruptHandler)
  1853. UART_InterruptHandler 0x08002025 Thumb Code 52 ac780x_uart.o(i.UART_InterruptHandler)
  1854. i.UART_ReceiveDMA 0x0800205c Section 0 ac780x_uart.o(i.UART_ReceiveDMA)
  1855. i.UART_SetBaudrate 0x080020ec Section 0 ac780x_uart.o(i.UART_SetBaudrate)
  1856. i.UART_SetParity 0x08002164 Section 0 ac780x_uart.o(i.UART_SetParity)
  1857. i.UART_TransmitDMA 0x0800219c Section 0 ac780x_uart.o(i.UART_TransmitDMA)
  1858. i.Uart0_RxDataHandle 0x08002230 Section 0 main_task.o(i.Uart0_RxDataHandle)
  1859. i.UartRxDMAEventCallback 0x08002464 Section 0 uart.o(i.UartRxDMAEventCallback)
  1860. UartRxDMAEventCallback 0x08002465 Thumb Code 2 uart.o(i.UartRxDMAEventCallback)
  1861. i.UartRxIdleCallBack 0x08002468 Section 0 uart.o(i.UartRxIdleCallBack)
  1862. UartRxIdleCallBack 0x08002469 Thumb Code 34 uart.o(i.UartRxIdleCallBack)
  1863. i.UartTxDMAEventCallback 0x08002494 Section 0 uart.o(i.UartTxDMAEventCallback)
  1864. i.WDG_IRQHandler 0x080024a4 Section 0 ac780x_wdg.o(i.WDG_IRQHandler)
  1865. i.Write_Addr 0x080024c0 Section 0 protocol.o(i.Write_Addr)
  1866. i.Write_Baudrate 0x080024d8 Section 0 protocol.o(i.Write_Baudrate)
  1867. i.Write_Deviceid 0x080024f8 Section 0 protocol.o(i.Write_Deviceid)
  1868. i.Write_Devicetype 0x08002524 Section 0 protocol.o(i.Write_Devicetype)
  1869. i.Write_HardwareVersion 0x08002544 Section 0 protocol.o(i.Write_HardwareVersion)
  1870. i.__ARM_common_switch8 0x08002564 Section 0 uart.o(i.__ARM_common_switch8)
  1871. i.__NVIC_DisableIRQ 0x08002580 Section 0 ac780x_timer.o(i.__NVIC_DisableIRQ)
  1872. __NVIC_DisableIRQ 0x08002581 Thumb Code 26 ac780x_timer.o(i.__NVIC_DisableIRQ)
  1873. i.crc16 0x080025a0 Section 0 crc16.o(i.crc16)
  1874. i.main 0x080025c8 Section 0 main.o(i.main)
  1875. i.mdelay 0x080025e8 Section 0 system_ac780x.o(i.mdelay)
  1876. i.uart0_RecvData 0x0800260c Section 0 uart.o(i.uart0_RecvData)
  1877. i.uart0_TransmitData 0x08002638 Section 0 uart.o(i.uart0_TransmitData)
  1878. i.uart_Initialize 0x08002678 Section 0 uart.o(i.uart_Initialize)
  1879. x$fpl$fadd 0x0800275c Section 140 faddsub.o(x$fpl$fadd)
  1880. _fadd1 0x08002769 Thumb Code 0 faddsub.o(x$fpl$fadd)
  1881. x$fpl$frsb 0x080027e8 Section 24 faddsub.o(x$fpl$frsb)
  1882. x$fpl$fsub 0x08002800 Section 208 faddsub.o(x$fpl$fsub)
  1883. _fsub1 0x0800280d Thumb Code 0 faddsub.o(x$fpl$fsub)
  1884. .constdata 0x080028d0 Section 512 crc16.o(.constdata)
  1885. x$fpl$usenofp 0x080028d0 Section 0 usenofp.o(x$fpl$usenofp)
  1886. CRCH 0x080028d0 Data 256 crc16.o(.constdata)
  1887. CRCL 0x080029d0 Data 256 crc16.o(.constdata)
  1888. .constdata 0x08002ad0 Section 32 ac780x_dma.o(.constdata)
  1889. .constdata 0x08002af0 Section 4 ac780x_timer.o(.constdata)
  1890. s_timerIRQ 0x08002af0 Data 4 ac780x_timer.o(.constdata)
  1891. .constdata 0x08002af4 Section 64 fdiv.o(.constdata)
  1892. fdiv_tab 0x08002af4 Data 64 fdiv.o(.constdata)
  1893. .data 0x20000000 Section 32 protocol.o(.data)
  1894. .data 0x20000020 Section 4 cfg.o(.data)
  1895. .data 0x20000024 Section 12 process.o(.data)
  1896. .data 0x20000030 Section 4 ac780x_acmp.o(.data)
  1897. s_acmpCallback 0x20000030 Data 4 ac780x_acmp.o(.data)
  1898. .data 0x20000034 Section 4 ac780x_adc.o(.data)
  1899. s_adcCallback 0x20000034 Data 4 ac780x_adc.o(.data)
  1900. .data 0x20000038 Section 4 ac780x_ecc_sram.o(.data)
  1901. s_ecc_SramCallback 0x20000038 Data 4 ac780x_ecc_sram.o(.data)
  1902. .data 0x2000003c Section 16 ac780x_i2c.o(.data)
  1903. s_i2cCallback 0x2000003c Data 8 ac780x_i2c.o(.data)
  1904. .data 0x2000004c Section 8 ac780x_pwdt.o(.data)
  1905. s_pwdtCallback 0x2000004c Data 8 ac780x_pwdt.o(.data)
  1906. .data 0x20000054 Section 8 ac780x_pwm.o(.data)
  1907. s_pwmCallback 0x20000054 Data 8 ac780x_pwm.o(.data)
  1908. .data 0x2000005c Section 4 ac780x_rtc.o(.data)
  1909. s_rtcCallback 0x2000005c Data 4 ac780x_rtc.o(.data)
  1910. .data 0x20000060 Section 56 ac780x_spi.o(.data)
  1911. .data 0x20000098 Section 8 ac780x_spm.o(.data)
  1912. s_spmCallback 0x20000098 Data 4 ac780x_spm.o(.data)
  1913. s_pvdCallback 0x2000009c Data 4 ac780x_spm.o(.data)
  1914. .data 0x200000a0 Section 4 ac780x_wdg.o(.data)
  1915. s_wdgCallback 0x200000a0 Data 4 ac780x_wdg.o(.data)
  1916. .data 0x200000a4 Section 20 system_ac780x.o(.data)
  1917. s_pllPREDIV 0x200000a4 Data 3 system_ac780x.o(.data)
  1918. s_facus 0x200000a8 Data 4 system_ac780x.o(.data)
  1919. s_facms 0x200000ac Data 4 system_ac780x.o(.data)
  1920. .bss 0x200000b8 Section 24 cfg.o(.bss)
  1921. reflectionBuff 0x200000b8 Data 24 cfg.o(.bss)
  1922. .bss 0x200000d0 Section 400 uart.o(.bss)
  1923. .bss 0x20000260 Section 12 ac780x_can.o(.bss)
  1924. s_canDevice 0x20000260 Data 12 ac780x_can.o(.bss)
  1925. .bss 0x2000026c Section 16 ac780x_dma.o(.bss)
  1926. .bss 0x2000027c Section 20 ac780x_gpio.o(.bss)
  1927. .bss 0x20000290 Section 32 ac780x_i2c.o(.bss)
  1928. .bss 0x200002b0 Section 16 ac780x_timer.o(.bss)
  1929. s_timerCallback 0x200002b0 Data 16 ac780x_timer.o(.bss)
  1930. .bss 0x200002c0 Section 12 ac780x_uart.o(.bss)
  1931. .bss 0x200002cc Section 96 libspace.o(.bss)
  1932. HEAP 0x20000330 Section 0 startup_ac780x.o(HEAP)
  1933. STACK 0x20000330 Section 1024 startup_ac780x.o(STACK)
  1934. Heap_Mem 0x20000330 Data 0 startup_ac780x.o(HEAP)
  1935. Stack_Mem 0x20000330 Data 1024 startup_ac780x.o(STACK)
  1936. __initial_sp 0x20000730 Data 0 startup_ac780x.o(STACK)
  1937. Global Symbols
  1938. Symbol Name Value Ov Type Size Object(Section)
  1939. BuildAttributes$$THM_ISAv3M$S$PE$A:L22$X:L11$S22$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OTIME$ROPI$EBA8$UX$STANDARDLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
  1940. __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE
  1941. _printf_flags 0x00000000 Number 0 printf_stubs.o ABSOLUTE
  1942. _printf_return_value 0x00000000 Number 0 printf_stubs.o ABSOLUTE
  1943. _printf_sizespec 0x00000000 Number 0 printf_stubs.o ABSOLUTE
  1944. _printf_widthprec 0x00000000 Number 0 printf_stubs.o ABSOLUTE
  1945. __ARM_exceptions_init - Undefined Weak Reference
  1946. __alloca_initialize - Undefined Weak Reference
  1947. __arm_fini_ - Undefined Weak Reference
  1948. __arm_preinit_ - Undefined Weak Reference
  1949. __cpp_initialize__aeabi_ - Undefined Weak Reference
  1950. __cxa_finalize - Undefined Weak Reference
  1951. __rt_locale - Undefined Weak Reference
  1952. __sigvec_lookup - Undefined Weak Reference
  1953. __user_heap_extent - Undefined Weak Reference
  1954. _atexit_init - Undefined Weak Reference
  1955. _call_atexit_fns - Undefined Weak Reference
  1956. _clock_init - Undefined Weak Reference
  1957. _fp_trap_init - Undefined Weak Reference
  1958. _fp_trap_shutdown - Undefined Weak Reference
  1959. _get_lc_collate - Undefined Weak Reference
  1960. _get_lc_ctype - Undefined Weak Reference
  1961. _get_lc_monetary - Undefined Weak Reference
  1962. _get_lc_numeric - Undefined Weak Reference
  1963. _get_lc_time - Undefined Weak Reference
  1964. _getenv_init - Undefined Weak Reference
  1965. _handle_redirection - Undefined Weak Reference
  1966. _mutex_acquire - Undefined Weak Reference
  1967. _mutex_free - Undefined Weak Reference
  1968. _mutex_release - Undefined Weak Reference
  1969. _printf_truncate_unsigned - Undefined Weak Reference
  1970. _rand_init - Undefined Weak Reference
  1971. _signal_finish - Undefined Weak Reference
  1972. _signal_init - Undefined Weak Reference
  1973. __Vectors_Size 0x000000c0 Number 0 startup_ac780x.o ABSOLUTE
  1974. __Vectors 0x08000000 Data 4 startup_ac780x.o(RESET)
  1975. __Vectors_End 0x080000c0 Data 0 startup_ac780x.o(RESET)
  1976. __main 0x080000c1 Thumb Code 8 __main.o(!!!main)
  1977. __scatterload 0x080000c9 Thumb Code 0 __scatter.o(!!!scatter)
  1978. __scatterload_rt2 0x080000c9 Thumb Code 52 __scatter.o(!!!scatter)
  1979. __scatterload_rt2_thumb_only 0x080000c9 Thumb Code 0 __scatter.o(!!!scatter)
  1980. __scatterload_null 0x080000d9 Thumb Code 0 __scatter.o(!!!scatter)
  1981. __scatterload_copy 0x08000105 Thumb Code 26 __scatter_copy.o(!!handler_copy)
  1982. __scatterload_zeroinit 0x08000121 Thumb Code 28 __scatter_zi.o(!!handler_zi)
  1983. __rt_lib_init 0x0800013d Thumb Code 0 libinit.o(.ARM.Collect$$libinit$$00000000)
  1984. __rt_lib_init_alloca_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
  1985. __rt_lib_init_argv_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
  1986. __rt_lib_init_atexit_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
  1987. __rt_lib_init_clock_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
  1988. __rt_lib_init_cpp_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000032)
  1989. __rt_lib_init_exceptions_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
  1990. __rt_lib_init_fp_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
  1991. __rt_lib_init_fp_trap_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
  1992. __rt_lib_init_getenv_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
  1993. __rt_lib_init_heap_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
  1994. __rt_lib_init_lc_collate_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
  1995. __rt_lib_init_lc_ctype_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
  1996. __rt_lib_init_lc_monetary_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
  1997. __rt_lib_init_lc_numeric_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
  1998. __rt_lib_init_lc_time_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
  1999. __rt_lib_init_preinit_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000004)
  2000. __rt_lib_init_rand_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000E)
  2001. __rt_lib_init_return 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000033)
  2002. __rt_lib_init_signal_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
  2003. __rt_lib_init_stdio_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000025)
  2004. __rt_lib_init_user_alloc_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
  2005. __rt_lib_shutdown 0x08000141 Thumb Code 0 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
  2006. __rt_lib_shutdown_cpp_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)
  2007. __rt_lib_shutdown_fini_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)
  2008. __rt_lib_shutdown_fp_trap_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
  2009. __rt_lib_shutdown_heap_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000011)
  2010. __rt_lib_shutdown_return 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000012)
  2011. __rt_lib_shutdown_signal_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)
  2012. __rt_lib_shutdown_stdio_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
  2013. __rt_lib_shutdown_user_alloc_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
  2014. __rt_entry 0x08000145 Thumb Code 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000)
  2015. __rt_entry_presh_1 0x08000145 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002)
  2016. __rt_entry_sh 0x08000145 Thumb Code 0 __rtentry4.o(.ARM.Collect$$rtentry$$00000004)
  2017. __rt_entry_li 0x0800014b Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
  2018. __rt_entry_postsh_1 0x0800014b Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009)
  2019. __rt_entry_main 0x0800014f Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
  2020. __rt_entry_postli_1 0x0800014f Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
  2021. __rt_exit 0x08000157 Thumb Code 0 rtexit.o(.ARM.Collect$$rtexit$$00000000)
  2022. __rt_exit_ls 0x08000159 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
  2023. __rt_exit_prels_1 0x08000159 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
  2024. __rt_exit_exit 0x0800015d Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
  2025. __aeabi_memcpy4 0x08000165 Thumb Code 56 rt_memcpy.o(.emb_text)
  2026. __aeabi_memcpy8 0x08000165 Thumb Code 0 rt_memcpy.o(.emb_text)
  2027. Reset_Handler 0x0800019d Thumb Code 38 startup_ac780x.o(.text)
  2028. HardFault_Handler 0x080001c5 Thumb Code 2 startup_ac780x.o(.text)
  2029. SVC_Handler 0x080001c7 Thumb Code 2 startup_ac780x.o(.text)
  2030. PendSV_Handler 0x080001c9 Thumb Code 2 startup_ac780x.o(.text)
  2031. SysTick_Handler 0x080001cb Thumb Code 2 startup_ac780x.o(.text)
  2032. __user_initial_stackheap 0x080001d1 Thumb Code 10 startup_ac780x.o(.text)
  2033. __aeabi_memcpy 0x08000215 Thumb Code 130 rt_memcpy.o(.text)
  2034. __rt_memcpy 0x08000215 Thumb Code 0 rt_memcpy.o(.text)
  2035. _memset_w 0x08000297 Thumb Code 26 rt_memclr.o(.text)
  2036. _memset 0x080002b1 Thumb Code 30 rt_memclr.o(.text)
  2037. __aeabi_memclr 0x080002cf Thumb Code 4 rt_memclr.o(.text)
  2038. __rt_memclr 0x080002cf Thumb Code 0 rt_memclr.o(.text)
  2039. __aeabi_memclr4 0x080002d3 Thumb Code 0 rt_memclr.o(.text)
  2040. __aeabi_memclr8 0x080002d3 Thumb Code 0 rt_memclr.o(.text)
  2041. __rt_memclr_w 0x080002d3 Thumb Code 4 rt_memclr.o(.text)
  2042. __use_two_region_memory 0x080002d7 Thumb Code 2 heapauxi.o(.text)
  2043. __rt_heap_escrow 0x080002d9 Thumb Code 2 heapauxi.o(.text)
  2044. __rt_heap_expand 0x080002db Thumb Code 2 heapauxi.o(.text)
  2045. __aeabi_fdiv 0x080002dd Thumb Code 0 fdiv.o(.text)
  2046. _fdiv 0x080002dd Thumb Code 334 fdiv.o(.text)
  2047. _frdiv 0x0800042b Thumb Code 8 fdiv.o(.text)
  2048. __aeabi_f2uiz 0x0800043d Thumb Code 0 ffixui.o(.text)
  2049. _ffixu 0x0800043d Thumb Code 48 ffixui.o(.text)
  2050. __aeabi_f2ulz 0x0800046d Thumb Code 0 ffixul.o(.text)
  2051. _ll_ufrom_f 0x0800046d Thumb Code 74 ffixul.o(.text)
  2052. __aeabi_i2f_normalise 0x080004b7 Thumb Code 72 fflti.o(.text)
  2053. __aeabi_i2f 0x080004ff Thumb Code 16 fflti.o(.text)
  2054. _fflt 0x080004ff Thumb Code 0 fflti.o(.text)
  2055. __aeabi_ui2f 0x0800050f Thumb Code 6 fflti.o(.text)
  2056. _ffltu 0x0800050f Thumb Code 0 fflti.o(.text)
  2057. __ARM_scalbnf 0x08000515 Thumb Code 64 fscalbn.o(.text)
  2058. __user_setup_stackheap 0x08000559 Thumb Code 62 sys_stackheap_outer.o(.text)
  2059. exit 0x08000597 Thumb Code 16 exit.o(.text)
  2060. __user_libspace 0x080005a9 Thumb Code 8 libspace.o(.text)
  2061. __user_perproc_libspace 0x080005a9 Thumb Code 0 libspace.o(.text)
  2062. __user_perthread_libspace 0x080005a9 Thumb Code 0 libspace.o(.text)
  2063. __I$use$semihosting 0x080005b1 Thumb Code 0 use_no_semi.o(.text)
  2064. __use_no_semihosting_swi 0x080005b1 Thumb Code 2 use_no_semi.o(.text)
  2065. __semihosting_library_function 0x080005b3 Thumb Code 0 indicate_semi.o(.text)
  2066. _sys_exit 0x080005b5 Thumb Code 8 sys_exit.o(.text)
  2067. ACMP0_IRQHandler 0x080005c1 Thumb Code 20 ac780x_acmp.o(i.ACMP0_IRQHandler)
  2068. ADC0_IRQHandler 0x080005dd Thumb Code 22 ac780x_adc.o(i.ADC0_IRQHandler)
  2069. CAN0_Handler 0x080005fd Thumb Code 10 ac780x_can.o(i.CAN0_Handler)
  2070. CAN_HandleEvent 0x0800060d Thumb Code 62 ac780x_can.o(i.CAN_HandleEvent)
  2071. CKGEN_Enable 0x08000655 Thumb Code 64 ac780x_ckgen.o(i.CKGEN_Enable)
  2072. CKGEN_SetAPBClockDivider 0x08000695 Thumb Code 20 ac780x_ckgen.o(i.CKGEN_SetAPBClockDivider)
  2073. CKGEN_SetPLLReference 0x080006a9 Thumb Code 18 ac780x_ckgen.o(i.CKGEN_SetPLLReference)
  2074. CKGEN_SetPllFeedbackDiv 0x080006bd Thumb Code 18 ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv)
  2075. CKGEN_SetPllPostDiv 0x080006d5 Thumb Code 18 ac780x_ckgen.o(i.CKGEN_SetPllPostDiv)
  2076. CKGEN_SetPllPrevDiv 0x080006ed Thumb Code 16 ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv)
  2077. CKGEN_SetSysclkDiv 0x08000701 Thumb Code 18 ac780x_ckgen.o(i.CKGEN_SetSysclkDiv)
  2078. CKGEN_SetSysclkSrc 0x08000713 Thumb Code 16 ac780x_ckgen.o(i.CKGEN_SetSysclkSrc)
  2079. CKGEN_SoftReset 0x08000723 Thumb Code 64 ac780x_ckgen.o(i.CKGEN_SoftReset)
  2080. Config_Init 0x08000765 Thumb Code 44 cfg.o(i.Config_Init)
  2081. DMA0_Channel0_IRQHandler 0x080007a1 Thumb Code 28 ac780x_dma.o(i.DMA0_Channel0_IRQHandler)
  2082. DMA0_Channel1_IRQHandler 0x080007c5 Thumb Code 28 ac780x_dma.o(i.DMA0_Channel1_IRQHandler)
  2083. DMA0_Channel2_IRQHandler 0x080007e9 Thumb Code 28 ac780x_dma.o(i.DMA0_Channel2_IRQHandler)
  2084. DMA0_Channel3_IRQHandler 0x0800080d Thumb Code 28 ac780x_dma.o(i.DMA0_Channel3_IRQHandler)
  2085. DMA_ChannelFlush 0x08000831 Thumb Code 10 ac780x_dma.o(i.DMA_ChannelFlush)
  2086. DMA_ClearFlag 0x0800084b Thumb Code 26 ac780x_dma.o(i.DMA_ClearFlag)
  2087. DMA_DeInit 0x08000865 Thumb Code 100 ac780x_dma.o(i.DMA_DeInit)
  2088. DMA_Init 0x080008d9 Thumb Code 312 ac780x_dma.o(i.DMA_Init)
  2089. DMA_SetChannel 0x08000a1d Thumb Code 12 ac780x_dma.o(i.DMA_SetChannel)
  2090. ECC_SRAM_IRQHandler 0x08000a29 Thumb Code 34 ac780x_ecc_sram.o(i.ECC_SRAM_IRQHandler)
  2091. EFLASH_LockCtrl 0x08000a55 Thumb Code 12 ac780x_eflash.o(i.EFLASH_LockCtrl)
  2092. EFLASH_PageErase 0x08000a65 Thumb Code 82 ac780x_eflash.o(i.EFLASH_PageErase)
  2093. EFLASH_PageEraseVerify 0x08000abd Thumb Code 70 ac780x_eflash.o(i.EFLASH_PageEraseVerify)
  2094. EFLASH_PageProgram 0x08000b09 Thumb Code 122 ac780x_eflash.o(i.EFLASH_PageProgram)
  2095. EFLASH_UnlockCtrl 0x08000b99 Thumb Code 42 ac780x_eflash.o(i.EFLASH_UnlockCtrl)
  2096. EFLASH_WaitEop 0x08000bd1 Thumb Code 32 ac780x_eflash.o(i.EFLASH_WaitEop)
  2097. EFLASH_WaitForLastOperation 0x08000bf5 Thumb Code 64 ac780x_eflash.o(i.EFLASH_WaitForLastOperation)
  2098. EXTI0_IRQHandler 0x08000c39 Thumb Code 34 ac780x_gpio.o(i.EXTI0_IRQHandler)
  2099. EXTI1_IRQHandler 0x08000c61 Thumb Code 34 ac780x_gpio.o(i.EXTI1_IRQHandler)
  2100. EXTI2_IRQHandler 0x08000c89 Thumb Code 34 ac780x_gpio.o(i.EXTI2_IRQHandler)
  2101. EXTI3_8_IRQHandler 0x08000cb1 Thumb Code 62 ac780x_gpio.o(i.EXTI3_8_IRQHandler)
  2102. EXTI9_15_IRQHandler 0x08000cf5 Thumb Code 62 ac780x_gpio.o(i.EXTI9_15_IRQHandler)
  2103. GPIO_ClearPendingExtInterrupt 0x08000d59 Thumb Code 10 ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt)
  2104. GPIO_GetPendingExtInterrupt 0x08000dc5 Thumb Code 8 ac780x_gpio.o(i.GPIO_GetPendingExtInterrupt)
  2105. GPIO_GetPinLevel 0x08000dd1 Thumb Code 10 ac780x_gpio.o(i.GPIO_GetPinLevel)
  2106. GPIO_PortInit 0x08000ddd Thumb Code 160 gpio.o(i.GPIO_PortInit)
  2107. GPIO_SetDir 0x08000e81 Thumb Code 18 ac780x_gpio.o(i.GPIO_SetDir)
  2108. GPIO_SetFunc 0x08000e95 Thumb Code 152 ac780x_gpio.o(i.GPIO_SetFunc)
  2109. GPIO_SetPinLevel 0x08000f35 Thumb Code 18 ac780x_gpio.o(i.GPIO_SetPinLevel)
  2110. GPIO_SetPullup 0x08000f47 Thumb Code 18 ac780x_gpio.o(i.GPIO_SetPullup)
  2111. I2C0_IRQHandler 0x08000f59 Thumb Code 36 ac780x_i2c.o(i.I2C0_IRQHandler)
  2112. I2C1_IRQHandler 0x08000f85 Thumb Code 36 ac780x_i2c.o(i.I2C1_IRQHandler)
  2113. I2C_ReceiveLastOneByte 0x080011d9 Thumb Code 18 ac780x_i2c.o(i.I2C_ReceiveLastOneByte)
  2114. InitDelay 0x08001345 Thumb Code 12 system_ac780x.o(i.InitDelay)
  2115. NMI_Handler 0x08001359 Thumb Code 132 ac780x_spm.o(i.NMI_Handler)
  2116. PVD_IRQHandler 0x080013e5 Thumb Code 30 ac780x_spm.o(i.PVD_IRQHandler)
  2117. PWDT0_IRQHandler 0x0800140d Thumb Code 10 ac780x_pwdt.o(i.PWDT0_IRQHandler)
  2118. PWDT1_IRQHandler 0x0800141d Thumb Code 10 ac780x_pwdt.o(i.PWDT1_IRQHandler)
  2119. PWM0_IRQHandler 0x0800147d Thumb Code 10 ac780x_pwm.o(i.PWM0_IRQHandler)
  2120. PWM1_IRQHandler 0x0800148d Thumb Code 10 ac780x_pwm.o(i.PWM1_IRQHandler)
  2121. Process_CoverStatus 0x080014f5 Thumb Code 6 process.o(i.Process_CoverStatus)
  2122. Process_Init 0x08001501 Thumb Code 130 process.o(i.Process_Init)
  2123. Process_LockStatus 0x0800158d Thumb Code 6 process.o(i.Process_LockStatus)
  2124. Process_RunLedPrd 0x08001599 Thumb Code 46 process.o(i.Process_RunLedPrd)
  2125. Process_ThreeStatus 0x080015d1 Thumb Code 180 process.o(i.Process_ThreeStatus)
  2126. Process_UnlockStatus 0x0800168d Thumb Code 6 process.o(i.Process_UnlockStatus)
  2127. RTC_IRQHandler 0x080016c5 Thumb Code 40 ac780x_rtc.o(i.RTC_IRQHandler)
  2128. Read_Addr 0x080016f5 Thumb Code 24 protocol.o(i.Read_Addr)
  2129. Read_Baudrate 0x08001711 Thumb Code 24 protocol.o(i.Read_Baudrate)
  2130. Read_Deviceid 0x0800172d Thumb Code 44 protocol.o(i.Read_Deviceid)
  2131. Read_Devicetype 0x0800175d Thumb Code 28 protocol.o(i.Read_Devicetype)
  2132. Read_FirmwareVersion 0x0800177d Thumb Code 50 protocol.o(i.Read_FirmwareVersion)
  2133. Read_HardwareVersion 0x080017b5 Thumb Code 28 protocol.o(i.Read_HardwareVersion)
  2134. Read_LockStatus 0x080017d5 Thumb Code 34 protocol.o(i.Read_LockStatus)
  2135. ResetConfig 0x080017f7 Thumb Code 10 cfg.o(i.ResetConfig)
  2136. SPI0_IRQHandler 0x08001801 Thumb Code 32 ac780x_spi.o(i.SPI0_IRQHandler)
  2137. SPI1_IRQHandler 0x08001829 Thumb Code 32 ac780x_spi.o(i.SPI1_IRQHandler)
  2138. SPM_EnablePLL 0x08001ac5 Thumb Code 76 ac780x_spm.o(i.SPM_EnablePLL)
  2139. SPM_EnableXOSC 0x08001b19 Thumb Code 124 ac780x_spm.o(i.SPM_EnableXOSC)
  2140. SPM_GetModuleWakeupSourceFlag 0x08001ba1 Thumb Code 10 ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag)
  2141. SPM_IRQHandler 0x08001bb1 Thumb Code 30 ac780x_spm.o(i.SPM_IRQHandler)
  2142. SPM_XOSCOKBypassSet 0x08001bd9 Thumb Code 16 ac780x_spm.o(i.SPM_XOSCOKBypassSet)
  2143. SaveConfig 0x08001bed Thumb Code 58 cfg.o(i.SaveConfig)
  2144. SetEflashClock 0x08001c31 Thumb Code 50 system_ac780x.o(i.SetEflashClock)
  2145. SetHSEClock 0x08001c75 Thumb Code 100 system_ac780x.o(i.SetHSEClock)
  2146. SystemInit 0x08001d21 Thumb Code 30 system_ac780x.o(i.SystemInit)
  2147. TIMER_Channel0_IRQHandler 0x08001d51 Thumb Code 10 ac780x_timer.o(i.TIMER_Channel0_IRQHandler)
  2148. TIMER_Channel1_IRQHandler 0x08001d61 Thumb Code 10 ac780x_timer.o(i.TIMER_Channel1_IRQHandler)
  2149. TIMER_Channel2_IRQHandler 0x08001d71 Thumb Code 10 ac780x_timer.o(i.TIMER_Channel2_IRQHandler)
  2150. TIMER_Channel3_IRQHandler 0x08001d81 Thumb Code 10 ac780x_timer.o(i.TIMER_Channel3_IRQHandler)
  2151. TIMER_Init 0x08001dc5 Thumb Code 130 ac780x_timer.o(i.TIMER_Init)
  2152. TIMER_PrdInit 0x08001e59 Thumb Code 36 timer.o(i.TIMER_PrdInit)
  2153. TIM_CHN2_Callback 0x08001e89 Thumb Code 40 timer.o(i.TIM_CHN2_Callback)
  2154. Task_Handle 0x08001ec1 Thumb Code 16 main_task.o(i.Task_Handle)
  2155. Task_Init 0x08001ed1 Thumb Code 8 main_task.o(i.Task_Init)
  2156. UART0_IRQHandler 0x08001ed9 Thumb Code 10 ac780x_uart.o(i.UART0_IRQHandler)
  2157. UART1_IRQHandler 0x08001ee9 Thumb Code 10 ac780x_uart.o(i.UART1_IRQHandler)
  2158. UART2_IRQHandler 0x08001ef9 Thumb Code 10 ac780x_uart.o(i.UART2_IRQHandler)
  2159. UART_Init 0x08001f09 Thumb Code 274 ac780x_uart.o(i.UART_Init)
  2160. UART_ReceiveDMA 0x0800205d Thumb Code 140 ac780x_uart.o(i.UART_ReceiveDMA)
  2161. UART_SetBaudrate 0x080020ed Thumb Code 114 ac780x_uart.o(i.UART_SetBaudrate)
  2162. UART_SetParity 0x08002165 Thumb Code 56 ac780x_uart.o(i.UART_SetParity)
  2163. UART_TransmitDMA 0x0800219d Thumb Code 144 ac780x_uart.o(i.UART_TransmitDMA)
  2164. Uart0_RxDataHandle 0x08002231 Thumb Code 542 main_task.o(i.Uart0_RxDataHandle)
  2165. UartTxDMAEventCallback 0x08002495 Thumb Code 12 uart.o(i.UartTxDMAEventCallback)
  2166. WDG_IRQHandler 0x080024a5 Thumb Code 18 ac780x_wdg.o(i.WDG_IRQHandler)
  2167. Write_Addr 0x080024c1 Thumb Code 20 protocol.o(i.Write_Addr)
  2168. Write_Baudrate 0x080024d9 Thumb Code 26 protocol.o(i.Write_Baudrate)
  2169. Write_Deviceid 0x080024f9 Thumb Code 40 protocol.o(i.Write_Deviceid)
  2170. Write_Devicetype 0x08002525 Thumb Code 28 protocol.o(i.Write_Devicetype)
  2171. Write_HardwareVersion 0x08002545 Thumb Code 28 protocol.o(i.Write_HardwareVersion)
  2172. __ARM_common_switch8 0x08002565 Thumb Code 26 uart.o(i.__ARM_common_switch8)
  2173. crc16 0x080025a1 Thumb Code 36 crc16.o(i.crc16)
  2174. main 0x080025c9 Thumb Code 30 main.o(i.main)
  2175. mdelay 0x080025e9 Thumb Code 30 system_ac780x.o(i.mdelay)
  2176. uart0_RecvData 0x0800260d Thumb Code 28 uart.o(i.uart0_RecvData)
  2177. uart0_TransmitData 0x08002639 Thumb Code 42 uart.o(i.uart0_TransmitData)
  2178. uart_Initialize 0x08002679 Thumb Code 186 uart.o(i.uart_Initialize)
  2179. __aeabi_fadd 0x0800275d Thumb Code 0 faddsub.o(x$fpl$fadd)
  2180. _fadd 0x0800275d Thumb Code 134 faddsub.o(x$fpl$fadd)
  2181. __aeabi_frsub 0x080027e9 Thumb Code 0 faddsub.o(x$fpl$frsb)
  2182. _frsb 0x080027e9 Thumb Code 24 faddsub.o(x$fpl$frsb)
  2183. __aeabi_fsub 0x08002801 Thumb Code 0 faddsub.o(x$fpl$fsub)
  2184. _fsub 0x08002801 Thumb Code 204 faddsub.o(x$fpl$fsub)
  2185. __I$use$fp 0x080028d0 Number 0 usenofp.o(x$fpl$usenofp)
  2186. g_dmaChannel 0x08002ad0 Data 32 ac780x_dma.o(.constdata)
  2187. Region$$Table$$Base 0x08002b34 Number 0 anon$$obj.o(Region$$Table)
  2188. Region$$Table$$Limit 0x08002b54 Number 0 anon$$obj.o(Region$$Table)
  2189. Firmware_Version 0x20000000 Data 32 protocol.o(.data)
  2190. config 0x20000020 Data 4 cfg.o(.data)
  2191. g_detectTime 0x20000024 Data 1 process.o(.data)
  2192. g_lockstatus 0x20000025 Data 1 process.o(.data)
  2193. g_unlockstatus 0x20000026 Data 1 process.o(.data)
  2194. g_coverstatus 0x20000027 Data 1 process.o(.data)
  2195. lockbits 0x20000028 Data 1 process.o(.data)
  2196. unlockbits 0x20000029 Data 1 process.o(.data)
  2197. coverbits 0x2000002a Data 1 process.o(.data)
  2198. g_blinkLedTime 0x2000002c Data 2 process.o(.data)
  2199. g_blinkLedTgtTime 0x2000002e Data 2 process.o(.data)
  2200. g_i2cStatus 0x20000044 Data 8 ac780x_i2c.o(.data)
  2201. g_spiRxBuf 0x20000060 Data 8 ac780x_spi.o(.data)
  2202. g_spiTxBuf 0x20000068 Data 8 ac780x_spi.o(.data)
  2203. g_spiRxCount 0x20000070 Data 8 ac780x_spi.o(.data)
  2204. g_spiTxCount 0x20000078 Data 8 ac780x_spi.o(.data)
  2205. g_spiBuffSize 0x20000080 Data 8 ac780x_spi.o(.data)
  2206. g_spiStatus 0x20000088 Data 8 ac780x_spi.o(.data)
  2207. g_spiCallbackArray 0x20000090 Data 8 ac780x_spi.o(.data)
  2208. SystemCoreClock 0x200000b0 Data 4 system_ac780x.o(.data)
  2209. g_periphAPBClock 0x200000b4 Data 4 system_ac780x.o(.data)
  2210. uart0_info 0x200000d0 Data 16 uart.o(.bss)
  2211. dmaRxBuf 0x200000e0 Data 320 uart.o(.bss)
  2212. dmaTxBuf 0x20000220 Data 64 uart.o(.bss)
  2213. g_dmaCallbackArray 0x2000026c Data 16 ac780x_dma.o(.bss)
  2214. g_gpioCallbackArray 0x2000027c Data 20 ac780x_gpio.o(.bss)
  2215. g_i2cTransmitInfo 0x20000290 Data 32 ac780x_i2c.o(.bss)
  2216. s_uartCallback 0x200002c0 Data 12 ac780x_uart.o(.bss)
  2217. __libspace_start 0x200002cc Data 96 libspace.o(.bss)
  2218. __temporary_stack_top$libspace 0x2000032c Data 0 libspace.o(.bss)
  2219. ==============================================================================
  2220. Memory Map of the image
  2221. Image Entry point : 0x080000c1
  2222. Load Region LR_IROM1 (Base: 0x08000000, Size: 0x00002c0c, Max: 0x00020000, ABSOLUTE)
  2223. Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x00002b54, Max: 0x00020000, ABSOLUTE)
  2224. Exec Addr Load Addr Size Type Attr Idx E Section Name Object
  2225. 0x08000000 0x08000000 0x000000c0 Data RO 2793 RESET startup_ac780x.o
  2226. 0x080000c0 0x080000c0 0x00000008 Code RO 3007 * !!!main c_p.l(__main.o)
  2227. 0x080000c8 0x080000c8 0x0000003c Code RO 3384 !!!scatter c_p.l(__scatter.o)
  2228. 0x08000104 0x08000104 0x0000001a Code RO 3386 !!handler_copy c_p.l(__scatter_copy.o)
  2229. 0x0800011e 0x0800011e 0x00000002 PAD
  2230. 0x08000120 0x08000120 0x0000001c Code RO 3388 !!handler_zi c_p.l(__scatter_zi.o)
  2231. 0x0800013c 0x0800013c 0x00000002 Code RO 3172 .ARM.Collect$$libinit$$00000000 c_p.l(libinit.o)
  2232. 0x0800013e 0x0800013e 0x00000000 Code RO 3174 .ARM.Collect$$libinit$$00000002 c_p.l(libinit2.o)
  2233. 0x0800013e 0x0800013e 0x00000000 Code RO 3176 .ARM.Collect$$libinit$$00000004 c_p.l(libinit2.o)
  2234. 0x0800013e 0x0800013e 0x00000000 Code RO 3179 .ARM.Collect$$libinit$$0000000A c_p.l(libinit2.o)
  2235. 0x0800013e 0x0800013e 0x00000000 Code RO 3181 .ARM.Collect$$libinit$$0000000C c_p.l(libinit2.o)
  2236. 0x0800013e 0x0800013e 0x00000000 Code RO 3183 .ARM.Collect$$libinit$$0000000E c_p.l(libinit2.o)
  2237. 0x0800013e 0x0800013e 0x00000000 Code RO 3186 .ARM.Collect$$libinit$$00000011 c_p.l(libinit2.o)
  2238. 0x0800013e 0x0800013e 0x00000000 Code RO 3188 .ARM.Collect$$libinit$$00000013 c_p.l(libinit2.o)
  2239. 0x0800013e 0x0800013e 0x00000000 Code RO 3190 .ARM.Collect$$libinit$$00000015 c_p.l(libinit2.o)
  2240. 0x0800013e 0x0800013e 0x00000000 Code RO 3192 .ARM.Collect$$libinit$$00000017 c_p.l(libinit2.o)
  2241. 0x0800013e 0x0800013e 0x00000000 Code RO 3194 .ARM.Collect$$libinit$$00000019 c_p.l(libinit2.o)
  2242. 0x0800013e 0x0800013e 0x00000000 Code RO 3196 .ARM.Collect$$libinit$$0000001B c_p.l(libinit2.o)
  2243. 0x0800013e 0x0800013e 0x00000000 Code RO 3198 .ARM.Collect$$libinit$$0000001D c_p.l(libinit2.o)
  2244. 0x0800013e 0x0800013e 0x00000000 Code RO 3200 .ARM.Collect$$libinit$$0000001F c_p.l(libinit2.o)
  2245. 0x0800013e 0x0800013e 0x00000000 Code RO 3202 .ARM.Collect$$libinit$$00000021 c_p.l(libinit2.o)
  2246. 0x0800013e 0x0800013e 0x00000000 Code RO 3204 .ARM.Collect$$libinit$$00000023 c_p.l(libinit2.o)
  2247. 0x0800013e 0x0800013e 0x00000000 Code RO 3206 .ARM.Collect$$libinit$$00000025 c_p.l(libinit2.o)
  2248. 0x0800013e 0x0800013e 0x00000000 Code RO 3210 .ARM.Collect$$libinit$$0000002C c_p.l(libinit2.o)
  2249. 0x0800013e 0x0800013e 0x00000000 Code RO 3212 .ARM.Collect$$libinit$$0000002E c_p.l(libinit2.o)
  2250. 0x0800013e 0x0800013e 0x00000000 Code RO 3214 .ARM.Collect$$libinit$$00000030 c_p.l(libinit2.o)
  2251. 0x0800013e 0x0800013e 0x00000000 Code RO 3216 .ARM.Collect$$libinit$$00000032 c_p.l(libinit2.o)
  2252. 0x0800013e 0x0800013e 0x00000002 Code RO 3217 .ARM.Collect$$libinit$$00000033 c_p.l(libinit2.o)
  2253. 0x08000140 0x08000140 0x00000002 Code RO 3365 .ARM.Collect$$libshutdown$$00000000 c_p.l(libshutdown.o)
  2254. 0x08000142 0x08000142 0x00000000 Code RO 3219 .ARM.Collect$$libshutdown$$00000002 c_p.l(libshutdown2.o)
  2255. 0x08000142 0x08000142 0x00000000 Code RO 3221 .ARM.Collect$$libshutdown$$00000004 c_p.l(libshutdown2.o)
  2256. 0x08000142 0x08000142 0x00000000 Code RO 3223 .ARM.Collect$$libshutdown$$00000006 c_p.l(libshutdown2.o)
  2257. 0x08000142 0x08000142 0x00000000 Code RO 3226 .ARM.Collect$$libshutdown$$00000009 c_p.l(libshutdown2.o)
  2258. 0x08000142 0x08000142 0x00000000 Code RO 3229 .ARM.Collect$$libshutdown$$0000000C c_p.l(libshutdown2.o)
  2259. 0x08000142 0x08000142 0x00000000 Code RO 3231 .ARM.Collect$$libshutdown$$0000000E c_p.l(libshutdown2.o)
  2260. 0x08000142 0x08000142 0x00000000 Code RO 3234 .ARM.Collect$$libshutdown$$00000011 c_p.l(libshutdown2.o)
  2261. 0x08000142 0x08000142 0x00000002 Code RO 3235 .ARM.Collect$$libshutdown$$00000012 c_p.l(libshutdown2.o)
  2262. 0x08000144 0x08000144 0x00000000 Code RO 3026 .ARM.Collect$$rtentry$$00000000 c_p.l(__rtentry.o)
  2263. 0x08000144 0x08000144 0x00000000 Code RO 3044 .ARM.Collect$$rtentry$$00000002 c_p.l(__rtentry2.o)
  2264. 0x08000144 0x08000144 0x00000006 Code RO 3056 .ARM.Collect$$rtentry$$00000004 c_p.l(__rtentry4.o)
  2265. 0x0800014a 0x0800014a 0x00000000 Code RO 3046 .ARM.Collect$$rtentry$$00000009 c_p.l(__rtentry2.o)
  2266. 0x0800014a 0x0800014a 0x00000004 Code RO 3047 .ARM.Collect$$rtentry$$0000000A c_p.l(__rtentry2.o)
  2267. 0x0800014e 0x0800014e 0x00000000 Code RO 3049 .ARM.Collect$$rtentry$$0000000C c_p.l(__rtentry2.o)
  2268. 0x0800014e 0x0800014e 0x00000008 Code RO 3050 .ARM.Collect$$rtentry$$0000000D c_p.l(__rtentry2.o)
  2269. 0x08000156 0x08000156 0x00000002 Code RO 3245 .ARM.Collect$$rtexit$$00000000 c_p.l(rtexit.o)
  2270. 0x08000158 0x08000158 0x00000000 Code RO 3303 .ARM.Collect$$rtexit$$00000002 c_p.l(rtexit2.o)
  2271. 0x08000158 0x08000158 0x00000004 Code RO 3304 .ARM.Collect$$rtexit$$00000003 c_p.l(rtexit2.o)
  2272. 0x0800015c 0x0800015c 0x00000006 Code RO 3305 .ARM.Collect$$rtexit$$00000004 c_p.l(rtexit2.o)
  2273. 0x08000162 0x08000162 0x00000002 PAD
  2274. 0x08000164 0x08000164 0x00000038 Code RO 2995 .emb_text c_p.l(rt_memcpy.o)
  2275. 0x0800019c 0x0800019c 0x00000078 Code RO 2794 .text startup_ac780x.o
  2276. 0x08000214 0x08000214 0x00000082 Code RO 2996 .text c_p.l(rt_memcpy.o)
  2277. 0x08000296 0x08000296 0x00000040 Code RO 2999 .text c_p.l(rt_memclr.o)
  2278. 0x080002d6 0x080002d6 0x00000006 Code RO 3005 .text c_p.l(heapauxi.o)
  2279. 0x080002dc 0x080002dc 0x00000160 Code RO 3015 .text fz_ps.l(fdiv.o)
  2280. 0x0800043c 0x0800043c 0x00000030 Code RO 3018 .text fz_ps.l(ffixui.o)
  2281. 0x0800046c 0x0800046c 0x0000004a Code RO 3020 .text fz_ps.l(ffixul.o)
  2282. 0x080004b6 0x080004b6 0x0000005e Code RO 3022 .text fz_ps.l(fflti.o)
  2283. 0x08000514 0x08000514 0x00000044 Code RO 3024 .text fz_ps.l(fscalbn.o)
  2284. 0x08000558 0x08000558 0x0000003e Code RO 3083 .text c_p.l(sys_stackheap_outer.o)
  2285. 0x08000596 0x08000596 0x00000010 Code RO 3157 .text c_p.l(exit.o)
  2286. 0x080005a6 0x080005a6 0x00000002 PAD
  2287. 0x080005a8 0x080005a8 0x00000008 Code RO 3238 .text c_p.l(libspace.o)
  2288. 0x080005b0 0x080005b0 0x00000002 Code RO 3241 .text c_p.l(use_no_semi.o)
  2289. 0x080005b2 0x080005b2 0x00000000 Code RO 3243 .text c_p.l(indicate_semi.o)
  2290. 0x080005b2 0x080005b2 0x00000002 PAD
  2291. 0x080005b4 0x080005b4 0x0000000c Code RO 3300 .text c_p.l(sys_exit.o)
  2292. 0x080005c0 0x080005c0 0x0000001c Code RO 704 i.ACMP0_IRQHandler ac780x_acmp.o
  2293. 0x080005dc 0x080005dc 0x00000020 Code RO 759 i.ADC0_IRQHandler ac780x_adc.o
  2294. 0x080005fc 0x080005fc 0x00000010 Code RO 840 i.CAN0_Handler ac780x_can.o
  2295. 0x0800060c 0x0800060c 0x00000048 Code RO 844 i.CAN_HandleEvent ac780x_can.o
  2296. 0x08000654 0x08000654 0x00000040 Code RO 969 i.CKGEN_Enable ac780x_ckgen.o
  2297. 0x08000694 0x08000694 0x00000014 Code RO 970 i.CKGEN_SetAPBClockDivider ac780x_ckgen.o
  2298. 0x080006a8 0x080006a8 0x00000012 Code RO 973 i.CKGEN_SetPLLReference ac780x_ckgen.o
  2299. 0x080006ba 0x080006ba 0x00000002 PAD
  2300. 0x080006bc 0x080006bc 0x00000018 Code RO 974 i.CKGEN_SetPllFeedbackDiv ac780x_ckgen.o
  2301. 0x080006d4 0x080006d4 0x00000018 Code RO 975 i.CKGEN_SetPllPostDiv ac780x_ckgen.o
  2302. 0x080006ec 0x080006ec 0x00000014 Code RO 976 i.CKGEN_SetPllPrevDiv ac780x_ckgen.o
  2303. 0x08000700 0x08000700 0x00000012 Code RO 977 i.CKGEN_SetSysclkDiv ac780x_ckgen.o
  2304. 0x08000712 0x08000712 0x00000010 Code RO 978 i.CKGEN_SetSysclkSrc ac780x_ckgen.o
  2305. 0x08000722 0x08000722 0x00000040 Code RO 979 i.CKGEN_SoftReset ac780x_ckgen.o
  2306. 0x08000762 0x08000762 0x00000002 PAD
  2307. 0x08000764 0x08000764 0x0000003c Code RO 363 i.Config_Init cfg.o
  2308. 0x080007a0 0x080007a0 0x00000024 Code RO 1131 i.DMA0_Channel0_IRQHandler ac780x_dma.o
  2309. 0x080007c4 0x080007c4 0x00000024 Code RO 1132 i.DMA0_Channel1_IRQHandler ac780x_dma.o
  2310. 0x080007e8 0x080007e8 0x00000024 Code RO 1133 i.DMA0_Channel2_IRQHandler ac780x_dma.o
  2311. 0x0800080c 0x0800080c 0x00000024 Code RO 1134 i.DMA0_Channel3_IRQHandler ac780x_dma.o
  2312. 0x08000830 0x08000830 0x0000000a Code RO 1135 i.DMA_ChannelFlush ac780x_dma.o
  2313. 0x0800083a 0x0800083a 0x00000010 Code RO 1136 i.DMA_ChannelHardRst ac780x_dma.o
  2314. 0x0800084a 0x0800084a 0x0000001a Code RO 1137 i.DMA_ClearFlag ac780x_dma.o
  2315. 0x08000864 0x08000864 0x00000074 Code RO 1138 i.DMA_DeInit ac780x_dma.o
  2316. 0x080008d8 0x080008d8 0x00000144 Code RO 1142 i.DMA_Init ac780x_dma.o
  2317. 0x08000a1c 0x08000a1c 0x0000000c Code RO 1144 i.DMA_SetChannel ac780x_dma.o
  2318. 0x08000a28 0x08000a28 0x0000002c Code RO 1239 i.ECC_SRAM_IRQHandler ac780x_ecc_sram.o
  2319. 0x08000a54 0x08000a54 0x00000010 Code RO 1299 i.EFLASH_LockCtrl ac780x_eflash.o
  2320. 0x08000a64 0x08000a64 0x00000058 Code RO 1304 i.EFLASH_PageErase ac780x_eflash.o
  2321. 0x08000abc 0x08000abc 0x0000004c Code RO 1305 i.EFLASH_PageEraseVerify ac780x_eflash.o
  2322. 0x08000b08 0x08000b08 0x00000080 Code RO 1306 i.EFLASH_PageProgram ac780x_eflash.o
  2323. 0x08000b88 0x08000b88 0x00000010 Code RO 1310 i.EFLASH_TrigCtrlCmdReg ac780x_eflash.o
  2324. 0x08000b98 0x08000b98 0x00000038 Code RO 1311 i.EFLASH_UnlockCtrl ac780x_eflash.o
  2325. 0x08000bd0 0x08000bd0 0x00000024 Code RO 1312 i.EFLASH_WaitEop ac780x_eflash.o
  2326. 0x08000bf4 0x08000bf4 0x00000044 Code RO 1313 i.EFLASH_WaitForLastOperation ac780x_eflash.o
  2327. 0x08000c38 0x08000c38 0x00000028 Code RO 1415 i.EXTI0_IRQHandler ac780x_gpio.o
  2328. 0x08000c60 0x08000c60 0x00000028 Code RO 1416 i.EXTI1_IRQHandler ac780x_gpio.o
  2329. 0x08000c88 0x08000c88 0x00000028 Code RO 1417 i.EXTI2_IRQHandler ac780x_gpio.o
  2330. 0x08000cb0 0x08000cb0 0x00000044 Code RO 1418 i.EXTI3_8_IRQHandler ac780x_gpio.o
  2331. 0x08000cf4 0x08000cf4 0x00000044 Code RO 1419 i.EXTI9_15_IRQHandler ac780x_gpio.o
  2332. 0x08000d38 0x08000d38 0x00000020 Code RO 364 i.Factory_reset cfg.o
  2333. 0x08000d58 0x08000d58 0x00000010 Code RO 1420 i.GPIO_ClearPendingExtInterrupt ac780x_gpio.o
  2334. 0x08000d68 0x08000d68 0x0000005c Code RO 1425 i.GPIO_GetPendingExtIntSource ac780x_gpio.o
  2335. 0x08000dc4 0x08000dc4 0x0000000c Code RO 1426 i.GPIO_GetPendingExtInterrupt ac780x_gpio.o
  2336. 0x08000dd0 0x08000dd0 0x0000000a Code RO 1428 i.GPIO_GetPinLevel ac780x_gpio.o
  2337. 0x08000dda 0x08000dda 0x00000002 PAD
  2338. 0x08000ddc 0x08000ddc 0x000000a4 Code RO 615 i.GPIO_PortInit gpio.o
  2339. 0x08000e80 0x08000e80 0x00000012 Code RO 1433 i.GPIO_SetDir ac780x_gpio.o
  2340. 0x08000e92 0x08000e92 0x00000002 PAD
  2341. 0x08000e94 0x08000e94 0x000000a0 Code RO 1436 i.GPIO_SetFunc ac780x_gpio.o
  2342. 0x08000f34 0x08000f34 0x00000012 Code RO 1442 i.GPIO_SetPinLevel ac780x_gpio.o
  2343. 0x08000f46 0x08000f46 0x00000012 Code RO 1446 i.GPIO_SetPullup ac780x_gpio.o
  2344. 0x08000f58 0x08000f58 0x0000002c Code RO 1627 i.I2C0_IRQHandler ac780x_i2c.o
  2345. 0x08000f84 0x08000f84 0x0000002c Code RO 1628 i.I2C1_IRQHandler ac780x_i2c.o
  2346. 0x08000fb0 0x08000fb0 0x0000000e Code RO 1629 i.I2C_ClearStartFlag ac780x_i2c.o
  2347. 0x08000fbe 0x08000fbe 0x00000002 PAD
  2348. 0x08000fc0 0x08000fc0 0x000001ac Code RO 1634 i.I2C_MasterIntHandler ac780x_i2c.o
  2349. 0x0800116c 0x0800116c 0x0000006c Code RO 1638 i.I2C_MasterSlaveIntHandler ac780x_i2c.o
  2350. 0x080011d8 0x080011d8 0x00000012 Code RO 1642 i.I2C_ReceiveLastOneByte ac780x_i2c.o
  2351. 0x080011ea 0x080011ea 0x00000002 PAD
  2352. 0x080011ec 0x080011ec 0x00000158 Code RO 1648 i.I2C_SlaveIntHandler ac780x_i2c.o
  2353. 0x08001344 0x08001344 0x00000014 Code RO 2805 i.InitDelay system_ac780x.o
  2354. 0x08001358 0x08001358 0x0000008c Code RO 2394 i.NMI_Handler ac780x_spm.o
  2355. 0x080013e4 0x080013e4 0x00000028 Code RO 2395 i.PVD_IRQHandler ac780x_spm.o
  2356. 0x0800140c 0x0800140c 0x00000010 Code RO 1876 i.PWDT0_IRQHandler ac780x_pwdt.o
  2357. 0x0800141c 0x0800141c 0x00000010 Code RO 1877 i.PWDT1_IRQHandler ac780x_pwdt.o
  2358. 0x0800142c 0x0800142c 0x00000050 Code RO 1878 i.PWDT_CommonISR ac780x_pwdt.o
  2359. 0x0800147c 0x0800147c 0x00000010 Code RO 1945 i.PWM0_IRQHandler ac780x_pwm.o
  2360. 0x0800148c 0x0800148c 0x00000010 Code RO 1946 i.PWM1_IRQHandler ac780x_pwm.o
  2361. 0x0800149c 0x0800149c 0x00000058 Code RO 1947 i.PWM_CommonISR ac780x_pwm.o
  2362. 0x080014f4 0x080014f4 0x0000000c Code RO 407 i.Process_CoverStatus process.o
  2363. 0x08001500 0x08001500 0x0000008c Code RO 408 i.Process_Init process.o
  2364. 0x0800158c 0x0800158c 0x0000000c Code RO 409 i.Process_LockStatus process.o
  2365. 0x08001598 0x08001598 0x00000038 Code RO 410 i.Process_RunLedPrd process.o
  2366. 0x080015d0 0x080015d0 0x000000bc Code RO 411 i.Process_ThreeStatus process.o
  2367. 0x0800168c 0x0800168c 0x0000000c Code RO 412 i.Process_UnlockStatus process.o
  2368. 0x08001698 0x08001698 0x00000014 Code RO 2151 i.RTC_ClearRPIF ac780x_rtc.o
  2369. 0x080016ac 0x080016ac 0x00000018 Code RO 2152 i.RTC_ClearRTIF ac780x_rtc.o
  2370. 0x080016c4 0x080016c4 0x00000030 Code RO 2154 i.RTC_IRQHandler ac780x_rtc.o
  2371. 0x080016f4 0x080016f4 0x0000001c Code RO 274 i.Read_Addr protocol.o
  2372. 0x08001710 0x08001710 0x0000001c Code RO 275 i.Read_Baudrate protocol.o
  2373. 0x0800172c 0x0800172c 0x00000030 Code RO 276 i.Read_Deviceid protocol.o
  2374. 0x0800175c 0x0800175c 0x00000020 Code RO 277 i.Read_Devicetype protocol.o
  2375. 0x0800177c 0x0800177c 0x00000038 Code RO 278 i.Read_FirmwareVersion protocol.o
  2376. 0x080017b4 0x080017b4 0x00000020 Code RO 279 i.Read_HardwareVersion protocol.o
  2377. 0x080017d4 0x080017d4 0x00000022 Code RO 280 i.Read_LockStatus protocol.o
  2378. 0x080017f6 0x080017f6 0x0000000a Code RO 365 i.ResetConfig cfg.o
  2379. 0x08001800 0x08001800 0x00000028 Code RO 2217 i.SPI0_IRQHandler ac780x_spi.o
  2380. 0x08001828 0x08001828 0x00000028 Code RO 2218 i.SPI1_IRQHandler ac780x_spi.o
  2381. 0x08001850 0x08001850 0x00000014 Code RO 2223 i.SPI_InterruptHandler ac780x_spi.o
  2382. 0x08001864 0x08001864 0x00000144 Code RO 2224 i.SPI_MasterInterruptHandler ac780x_spi.o
  2383. 0x080019a8 0x080019a8 0x00000010 Code RO 2231 i.SPI_SetRxFInterrupt ac780x_spi.o
  2384. 0x080019b8 0x080019b8 0x0000000e Code RO 2232 i.SPI_SetRxOnly ac780x_spi.o
  2385. 0x080019c6 0x080019c6 0x00000010 Code RO 2233 i.SPI_SetTxEInterrupt ac780x_spi.o
  2386. 0x080019d6 0x080019d6 0x00000002 PAD
  2387. 0x080019d8 0x080019d8 0x000000ec Code RO 2235 i.SPI_SlaveInterruptHandler ac780x_spi.o
  2388. 0x08001ac4 0x08001ac4 0x00000054 Code RO 2403 i.SPM_EnablePLL ac780x_spm.o
  2389. 0x08001b18 0x08001b18 0x00000088 Code RO 2405 i.SPM_EnableXOSC ac780x_spm.o
  2390. 0x08001ba0 0x08001ba0 0x00000010 Code RO 2408 i.SPM_GetModuleWakeupSourceFlag ac780x_spm.o
  2391. 0x08001bb0 0x08001bb0 0x00000028 Code RO 2409 i.SPM_IRQHandler ac780x_spm.o
  2392. 0x08001bd8 0x08001bd8 0x00000014 Code RO 2412 i.SPM_XOSCOKBypassSet ac780x_spm.o
  2393. 0x08001bec 0x08001bec 0x00000044 Code RO 366 i.SaveConfig cfg.o
  2394. 0x08001c30 0x08001c30 0x00000044 Code RO 2806 i.SetEflashClock system_ac780x.o
  2395. 0x08001c74 0x08001c74 0x00000064 Code RO 2808 i.SetHSEClock system_ac780x.o
  2396. 0x08001cd8 0x08001cd8 0x00000030 Code RO 2815 i.SysTickDelay system_ac780x.o
  2397. 0x08001d08 0x08001d08 0x00000018 Code RO 2816 i.SysTickRepeatDelay system_ac780x.o
  2398. 0x08001d20 0x08001d20 0x00000030 Code RO 2818 i.SystemInit system_ac780x.o
  2399. 0x08001d50 0x08001d50 0x00000010 Code RO 2531 i.TIMER_Channel0_IRQHandler ac780x_timer.o
  2400. 0x08001d60 0x08001d60 0x00000010 Code RO 2532 i.TIMER_Channel1_IRQHandler ac780x_timer.o
  2401. 0x08001d70 0x08001d70 0x00000010 Code RO 2533 i.TIMER_Channel2_IRQHandler ac780x_timer.o
  2402. 0x08001d80 0x08001d80 0x00000010 Code RO 2534 i.TIMER_Channel3_IRQHandler ac780x_timer.o
  2403. 0x08001d90 0x08001d90 0x00000034 Code RO 2535 i.TIMER_CommonISR ac780x_timer.o
  2404. 0x08001dc4 0x08001dc4 0x00000094 Code RO 2538 i.TIMER_Init ac780x_timer.o
  2405. 0x08001e58 0x08001e58 0x00000030 Code RO 589 i.TIMER_PrdInit timer.o
  2406. 0x08001e88 0x08001e88 0x00000038 Code RO 590 i.TIM_CHN2_Callback timer.o
  2407. 0x08001ec0 0x08001ec0 0x00000010 Code RO 233 i.Task_Handle main_task.o
  2408. 0x08001ed0 0x08001ed0 0x00000008 Code RO 234 i.Task_Init main_task.o
  2409. 0x08001ed8 0x08001ed8 0x00000010 Code RO 2614 i.UART0_IRQHandler ac780x_uart.o
  2410. 0x08001ee8 0x08001ee8 0x00000010 Code RO 2615 i.UART1_IRQHandler ac780x_uart.o
  2411. 0x08001ef8 0x08001ef8 0x00000010 Code RO 2616 i.UART2_IRQHandler ac780x_uart.o
  2412. 0x08001f08 0x08001f08 0x0000011c Code RO 2619 i.UART_Init ac780x_uart.o
  2413. 0x08002024 0x08002024 0x00000038 Code RO 2620 i.UART_InterruptHandler ac780x_uart.o
  2414. 0x0800205c 0x0800205c 0x00000090 Code RO 2621 i.UART_ReceiveDMA ac780x_uart.o
  2415. 0x080020ec 0x080020ec 0x00000078 Code RO 2624 i.UART_SetBaudrate ac780x_uart.o
  2416. 0x08002164 0x08002164 0x00000038 Code RO 2627 i.UART_SetParity ac780x_uart.o
  2417. 0x0800219c 0x0800219c 0x00000094 Code RO 2628 i.UART_TransmitDMA ac780x_uart.o
  2418. 0x08002230 0x08002230 0x00000234 Code RO 235 i.Uart0_RxDataHandle main_task.o
  2419. 0x08002464 0x08002464 0x00000002 Code RO 635 i.UartRxDMAEventCallback uart.o
  2420. 0x08002466 0x08002466 0x00000002 PAD
  2421. 0x08002468 0x08002468 0x0000002c Code RO 636 i.UartRxIdleCallBack uart.o
  2422. 0x08002494 0x08002494 0x00000010 Code RO 637 i.UartTxDMAEventCallback uart.o
  2423. 0x080024a4 0x080024a4 0x0000001c Code RO 2738 i.WDG_IRQHandler ac780x_wdg.o
  2424. 0x080024c0 0x080024c0 0x00000018 Code RO 281 i.Write_Addr protocol.o
  2425. 0x080024d8 0x080024d8 0x00000020 Code RO 282 i.Write_Baudrate protocol.o
  2426. 0x080024f8 0x080024f8 0x0000002c Code RO 283 i.Write_Deviceid protocol.o
  2427. 0x08002524 0x08002524 0x00000020 Code RO 284 i.Write_Devicetype protocol.o
  2428. 0x08002544 0x08002544 0x00000020 Code RO 285 i.Write_HardwareVersion protocol.o
  2429. 0x08002564 0x08002564 0x0000001a Code RO 681 i.__ARM_common_switch8 uart.o
  2430. 0x0800257e 0x0800257e 0x00000002 PAD
  2431. 0x08002580 0x08002580 0x00000020 Code RO 2541 i.__NVIC_DisableIRQ ac780x_timer.o
  2432. 0x080025a0 0x080025a0 0x00000028 Code RO 489 i.crc16 crc16.o
  2433. 0x080025c8 0x080025c8 0x0000001e Code RO 3 i.main main.o
  2434. 0x080025e6 0x080025e6 0x00000002 PAD
  2435. 0x080025e8 0x080025e8 0x00000024 Code RO 2819 i.mdelay system_ac780x.o
  2436. 0x0800260c 0x0800260c 0x0000002c Code RO 638 i.uart0_RecvData uart.o
  2437. 0x08002638 0x08002638 0x00000040 Code RO 639 i.uart0_TransmitData uart.o
  2438. 0x08002678 0x08002678 0x000000e4 Code RO 640 i.uart_Initialize uart.o
  2439. 0x0800275c 0x0800275c 0x0000008c Code RO 3009 x$fpl$fadd fz_ps.l(faddsub.o)
  2440. 0x080027e8 0x080027e8 0x00000018 Code RO 3010 x$fpl$frsb fz_ps.l(faddsub.o)
  2441. 0x08002800 0x08002800 0x000000d0 Code RO 3011 x$fpl$fsub fz_ps.l(faddsub.o)
  2442. 0x080028d0 0x080028d0 0x00000000 Code RO 3042 x$fpl$usenofp fz_ps.l(usenofp.o)
  2443. 0x080028d0 0x080028d0 0x00000200 Data RO 490 .constdata crc16.o
  2444. 0x08002ad0 0x08002ad0 0x00000020 Data RO 1146 .constdata ac780x_dma.o
  2445. 0x08002af0 0x08002af0 0x00000004 Data RO 2543 .constdata ac780x_timer.o
  2446. 0x08002af4 0x08002af4 0x00000040 Data RO 3016 .constdata fz_ps.l(fdiv.o)
  2447. 0x08002b34 0x08002b34 0x00000020 Data RO 3382 Region$$Table anon$$obj.o
  2448. Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x08002b54, Size: 0x00000730, Max: 0x00005000, ABSOLUTE)
  2449. Exec Addr Load Addr Size Type Attr Idx E Section Name Object
  2450. 0x20000000 0x08002b54 0x00000020 Data RW 286 .data protocol.o
  2451. 0x20000020 0x08002b74 0x00000004 Data RW 368 .data cfg.o
  2452. 0x20000024 0x08002b78 0x0000000c Data RW 413 .data process.o
  2453. 0x20000030 0x08002b84 0x00000004 Data RW 710 .data ac780x_acmp.o
  2454. 0x20000034 0x08002b88 0x00000004 Data RW 770 .data ac780x_adc.o
  2455. 0x20000038 0x08002b8c 0x00000004 Data RW 1243 .data ac780x_ecc_sram.o
  2456. 0x2000003c 0x08002b90 0x00000010 Data RW 1661 .data ac780x_i2c.o
  2457. 0x2000004c 0x08002ba0 0x00000008 Data RW 1885 .data ac780x_pwdt.o
  2458. 0x20000054 0x08002ba8 0x00000008 Data RW 1981 .data ac780x_pwm.o
  2459. 0x2000005c 0x08002bb0 0x00000004 Data RW 2159 .data ac780x_rtc.o
  2460. 0x20000060 0x08002bb4 0x00000038 Data RW 2245 .data ac780x_spi.o
  2461. 0x20000098 0x08002bec 0x00000008 Data RW 2413 .data ac780x_spm.o
  2462. 0x200000a0 0x08002bf4 0x00000004 Data RW 2743 .data ac780x_wdg.o
  2463. 0x200000a4 0x08002bf8 0x00000014 Data RW 2821 .data system_ac780x.o
  2464. 0x200000b8 - 0x00000018 Zero RW 367 .bss cfg.o
  2465. 0x200000d0 - 0x00000190 Zero RW 641 .bss uart.o
  2466. 0x20000260 - 0x0000000c Zero RW 858 .bss ac780x_can.o
  2467. 0x2000026c - 0x00000010 Zero RW 1145 .bss ac780x_dma.o
  2468. 0x2000027c - 0x00000014 Zero RW 1448 .bss ac780x_gpio.o
  2469. 0x20000290 - 0x00000020 Zero RW 1659 .bss ac780x_i2c.o
  2470. 0x200002b0 - 0x00000010 Zero RW 2542 .bss ac780x_timer.o
  2471. 0x200002c0 - 0x0000000c Zero RW 2631 .bss ac780x_uart.o
  2472. 0x200002cc - 0x00000060 Zero RW 3239 .bss c_p.l(libspace.o)
  2473. 0x2000032c 0x08002c0c 0x00000004 PAD
  2474. 0x20000330 - 0x00000000 Zero RW 2792 HEAP startup_ac780x.o
  2475. 0x20000330 - 0x00000400 Zero RW 2791 STACK startup_ac780x.o
  2476. ==============================================================================
  2477. Image component sizes
  2478. Code (inc. data) RO Data RW Data ZI Data Debug Object Name
  2479. 28 8 0 4 0 12547 ac780x_acmp.o
  2480. 32 10 0 4 0 4270 ac780x_adc.o
  2481. 88 16 0 0 12 7308 ac780x_can.o
  2482. 268 16 0 0 0 5292 ac780x_ckgen.o
  2483. 648 60 32 0 16 13320 ac780x_dma.o
  2484. 44 10 0 4 0 1722 ac780x_ecc_sram.o
  2485. 484 48 0 0 0 8605 ac780x_eflash.o
  2486. 600 56 0 0 20 9214 ac780x_gpio.o
  2487. 1000 40 0 16 32 13984 ac780x_i2c.o
  2488. 112 16 0 8 0 4154 ac780x_pwdt.o
  2489. 120 18 0 8 0 8312 ac780x_pwm.o
  2490. 92 18 0 4 0 3297 ac780x_rtc.o
  2491. 706 38 0 56 0 10871 ac780x_spi.o
  2492. 476 58 0 8 0 5649 ac780x_spm.o
  2493. 296 52 4 0 16 5661 ac780x_timer.o
  2494. 856 46 0 0 12 10043 ac780x_uart.o
  2495. 28 10 0 4 0 649 ac780x_wdg.o
  2496. 170 34 0 4 24 3162 cfg.o
  2497. 0 0 0 0 0 11132 comm.o
  2498. 40 4 512 0 0 1104 crc16.o
  2499. 164 4 0 0 0 472 gpio.o
  2500. 30 0 0 0 0 92303 main.o
  2501. 588 22 0 0 0 2567 main_task.o
  2502. 420 46 0 12 0 3391 process.o
  2503. 422 48 0 32 0 7167 protocol.o
  2504. 120 60 192 0 1024 696 startup_ac780x.o
  2505. 344 54 0 20 0 4836 system_ac780x.o
  2506. 104 28 0 0 0 976 timer.o
  2507. 424 104 0 0 400 20871 uart.o
  2508. ----------------------------------------------------------------------
  2509. 8724 924 772 184 1556 273575 Object Totals
  2510. 0 0 32 0 0 0 (incl. Generated)
  2511. 20 0 0 0 0 0 (incl. Padding)
  2512. ----------------------------------------------------------------------
  2513. Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name
  2514. 8 0 0 0 0 68 __main.o
  2515. 0 0 0 0 0 0 __rtentry.o
  2516. 12 0 0 0 0 0 __rtentry2.o
  2517. 6 0 0 0 0 0 __rtentry4.o
  2518. 60 8 0 0 0 0 __scatter.o
  2519. 26 0 0 0 0 0 __scatter_copy.o
  2520. 28 0 0 0 0 0 __scatter_zi.o
  2521. 16 0 0 0 0 68 exit.o
  2522. 6 0 0 0 0 136 heapauxi.o
  2523. 0 0 0 0 0 0 indicate_semi.o
  2524. 2 0 0 0 0 0 libinit.o
  2525. 2 0 0 0 0 0 libinit2.o
  2526. 2 0 0 0 0 0 libshutdown.o
  2527. 2 0 0 0 0 0 libshutdown2.o
  2528. 8 4 0 0 96 68 libspace.o
  2529. 64 0 0 0 0 108 rt_memclr.o
  2530. 186 0 0 0 0 144 rt_memcpy.o
  2531. 2 0 0 0 0 0 rtexit.o
  2532. 10 0 0 0 0 0 rtexit2.o
  2533. 12 4 0 0 0 60 sys_exit.o
  2534. 62 0 0 0 0 80 sys_stackheap_outer.o
  2535. 2 0 0 0 0 68 use_no_semi.o
  2536. 372 8 0 0 0 240 faddsub.o
  2537. 352 10 64 0 0 92 fdiv.o
  2538. 48 0 0 0 0 60 ffixui.o
  2539. 74 0 0 0 0 68 ffixul.o
  2540. 94 0 0 0 0 92 fflti.o
  2541. 68 4 0 0 0 68 fscalbn.o
  2542. 0 0 0 0 0 0 usenofp.o
  2543. ----------------------------------------------------------------------
  2544. 1532 38 64 0 100 1420 Library Totals
  2545. 8 0 0 0 4 0 (incl. Padding)
  2546. ----------------------------------------------------------------------
  2547. Code (inc. data) RO Data RW Data ZI Data Debug Library Name
  2548. 516 16 0 0 96 800 c_p.l
  2549. 1008 22 64 0 0 620 fz_ps.l
  2550. ----------------------------------------------------------------------
  2551. 1532 38 64 0 100 1420 Library Totals
  2552. ----------------------------------------------------------------------
  2553. ==============================================================================
  2554. Code (inc. data) RO Data RW Data ZI Data Debug
  2555. 10256 962 836 184 1656 268579 Grand Totals
  2556. 10256 962 836 184 1656 268579 ELF Image Totals
  2557. 10256 962 836 184 0 0 ROM Totals
  2558. ==============================================================================
  2559. Total RO Size (Code + RO Data) 11092 ( 10.83kB)
  2560. Total RW Size (RW Data + ZI Data) 1840 ( 1.80kB)
  2561. Total ROM Size (Code + RO Data + RW Data) 11276 ( 11.01kB)
  2562. ==============================================================================