123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616 |
- Component: ARM Compiler 5.06 update 7 (build 960) Tool: armlink [4d3601]
- ==============================================================================
- Section Cross References
- main.o(i.main) refers to system_ac780x.o(i.InitDelay) for InitDelay
- main.o(i.main) refers to cfg.o(i.Config_Init) for Config_Init
- main.o(i.main) refers to gpio.o(i.GPIO_PortInit) for GPIO_PortInit
- main.o(i.main) refers to process.o(i.Process_Init) for Process_Init
- main.o(i.main) refers to timer.o(i.TIMER_PrdInit) for TIMER_PrdInit
- main.o(i.main) refers to main_task.o(i.Task_Init) for Task_Init
- main.o(i.main) refers to main_task.o(i.Task_Handle) for Task_Handle
- comm.o(i.ComRxDataHandle) refers to fifo.o(i.Fifo_strchr) for Fifo_strchr
- comm.o(i.ComRxDataHandle) refers to fifo.o(i.fifo_Reset) for fifo_Reset
- comm.o(i.ComRxDataHandle) refers to fifo.o(i.fifo_retrieve) for fifo_retrieve
- comm.o(i.ComRxDataHandle) refers to cobs.o(i.cobs_decode) for cobs_decode
- comm.o(i.ComRxDataHandle) refers to crc16.o(i.crc16) for crc16
- comm.o(i.ComRxDataHandle) refers to comm.o(i.TransferExitHostHandle) for TransferExitHostHandle
- comm.o(i.ComRxDataHandle) refers to noretval__2printf.o(.text) for __2printf
- comm.o(i.ComRxDataHandle) refers to comm.o(i.DataTransferCmdHandle) for DataTransferCmdHandle
- comm.o(i.ComRxDataHandle) refers to comm.o(i.DataTransferRequestHostHandle) for DataTransferRequestHostHandle
- comm.o(i.ComRxDataHandle) refers to comm.o(i.TransferDataHostHandle) for TransferDataHostHandle
- comm.o(i.ComRxDataHandle) refers to comm.o(.bss) for .bss
- comm.o(i.Comm_Init) refers to fifo.o(i.fifo_Init) for fifo_Init
- comm.o(i.Comm_Init) refers to uart.o(i.uart_Initialize) for uart_Initialize
- comm.o(i.Comm_Init) refers to comm.o(.bss) for .bss
- comm.o(i.DataTransferCmdHandle) refers to noretval__2printf.o(.text) for __2printf
- comm.o(i.DataTransferCmdHandle) refers to comm.o(i.TransferExitHandle) for TransferExitHandle
- comm.o(i.DataTransferCmdHandle) refers to comm.o(i.DataTransferRequestHandle) for DataTransferRequestHandle
- comm.o(i.DataTransferCmdHandle) refers to comm.o(i.TransferDataHandle) for TransferDataHandle
- comm.o(i.DataTransferRequestHandle) refers to iap.o(i.IAP_Start) for IAP_Start
- comm.o(i.DataTransferRequestHandle) refers to crc16.o(i.crc16) for crc16
- comm.o(i.DataTransferRequestHandle) refers to comm.o(i.SendFrame) for SendFrame
- comm.o(i.DataTransferRequestHandle) refers to comm.o(.data) for .data
- comm.o(i.DataTransferRequestHostHandle) refers to _printf_pad.o(.text) for _printf_pre_padding
- comm.o(i.DataTransferRequestHostHandle) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- comm.o(i.DataTransferRequestHostHandle) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x
- comm.o(i.DataTransferRequestHostHandle) refers to _printf_hex_int.o(.text) for _printf_longlong_hex
- comm.o(i.DataTransferRequestHostHandle) refers to noretval__2printf.o(.text) for __2printf
- comm.o(i.DataTransferRequestHostHandle) refers to rt_memcpy.o(.text) for __aeabi_memcpy
- comm.o(i.DataTransferRequestHostHandle) refers to crc16.o(i.crc16) for crc16
- comm.o(i.DataTransferRequestHostHandle) refers to comm.o(i.SendFrame) for SendFrame
- comm.o(i.DataTransferRequestHostHandle) refers to comm.o(.bss) for .bss
- comm.o(i.DataTransferRequestHostHandle) refers to comm.o(.data) for .data
- comm.o(i.SendFrame) refers to cobs.o(i.cobs_encode) for cobs_encode
- comm.o(i.SendFrame) refers to uart.o(i.uart0_TransmitData) for uart0_TransmitData
- comm.o(i.SendFrame) refers to comm.o(.bss) for .bss
- comm.o(i.Start_IAPTest) refers to _printf_pad.o(.text) for _printf_pre_padding
- comm.o(i.Start_IAPTest) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- comm.o(i.Start_IAPTest) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x
- comm.o(i.Start_IAPTest) refers to _printf_hex_int.o(.text) for _printf_longlong_hex
- comm.o(i.Start_IAPTest) refers to noretval__2printf.o(.text) for __2printf
- comm.o(i.Start_IAPTest) refers to crc16.o(i.crc16) for crc16
- comm.o(i.Start_IAPTest) refers to comm.o(i.SendFrame) for SendFrame
- comm.o(i.Start_IAPTest) refers to comm.o(.data) for .data
- comm.o(i.Start_IAPTest) refers to comm.o(.bss) for .bss
- comm.o(i.TransferDataHandle) refers to iap.o(i.IAP_Stop) for IAP_Stop
- comm.o(i.TransferDataHandle) refers to iap.o(i.IAP_Write) for IAP_Write
- comm.o(i.TransferDataHandle) refers to crc16.o(i.crc16) for crc16
- comm.o(i.TransferDataHandle) refers to comm.o(i.SendFrame) for SendFrame
- comm.o(i.TransferDataHandle) refers to comm.o(.data) for .data
- comm.o(i.TransferDataHostHandle) refers to _printf_pad.o(.text) for _printf_pre_padding
- comm.o(i.TransferDataHostHandle) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- comm.o(i.TransferDataHostHandle) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x
- comm.o(i.TransferDataHostHandle) refers to _printf_hex_int.o(.text) for _printf_longlong_hex
- comm.o(i.TransferDataHostHandle) refers to noretval__2printf.o(.text) for __2printf
- comm.o(i.TransferDataHostHandle) refers to rt_memcpy.o(.text) for __aeabi_memcpy
- comm.o(i.TransferDataHostHandle) refers to crc16.o(i.crc16) for crc16
- comm.o(i.TransferDataHostHandle) refers to comm.o(i.SendFrame) for SendFrame
- comm.o(i.TransferDataHostHandle) refers to comm.o(.data) for .data
- comm.o(i.TransferDataHostHandle) refers to comm.o(.bss) for .bss
- comm.o(i.TransferExitHandle) refers to iap.o(i.IAP_Stop) for IAP_Stop
- comm.o(i.TransferExitHandle) refers to crc16.o(i.crc16) for crc16
- comm.o(i.TransferExitHandle) refers to comm.o(i.SendFrame) for SendFrame
- comm.o(i.TransferExitHandle) refers to comm.o(.data) for .data
- comm.o(i.TransferExitHandle) refers to cfg.o(.data) for config
- comm.o(i.TransferExitHostHandle) refers to _printf_pad.o(.text) for _printf_pre_padding
- comm.o(i.TransferExitHostHandle) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- comm.o(i.TransferExitHostHandle) refers to _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) for _printf_x
- comm.o(i.TransferExitHostHandle) refers to _printf_hex_int.o(.text) for _printf_longlong_hex
- comm.o(i.TransferExitHostHandle) refers to noretval__2printf.o(.text) for __2printf
- comm.o(i.TransferExitHostHandle) refers to crc16.o(i.crc16) for crc16
- comm.o(i.TransferExitHostHandle) refers to comm.o(i.SendFrame) for SendFrame
- comm.o(i.TransferExitHostHandle) refers to comm.o(.bss) for .bss
- iap.o(i.IAP_Start) refers to iap.o(.data) for .data
- iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_UnlockCtrl) for EFLASH_UnlockCtrl
- iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_PageErase) for EFLASH_PageErase
- iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_PageEraseVerify) for EFLASH_PageEraseVerify
- iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_PageProgram) for EFLASH_PageProgram
- iap.o(i.IAP_Stop) refers to ac780x_eflash.o(i.EFLASH_LockCtrl) for EFLASH_LockCtrl
- iap.o(i.IAP_Stop) refers to iap.o(.data) for .data
- iap.o(i.IAP_Stop) refers to iap.o(.bss) for .bss
- iap.o(i.IAP_Write) refers to rt_memcpy.o(.text) for __aeabi_memcpy
- iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_UnlockCtrl) for EFLASH_UnlockCtrl
- iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_PageErase) for EFLASH_PageErase
- iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_PageEraseVerify) for EFLASH_PageEraseVerify
- iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_PageProgram) for EFLASH_PageProgram
- iap.o(i.IAP_Write) refers to ac780x_eflash.o(i.EFLASH_LockCtrl) for EFLASH_LockCtrl
- iap.o(i.IAP_Write) refers to iap.o(.data) for .data
- iap.o(i.IAP_Write) refers to iap.o(.bss) for .bss
- main_task.o(i.Task_Handle) refers to process.o(i.Process_RunLedPrd) for Process_RunLedPrd
- main_task.o(i.Task_Handle) refers to process.o(i.Process_ThreeStatus) for Process_ThreeStatus
- main_task.o(i.Task_Handle) refers to main_task.o(i.Uart0_RxDataHandle) for Uart0_RxDataHandle
- main_task.o(i.Task_Init) refers to uart.o(i.uart_Initialize) for uart_Initialize
- main_task.o(i.Uart0_RxDataHandle) refers to crc16.o(i.crc16) for crc16
- main_task.o(i.Uart0_RxDataHandle) refers to rt_memcpy.o(.text) for __aeabi_memcpy
- main_task.o(i.Uart0_RxDataHandle) refers to uart.o(i.uart0_TransmitData) for uart0_TransmitData
- main_task.o(i.Uart0_RxDataHandle) refers to uart.o(i.uart0_RecvData) for uart0_RecvData
- main_task.o(i.Uart0_RxDataHandle) refers to ac780x_gpio.o(i.GPIO_SetPinLevel) for GPIO_SetPinLevel
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_FirmwareVersion) for Read_FirmwareVersion
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_HardwareVersion) for Read_HardwareVersion
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_Deviceid) for Read_Deviceid
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_Devicetype) for Read_Devicetype
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_Addr) for Read_Addr
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_Baudrate) for Read_Baudrate
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Read_LockStatus) for Read_LockStatus
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_HardwareVersion) for Write_HardwareVersion
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_Deviceid) for Write_Deviceid
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_Devicetype) for Write_Devicetype
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_Addr) for Write_Addr
- main_task.o(i.Uart0_RxDataHandle) refers to protocol.o(i.Write_Baudrate) for Write_Baudrate
- main_task.o(i.Uart0_RxDataHandle) refers to cfg.o(i.ResetConfig) for ResetConfig
- main_task.o(i.Uart0_RxDataHandle) refers to cfg.o(i.SaveConfig) for SaveConfig
- main_task.o(i.Uart0_RxDataHandle) refers to uart.o(.bss) for uart0_info
- main_task.o(i.Uart0_RxDataHandle) refers to cfg.o(.data) for config
- protocol.o(i.Read_Addr) refers to cfg.o(.data) for config
- protocol.o(i.Read_Baudrate) refers to cfg.o(.data) for config
- protocol.o(i.Read_Deviceid) refers to cfg.o(.data) for config
- protocol.o(i.Read_Devicetype) refers to cfg.o(.data) for config
- protocol.o(i.Read_FirmwareVersion) refers to protocol.o(.data) for .data
- protocol.o(i.Read_HardwareVersion) refers to cfg.o(.data) for config
- protocol.o(i.Read_LockStatus) refers to process.o(i.Process_LockStatus) for Process_LockStatus
- protocol.o(i.Read_LockStatus) refers to process.o(i.Process_UnlockStatus) for Process_UnlockStatus
- protocol.o(i.Read_LockStatus) refers to process.o(i.Process_CoverStatus) for Process_CoverStatus
- protocol.o(i.Write_Addr) refers to cfg.o(.data) for config
- protocol.o(i.Write_Baudrate) refers to cfg.o(.data) for config
- protocol.o(i.Write_Deviceid) refers to cfg.o(.data) for config
- protocol.o(i.Write_Devicetype) refers to cfg.o(.data) for config
- protocol.o(i.Write_HardwareVersion) refers to cfg.o(.data) for config
- cfg.o(i.Config_Init) refers to rt_memcpy.o(.emb_text) for __aeabi_memcpy4
- cfg.o(i.Config_Init) refers to rt_memclr.o(.text) for __aeabi_memclr4
- cfg.o(i.Config_Init) refers to cfg.o(i.Factory_reset) for Factory_reset
- cfg.o(i.Config_Init) refers to cfg.o(i.SaveConfig) for SaveConfig
- cfg.o(i.Config_Init) refers to cfg.o(.bss) for .bss
- cfg.o(i.Config_Init) refers to cfg.o(.data) for .data
- cfg.o(i.Factory_reset) refers to cfg.o(.data) for .data
- cfg.o(i.ResetConfig) refers to cfg.o(i.Factory_reset) for Factory_reset
- cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_UnlockCtrl) for EFLASH_UnlockCtrl
- cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_PageErase) for EFLASH_PageErase
- cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_PageEraseVerify) for EFLASH_PageEraseVerify
- cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_PageProgram) for EFLASH_PageProgram
- cfg.o(i.SaveConfig) refers to ac780x_eflash.o(i.EFLASH_LockCtrl) for EFLASH_LockCtrl
- cfg.o(i.SaveConfig) refers to cfg.o(.bss) for .bss
- cfg.o(.data) refers to cfg.o(.bss) for reflectionBuff
- process.o(i.Process_CoverStatus) refers to process.o(.data) for .data
- process.o(i.Process_Init) refers to ac780x_gpio.o(i.GPIO_GetPinLevel) for GPIO_GetPinLevel
- process.o(i.Process_Init) refers to ac780x_gpio.o(i.GPIO_SetPinLevel) for GPIO_SetPinLevel
- process.o(i.Process_Init) refers to process.o(.data) for .data
- process.o(i.Process_LockStatus) refers to process.o(.data) for .data
- process.o(i.Process_RunLedPrd) refers to ac780x_gpio.o(i.GPIO_GetPinLevel) for GPIO_GetPinLevel
- process.o(i.Process_RunLedPrd) refers to ac780x_gpio.o(i.GPIO_SetPinLevel) for GPIO_SetPinLevel
- process.o(i.Process_RunLedPrd) refers to process.o(.data) for .data
- process.o(i.Process_ThreeStatus) refers to ac780x_gpio.o(i.GPIO_GetPinLevel) for GPIO_GetPinLevel
- process.o(i.Process_ThreeStatus) refers to process.o(.data) for .data
- process.o(i.Process_UnlockStatus) refers to process.o(.data) for .data
- crc16.o(i.crc16) refers to crc16.o(.constdata) for .constdata
- fifo.o(i.Fifo_strchr) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
- fifo.o(i.fifo_DeInit) refers to rt_memclr.o(.text) for __aeabi_memclr
- fifo.o(i.fifo_Init) refers to rt_memclr.o(.text) for __aeabi_memclr
- fifo.o(i.fifo_Reset) refers to rt_memclr.o(.text) for __aeabi_memclr
- fifo.o(i.fifo_insert) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
- fifo.o(i.fifo_insert) refers to rt_memcpy.o(.text) for __aeabi_memcpy
- fifo.o(i.fifo_retrieve) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
- fifo.o(i.fifo_retrieve) refers to rt_memcpy.o(.text) for __aeabi_memcpy
- timer.o(i.TIMER_PrdInit) refers to ac780x_timer.o(i.TIMER_Init) for TIMER_Init
- timer.o(i.TIMER_PrdInit) refers to timer.o(i.TIM_CHN2_Callback) for TIM_CHN2_Callback
- timer.o(i.TIM_CHN2_Callback) refers to process.o(.data) for g_blinkLedTime
- timer.o(i.TIM_CHN2_Callback) refers to uart.o(.bss) for uart0_info
- gpio.o(i.GPIO_PortInit) refers to ac780x_gpio.o(i.GPIO_SetFunc) for GPIO_SetFunc
- gpio.o(i.GPIO_PortInit) refers to ac780x_gpio.o(i.GPIO_SetDir) for GPIO_SetDir
- gpio.o(i.GPIO_PortInit) refers to ac780x_gpio.o(i.GPIO_SetPullup) for GPIO_SetPullup
- uart.o(i.UartRxIdleCallBack) refers to ac780x_dma.o(i.DMA_SetChannel) for DMA_SetChannel
- uart.o(i.UartRxIdleCallBack) refers to ac780x_dma.o(i.DMA_ChannelFlush) for DMA_ChannelFlush
- uart.o(i.UartRxIdleCallBack) refers to uart.o(.bss) for .bss
- uart.o(i.UartTxDMAEventCallback) refers to uart.o(.bss) for .bss
- uart.o(i.uart0_RecvData) refers to ac780x_uart.o(i.UART_ReceiveDMA) for UART_ReceiveDMA
- uart.o(i.uart0_RecvData) refers to uart.o(.bss) for .bss
- uart.o(i.uart0_RecvData) refers to uart.o(i.UartRxDMAEventCallback) for UartRxDMAEventCallback
- uart.o(i.uart0_TransmitData) refers to ac780x_gpio.o(i.GPIO_SetPinLevel) for GPIO_SetPinLevel
- uart.o(i.uart0_TransmitData) refers to ac780x_uart.o(i.UART_TransmitDMA) for UART_TransmitDMA
- uart.o(i.uart0_TransmitData) refers to uart.o(.bss) for .bss
- uart.o(i.uart0_TransmitData) refers to uart.o(i.UartTxDMAEventCallback) for UartTxDMAEventCallback
- uart.o(i.uart_Initialize) refers to uart.o(i.__ARM_common_switch8) for __ARM_common_switch8
- uart.o(i.uart_Initialize) refers to ac780x_uart.o(i.UART_Init) for UART_Init
- uart.o(i.uart_Initialize) refers to ac780x_uart.o(i.UART_ReceiveDMA) for UART_ReceiveDMA
- uart.o(i.uart_Initialize) refers to cfg.o(.data) for config
- uart.o(i.uart_Initialize) refers to uart.o(i.UartRxIdleCallBack) for UartRxIdleCallBack
- uart.o(i.uart_Initialize) refers to uart.o(.bss) for .bss
- uart.o(i.uart_Initialize) refers to uart.o(i.UartRxDMAEventCallback) for UartRxDMAEventCallback
- ac780x_acmp.o(i.ACMP0_IRQHandler) refers to ac780x_acmp.o(.data) for .data
- ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_acmp.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_acmp.o(.data) for .data
- ac780x_acmp.o(i.ACMP_DeInit) refers to ac780x_acmp.o(.constdata) for .constdata
- ac780x_acmp.o(i.ACMP_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_acmp.o(i.ACMP_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_acmp.o(i.ACMP_Init) refers to ac780x_acmp.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_acmp.o(i.ACMP_Init) refers to ac780x_acmp.o(.data) for .data
- ac780x_acmp.o(i.ACMP_Init) refers to ac780x_acmp.o(.constdata) for .constdata
- ac780x_acmp.o(i.ACMP_SetCallback) refers to ac780x_acmp.o(.data) for .data
- ac780x_adc.o(i.ADC0_IRQHandler) refers to ac780x_adc.o(.data) for .data
- ac780x_adc.o(i.ADC_DeInit) refers to ac780x_adc.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_adc.o(i.ADC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_adc.o(i.ADC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_adc.o(i.ADC_DeInit) refers to ac780x_adc.o(.constdata) for .constdata
- ac780x_adc.o(i.ADC_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_adc.o(i.ADC_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_adc.o(i.ADC_Init) refers to ac780x_adc.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_adc.o(i.ADC_Init) refers to ac780x_adc.o(.data) for .data
- ac780x_adc.o(i.ADC_Init) refers to ac780x_adc.o(.constdata) for .constdata
- ac780x_adc.o(i.ADC_SetCallback) refers to ac780x_adc.o(.data) for .data
- ac780x_adc.o(i.ADC_SetInjectGroupChannel) refers to ac780x_adc.o(i.ADC_SetChannelSampleTime) for ADC_SetChannelSampleTime
- ac780x_adc.o(i.ADC_SetReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_adc.o(i.ADC_SetRegularGroupChannel) refers to ac780x_adc.o(i.ADC_SetChannelSampleTime) for ADC_SetChannelSampleTime
- ac780x_can.o(i.CAN0_Handler) refers to ac780x_can.o(i.CAN_HandleEvent) for CAN_HandleEvent
- ac780x_can.o(i.CAN_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_can.o(i.CAN_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_can.o(i.CAN_DeInit) refers to ac780x_can.o(.constdata) for .constdata
- ac780x_can.o(i.CAN_DeInit) refers to ac780x_can.o(.bss) for .bss
- ac780x_can.o(i.CAN_GetError) refers to ac780x_can.o(.bss) for .bss
- ac780x_can.o(i.CAN_GetPayloadSize) refers to uart.o(i.__ARM_common_switch8) for __ARM_common_switch8
- ac780x_can.o(i.CAN_HandleEvent) refers to ac780x_can.o(.bss) for .bss
- ac780x_can.o(i.CAN_Init) refers to ac780x_ckgen.o(i.CKGEN_SetCANClock) for CKGEN_SetCANClock
- ac780x_can.o(i.CAN_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_can.o(i.CAN_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_can.o(i.CAN_Init) refers to ac780x_can.o(i.CAN_SetBitrate) for CAN_SetBitrate
- ac780x_can.o(i.CAN_Init) refers to ac780x_can.o(i.CAN_SetFilter) for CAN_SetFilter
- ac780x_can.o(i.CAN_Init) refers to ac780x_ckgen.o(i.CKGEN_SetCANTimeDivider) for CKGEN_SetCANTimeDivider
- ac780x_can.o(i.CAN_Init) refers to ac780x_can.o(.bss) for .bss
- ac780x_can.o(i.CAN_Init) refers to ac780x_can.o(.constdata) for .constdata
- ac780x_can.o(i.CAN_ReceiveMessage) refers to ac780x_can.o(i.CAN_GetPayloadSize) for CAN_GetPayloadSize
- ac780x_can.o(i.CAN_SetCallBack) refers to ac780x_can.o(.bss) for .bss
- ac780x_can.o(i.CAN_SetMsgInfo) refers to ac780x_can.o(i.CAN_GetPayloadSize) for CAN_GetPayloadSize
- ac780x_can.o(i.CAN_SetMsgInfo) refers to ac780x_can.o(.bss) for .bss
- ac780x_can.o(i.CAN_SetTransmitAmount) refers to ac780x_can.o(.bss) for .bss
- ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(i.CAN_IsTransmitting) for CAN_IsTransmitting
- ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(i.CAN_WaitTransmissionIdle) for CAN_WaitTransmissionIdle
- ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(i.CAN_SetMsgInfo) for CAN_SetMsgInfo
- ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(i.CAN_WaitTransmissionDone) for CAN_WaitTransmissionDone
- ac780x_can.o(i.CAN_TransmitMessage) refers to ac780x_can.o(.bss) for .bss
- ac780x_can.o(i.CAN_WaitTransmissionDone) refers to ac780x_can.o(i.WaitTransmitSecondaryDone) for WaitTransmitSecondaryDone
- ac780x_can.o(i.CAN_WaitTransmissionDone) refers to ac780x_can.o(i.WaitTransmitPrimaryDone) for WaitTransmitPrimaryDone
- ac780x_can.o(i.CAN_WaitTransmissionDone) refers to ac780x_can.o(.bss) for .bss
- ac780x_can.o(i.CAN_WaitTransmissionIdle) refers to ac780x_can.o(i.CAN_IsTransmitting) for CAN_IsTransmitting
- ac780x_crc.o(i.CRC_Check) refers to ac780x_crc.o(i.CRC_SetSeedOrDataMode) for CRC_SetSeedOrDataMode
- ac780x_crc.o(i.CRC_Check) refers to ac780x_crc.o(.data) for .data
- ac780x_crc.o(i.CRC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_crc.o(i.CRC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_crc.o(i.CRC_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_crc.o(i.CRC_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_crc.o(i.CRC_Init) refers to ac780x_crc.o(.data) for .data
- ac780x_ctu.o(i.CTU_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_ctu.o(i.CTU_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_ctu.o(i.CTU_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_ctu.o(i.CTU_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_ctu.o(i.CTU_Init) refers to ac780x_ctu.o(i.CTU_SetPwdtIn3InputSource) for CTU_SetPwdtIn3InputSource
- ac780x_dma.o(i.DMA0_Channel0_IRQHandler) refers to ac780x_dma.o(i.DMA_ClearFlag) for DMA_ClearFlag
- ac780x_dma.o(i.DMA0_Channel0_IRQHandler) refers to ac780x_dma.o(.bss) for .bss
- ac780x_dma.o(i.DMA0_Channel1_IRQHandler) refers to ac780x_dma.o(i.DMA_ClearFlag) for DMA_ClearFlag
- ac780x_dma.o(i.DMA0_Channel1_IRQHandler) refers to ac780x_dma.o(.bss) for .bss
- ac780x_dma.o(i.DMA0_Channel2_IRQHandler) refers to ac780x_dma.o(i.DMA_ClearFlag) for DMA_ClearFlag
- ac780x_dma.o(i.DMA0_Channel2_IRQHandler) refers to ac780x_dma.o(.bss) for .bss
- ac780x_dma.o(i.DMA0_Channel3_IRQHandler) refers to ac780x_dma.o(i.DMA_ClearFlag) for DMA_ClearFlag
- ac780x_dma.o(i.DMA0_Channel3_IRQHandler) refers to ac780x_dma.o(.bss) for .bss
- ac780x_dma.o(i.DMA_ClearFlag) refers to ac780x_dma.o(i.DMA_ChannelHardRst) for DMA_ChannelHardRst
- ac780x_dma.o(i.DMA_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_dma.o(i.DMA_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_dma.o(i.DMA_DeInit) refers to ac780x_dma.o(i.DMA_ChannelHardRst) for DMA_ChannelHardRst
- ac780x_dma.o(i.DMA_DeInit) refers to ac780x_dma.o(.constdata) for .constdata
- ac780x_dma.o(i.DMA_DeInit) refers to ac780x_dma.o(.bss) for .bss
- ac780x_dma.o(i.DMA_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_dma.o(i.DMA_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_dma.o(i.DMA_Init) refers to ac780x_dma.o(i.DMA_ChannelHardRst) for DMA_ChannelHardRst
- ac780x_dma.o(i.DMA_Init) refers to ac780x_dma.o(.bss) for .bss
- ac780x_dma.o(i.DMA_Init) refers to ac780x_dma.o(.constdata) for .constdata
- ac780x_dma.o(i.DMA_SetCallback) refers to ac780x_dma.o(.bss) for .bss
- ac780x_ecc_sram.o(i.ECC_SRAM_DeInit) refers to ac780x_ecc_sram.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_ecc_sram.o(i.ECC_SRAM_DeInit) refers to ac780x_ecc_sram.o(.data) for .data
- ac780x_ecc_sram.o(i.ECC_SRAM_IRQHandler) refers to ac780x_ecc_sram.o(.data) for .data
- ac780x_ecc_sram.o(i.ECC_SRAM_Init) refers to ac780x_ecc_sram.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_ecc_sram.o(i.ECC_SRAM_Init) refers to ac780x_ecc_sram.o(i.ECC_SRAM_Enable2BitErrReset) for ECC_SRAM_Enable2BitErrReset
- ac780x_ecc_sram.o(i.ECC_SRAM_Init) refers to ac780x_ecc_sram.o(.data) for .data
- ac780x_ecc_sram.o(i.ECC_SRAM_SetCallBack) refers to ac780x_ecc_sram.o(.data) for .data
- ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to rt_memclr.o(.text) for __aeabi_memclr4
- ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_UnlockCtrl) for EFLASH_UnlockCtrl
- ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_Read) for EFLASH_Read
- ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_OptionPageErase) for EFLASH_OptionPageErase
- ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_LockCtrl) for EFLASH_LockCtrl
- ac780x_eflash.o(i.EFLASH_ConfigWdg) refers to ac780x_eflash.o(i.EFLASH_OptionPageProgram) for EFLASH_OptionPageProgram
- ac780x_eflash.o(i.EFLASH_DisableReadOut) refers to rt_memclr.o(.text) for __aeabi_memclr4
- ac780x_eflash.o(i.EFLASH_DisableReadOut) refers to ac780x_eflash.o(i.EFLASH_Read) for EFLASH_Read
- ac780x_eflash.o(i.EFLASH_DisableReadOut) refers to ac780x_eflash.o(i.EFLASH_OptionPageErase) for EFLASH_OptionPageErase
- ac780x_eflash.o(i.EFLASH_DisableReadOut) refers to ac780x_eflash.o(i.EFLASH_OptionPageProgram) for EFLASH_OptionPageProgram
- ac780x_eflash.o(i.EFLASH_EnableReadOut) refers to rt_memclr.o(.text) for __aeabi_memclr4
- ac780x_eflash.o(i.EFLASH_EnableReadOut) refers to ac780x_eflash.o(i.EFLASH_Read) for EFLASH_Read
- ac780x_eflash.o(i.EFLASH_EnableReadOut) refers to ac780x_eflash.o(i.EFLASH_OptionPageErase) for EFLASH_OptionPageErase
- ac780x_eflash.o(i.EFLASH_EnableReadOut) refers to ac780x_eflash.o(i.EFLASH_OptionPageProgram) for EFLASH_OptionPageProgram
- ac780x_eflash.o(i.EFLASH_MassErase) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
- ac780x_eflash.o(i.EFLASH_MassErase) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
- ac780x_eflash.o(i.EFLASH_MassErase) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
- ac780x_eflash.o(i.EFLASH_MassEraseVerify) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
- ac780x_eflash.o(i.EFLASH_MassEraseVerify) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
- ac780x_eflash.o(i.EFLASH_OptionPageErase) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
- ac780x_eflash.o(i.EFLASH_OptionPageErase) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
- ac780x_eflash.o(i.EFLASH_OptionPageErase) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
- ac780x_eflash.o(i.EFLASH_OptionPageProgram) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
- ac780x_eflash.o(i.EFLASH_OptionPageProgram) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
- ac780x_eflash.o(i.EFLASH_OptionPageProgram) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
- ac780x_eflash.o(i.EFLASH_PageErase) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
- ac780x_eflash.o(i.EFLASH_PageErase) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
- ac780x_eflash.o(i.EFLASH_PageErase) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
- ac780x_eflash.o(i.EFLASH_PageEraseVerify) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
- ac780x_eflash.o(i.EFLASH_PageEraseVerify) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
- ac780x_eflash.o(i.EFLASH_PageProgram) refers to ac780x_eflash.o(i.EFLASH_WaitForLastOperation) for EFLASH_WaitForLastOperation
- ac780x_eflash.o(i.EFLASH_PageProgram) refers to ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg) for EFLASH_TrigCtrlCmdReg
- ac780x_eflash.o(i.EFLASH_PageProgram) refers to ac780x_eflash.o(i.EFLASH_WaitEop) for EFLASH_WaitEop
- ac780x_eflash.o(i.EFLASH_SetWriteProtect) refers to rt_memclr.o(.text) for __aeabi_memclr4
- ac780x_eflash.o(i.EFLASH_SetWriteProtect) refers to ac780x_eflash.o(i.EFLASH_Read) for EFLASH_Read
- ac780x_eflash.o(i.EFLASH_SetWriteProtect) refers to ac780x_eflash.o(i.EFLASH_OptionPageErase) for EFLASH_OptionPageErase
- ac780x_eflash.o(i.EFLASH_SetWriteProtect) refers to ac780x_eflash.o(i.EFLASH_OptionPageProgram) for EFLASH_OptionPageProgram
- ac780x_gpio.o(i.EXTI0_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
- ac780x_gpio.o(i.EXTI0_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
- ac780x_gpio.o(i.EXTI0_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
- ac780x_gpio.o(i.EXTI1_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
- ac780x_gpio.o(i.EXTI1_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
- ac780x_gpio.o(i.EXTI1_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
- ac780x_gpio.o(i.EXTI2_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
- ac780x_gpio.o(i.EXTI2_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
- ac780x_gpio.o(i.EXTI2_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
- ac780x_gpio.o(i.EXTI3_8_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtInterrupt) for GPIO_GetPendingExtInterrupt
- ac780x_gpio.o(i.EXTI3_8_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
- ac780x_gpio.o(i.EXTI3_8_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
- ac780x_gpio.o(i.EXTI3_8_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
- ac780x_gpio.o(i.EXTI9_15_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtInterrupt) for GPIO_GetPendingExtInterrupt
- ac780x_gpio.o(i.EXTI9_15_IRQHandler) refers to ac780x_gpio.o(i.GPIO_GetPendingExtIntSource) for GPIO_GetPendingExtIntSource
- ac780x_gpio.o(i.EXTI9_15_IRQHandler) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
- ac780x_gpio.o(i.EXTI9_15_IRQHandler) refers to ac780x_gpio.o(.bss) for .bss
- ac780x_gpio.o(i.GPIO_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_gpio.o(i.GPIO_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_gpio.o(i.GPIO_DeInit) refers to ac780x_gpio.o(.constdata) for .constdata
- ac780x_gpio.o(i.GPIO_DeInit) refers to ac780x_gpio.o(.bss) for .bss
- ac780x_gpio.o(i.GPIO_DisableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinExtIntMask) for GPIO_SetPinExtIntMask
- ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinExtIntMask) for GPIO_SetPinExtIntMask
- ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinExtIntSource) for GPIO_SetPinExtIntSource
- ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinRisingEdge) for GPIO_SetPinRisingEdge
- ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_SetPinFallingEdge) for GPIO_SetPinFallingEdge
- ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
- ac780x_gpio.o(i.GPIO_EnableExtInterrupt) refers to ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt) for GPIO_ClearPendingExtInterrupt
- ac780x_gpio.o(i.GPIO_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_gpio.o(i.GPIO_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_gpio.o(i.GPIO_Init) refers to ac780x_gpio.o(i.GPIO_SetFunc) for GPIO_SetFunc
- ac780x_gpio.o(i.GPIO_SetCallback) refers to ac780x_gpio.o(.bss) for .bss
- ac780x_gpio.o(i.GPIO_SetFuncGroup) refers to ac780x_gpio.o(i.GPIO_SetFunc) for GPIO_SetFunc
- ac780x_i2c.o(i.I2C0_IRQHandler) refers to ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) for I2C_MasterSlaveIntHandler
- ac780x_i2c.o(i.I2C0_IRQHandler) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C1_IRQHandler) refers to ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) for I2C_MasterSlaveIntHandler
- ac780x_i2c.o(i.I2C1_IRQHandler) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_i2c.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_i2c.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
- ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_DeInit) refers to ac780x_i2c.o(.constdata) for .constdata
- ac780x_i2c.o(i.I2C_GetTransmitReceiveStatus) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_GetTransmittedReceivedLength) refers to ac780x_i2c.o(.bss) for .bss
- ac780x_i2c.o(i.I2C_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_i2c.o(i.I2C_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(i.I2C_SetInterrupt) for I2C_SetInterrupt
- ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
- ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(.constdata) for .constdata
- ac780x_i2c.o(i.I2C_Init) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_MasterIntHandler) refers to ac780x_i2c.o(i.I2C_ReceiveLastOneByte) for I2C_ReceiveLastOneByte
- ac780x_i2c.o(i.I2C_MasterIntHandler) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_MasterIntHandler) refers to ac780x_i2c.o(.bss) for .bss
- ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
- ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
- ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
- ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_Restart) for I2C_Restart
- ac780x_i2c.o(i.I2C_MasterReceiveDMA) refers to ac780x_i2c.o(i.I2C_Stop) for I2C_Stop
- ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
- ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
- ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_SetInterrupt) for I2C_SetInterrupt
- ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
- ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(i.I2C_Restart) for I2C_Restart
- ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(.bss) for .bss
- ac780x_i2c.o(i.I2C_MasterReceiveInt) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
- ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
- ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
- ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_Restart) for I2C_Restart
- ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_ReceiveOneByte) for I2C_ReceiveOneByte
- ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_ReceiveLastOneByte) for I2C_ReceiveLastOneByte
- ac780x_i2c.o(i.I2C_MasterReceivePoll) refers to ac780x_i2c.o(i.I2C_Stop) for I2C_Stop
- ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) refers to ac780x_i2c.o(i.I2C_ClearStartFlag) for I2C_ClearStartFlag
- ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) refers to ac780x_i2c.o(i.I2C_MasterIntHandler) for I2C_MasterIntHandler
- ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) refers to ac780x_i2c.o(i.I2C_SlaveIntHandler) for I2C_SlaveIntHandler
- ac780x_i2c.o(i.I2C_MasterSlaveIntHandler) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
- ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
- ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_i2c.o(i.I2C_SetInterrupt) for I2C_SetInterrupt
- ac780x_i2c.o(i.I2C_MasterTransmitDMA) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
- ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
- ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
- ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(i.I2C_SetInterrupt) for I2C_SetInterrupt
- ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
- ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(.bss) for .bss
- ac780x_i2c.o(i.I2C_MasterTransmitInt) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_MasterTransmitPoll) refers to ac780x_i2c.o(i.I2C_WaitForReady) for I2C_WaitForReady
- ac780x_i2c.o(i.I2C_MasterTransmitPoll) refers to ac780x_i2c.o(i.I2C_Start) for I2C_Start
- ac780x_i2c.o(i.I2C_MasterTransmitPoll) refers to ac780x_i2c.o(i.I2C_TransmitOneByte) for I2C_TransmitOneByte
- ac780x_i2c.o(i.I2C_MasterTransmitPoll) refers to ac780x_i2c.o(i.I2C_Stop) for I2C_Stop
- ac780x_i2c.o(i.I2C_ResetTransmitReceiveStatus) refers to ac780x_i2c.o(.bss) for .bss
- ac780x_i2c.o(i.I2C_ResetTransmitReceiveStatus) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_Restart) refers to ac780x_i2c.o(i.I2C_ClearStartFlag) for I2C_ClearStartFlag
- ac780x_i2c.o(i.I2C_SetCallback) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_SlaveIntHandler) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_SlaveIntHandler) refers to ac780x_i2c.o(.bss) for .bss
- ac780x_i2c.o(i.I2C_SlaveReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_i2c.o(i.I2C_SlaveTransmitDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_i2c.o(i.I2C_SlaveTransmitReceiveInt) refers to ac780x_i2c.o(.bss) for .bss
- ac780x_i2c.o(i.I2C_SlaveTransmitReceiveInt) refers to ac780x_i2c.o(.data) for .data
- ac780x_i2c.o(i.I2C_Start) refers to ac780x_i2c.o(i.I2C_ClearStartFlag) for I2C_ClearStartFlag
- ac780x_i2c.o(i.I2C_TransmitOneByte) refers to ac780x_i2c.o(i.I2C_WaitOneByteFinished) for I2C_WaitOneByteFinished
- ac780x_pwdt.o(i.PWDT0_IRQHandler) refers to ac780x_pwdt.o(i.PWDT_CommonISR) for PWDT_CommonISR
- ac780x_pwdt.o(i.PWDT1_IRQHandler) refers to ac780x_pwdt.o(i.PWDT_CommonISR) for PWDT_CommonISR
- ac780x_pwdt.o(i.PWDT_CommonISR) refers to ac780x_pwdt.o(.data) for .data
- ac780x_pwdt.o(i.PWDT_DeInit) refers to ac780x_pwdt.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_pwdt.o(i.PWDT_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_pwdt.o(i.PWDT_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_pwdt.o(i.PWDT_DeInit) refers to ac780x_pwdt.o(.constdata) for .constdata
- ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_pwdt.o(i.PWDT_SetClockPrescaler) for PWDT_SetClockPrescaler
- ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_pwdt.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_pwdt.o(.constdata) for .constdata
- ac780x_pwdt.o(i.PWDT_Init) refers to ac780x_pwdt.o(.data) for .data
- ac780x_pwdt.o(i.PWDT_SetCallback) refers to ac780x_pwdt.o(.data) for .data
- ac780x_pwm.o(i.PWM0_IRQHandler) refers to ac780x_pwm.o(i.PWM_CommonISR) for PWM_CommonISR
- ac780x_pwm.o(i.PWM1_IRQHandler) refers to ac780x_pwm.o(i.PWM_CommonISR) for PWM_CommonISR
- ac780x_pwm.o(i.PWM_CommonISR) refers to ac780x_pwm.o(.data) for .data
- ac780x_pwm.o(i.PWM_DeInit) refers to ac780x_pwm.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_pwm.o(i.PWM_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_pwm.o(i.PWM_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_pwm.o(i.PWM_DeInit) refers to ac780x_pwm.o(.constdata) for .constdata
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_pwm.o(i.PWM_Init) refers to uart.o(i.__ARM_common_switch8) for __ARM_common_switch8
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.PWM_SetPWMMode) for PWM_SetPWMMode
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.PWM_SetInputCaptureMode) for PWM_SetInputCaptureMode
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.PWM_SetOutputCompareMode) for PWM_SetOutputCompareMode
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(i.PWM_SetQuadDecodeMode) for PWM_SetQuadDecodeMode
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(.constdata) for .constdata
- ac780x_pwm.o(i.PWM_Init) refers to ac780x_pwm.o(.data) for .data
- ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetMCVRSyncTriggerMode) for PWM_SetMCVRSyncTriggerMode
- ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetOMCRSyncTriggerMode) for PWM_SetOMCRSyncTriggerMode
- ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetINVCRSyncTriggerMode) for PWM_SetINVCRSyncTriggerMode
- ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetCHOSWCRSyncTriggerMode) for PWM_SetCHOSWCRSyncTriggerMode
- ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetCHOPOLCRSyncTriggerMode) for PWM_SetCHOPOLCRSyncTriggerMode
- ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetHardwareTriggerSyncSrc) for PWM_SetHardwareTriggerSyncSrc
- ac780x_pwm.o(i.PWM_InitSyncControl) refers to ac780x_pwm.o(i.PWM_SetCNTSyncTriggerMode) for PWM_SetCNTSyncTriggerMode
- ac780x_pwm.o(i.PWM_SetCallback) refers to ac780x_pwm.o(.data) for .data
- ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetCountMode) for PWM_SetCountMode
- ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetChannelMSR) for PWM_SetChannelMSR
- ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetChannelELSR) for PWM_SetChannelELSR
- ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetChannelInterrupt) for PWM_SetChannelInterrupt
- ac780x_pwm.o(i.PWM_SetInputCaptureMode) refers to ac780x_pwm.o(i.PWM_SetChannelInputFilter) for PWM_SetChannelInputFilter
- ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelOutputInitLevel) for PWM_SetChannelOutputInitLevel
- ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetCountMode) for PWM_SetCountMode
- ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelMSR) for PWM_SetChannelMSR
- ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelELSR) for PWM_SetChannelELSR
- ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelInterrupt) for PWM_SetChannelInterrupt
- ac780x_pwm.o(i.PWM_SetOutputCompareMode) refers to ac780x_pwm.o(i.PWM_SetChannelTrigger) for PWM_SetChannelTrigger
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelOutputInitLevel) for PWM_SetChannelOutputInitLevel
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetCountMode) for PWM_SetCountMode
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelMSR) for PWM_SetChannelMSR
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelELSR) for PWM_SetChannelELSR
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelPolarity) for PWM_SetChannelPolarity
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelInterrupt) for PWM_SetChannelInterrupt
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelTrigger) for PWM_SetChannelTrigger
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetPairChannelCombine) for PWM_SetPairChannelCombine
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetPairChannelDeadtime) for PWM_SetPairChannelDeadtime
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetPairChannelComplement) for PWM_SetPairChannelComplement
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetChannelMatchDir) for PWM_SetChannelMatchDir
- ac780x_pwm.o(i.PWM_SetPWMMode) refers to ac780x_pwm.o(i.PWM_SetDeadtime) for PWM_SetDeadtime
- ac780x_pwm.o(i.PWM_SetQuadDecodeMode) refers to ac780x_pwm.o(i.PWM_SetChannelInputFilter) for PWM_SetChannelInputFilter
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetChannelOutputInitLevel) for PWM_SetChannelOutputInitLevel
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetCountMode) for PWM_SetCountMode
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetPairChannelCombine) for PWM_SetPairChannelCombine
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetPairChannelDeadtime) for PWM_SetPairChannelDeadtime
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetPairChannelComplement) for PWM_SetPairChannelComplement
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetChannelELSR) for PWM_SetChannelELSR
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetChannelMSR) for PWM_SetChannelMSR
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetChannelPolarity) for PWM_SetChannelPolarity
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.PWM_SetDeadtime) for PWM_SetDeadtime
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(i.__NVIC_EnableIRQ) for __NVIC_EnableIRQ
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(.constdata) for .constdata
- ac780x_pwm.o(i.PWM_SimplyInit) refers to ac780x_pwm.o(.data) for .data
- ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_rtc.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_rtc.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
- ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_rtc.o(i.RTC_DeInit) refers to ac780x_rtc.o(.data) for .data
- ac780x_rtc.o(i.RTC_IRQHandler) refers to ac780x_rtc.o(i.RTC_ClearRTIF) for RTC_ClearRTIF
- ac780x_rtc.o(i.RTC_IRQHandler) refers to ac780x_rtc.o(i.RTC_ClearRPIF) for RTC_ClearRPIF
- ac780x_rtc.o(i.RTC_IRQHandler) refers to ac780x_rtc.o(.data) for .data
- ac780x_rtc.o(i.RTC_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_rtc.o(i.RTC_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(i.RTC_ClearRTIF) for RTC_ClearRTIF
- ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(i.RTC_ClearRPIF) for RTC_ClearRPIF
- ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
- ac780x_rtc.o(i.RTC_Init) refers to ac780x_rtc.o(.data) for .data
- ac780x_rtc.o(i.RTC_SetCallback) refers to ac780x_rtc.o(.data) for .data
- ac780x_spi.o(i.SPI0_IRQHandler) refers to ac780x_spi.o(i.SPI_InterruptHandler) for SPI_InterruptHandler
- ac780x_spi.o(i.SPI0_IRQHandler) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI1_IRQHandler) refers to ac780x_spi.o(i.SPI_InterruptHandler) for SPI_InterruptHandler
- ac780x_spi.o(i.SPI1_IRQHandler) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_DeInit) refers to ac780x_spi.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_spi.o(i.SPI_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_spi.o(i.SPI_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_spi.o(i.SPI_DeInit) refers to ac780x_spi.o(.constdata) for .constdata
- ac780x_spi.o(i.SPI_DeInit) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_GetTransmitReceiveStatus) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_spi.o(i.SPI_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_spi.o(i.SPI_Init) refers to ac780x_spi.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_spi.o(i.SPI_Init) refers to ac780x_spi.o(.constdata) for .constdata
- ac780x_spi.o(i.SPI_Init) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_InterruptHandler) refers to ac780x_spi.o(i.SPI_MasterInterruptHandler) for SPI_MasterInterruptHandler
- ac780x_spi.o(i.SPI_InterruptHandler) refers to ac780x_spi.o(i.SPI_SlaveInterruptHandler) for SPI_SlaveInterruptHandler
- ac780x_spi.o(i.SPI_MasterInterruptHandler) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_MasterInterruptHandler) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
- ac780x_spi.o(i.SPI_MasterInterruptHandler) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
- ac780x_spi.o(i.SPI_MasterInterruptHandler) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_ReceiveDMA) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
- ac780x_spi.o(i.SPI_ReceiveDMA) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_ReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
- ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
- ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
- ac780x_spi.o(i.SPI_ReceiveInt) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_ReceivePoll) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
- ac780x_spi.o(i.SPI_ReceivePoll) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_ReceivePoll) refers to ac780x_spi.o(i.SPI_ClearTxUFRxOF) for SPI_ClearTxUFRxOF
- ac780x_spi.o(i.SPI_ResetTransmitReceiveStatus) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_SetCallback) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_SlaveInterruptHandler) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
- ac780x_spi.o(i.SPI_SlaveInterruptHandler) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
- ac780x_spi.o(i.SPI_SlaveInterruptHandler) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_TransmitDMA) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
- ac780x_spi.o(i.SPI_TransmitDMA) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_TransmitDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
- ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
- ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
- ac780x_spi.o(i.SPI_TransmitInt) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_TransmitPoll) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
- ac780x_spi.o(i.SPI_TransmitPoll) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_TransmitPoll) refers to ac780x_spi.o(i.SPI_ClearTxUFRxOF) for SPI_ClearTxUFRxOF
- ac780x_spi.o(i.SPI_TransmitReceiveDMA) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
- ac780x_spi.o(i.SPI_TransmitReceiveDMA) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_TransmitReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
- ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(i.SPI_SetRxFInterrupt) for SPI_SetRxFInterrupt
- ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(i.SPI_SetTxEInterrupt) for SPI_SetTxEInterrupt
- ac780x_spi.o(i.SPI_TransmitReceiveInt) refers to ac780x_spi.o(.data) for .data
- ac780x_spi.o(i.SPI_TransmitReceivePoll) refers to ac780x_spi.o(i.SPI_SetTxOnly) for SPI_SetTxOnly
- ac780x_spi.o(i.SPI_TransmitReceivePoll) refers to ac780x_spi.o(i.SPI_SetRxOnly) for SPI_SetRxOnly
- ac780x_spi.o(i.SPI_TransmitReceivePoll) refers to ac780x_spi.o(i.SPI_ClearTxUFRxOF) for SPI_ClearTxUFRxOF
- ac780x_spi.o(i.SPI_WaitReceiveFinish) refers to ac780x_spi.o(i.SPI_ResetTransmitReceiveStatus) for SPI_ResetTransmitReceiveStatus
- ac780x_spi.o(i.SPI_WaitReceiveFinish) refers to ac780x_spi.o(i.SPI_GetTransmitReceiveStatus) for SPI_GetTransmitReceiveStatus
- ac780x_spm.o(i.NMI_Handler) refers to ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag) for SPM_GetModuleWakeupSourceFlag
- ac780x_spm.o(i.NMI_Handler) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
- ac780x_spm.o(i.NMI_Handler) refers to ac780x_ckgen.o(i.CKGEN_SetPLLReference) for CKGEN_SetPLLReference
- ac780x_spm.o(i.NMI_Handler) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
- ac780x_spm.o(i.NMI_Handler) refers to ac780x_ckgen.o(i.CKGEN_SetAPBClockDivider) for CKGEN_SetAPBClockDivider
- ac780x_spm.o(i.NMI_Handler) refers to ac780x_spm.o(i.SPM_EnablePLL) for SPM_EnablePLL
- ac780x_spm.o(i.NMI_Handler) refers to system_ac780x.o(i.mdelay) for mdelay
- ac780x_spm.o(i.PVD_IRQHandler) refers to ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag) for SPM_GetModuleWakeupSourceFlag
- ac780x_spm.o(i.PVD_IRQHandler) refers to ac780x_spm.o(.data) for .data
- ac780x_spm.o(i.PVD_SetCallback) refers to ac780x_spm.o(.data) for .data
- ac780x_spm.o(i.SPM_EnableXOSC) refers to ac780x_spm.o(i.SPM_XOSCOKBypassSet) for SPM_XOSCOKBypassSet
- ac780x_spm.o(i.SPM_IRQHandler) refers to ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag) for SPM_GetModuleWakeupSourceFlag
- ac780x_spm.o(i.SPM_IRQHandler) refers to ac780x_spm.o(.data) for .data
- ac780x_spm.o(i.SPM_SetCallback) refers to ac780x_spm.o(.data) for .data
- ac780x_timer.o(i.TIMER_Channel0_IRQHandler) refers to ac780x_timer.o(i.TIMER_CommonISR) for TIMER_CommonISR
- ac780x_timer.o(i.TIMER_Channel1_IRQHandler) refers to ac780x_timer.o(i.TIMER_CommonISR) for TIMER_CommonISR
- ac780x_timer.o(i.TIMER_Channel2_IRQHandler) refers to ac780x_timer.o(i.TIMER_CommonISR) for TIMER_CommonISR
- ac780x_timer.o(i.TIMER_Channel3_IRQHandler) refers to ac780x_timer.o(i.TIMER_CommonISR) for TIMER_CommonISR
- ac780x_timer.o(i.TIMER_CommonISR) refers to ac780x_timer.o(.bss) for .bss
- ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_timer.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_timer.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
- ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_timer.o(.bss) for .bss
- ac780x_timer.o(i.TIMER_DeInit) refers to ac780x_timer.o(.constdata) for .constdata
- ac780x_timer.o(i.TIMER_DeInitChannel) refers to ac780x_timer.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_timer.o(i.TIMER_DeInitChannel) refers to ac780x_timer.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
- ac780x_timer.o(i.TIMER_DeInitChannel) refers to ac780x_timer.o(.bss) for .bss
- ac780x_timer.o(i.TIMER_DeInitChannel) refers to ac780x_timer.o(.constdata) for .constdata
- ac780x_timer.o(i.TIMER_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_timer.o(i.TIMER_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_timer.o(i.TIMER_Init) refers to ac780x_timer.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_timer.o(i.TIMER_Init) refers to ac780x_timer.o(.bss) for .bss
- ac780x_timer.o(i.TIMER_Init) refers to ac780x_timer.o(.constdata) for .constdata
- ac780x_timer.o(i.TIMER_SetCallback) refers to ac780x_timer.o(.bss) for .bss
- ac780x_uart.o(i.UART0_IRQHandler) refers to ac780x_uart.o(i.UART_InterruptHandler) for UART_InterruptHandler
- ac780x_uart.o(i.UART1_IRQHandler) refers to ac780x_uart.o(i.UART_InterruptHandler) for UART_InterruptHandler
- ac780x_uart.o(i.UART2_IRQHandler) refers to ac780x_uart.o(i.UART_InterruptHandler) for UART_InterruptHandler
- ac780x_uart.o(i.UART_DeInit) refers to ac780x_uart.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_uart.o(i.UART_DeInit) refers to ac780x_uart.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
- ac780x_uart.o(i.UART_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_uart.o(i.UART_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_uart.o(i.UART_DeInit) refers to ac780x_uart.o(.bss) for .bss
- ac780x_uart.o(i.UART_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_uart.o(i.UART_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_uart.o(i.UART_Init) refers to ac780x_uart.o(i.UART_SetParity) for UART_SetParity
- ac780x_uart.o(i.UART_Init) refers to ac780x_uart.o(i.UART_SetBaudrate) for UART_SetBaudrate
- ac780x_uart.o(i.UART_Init) refers to ac780x_uart.o(.bss) for .bss
- ac780x_uart.o(i.UART_InterruptHandler) refers to ac780x_uart.o(.bss) for .bss
- ac780x_uart.o(i.UART_ReceiveDMA) refers to ac780x_dma.o(i.DMA_DeInit) for DMA_DeInit
- ac780x_uart.o(i.UART_ReceiveDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_uart.o(i.UART_SetBaudrate) refers to fflti.o(.text) for __aeabi_ui2f
- ac780x_uart.o(i.UART_SetBaudrate) refers to fdiv.o(.text) for __aeabi_fdiv
- ac780x_uart.o(i.UART_SetBaudrate) refers to ffixul.o(.text) for __aeabi_f2ulz
- ac780x_uart.o(i.UART_SetBaudrate) refers to faddsub.o(x$fpl$frsb) for __aeabi_frsub
- ac780x_uart.o(i.UART_SetBaudrate) refers to fscalbn.o(.text) for __ARM_scalbnf
- ac780x_uart.o(i.UART_SetBaudrate) refers to ffixui.o(.text) for __aeabi_f2uiz
- ac780x_uart.o(i.UART_SetCallback) refers to ac780x_uart.o(.constdata) for .constdata
- ac780x_uart.o(i.UART_SetCallback) refers to ac780x_uart.o(.bss) for .bss
- ac780x_uart.o(i.UART_TransmitDMA) refers to ac780x_dma.o(i.DMA_DeInit) for DMA_DeInit
- ac780x_uart.o(i.UART_TransmitDMA) refers to ac780x_dma.o(i.DMA_Init) for DMA_Init
- ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_wdg.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_wdg.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
- ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_wdg.o(i.WDG_DeInit) refers to ac780x_wdg.o(.data) for .data
- ac780x_wdg.o(i.WDG_IRQHandler) refers to ac780x_wdg.o(.data) for .data
- ac780x_wdg.o(i.WDG_Init) refers to ac780x_ckgen.o(i.CKGEN_Enable) for CKGEN_Enable
- ac780x_wdg.o(i.WDG_Init) refers to ac780x_ckgen.o(i.CKGEN_SoftReset) for CKGEN_SoftReset
- ac780x_wdg.o(i.WDG_Init) refers to ac780x_wdg.o(i.__NVIC_DisableIRQ) for __NVIC_DisableIRQ
- ac780x_wdg.o(i.WDG_Init) refers to ac780x_wdg.o(i.__NVIC_ClearPendingIRQ) for __NVIC_ClearPendingIRQ
- ac780x_wdg.o(i.WDG_Init) refers to ac780x_wdg.o(.data) for .data
- ac780x_wdg.o(i.WDG_SetCallback) refers to ac780x_wdg.o(.data) for .data
- startup_ac780x.o(STACK) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
- startup_ac780x.o(HEAP) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
- startup_ac780x.o(RESET) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
- startup_ac780x.o(RESET) refers to startup_ac780x.o(STACK) for __initial_sp
- startup_ac780x.o(RESET) refers to startup_ac780x.o(.text) for Reset_Handler
- startup_ac780x.o(RESET) refers to ac780x_spm.o(i.NMI_Handler) for NMI_Handler
- startup_ac780x.o(RESET) refers to ac780x_pwdt.o(i.PWDT0_IRQHandler) for PWDT0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_pwdt.o(i.PWDT1_IRQHandler) for PWDT1_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_pwm.o(i.PWM0_IRQHandler) for PWM0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_pwm.o(i.PWM1_IRQHandler) for PWM1_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_acmp.o(i.ACMP0_IRQHandler) for ACMP0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_uart.o(i.UART0_IRQHandler) for UART0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_uart.o(i.UART1_IRQHandler) for UART1_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_uart.o(i.UART2_IRQHandler) for UART2_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_wdg.o(i.WDG_IRQHandler) for WDG_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_spi.o(i.SPI0_IRQHandler) for SPI0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_spi.o(i.SPI1_IRQHandler) for SPI1_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_i2c.o(i.I2C0_IRQHandler) for I2C0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_i2c.o(i.I2C1_IRQHandler) for I2C1_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_dma.o(i.DMA0_Channel0_IRQHandler) for DMA0_Channel0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_dma.o(i.DMA0_Channel1_IRQHandler) for DMA0_Channel1_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_dma.o(i.DMA0_Channel2_IRQHandler) for DMA0_Channel2_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_dma.o(i.DMA0_Channel3_IRQHandler) for DMA0_Channel3_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_timer.o(i.TIMER_Channel0_IRQHandler) for TIMER_Channel0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_timer.o(i.TIMER_Channel1_IRQHandler) for TIMER_Channel1_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_timer.o(i.TIMER_Channel2_IRQHandler) for TIMER_Channel2_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_timer.o(i.TIMER_Channel3_IRQHandler) for TIMER_Channel3_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_rtc.o(i.RTC_IRQHandler) for RTC_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_spm.o(i.PVD_IRQHandler) for PVD_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_spm.o(i.SPM_IRQHandler) for SPM_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_can.o(i.CAN0_Handler) for CAN0_Handler
- startup_ac780x.o(RESET) refers to ac780x_adc.o(i.ADC0_IRQHandler) for ADC0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_ecc_sram.o(i.ECC_SRAM_IRQHandler) for ECC_SRAM_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI0_IRQHandler) for EXTI0_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI1_IRQHandler) for EXTI1_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI2_IRQHandler) for EXTI2_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI3_8_IRQHandler) for EXTI3_8_IRQHandler
- startup_ac780x.o(RESET) refers to ac780x_gpio.o(i.EXTI9_15_IRQHandler) for EXTI9_15_IRQHandler
- startup_ac780x.o(.text) refers (Special) to heapauxi.o(.text) for __use_two_region_memory
- startup_ac780x.o(.text) refers to system_ac780x.o(i.SystemInit) for SystemInit
- startup_ac780x.o(.text) refers to __main.o(!!!main) for __main
- startup_ac780x.o(.text) refers to startup_ac780x.o(HEAP) for Heap_Mem
- startup_ac780x.o(.text) refers to startup_ac780x.o(STACK) for Stack_Mem
- system_ac780x.o(i.InitDelay) refers to system_ac780x.o(.data) for .data
- system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_spm.o(i.SPM_EnableXOSCBypassMode) for SPM_EnableXOSCBypassMode
- system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
- system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_spm.o(i.SPM_EnableXOSC) for SPM_EnableXOSC
- system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetPLLReference) for CKGEN_SetPLLReference
- system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_spm.o(i.SPM_EnablePLL) for SPM_EnablePLL
- system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
- system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv) for CKGEN_SetPllPrevDiv
- system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPostDiv) for CKGEN_SetPllPostDiv
- system_ac780x.o(i.SetHSEBYPClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv) for CKGEN_SetPllFeedbackDiv
- system_ac780x.o(i.SetHSEClock) refers to ac780x_spm.o(i.SPM_EnableXOSC) for SPM_EnableXOSC
- system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetPLLReference) for CKGEN_SetPLLReference
- system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
- system_ac780x.o(i.SetHSEClock) refers to ac780x_spm.o(i.SPM_EnablePLL) for SPM_EnablePLL
- system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
- system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv) for CKGEN_SetPllPrevDiv
- system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPostDiv) for CKGEN_SetPllPostDiv
- system_ac780x.o(i.SetHSEClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv) for CKGEN_SetPllFeedbackDiv
- system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetPLLReference) for CKGEN_SetPLLReference
- system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv) for CKGEN_SetPllPrevDiv
- system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllPostDiv) for CKGEN_SetPllPostDiv
- system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv) for CKGEN_SetPllFeedbackDiv
- system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
- system_ac780x.o(i.SetHSIClock) refers to ac780x_spm.o(i.SPM_EnablePLL) for SPM_EnablePLL
- system_ac780x.o(i.SetHSIClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
- system_ac780x.o(i.SetSysClock) refers to system_ac780x.o(i.SetHSEClock) for SetHSEClock
- system_ac780x.o(i.SetXOSCClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkDiv) for CKGEN_SetSysclkDiv
- system_ac780x.o(i.SetXOSCClock) refers to ac780x_spm.o(i.SPM_EnableXOSC) for SPM_EnableXOSC
- system_ac780x.o(i.SetXOSCClock) refers to ac780x_ckgen.o(i.CKGEN_SetSysclkSrc) for CKGEN_SetSysclkSrc
- system_ac780x.o(i.SysStandby) refers to ac780x_spm.o(i.SPM_SetLowPowerMode) for SPM_SetLowPowerMode
- system_ac780x.o(i.SysStop) refers to ac780x_spm.o(i.SPM_SetLowPowerMode) for SPM_SetLowPowerMode
- system_ac780x.o(i.SysTickRepeatDelay) refers to system_ac780x.o(i.SysTickDelay) for SysTickDelay
- system_ac780x.o(i.SystemCoreClockUpdate) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
- system_ac780x.o(i.SystemCoreClockUpdate) refers to system_ac780x.o(.data) for .data
- system_ac780x.o(i.SystemInit) refers to system_ac780x.o(i.SetEflashClock) for SetEflashClock
- system_ac780x.o(i.SystemInit) refers to system_ac780x.o(i.SetHSEClock) for SetHSEClock
- system_ac780x.o(i.SystemInit) refers to ac780x_ckgen.o(i.CKGEN_SetAPBClockDivider) for CKGEN_SetAPBClockDivider
- system_ac780x.o(i.SystemInit) refers to startup_ac780x.o(RESET) for __Vectors
- system_ac780x.o(i.SystemInit) refers to system_ac780x.o(.data) for .data
- system_ac780x.o(i.mdelay) refers to system_ac780x.o(i.SysTickRepeatDelay) for SysTickRepeatDelay
- system_ac780x.o(i.mdelay) refers to system_ac780x.o(i.SysTickDelay) for SysTickDelay
- system_ac780x.o(i.mdelay) refers to system_ac780x.o(.data) for .data
- system_ac780x.o(i.udelay) refers to system_ac780x.o(i.SysTickRepeatDelay) for SysTickRepeatDelay
- system_ac780x.o(i.udelay) refers to system_ac780x.o(i.SysTickDelay) for SysTickDelay
- system_ac780x.o(i.udelay) refers to system_ac780x.o(.data) for .data
- __2printf.o(.text) refers to _printf_char_file.o(.text) for _printf_char_file
- __2printf.o(.text) refers to stdio_streams.o(.bss) for __stdout
- noretval__2printf.o(.text) refers to _printf_char_file.o(.text) for _printf_char_file
- noretval__2printf.o(.text) refers to stdio_streams.o(.bss) for __stdout
- __printf.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- _printf_hex_ll.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
- _printf_hex_ll.o(.text) refers to _printf_hex_ll.o(.constdata) for .constdata
- _printf_hex_int.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
- _printf_hex_int.o(.text) refers to _printf_hex_int.o(.constdata) for .constdata
- _printf_hex_int_ll.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
- _printf_hex_int_ll.o(.text) refers to _printf_hex_int_ll.o(.constdata) for .constdata
- _printf_hex_ptr.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
- _printf_hex_ptr.o(.text) refers to _printf_hex_ptr.o(.constdata) for .constdata
- _printf_hex_int_ptr.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
- _printf_hex_int_ptr.o(.text) refers to _printf_hex_int_ptr.o(.constdata) for .constdata
- _printf_hex_ll_ptr.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
- _printf_hex_ll_ptr.o(.text) refers to _printf_hex_ll_ptr.o(.constdata) for .constdata
- _printf_hex_int_ll_ptr.o(.text) refers to _printf_intcommon.o(.text) for _printf_int_common
- _printf_hex_int_ll_ptr.o(.text) refers to _printf_hex_int_ll_ptr.o(.constdata) for .constdata
- __printf_flags.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- __printf_flags.o(.text) refers to __printf_flags.o(.constdata) for .constdata
- __printf_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- __printf_flags_ss.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- __printf_flags_ss.o(.text) refers to __printf_flags_ss.o(.constdata) for .constdata
- __printf_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
- __printf_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- __printf_flags_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
- __printf_flags_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- __printf_flags_wp.o(.text) refers to __printf_flags_wp.o(.constdata) for .constdata
- __printf_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
- __printf_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- __printf_flags_ss_wp.o(.text) refers to __printf_wp.o(i._is_digit) for _is_digit
- __printf_flags_ss_wp.o(.text) refers to _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) for _printf_percent
- __printf_flags_ss_wp.o(.text) refers to __printf_flags_ss_wp.o(.constdata) for .constdata
- _printf_x.o(.ARM.Collect$$_printf_percent$$0000000C) refers (Weak) to _printf_hex_int.o(.text) for _printf_int_hex
- _printf_percent.o(.ARM.Collect$$_printf_percent$$00000000) refers (Special) to _printf_percent_end.o(.ARM.Collect$$_printf_percent$$00000017) for _printf_percent_end
- rt_memcpy.o(.text) refers to rt_memcpy.o(.emb_text) for __aeabi_memcpy4
- __main.o(!!!main) refers to __rtentry.o(.ARM.Collect$$rtentry$$00000000) for __rt_entry
- faddsub.o(x$fpl$fadd) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
- faddsub.o(x$fpl$fadd) refers to faddsub.o(x$fpl$fsub) for _fsub1
- faddsub.o(x$fpl$frsb) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
- faddsub.o(x$fpl$frsb) refers to faddsub.o(x$fpl$fsub) for _fsub1
- faddsub.o(x$fpl$frsb) refers to faddsub.o(x$fpl$fadd) for _fadd1
- faddsub.o(x$fpl$fsub) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
- faddsub.o(x$fpl$fsub) refers to faddsub.o(x$fpl$fadd) for _fadd1
- fdiv.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
- fdiv.o(.text) refers to fdiv.o(.constdata) for .constdata
- fdiv.o(.constdata) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
- ffixui.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
- ffixul.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
- fflti.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
- fscalbn.o(.text) refers (Special) to usenofp.o(x$fpl$usenofp) for __I$use$fp
- __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for __rt_entry_li
- __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for __rt_entry_main
- __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$0000000C) for __rt_entry_postli_1
- __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$00000009) for __rt_entry_postsh_1
- __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry2.o(.ARM.Collect$$rtentry$$00000002) for __rt_entry_presh_1
- __rtentry.o(.ARM.Collect$$rtentry$$00000000) refers (Special) to __rtentry4.o(.ARM.Collect$$rtentry$$00000004) for __rt_entry_sh
- aeabi_idiv0_sigfpe.o(.text) refers to rt_div0.o(.text) for __rt_div0
- _printf_intcommon.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_pre_padding
- _printf_intcommon.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_pre_padding
- _printf_intcommon.o(.text) refers (Weak) to _printf_pad.o(.text) for _printf_post_padding
- _printf_char_file.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
- _printf_char_file.o(.text) refers to ferror.o(.text) for ferror
- _printf_char_file.o(.text) refers to fputc.o(i.fputc) for fputc
- stdio_streams.o(.bss) refers (Special) to initio.o(.text) for _initio
- stdio_streams.o(.bss) refers (Special) to initio.o(.text) for _initio
- stdio_streams.o(.bss) refers (Special) to initio.o(.text) for _initio
- stdio_streams.o(.data) refers (Special) to initio.o(.text) for _initio
- stdio_streams.o(.data) refers (Special) to initio.o(.text) for _initio
- stdio_streams.o(.data) refers (Special) to initio.o(.text) for _initio
- __rtentry2.o(.ARM.Collect$$rtentry$$00000008) refers to boardinit2.o(.text) for _platform_post_stackheap_init
- __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) refers to libinit.o(.ARM.Collect$$libinit$$00000000) for __rt_lib_init
- __rtentry2.o(.ARM.Collect$$rtentry$$0000000B) refers to boardinit3.o(.text) for _platform_post_lib_init
- __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to main.o(i.main) for main
- __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) refers to exit.o(.text) for exit
- __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$00000001) for .ARM.Collect$$rtentry$$00000001
- __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$00000008) for .ARM.Collect$$rtentry$$00000008
- __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$0000000A) for .ARM.Collect$$rtentry$$0000000A
- __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$0000000B) for .ARM.Collect$$rtentry$$0000000B
- __rtentry2.o(.ARM.exidx) refers to __rtentry2.o(.ARM.Collect$$rtentry$$0000000D) for .ARM.Collect$$rtentry$$0000000D
- __rtentry4.o(.ARM.Collect$$rtentry$$00000004) refers to sys_stackheap_outer.o(.text) for __user_setup_stackheap
- __rtentry4.o(.ARM.exidx) refers to __rtentry4.o(.ARM.Collect$$rtentry$$00000004) for .ARM.Collect$$rtentry$$00000004
- rt_div0.o(.text) refers to defsig_fpe_outer.o(.text) for __rt_SIGFPE
- _printf_char_common.o(.text) refers to __printf_flags_wp.o(.text) for __printf
- fputc.o(i.fputc) refers to flsbuf.o(.text) for __flsbuf_byte
- initio.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000024) for __rt_lib_init_stdio_2
- initio.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000005) for __rt_lib_shutdown_stdio_2
- initio.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
- initio.o(.text) refers to fopen.o(.text) for freopen
- initio.o(.text) refers to defsig_rtred_outer.o(.text) for __rt_SIGRTRED
- initio.o(.text) refers to setvbuf.o(.text) for setvbuf
- initio.o(.text) refers to fclose.o(.text) for _fclose_internal
- initio.o(.text) refers to h1_free.o(.text) for free
- initio.o(.text) refers to stdio_streams.o(.bss) for __stdin
- initio.o(.text) refers to stdio_streams.o(.bss) for __stdout
- initio.o(.text) refers to stdio_streams.o(.bss) for __stderr
- initio.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdin
- initio.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdout
- initio.o(.text) refers to stdio_streams.o(.data) for __aeabi_stderr
- initio.o(.text) refers to sys_io.o(.constdata) for __stdin_name
- initio.o(.text) refers to sys_io.o(.constdata) for __stdout_name
- initio.o(.text) refers to sys_io.o(.constdata) for __stderr_name
- initio_locked.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000024) for __rt_lib_init_stdio_2
- initio_locked.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000005) for __rt_lib_shutdown_stdio_2
- initio_locked.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
- initio_locked.o(.text) refers to fopen.o(.text) for freopen
- initio_locked.o(.text) refers to defsig_rtred_outer.o(.text) for __rt_SIGRTRED
- initio_locked.o(.text) refers to setvbuf.o(.text) for setvbuf
- initio_locked.o(.text) refers to fclose.o(.text) for _fclose_internal
- initio_locked.o(.text) refers to h1_free.o(.text) for free
- initio_locked.o(.text) refers to stdio_streams.o(.bss) for __stdin
- initio_locked.o(.text) refers to stdio_streams.o(.bss) for __stdout
- initio_locked.o(.text) refers to stdio_streams.o(.bss) for __stderr
- initio_locked.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdin
- initio_locked.o(.text) refers to stdio_streams.o(.data) for __aeabi_stdout
- initio_locked.o(.text) refers to stdio_streams.o(.data) for __aeabi_stderr
- initio_locked.o(.text) refers to streamlock.o(.data) for _stream_list_lock
- initio_locked.o(.text) refers to sys_io.o(.constdata) for __stdin_name
- initio_locked.o(.text) refers to sys_io.o(.constdata) for __stdout_name
- initio_locked.o(.text) refers to sys_io.o(.constdata) for __stderr_name
- sys_io.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
- sys_io.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
- sys_io.o(.text) refers to strlen.o(.text) for strlen
- sys_io.o(.constdata) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
- sys_io.o(.constdata) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
- sys_io.o(.constdata) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
- sys_io.o(.constdata) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
- sys_io.o(.constdata) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
- sys_io.o(.constdata) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
- sys_stackheap_outer.o(.text) refers to libspace.o(.text) for __user_perproc_libspace
- sys_stackheap_outer.o(.text) refers to startup_ac780x.o(.text) for __user_initial_stackheap
- sys_stackheap_outer.o(__vectab_stack_and_reset_area) refers to tempstk.o(.text) for __temporary_stack_top
- sys_stackheap_outer.o(__vectab_stack_and_reset_area) refers to __main.o(!!!main) for __main
- free.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
- free.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- h1_free.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- h1_free_mt.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- heap2.o(i._FDIterate) refers to heap2.o(.conststring) for .conststring
- heap2.o(i.___Heap_ProvideMemory$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
- heap2.o(i.___Heap_ProvideMemory$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2.o(i.___Heap_Stats$realtime) refers to heap2.o(i._Heap2_StatsIterate) for _Heap2_StatsIterate
- heap2.o(i.___Heap_Stats$realtime) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
- heap2.o(i.___Heap_Valid$realtime) refers to heap2.o(i._FDIterate) for _FDIterate
- heap2.o(i.___Heap_Valid$realtime) refers to heap2.o(.conststring) for .conststring
- heap2.o(i._free$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- heap2.o(i._free$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
- heap2.o(i._free$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2.o(i._malloc$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
- heap2.o(i._malloc$realtime) refers to init_alloc.o(.text) for __Heap_Full
- heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
- heap2.o(i._malloc$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2.o(i._posix_memalign$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
- heap2.o(i._posix_memalign$realtime) refers to init_alloc.o(.text) for __Heap_Full
- heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
- heap2.o(i._posix_memalign$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2.o(i._realloc$realtime) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- heap2.o(i._realloc$realtime) refers to h1_free.o(.text) for free
- heap2.o(i._realloc$realtime) refers to h1_alloc.o(.text) for malloc
- heap2.o(i._realloc$realtime) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
- heap2.o(i._realloc$realtime) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2.o(i._realloc$realtime) refers to rt_memcpy.o(.emb_text) for __aeabi_memcpy4
- heap2mt.o(i._FDIterate) refers to heap2mt.o(.conststring) for .conststring
- heap2mt.o(i.___Heap_ProvideMemory$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
- heap2mt.o(i.___Heap_ProvideMemory$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2mt.o(i.___Heap_Stats$realtime$concurrent) refers to heap2mt.o(i._Heap2_StatsIterate) for _Heap2_StatsIterate
- heap2mt.o(i.___Heap_Stats$realtime$concurrent) refers to aeabi_sdiv.o(.text) for __aeabi_uidivmod
- heap2mt.o(i.___Heap_Valid$realtime$concurrent) refers to heap2mt.o(i._FDIterate) for _FDIterate
- heap2mt.o(i.___Heap_Valid$realtime$concurrent) refers to heap2mt.o(.conststring) for .conststring
- heap2mt.o(i._free$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- heap2mt.o(i._free$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
- heap2mt.o(i._free$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2mt.o(i._malloc$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
- heap2mt.o(i._malloc$realtime$concurrent) refers to init_alloc.o(.text) for __Heap_Full
- heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
- heap2mt.o(i._malloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2mt.o(i._posix_memalign$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_FindFirst) for _FDTree_FindFirst
- heap2mt.o(i._posix_memalign$realtime$concurrent) refers to init_alloc.o(.text) for __Heap_Full
- heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_RemoveNode) for _FDTree_RemoveNode
- heap2mt.o(i._posix_memalign$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2mt.o(i._realloc$realtime$concurrent) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- heap2mt.o(i._realloc$realtime$concurrent) refers to h1_free.o(.text) for free
- heap2mt.o(i._realloc$realtime$concurrent) refers to h1_alloc.o(.text) for malloc
- heap2mt.o(i._realloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Delete) for _FDTree_Delete
- heap2mt.o(i._realloc$realtime$concurrent) refers to fdtree.o(i._FDTree_Insert) for _FDTree_Insert
- heap2mt.o(i._realloc$realtime$concurrent) refers to rt_memcpy.o(.emb_text) for __aeabi_memcpy4
- flsbuf.o(.text) refers to stdio.o(.text) for _deferredlazyseek
- flsbuf.o(.text) refers to sys_io.o(.text) for _sys_flen
- flsbuf.o(.text) refers to h1_alloc.o(.text) for malloc
- streamlock.o(.data) refers (Special) to initio.o(.text) for _initio
- fopen.o(.text) refers to fclose.o(.text) for _fclose_internal
- fopen.o(.text) refers to sys_io.o(.text) for _sys_open
- fopen.o(.text) refers to fseek.o(.text) for _fseek
- fopen.o(.text) refers to h1_alloc.o(.text) for malloc
- fopen.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
- fopen.o(.text) refers to stdio_streams.o(.bss) for __stdin
- fclose.o(.text) refers to stdio.o(.text) for _fflush
- fclose.o(.text) refers to sys_io.o(.text) for _sys_close
- fclose.o(.text) refers to h1_free.o(.text) for free
- fclose.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
- fopen_locked.o(.text) refers to fclose.o(.text) for _fclose_internal
- fopen_locked.o(.text) refers to sys_io.o(.text) for _sys_open
- fopen_locked.o(.text) refers to fseek.o(.text) for _fseek
- fopen_locked.o(.text) refers to h1_alloc.o(.text) for malloc
- fopen_locked.o(.text) refers to rt_memclr.o(.text) for __aeabi_memclr4
- fopen_locked.o(.text) refers to streamlock.o(.data) for _stream_list_lock
- fopen_locked.o(.text) refers to stdio_streams.o(.bss) for __stdin
- exit.o(.text) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for __rt_exit
- defsig_fpe_outer.o(.text) refers to defsig_fpe_inner.o(.text) for __rt_SIGFPE_inner
- defsig_fpe_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
- defsig_fpe_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
- defsig_rtred_outer.o(.text) refers to defsig_rtred_inner.o(.text) for __rt_SIGRTRED_inner
- defsig_rtred_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
- defsig_rtred_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002E) for __rt_lib_init_alloca_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000002C) for __rt_lib_init_argv_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001B) for __rt_lib_init_atexit_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000021) for __rt_lib_init_clock_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000032) for __rt_lib_init_cpp_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000030) for __rt_lib_init_exceptions_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000002) for __rt_lib_init_fp_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001F) for __rt_lib_init_fp_trap_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000023) for __rt_lib_init_getenv_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000A) for __rt_lib_init_heap_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000011) for __rt_lib_init_lc_collate_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000013) for __rt_lib_init_lc_ctype_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000015) for __rt_lib_init_lc_monetary_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000017) for __rt_lib_init_lc_numeric_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000019) for __rt_lib_init_lc_time_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000004) for __rt_lib_init_preinit_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000E) for __rt_lib_init_rand_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000033) for __rt_lib_init_return
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000001D) for __rt_lib_init_signal_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000025) for __rt_lib_init_stdio_1
- libinit.o(.ARM.Collect$$libinit$$00000000) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$0000000C) for __rt_lib_init_user_alloc_1
- libinit2.o(.ARM.Collect$$libinit$$00000005) refers (Weak) to init_alloc.o(.text) for _init_alloc
- libinit2.o(.ARM.Collect$$libinit$$00000010) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
- libinit2.o(.ARM.Collect$$libinit$$00000012) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
- libinit2.o(.ARM.Collect$$libinit$$00000014) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
- libinit2.o(.ARM.Collect$$libinit$$00000016) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
- libinit2.o(.ARM.Collect$$libinit$$00000018) refers to libinit2.o(.ARM.Collect$$libinit$$0000000F) for .ARM.Collect$$libinit$$0000000F
- libinit2.o(.ARM.Collect$$libinit$$00000024) refers (Weak) to initio.o(.text) for _initio
- libinit2.o(.ARM.Collect$$libinit$$00000026) refers to argv_veneer.o(.text) for __ARM_argv_veneer
- libinit2.o(.ARM.Collect$$libinit$$00000027) refers to argv_veneer.o(.text) for __ARM_argv_veneer
- libshutdown2.o(.ARM.Collect$$libshutdown$$00000005) refers (Weak) to initio.o(.text) for _terminateio
- libshutdown2.o(.ARM.Collect$$libshutdown$$0000000F) refers (Weak) to term_alloc.o(.text) for _terminate_alloc
- flsbuf_fwide.o(.text) refers to flsbuf.o(.text) for __flsbuf
- libspace.o(.text) refers to libspace.o(.bss) for __libspace_start
- rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
- rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
- rtexit.o(.ARM.Collect$$rtexit$$00000000) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
- rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for __rt_exit_exit
- rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for __rt_exit_ls
- rtexit.o(.ARM.exidx) refers (Special) to rtexit2.o(.ARM.Collect$$rtexit$$00000002) for __rt_exit_prels_1
- rtexit.o(.ARM.exidx) refers to rtexit.o(.ARM.Collect$$rtexit$$00000000) for .ARM.Collect$$rtexit$$00000000
- rt_raise.o(.text) refers to __raise.o(.text) for __raise
- rt_raise.o(.text) refers to sys_exit.o(.text) for _sys_exit
- rt_heap_descriptor.o(.text) refers to rt_heap_descriptor.o(.bss) for __rt_heap_descriptor_data
- rt_heap_descriptor_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
- init_alloc.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
- init_alloc.o(.text) refers (Special) to libinit2.o(.ARM.Collect$$libinit$$00000005) for __rt_lib_init_heap_2
- init_alloc.o(.text) refers (Special) to maybetermalloc1.o(.emb_text) for _maybe_terminate_alloc
- init_alloc.o(.text) refers to h1_extend.o(.text) for __Heap_ProvideMemory
- init_alloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
- init_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- init_alloc.o(.text) refers to h1_init.o(.text) for __Heap_Initialize
- malloc.o(.text) refers (Special) to hguard.o(.text) for __heap$guard
- malloc.o(.text) refers (Special) to init_alloc.o(.text) for _init_alloc
- malloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- h1_alloc.o(.text) refers (Special) to h1_init.o(.text) for __Heap_Initialize
- h1_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- h1_alloc.o(.text) refers to init_alloc.o(.text) for __Heap_Full
- h1_alloc_mt.o(.text) refers (Special) to h1_init.o(.text) for __Heap_Initialize
- h1_alloc_mt.o(.text) refers to init_alloc.o(.text) for __Heap_Full
- h1_alloc_mt.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- _printf_char_file_locked.o(.text) refers to _printf_char_common.o(.text) for _printf_char_common
- _printf_char_file_locked.o(.text) refers to fputc.o(i._fputc$unlocked) for _fputc$unlocked
- fseek.o(.text) refers to sys_io.o(.text) for _sys_istty
- fseek.o(.text) refers to ftell.o(.text) for _ftell_internal
- fseek.o(.text) refers to stdio.o(.text) for _seterr
- stdio.o(.text) refers to sys_io.o(.text) for _sys_seek
- fwritefast.o(.text) refers to stdio.o(.text) for _writebuf
- fwritefast.o(.text) refers to flsbuf.o(.text) for __flsbuf_byte
- fwritefast.o(.text) refers to rt_memcpy.o(.text) for __aeabi_memcpy
- fwritefast_locked.o(.text) refers to stdio.o(.text) for _writebuf
- fwritefast_locked.o(.text) refers to flsbuf.o(.text) for __flsbuf_byte
- fwritefast_locked.o(.text) refers to rt_memcpy.o(.text) for __aeabi_memcpy
- defsig_exit.o(.text) refers to sys_exit.o(.text) for _sys_exit
- defsig_fpe_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
- defsig_rtred_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
- assert_stdio.o(.text) refers to fputs.o(.text) for fputs
- assert_stdio.o(.text) refers to fflush.o(.text) for fflush
- assert_stdio.o(.text) refers to stdio_streams.o(.bss) for __stderr
- sys_exit.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
- sys_exit.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
- rtexit2.o(.ARM.Collect$$rtexit$$00000003) refers to libshutdown.o(.ARM.Collect$$libshutdown$$00000000) for __rt_lib_shutdown
- rtexit2.o(.ARM.Collect$$rtexit$$00000004) refers to sys_exit.o(.text) for _sys_exit
- rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000001) for .ARM.Collect$$rtexit$$00000001
- rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000003) for .ARM.Collect$$rtexit$$00000003
- rtexit2.o(.ARM.exidx) refers to rtexit2.o(.ARM.Collect$$rtexit$$00000004) for .ARM.Collect$$rtexit$$00000004
- maybetermalloc2.o(.emb_text) refers (Special) to term_alloc.o(.text) for _terminate_alloc
- h1_extend.o(.text) refers to h1_free.o(.text) for free
- h1_extend_mt.o(.text) refers to h1_free_mt.o(.text) for _free_internal
- fflush.o(.text) refers to stdio.o(.text) for _fflush
- fflush.o(.text) refers to fseek.o(.text) for _fseek
- fflush.o(.text) refers to stdio_streams.o(.bss) for __stdin
- fputs.o(.text) refers to fputc.o(i.fputc) for fputc
- ftell.o(.text) refers to rt_errno_addr_intlibspace.o(.text) for __aeabi_errno_addr
- fflush_locked.o(.text) refers to stdio.o(.text) for _fflush
- fflush_locked.o(.text) refers to fseek.o(.text) for _fseek
- fflush_locked.o(.text) refers to fflush.o(.text) for _do_fflush
- fflush_locked.o(.text) refers to streamlock.o(.data) for _stream_list_lock
- fflush_locked.o(.text) refers to stdio_streams.o(.bss) for __stdin
- __raise.o(.text) refers to defsig.o(CL$$defsig) for __default_signal_handler
- defsig_general.o(.text) refers to sys_wrch.o(.text) for _ttywrch
- defsig_rtmem_outer.o(.text) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
- defsig_rtmem_outer.o(.text) refers to defsig_exit.o(.text) for __sig_exit
- defsig_rtmem_formal.o(.text) refers to rt_raise.o(.text) for __rt_raise
- heapauxa.o(.text) refers to heapauxa.o(.data) for .data
- _get_argv.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard
- _get_argv.o(.text) refers to h1_alloc.o(.text) for malloc
- _get_argv.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
- _get_argv.o(.text) refers to sys_command.o(.text) for _sys_command_string
- _get_argv_nomalloc.o(.text) refers (Special) to hrguard.o(.text) for __heap_region$guard
- _get_argv_nomalloc.o(.text) refers to defsig_rtmem_outer.o(.text) for __rt_SIGRTMEM
- _get_argv_nomalloc.o(.text) refers to sys_command.o(.text) for _sys_command_string
- sys_wrch.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
- sys_wrch.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
- sys_command.o(.text) refers (Special) to use_no_semi.o(.text) for __I$use$semihosting
- sys_command.o(.text) refers (Special) to indicate_semi.o(.text) for __semihosting_library_function
- rt_errno_addr.o(.text) refers to rt_errno_addr.o(.bss) for __aeabi_errno_addr_data
- rt_errno_addr_intlibspace.o(.text) refers to libspace.o(.bss) for __libspace_start
- term_alloc.o(.text) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000010) for __rt_lib_shutdown_heap_2
- term_alloc.o(.text) refers to rt_heap_descriptor_intlibspace.o(.text) for __rt_heap_descriptor
- defsig_rtmem_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
- defsig.o(CL$$defsig) refers to defsig_fpe_inner.o(.text) for __rt_SIGFPE_inner
- defsig.o(CL$$defsig) refers to defsig_rtred_inner.o(.text) for __rt_SIGRTRED_inner
- defsig.o(CL$$defsig) refers to defsig_rtmem_inner.o(.text) for __rt_SIGRTMEM_inner
- libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000004) for __rt_lib_shutdown_cpp_1
- libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000002) for __rt_lib_shutdown_fini_1
- libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000009) for __rt_lib_shutdown_fp_trap_1
- libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000011) for __rt_lib_shutdown_heap_1
- libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000012) for __rt_lib_shutdown_return
- libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C) for __rt_lib_shutdown_signal_1
- libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$00000006) for __rt_lib_shutdown_stdio_1
- libshutdown.o(.ARM.Collect$$libshutdown$$00000000) refers (Special) to libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E) for __rt_lib_shutdown_user_alloc_1
- defsig_abrt_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
- defsig_stak_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
- defsig_pvfn_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
- defsig_cppl_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
- defsig_segv_inner.o(.text) refers to defsig_general.o(.text) for __default_signal_display
- defsig_other.o(.text) refers to defsig_general.o(.text) for __default_signal_display
- ==============================================================================
- Removing Unused input sections from the image.
- Removing main.o(.rev16_text), (4 bytes).
- Removing main.o(.revsh_text), (4 bytes).
- Removing comm.o(.rev16_text), (4 bytes).
- Removing comm.o(.revsh_text), (4 bytes).
- Removing comm.o(i.ComRxDataHandle), (260 bytes).
- Removing comm.o(i.Comm_Init), (28 bytes).
- Removing comm.o(i.DataTransferCmdHandle), (148 bytes).
- Removing comm.o(i.DataTransferRequestHandle), (128 bytes).
- Removing comm.o(i.DataTransferRequestHostHandle), (172 bytes).
- Removing comm.o(i.SendFrame), (68 bytes).
- Removing comm.o(i.Start_IAPTest), (120 bytes).
- Removing comm.o(i.TransferDataHandle), (128 bytes).
- Removing comm.o(i.TransferDataHostHandle), (188 bytes).
- Removing comm.o(i.TransferExitHandle), (136 bytes).
- Removing comm.o(i.TransferExitHostHandle), (116 bytes).
- Removing comm.o(.bss), (1368 bytes).
- Removing comm.o(.data), (24 bytes).
- Removing iap.o(.rev16_text), (4 bytes).
- Removing iap.o(.revsh_text), (4 bytes).
- Removing iap.o(i.IAP_Start), (28 bytes).
- Removing iap.o(i.IAP_Stop), (88 bytes).
- Removing iap.o(i.IAP_Write), (164 bytes).
- Removing iap.o(.bss), (2048 bytes).
- Removing iap.o(.data), (12 bytes).
- Removing main_task.o(.rev16_text), (4 bytes).
- Removing main_task.o(.revsh_text), (4 bytes).
- Removing protocol.o(.rev16_text), (4 bytes).
- Removing protocol.o(.revsh_text), (4 bytes).
- Removing cfg.o(.rev16_text), (4 bytes).
- Removing cfg.o(.revsh_text), (4 bytes).
- Removing process.o(.rev16_text), (4 bytes).
- Removing process.o(.revsh_text), (4 bytes).
- Removing cobs.o(.rev16_text), (4 bytes).
- Removing cobs.o(.revsh_text), (4 bytes).
- Removing cobs.o(i.cobs_decode), (188 bytes).
- Removing cobs.o(i.cobs_encode), (142 bytes).
- Removing crc16.o(.rev16_text), (4 bytes).
- Removing crc16.o(.revsh_text), (4 bytes).
- Removing fifo.o(.rev16_text), (4 bytes).
- Removing fifo.o(.revsh_text), (4 bytes).
- Removing fifo.o(i.Fifo_strchr), (54 bytes).
- Removing fifo.o(i.fifo_DeInit), (36 bytes).
- Removing fifo.o(i.fifo_GetFreeSpace), (16 bytes).
- Removing fifo.o(i.fifo_GetLen), (10 bytes).
- Removing fifo.o(i.fifo_Init), (48 bytes).
- Removing fifo.o(i.fifo_NotFull), (24 bytes).
- Removing fifo.o(i.fifo_Reset), (30 bytes).
- Removing fifo.o(i.fifo_insert), (68 bytes).
- Removing fifo.o(i.fifo_retrieve), (66 bytes).
- Removing timer.o(.rev16_text), (4 bytes).
- Removing timer.o(.revsh_text), (4 bytes).
- Removing gpio.o(.rev16_text), (4 bytes).
- Removing gpio.o(.revsh_text), (4 bytes).
- Removing uart.o(.rev16_text), (4 bytes).
- Removing uart.o(.revsh_text), (4 bytes).
- Removing ac780x_acmp.o(.rev16_text), (4 bytes).
- Removing ac780x_acmp.o(.revsh_text), (4 bytes).
- Removing ac780x_acmp.o(i.ACMP_DeInit), (76 bytes).
- Removing ac780x_acmp.o(i.ACMP_Init), (364 bytes).
- Removing ac780x_acmp.o(i.ACMP_SetCallback), (24 bytes).
- Removing ac780x_acmp.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing ac780x_acmp.o(.constdata), (1 bytes).
- Removing ac780x_adc.o(.rev16_text), (4 bytes).
- Removing ac780x_adc.o(.revsh_text), (4 bytes).
- Removing ac780x_adc.o(i.ADC_DeInit), (64 bytes).
- Removing ac780x_adc.o(i.ADC_Init), (372 bytes).
- Removing ac780x_adc.o(i.ADC_SetAnalogMonitor), (144 bytes).
- Removing ac780x_adc.o(i.ADC_SetCallback), (24 bytes).
- Removing ac780x_adc.o(i.ADC_SetChannelSampleTime), (46 bytes).
- Removing ac780x_adc.o(i.ADC_SetInjectGroupChannel), (32 bytes).
- Removing ac780x_adc.o(i.ADC_SetReceiveDMA), (74 bytes).
- Removing ac780x_adc.o(i.ADC_SetRegularGroupChannel), (56 bytes).
- Removing ac780x_adc.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing ac780x_adc.o(.constdata), (1 bytes).
- Removing ac780x_can.o(.rev16_text), (4 bytes).
- Removing ac780x_can.o(.revsh_text), (4 bytes).
- Removing ac780x_can.o(i.CAN_DeInit), (124 bytes).
- Removing ac780x_can.o(i.CAN_GetError), (48 bytes).
- Removing ac780x_can.o(i.CAN_GetPayloadSize), (62 bytes).
- Removing ac780x_can.o(i.CAN_Init), (484 bytes).
- Removing ac780x_can.o(i.CAN_IsTransmitting), (24 bytes).
- Removing ac780x_can.o(i.CAN_ReceiveMessage), (182 bytes).
- Removing ac780x_can.o(i.CAN_SetBitrate), (36 bytes).
- Removing ac780x_can.o(i.CAN_SetCallBack), (32 bytes).
- Removing ac780x_can.o(i.CAN_SetFilter), (82 bytes).
- Removing ac780x_can.o(i.CAN_SetMsgInfo), (244 bytes).
- Removing ac780x_can.o(i.CAN_SetTransmitAmount), (32 bytes).
- Removing ac780x_can.o(i.CAN_TransmitMessage), (148 bytes).
- Removing ac780x_can.o(i.CAN_WaitTransmissionDone), (52 bytes).
- Removing ac780x_can.o(i.CAN_WaitTransmissionIdle), (48 bytes).
- Removing ac780x_can.o(i.WaitTransmitPrimaryDone), (52 bytes).
- Removing ac780x_can.o(i.WaitTransmitSecondaryDone), (52 bytes).
- Removing ac780x_can.o(.constdata), (3 bytes).
- Removing ac780x_ckgen.o(.rev16_text), (4 bytes).
- Removing ac780x_ckgen.o(.revsh_text), (4 bytes).
- Removing ac780x_ckgen.o(i.CKGEN_SetCANClock), (18 bytes).
- Removing ac780x_ckgen.o(i.CKGEN_SetCANTimeDivider), (20 bytes).
- Removing ac780x_crc.o(.rev16_text), (4 bytes).
- Removing ac780x_crc.o(.revsh_text), (4 bytes).
- Removing ac780x_crc.o(i.CRC_Check), (216 bytes).
- Removing ac780x_crc.o(i.CRC_DeInit), (20 bytes).
- Removing ac780x_crc.o(i.CRC_Init), (96 bytes).
- Removing ac780x_crc.o(i.CRC_SetSeedOrDataMode), (20 bytes).
- Removing ac780x_crc.o(.data), (1 bytes).
- Removing ac780x_ctu.o(.rev16_text), (4 bytes).
- Removing ac780x_ctu.o(.revsh_text), (4 bytes).
- Removing ac780x_ctu.o(i.CTU_DeInit), (20 bytes).
- Removing ac780x_ctu.o(i.CTU_Init), (188 bytes).
- Removing ac780x_ctu.o(i.CTU_SetPwdtIn3InputSource), (36 bytes).
- Removing ac780x_dma.o(.rev16_text), (4 bytes).
- Removing ac780x_dma.o(.revsh_text), (4 bytes).
- Removing ac780x_dma.o(i.DMA_GetInterFIFODataLeftNum), (8 bytes).
- Removing ac780x_dma.o(i.DMA_GetTransferedDataNum), (6 bytes).
- Removing ac780x_dma.o(i.DMA_GetTransmissionLength), (6 bytes).
- Removing ac780x_dma.o(i.DMA_SetCallback), (24 bytes).
- Removing ac780x_ecc_sram.o(.rev16_text), (4 bytes).
- Removing ac780x_ecc_sram.o(.revsh_text), (4 bytes).
- Removing ac780x_ecc_sram.o(i.ECC_SRAM_DeInit), (20 bytes).
- Removing ac780x_ecc_sram.o(i.ECC_SRAM_Enable2BitErrReset), (18 bytes).
- Removing ac780x_ecc_sram.o(i.ECC_SRAM_Init), (72 bytes).
- Removing ac780x_ecc_sram.o(i.ECC_SRAM_SetCallBack), (16 bytes).
- Removing ac780x_ecc_sram.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing ac780x_eflash.o(.rev16_text), (4 bytes).
- Removing ac780x_eflash.o(.revsh_text), (4 bytes).
- Removing ac780x_eflash.o(i.EFLASH_ConfigWdg), (96 bytes).
- Removing ac780x_eflash.o(i.EFLASH_DisableReadOut), (68 bytes).
- Removing ac780x_eflash.o(i.EFLASH_EnableReadOut), (56 bytes).
- Removing ac780x_eflash.o(i.EFLASH_MassErase), (76 bytes).
- Removing ac780x_eflash.o(i.EFLASH_MassEraseVerify), (72 bytes).
- Removing ac780x_eflash.o(i.EFLASH_OptionPageErase), (72 bytes).
- Removing ac780x_eflash.o(i.EFLASH_OptionPageProgram), (100 bytes).
- Removing ac780x_eflash.o(i.EFLASH_Read), (20 bytes).
- Removing ac780x_eflash.o(i.EFLASH_ReadDWord), (4 bytes).
- Removing ac780x_eflash.o(i.EFLASH_SetWriteProtect), (132 bytes).
- Removing ac780x_gpio.o(.rev16_text), (4 bytes).
- Removing ac780x_gpio.o(.revsh_text), (4 bytes).
- Removing ac780x_gpio.o(i.GPIO_DeInit), (104 bytes).
- Removing ac780x_gpio.o(i.GPIO_DisableExtInterrupt), (10 bytes).
- Removing ac780x_gpio.o(i.GPIO_EnableExtInterrupt), (146 bytes).
- Removing ac780x_gpio.o(i.GPIO_GetDir), (10 bytes).
- Removing ac780x_gpio.o(i.GPIO_GetPinFunc), (100 bytes).
- Removing ac780x_gpio.o(i.GPIO_GetPortLevel), (6 bytes).
- Removing ac780x_gpio.o(i.GPIO_Init), (162 bytes).
- Removing ac780x_gpio.o(i.GPIO_ResetPinBit), (12 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetCallback), (28 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetDirGroup), (42 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetDrivingAbility), (20 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetFuncGroup), (44 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetPinBit), (60 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetPinExtIntMask), (24 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetPinExtIntSource), (116 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetPinFallingEdge), (24 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetPinRisingEdge), (24 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetPortLevel), (4 bytes).
- Removing ac780x_gpio.o(i.GPIO_SetPulldown), (18 bytes).
- Removing ac780x_gpio.o(i.__NVIC_EnableIRQ), (24 bytes).
- Removing ac780x_gpio.o(.constdata), (5 bytes).
- Removing ac780x_i2c.o(.rev16_text), (4 bytes).
- Removing ac780x_i2c.o(.revsh_text), (4 bytes).
- Removing ac780x_i2c.o(i.I2C_DeInit), (68 bytes).
- Removing ac780x_i2c.o(i.I2C_GetTransmitReceiveStatus), (24 bytes).
- Removing ac780x_i2c.o(i.I2C_GetTransmittedReceivedLength), (24 bytes).
- Removing ac780x_i2c.o(i.I2C_Init), (416 bytes).
- Removing ac780x_i2c.o(i.I2C_MasterReceiveDMA), (208 bytes).
- Removing ac780x_i2c.o(i.I2C_MasterReceiveInt), (180 bytes).
- Removing ac780x_i2c.o(i.I2C_MasterReceivePoll), (200 bytes).
- Removing ac780x_i2c.o(i.I2C_MasterTransmitDMA), (228 bytes).
- Removing ac780x_i2c.o(i.I2C_MasterTransmitInt), (156 bytes).
- Removing ac780x_i2c.o(i.I2C_MasterTransmitPoll), (116 bytes).
- Removing ac780x_i2c.o(i.I2C_ReceiveOneByte), (64 bytes).
- Removing ac780x_i2c.o(i.I2C_ResetTransmitReceiveStatus), (40 bytes).
- Removing ac780x_i2c.o(i.I2C_Restart), (78 bytes).
- Removing ac780x_i2c.o(i.I2C_SetCallback), (24 bytes).
- Removing ac780x_i2c.o(i.I2C_SetInterrupt), (14 bytes).
- Removing ac780x_i2c.o(i.I2C_SlaveReceiveDMA), (92 bytes).
- Removing ac780x_i2c.o(i.I2C_SlaveTransmitDMA), (100 bytes).
- Removing ac780x_i2c.o(i.I2C_SlaveTransmitReceiveInt), (44 bytes).
- Removing ac780x_i2c.o(i.I2C_Start), (82 bytes).
- Removing ac780x_i2c.o(i.I2C_Stop), (84 bytes).
- Removing ac780x_i2c.o(i.I2C_TransmitOneByte), (18 bytes).
- Removing ac780x_i2c.o(i.I2C_WaitForReady), (36 bytes).
- Removing ac780x_i2c.o(i.I2C_WaitOneByteFinished), (60 bytes).
- Removing ac780x_i2c.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
- Removing ac780x_i2c.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing ac780x_i2c.o(.constdata), (16 bytes).
- Removing ac780x_mmdivsqrt.o(.rev16_text), (4 bytes).
- Removing ac780x_mmdivsqrt.o(.revsh_text), (4 bytes).
- Removing ac780x_mmdivsqrt.o(i.MMDIVSQRT_CalculateSignDivision), (52 bytes).
- Removing ac780x_mmdivsqrt.o(i.MMDIVSQRT_CalculateSquareRoot), (24 bytes).
- Removing ac780x_mmdivsqrt.o(i.MMDIVSQRT_CalculateUnsignDivision), (52 bytes).
- Removing ac780x_pwdt.o(.rev16_text), (4 bytes).
- Removing ac780x_pwdt.o(.revsh_text), (4 bytes).
- Removing ac780x_pwdt.o(i.PWDT_DeInit), (76 bytes).
- Removing ac780x_pwdt.o(i.PWDT_Init), (320 bytes).
- Removing ac780x_pwdt.o(i.PWDT_SetCallback), (24 bytes).
- Removing ac780x_pwdt.o(i.PWDT_SetClockPrescaler), (62 bytes).
- Removing ac780x_pwdt.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing ac780x_pwdt.o(.constdata), (6 bytes).
- Removing ac780x_pwm.o(.rev16_text), (4 bytes).
- Removing ac780x_pwm.o(.revsh_text), (4 bytes).
- Removing ac780x_pwm.o(i.PWM_DeInit), (76 bytes).
- Removing ac780x_pwm.o(i.PWM_Init), (212 bytes).
- Removing ac780x_pwm.o(i.PWM_InitFaultControl), (148 bytes).
- Removing ac780x_pwm.o(i.PWM_InitSyncControl), (364 bytes).
- Removing ac780x_pwm.o(i.PWM_SetCHOPOLCRSyncTriggerMode), (32 bytes).
- Removing ac780x_pwm.o(i.PWM_SetCHOSWCRSyncTriggerMode), (32 bytes).
- Removing ac780x_pwm.o(i.PWM_SetCNTSyncTriggerMode), (32 bytes).
- Removing ac780x_pwm.o(i.PWM_SetCallback), (24 bytes).
- Removing ac780x_pwm.o(i.PWM_SetChannelELSR), (20 bytes).
- Removing ac780x_pwm.o(i.PWM_SetChannelInputFilter), (22 bytes).
- Removing ac780x_pwm.o(i.PWM_SetChannelInterrupt), (18 bytes).
- Removing ac780x_pwm.o(i.PWM_SetChannelMSR), (20 bytes).
- Removing ac780x_pwm.o(i.PWM_SetChannelMatchDir), (18 bytes).
- Removing ac780x_pwm.o(i.PWM_SetChannelOutputInitLevel), (18 bytes).
- Removing ac780x_pwm.o(i.PWM_SetChannelPolarity), (18 bytes).
- Removing ac780x_pwm.o(i.PWM_SetChannelTrigger), (18 bytes).
- Removing ac780x_pwm.o(i.PWM_SetCountMode), (14 bytes).
- Removing ac780x_pwm.o(i.PWM_SetDeadtime), (26 bytes).
- Removing ac780x_pwm.o(i.PWM_SetHardwareTriggerSyncSrc), (20 bytes).
- Removing ac780x_pwm.o(i.PWM_SetINVCRSyncTriggerMode), (32 bytes).
- Removing ac780x_pwm.o(i.PWM_SetInputCaptureMode), (294 bytes).
- Removing ac780x_pwm.o(i.PWM_SetMCVRSyncTriggerMode), (32 bytes).
- Removing ac780x_pwm.o(i.PWM_SetOMCRSyncTriggerMode), (32 bytes).
- Removing ac780x_pwm.o(i.PWM_SetOutputCompareMode), (152 bytes).
- Removing ac780x_pwm.o(i.PWM_SetPWMMode), (498 bytes).
- Removing ac780x_pwm.o(i.PWM_SetPairChannelCombine), (20 bytes).
- Removing ac780x_pwm.o(i.PWM_SetPairChannelComplement), (22 bytes).
- Removing ac780x_pwm.o(i.PWM_SetPairChannelDeadtime), (22 bytes).
- Removing ac780x_pwm.o(i.PWM_SetQuadDecodeMode), (106 bytes).
- Removing ac780x_pwm.o(i.PWM_SimplyInit), (332 bytes).
- Removing ac780x_pwm.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing ac780x_pwm.o(i.__NVIC_EnableIRQ), (24 bytes).
- Removing ac780x_pwm.o(.constdata), (6 bytes).
- Removing ac780x_rtc.o(.rev16_text), (4 bytes).
- Removing ac780x_rtc.o(.revsh_text), (4 bytes).
- Removing ac780x_rtc.o(i.RTC_DeInit), (44 bytes).
- Removing ac780x_rtc.o(i.RTC_Init), (176 bytes).
- Removing ac780x_rtc.o(i.RTC_SetCallback), (12 bytes).
- Removing ac780x_rtc.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
- Removing ac780x_rtc.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing ac780x_spi.o(.rev16_text), (4 bytes).
- Removing ac780x_spi.o(.revsh_text), (4 bytes).
- Removing ac780x_spi.o(i.SPI_ClearTxUFRxOF), (30 bytes).
- Removing ac780x_spi.o(i.SPI_DeInit), (84 bytes).
- Removing ac780x_spi.o(i.SPI_GetTransmitReceiveStatus), (24 bytes).
- Removing ac780x_spi.o(i.SPI_Init), (428 bytes).
- Removing ac780x_spi.o(i.SPI_MasterReleaseCS), (16 bytes).
- Removing ac780x_spi.o(i.SPI_ReceiveDMA), (164 bytes).
- Removing ac780x_spi.o(i.SPI_ReceiveInt), (140 bytes).
- Removing ac780x_spi.o(i.SPI_ReceivePoll), (258 bytes).
- Removing ac780x_spi.o(i.SPI_ResetTransmitReceiveStatus), (24 bytes).
- Removing ac780x_spi.o(i.SPI_SetCallback), (24 bytes).
- Removing ac780x_spi.o(i.SPI_SetTxOnly), (14 bytes).
- Removing ac780x_spi.o(i.SPI_TransmitDMA), (152 bytes).
- Removing ac780x_spi.o(i.SPI_TransmitInt), (124 bytes).
- Removing ac780x_spi.o(i.SPI_TransmitPoll), (130 bytes).
- Removing ac780x_spi.o(i.SPI_TransmitReceiveDMA), (204 bytes).
- Removing ac780x_spi.o(i.SPI_TransmitReceiveInt), (144 bytes).
- Removing ac780x_spi.o(i.SPI_TransmitReceivePoll), (174 bytes).
- Removing ac780x_spi.o(i.SPI_WaitReceiveFinish), (52 bytes).
- Removing ac780x_spi.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing ac780x_spi.o(.constdata), (16 bytes).
- Removing ac780x_spm.o(.rev16_text), (4 bytes).
- Removing ac780x_spm.o(.revsh_text), (4 bytes).
- Removing ac780x_spm.o(i.EnablePLLDetectorFunction), (44 bytes).
- Removing ac780x_spm.o(i.PVD_SetCallback), (12 bytes).
- Removing ac780x_spm.o(i.SPM_ClearWakeupSourceFlag), (16 bytes).
- Removing ac780x_spm.o(i.SPM_EnableCANLowpassFilter), (24 bytes).
- Removing ac780x_spm.o(i.SPM_EnableFastBoot), (20 bytes).
- Removing ac780x_spm.o(i.SPM_EnableLVD), (20 bytes).
- Removing ac780x_spm.o(i.SPM_EnableModuleSleepACK), (28 bytes).
- Removing ac780x_spm.o(i.SPM_EnableModuleWakeup), (28 bytes).
- Removing ac780x_spm.o(i.SPM_EnablePVD), (20 bytes).
- Removing ac780x_spm.o(i.SPM_EnableXOSCBypassMode), (20 bytes).
- Removing ac780x_spm.o(i.SPM_GetModuleSleepACKStatus), (16 bytes).
- Removing ac780x_spm.o(i.SPM_SetCallback), (12 bytes).
- Removing ac780x_spm.o(i.SPM_SetLowPowerMode), (120 bytes).
- Removing ac780x_timer.o(.rev16_text), (4 bytes).
- Removing ac780x_timer.o(.revsh_text), (4 bytes).
- Removing ac780x_timer.o(i.TIMER_DeInit), (60 bytes).
- Removing ac780x_timer.o(i.TIMER_DeInitChannel), (80 bytes).
- Removing ac780x_timer.o(i.TIMER_SetCallback), (24 bytes).
- Removing ac780x_timer.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
- Removing ac780x_uart.o(.rev16_text), (4 bytes).
- Removing ac780x_uart.o(.revsh_text), (4 bytes).
- Removing ac780x_uart.o(i.UART_DeInit), (132 bytes).
- Removing ac780x_uart.o(i.UART_GetUARTCtrl), (20 bytes).
- Removing ac780x_uart.o(i.UART_ReceiveData), (8 bytes).
- Removing ac780x_uart.o(i.UART_SendData), (40 bytes).
- Removing ac780x_uart.o(i.UART_SetCTSRTS), (58 bytes).
- Removing ac780x_uart.o(i.UART_SetCallback), (40 bytes).
- Removing ac780x_uart.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
- Removing ac780x_uart.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing ac780x_uart.o(.constdata), (12 bytes).
- Removing ac780x_wdg.o(.rev16_text), (4 bytes).
- Removing ac780x_wdg.o(.revsh_text), (4 bytes).
- Removing ac780x_wdg.o(i.WDG_DeInit), (44 bytes).
- Removing ac780x_wdg.o(i.WDG_Init), (212 bytes).
- Removing ac780x_wdg.o(i.WDG_SetCallback), (12 bytes).
- Removing ac780x_wdg.o(i.__NVIC_ClearPendingIRQ), (24 bytes).
- Removing ac780x_wdg.o(i.__NVIC_DisableIRQ), (32 bytes).
- Removing system_ac780x.o(.rev16_text), (4 bytes).
- Removing system_ac780x.o(.revsh_text), (4 bytes).
- Removing system_ac780x.o(i.ClearAllResetStatus), (14 bytes).
- Removing system_ac780x.o(i.GetCPUID), (12 bytes).
- Removing system_ac780x.o(i.GetCpuType), (12 bytes).
- Removing system_ac780x.o(i.GetResetStatus), (8 bytes).
- Removing system_ac780x.o(i.GetUUID), (32 bytes).
- Removing system_ac780x.o(i.SetHSEBYPClock), (106 bytes).
- Removing system_ac780x.o(i.SetHSIClock), (50 bytes).
- Removing system_ac780x.o(i.SetSysClock), (8 bytes).
- Removing system_ac780x.o(i.SetXOSCClock), (30 bytes).
- Removing system_ac780x.o(i.SysSleep), (20 bytes).
- Removing system_ac780x.o(i.SysStandby), (28 bytes).
- Removing system_ac780x.o(i.SysStop), (28 bytes).
- Removing system_ac780x.o(i.SystemCoreClockUpdate), (184 bytes).
- Removing system_ac780x.o(i.udelay), (36 bytes).
- 317 unused section(s) (total 21901 bytes) removed from the image.
- ==============================================================================
- Image Symbol Table
- Local Symbols
- Symbol Name Value Ov Type Size Object(Section)
- ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit1.o ABSOLUTE
- ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit3.o ABSOLUTE
- ../clib/angel/boardlib.s 0x00000000 Number 0 boardinit2.o ABSOLUTE
- ../clib/angel/boardlib.s 0x00000000 Number 0 boardshut.o ABSOLUTE
- ../clib/angel/handlers.s 0x00000000 Number 0 __scatter_copy.o ABSOLUTE
- ../clib/angel/handlers.s 0x00000000 Number 0 __scatter_zi.o ABSOLUTE
- ../clib/angel/kernel.s 0x00000000 Number 0 rtexit2.o ABSOLUTE
- ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry.o ABSOLUTE
- ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry2.o ABSOLUTE
- ../clib/angel/kernel.s 0x00000000 Number 0 rtexit.o ABSOLUTE
- ../clib/angel/kernel.s 0x00000000 Number 0 __rtentry4.o ABSOLUTE
- ../clib/angel/rt.s 0x00000000 Number 0 rt_heap_descriptor_intlibspace.o ABSOLUTE
- ../clib/angel/rt.s 0x00000000 Number 0 rt_errno_addr.o ABSOLUTE
- ../clib/angel/rt.s 0x00000000 Number 0 rt_errno_addr_intlibspace.o ABSOLUTE
- ../clib/angel/rt.s 0x00000000 Number 0 aeabi_idiv0.o ABSOLUTE
- ../clib/angel/rt.s 0x00000000 Number 0 aeabi_idiv0_sigfpe.o ABSOLUTE
- ../clib/angel/rt.s 0x00000000 Number 0 rt_div0.o ABSOLUTE
- ../clib/angel/rt.s 0x00000000 Number 0 rt_raise.o ABSOLUTE
- ../clib/angel/rt.s 0x00000000 Number 0 rt_heap_descriptor.o ABSOLUTE
- ../clib/angel/scatterp.s 0x00000000 Number 0 __scatter.o ABSOLUTE
- ../clib/angel/startup.s 0x00000000 Number 0 __main.o ABSOLUTE
- ../clib/angel/sys.s 0x00000000 Number 0 libspace.o ABSOLUTE
- ../clib/angel/sys.s 0x00000000 Number 0 sys_stackheap_outer.o ABSOLUTE
- ../clib/angel/sys.s 0x00000000 Number 0 mutex_dummy.o ABSOLUTE
- ../clib/angel/sys.s 0x00000000 Number 0 use_no_semi.o ABSOLUTE
- ../clib/angel/sys.s 0x00000000 Number 0 indicate_semi.o ABSOLUTE
- ../clib/angel/sys.s 0x00000000 Number 0 tempstk.o ABSOLUTE
- ../clib/angel/sysapp.c 0x00000000 Number 0 sys_exit.o ABSOLUTE
- ../clib/angel/sysapp.c 0x00000000 Number 0 sys_io.o ABSOLUTE
- ../clib/angel/sysapp.c 0x00000000 Number 0 sys_command.o ABSOLUTE
- ../clib/angel/sysapp.c 0x00000000 Number 0 sys_wrch.o ABSOLUTE
- ../clib/armsys.c 0x00000000 Number 0 _get_argv_nomalloc.o ABSOLUTE
- ../clib/armsys.c 0x00000000 Number 0 no_argv.o ABSOLUTE
- ../clib/armsys.c 0x00000000 Number 0 argv_veneer.o ABSOLUTE
- ../clib/armsys.c 0x00000000 Number 0 _get_argv.o ABSOLUTE
- ../clib/assert.c 0x00000000 Number 0 assert_stdio.o ABSOLUTE
- ../clib/division.s 0x00000000 Number 0 aeabi_sdiv.o ABSOLUTE
- ../clib/division.s 0x00000000 Number 0 aeabi_sdiv_div0.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_init.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_extend.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_free.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_final_mt.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_final.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_alloc.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_alloc_mt.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_init_mt.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_free_mt.o ABSOLUTE
- ../clib/heap1.c 0x00000000 Number 0 h1_extend_mt.o ABSOLUTE
- ../clib/heap2.c 0x00000000 Number 0 heap2.o ABSOLUTE
- ../clib/heap2.c 0x00000000 Number 0 fdtree.o ABSOLUTE
- ../clib/heap2.c 0x00000000 Number 0 heap2mt.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc1.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc1.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc2.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 maybetermalloc2.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 hrguard.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 heapstubs.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 malloc.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 init_alloc.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 hguard.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 term_alloc.o ABSOLUTE
- ../clib/heapalloc.c 0x00000000 Number 0 free.o ABSOLUTE
- ../clib/heapaux.c 0x00000000 Number 0 heapauxi.o ABSOLUTE
- ../clib/heapaux.c 0x00000000 Number 0 heapauxa.o ABSOLUTE
- ../clib/libinit.s 0x00000000 Number 0 libinit2.o ABSOLUTE
- ../clib/libinit.s 0x00000000 Number 0 libinit.o ABSOLUTE
- ../clib/libinit.s 0x00000000 Number 0 libshutdown.o ABSOLUTE
- ../clib/libinit.s 0x00000000 Number 0 libshutdown2.o ABSOLUTE
- ../clib/memcpset.c 0x00000000 Number 0 rt_memcpy.o ABSOLUTE
- ../clib/memcpset.c 0x00000000 Number 0 rt_memcpy.o ABSOLUTE
- ../clib/memcpset.c 0x00000000 Number 0 rt_memclr.o ABSOLUTE
- ../clib/misc.s 0x00000000 Number 0 printf_stubs.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __printf_flags.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __printf_ss.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_hex_ll_ptr.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_intcommon.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ptr.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_hex_ptr.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __printf_wp.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_char_file.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __printf_flags_ss_wp.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ll.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_hex_int.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __printf_ss_wp.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_char_file_locked.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_char_common.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __2printf.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 noretval__2printf.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __printf.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __printf_nopercent.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_pad.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_hex_int_ll_ptr.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 _printf_hex_ll.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __printf_flags_wp.o ABSOLUTE
- ../clib/printf.c 0x00000000 Number 0 __printf_flags_ss.o ABSOLUTE
- ../clib/printf_percent.s 0x00000000 Number 0 _printf_x.o ABSOLUTE
- ../clib/printf_percent.s 0x00000000 Number 0 _printf_percent.o ABSOLUTE
- ../clib/printf_percent.s 0x00000000 Number 0 _printf_percent_end.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_rtred_formal.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_rtred_inner.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_exit.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_rtred_outer.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_fpe_formal.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_fpe_outer.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_fpe_inner.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_other.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_segv_inner.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_cppl_inner.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_pvfn_inner.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_stak_inner.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_abrt_inner.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_inner.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_formal.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_rtmem_outer.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 defsig_general.o ABSOLUTE
- ../clib/signal.c 0x00000000 Number 0 __raise.o ABSOLUTE
- ../clib/signal.s 0x00000000 Number 0 defsig.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 stdio_streams.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 ferror.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fputc_locked.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 ferror_locked.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 initio_locked.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 initio.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 flsbuf.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 setvbuf.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 streamlock.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fseek.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fflush_locked.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fputs_locked.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 ftell.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fputs.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fflush.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fopen.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 setvbuf_locked.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fopen_locked.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 stdio.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fwritefast.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fwritefast_locked.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fclose.o ABSOLUTE
- ../clib/stdio.c 0x00000000 Number 0 fputc.o ABSOLUTE
- ../clib/stdlib.c 0x00000000 Number 0 exit.o ABSOLUTE
- ../clib/string.c 0x00000000 Number 0 strlen.o ABSOLUTE
- ../clib/wchar.c 0x00000000 Number 0 flsbuf_fwide.o ABSOLUTE
- ../fplib/cfplib/fdiv.c 0x00000000 Number 0 fdiv.o ABSOLUTE
- ../fplib/cfplib/ffix.c 0x00000000 Number 0 ffixul.o ABSOLUTE
- ../fplib/cfplib/ffix.c 0x00000000 Number 0 ffixui.o ABSOLUTE
- ../fplib/cfplib/fflt.c 0x00000000 Number 0 fflti.o ABSOLUTE
- ../fplib/cfplib/fpinit.c 0x00000000 Number 0 fpinit.o ABSOLUTE
- ../fplib/cfplib/scalbn.c 0x00000000 Number 0 fscalbn.o ABSOLUTE
- ../fplib/faddsub6m.s 0x00000000 Number 0 faddsub.o ABSOLUTE
- ../fplib/usenofp.s 0x00000000 Number 0 usenofp.o ABSOLUTE
- ..\Device\gpio.c 0x00000000 Number 0 gpio.o ABSOLUTE
- ..\Device\timer.c 0x00000000 Number 0 timer.o ABSOLUTE
- ..\Device\uart.c 0x00000000 Number 0 uart.o ABSOLUTE
- ..\Lib\cobs.c 0x00000000 Number 0 cobs.o ABSOLUTE
- ..\Lib\crc16.c 0x00000000 Number 0 crc16.o ABSOLUTE
- ..\Lib\fifo.c 0x00000000 Number 0 fifo.o ABSOLUTE
- ..\User\Comm.c 0x00000000 Number 0 comm.o ABSOLUTE
- ..\User\IAP.c 0x00000000 Number 0 iap.o ABSOLUTE
- ..\User\cfg.c 0x00000000 Number 0 cfg.o ABSOLUTE
- ..\User\main.c 0x00000000 Number 0 main.o ABSOLUTE
- ..\User\main_task.c 0x00000000 Number 0 main_task.o ABSOLUTE
- ..\User\process.c 0x00000000 Number 0 process.o ABSOLUTE
- ..\User\protocol.c 0x00000000 Number 0 protocol.o ABSOLUTE
- ..\\Device\\gpio.c 0x00000000 Number 0 gpio.o ABSOLUTE
- ..\\Device\\timer.c 0x00000000 Number 0 timer.o ABSOLUTE
- ..\\Device\\uart.c 0x00000000 Number 0 uart.o ABSOLUTE
- ..\\Lib\\cobs.c 0x00000000 Number 0 cobs.o ABSOLUTE
- ..\\Lib\\crc16.c 0x00000000 Number 0 crc16.o ABSOLUTE
- ..\\Lib\\fifo.c 0x00000000 Number 0 fifo.o ABSOLUTE
- ..\\User\\Comm.c 0x00000000 Number 0 comm.o ABSOLUTE
- ..\\User\\IAP.c 0x00000000 Number 0 iap.o ABSOLUTE
- ..\\User\\cfg.c 0x00000000 Number 0 cfg.o ABSOLUTE
- ..\\User\\main.c 0x00000000 Number 0 main.o ABSOLUTE
- ..\\User\\main_task.c 0x00000000 Number 0 main_task.o ABSOLUTE
- ..\\User\\process.c 0x00000000 Number 0 process.o ABSOLUTE
- ..\\User\\protocol.c 0x00000000 Number 0 protocol.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_acmp.c 0x00000000 Number 0 ac780x_acmp.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_adc.c 0x00000000 Number 0 ac780x_adc.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_can.c 0x00000000 Number 0 ac780x_can.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_ckgen.c 0x00000000 Number 0 ac780x_ckgen.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_crc.c 0x00000000 Number 0 ac780x_crc.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_ctu.c 0x00000000 Number 0 ac780x_ctu.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_dma.c 0x00000000 Number 0 ac780x_dma.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_ecc_sram.c 0x00000000 Number 0 ac780x_ecc_sram.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_eflash.c 0x00000000 Number 0 ac780x_eflash.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_gpio.c 0x00000000 Number 0 ac780x_gpio.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_i2c.c 0x00000000 Number 0 ac780x_i2c.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_mmdivsqrt.c 0x00000000 Number 0 ac780x_mmdivsqrt.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_pwdt.c 0x00000000 Number 0 ac780x_pwdt.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_pwm.c 0x00000000 Number 0 ac780x_pwm.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_rtc.c 0x00000000 Number 0 ac780x_rtc.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_spi.c 0x00000000 Number 0 ac780x_spi.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_spm.c 0x00000000 Number 0 ac780x_spm.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_timer.c 0x00000000 Number 0 ac780x_timer.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_uart.c 0x00000000 Number 0 ac780x_uart.o ABSOLUTE
- C:\Users\avans\AutoChips\AC780x_DFP\1.0.6\ATC_Driver\src\ac780x_wdg.c 0x00000000 Number 0 ac780x_wdg.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_acmp.c 0x00000000 Number 0 ac780x_acmp.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_adc.c 0x00000000 Number 0 ac780x_adc.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_can.c 0x00000000 Number 0 ac780x_can.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_ckgen.c 0x00000000 Number 0 ac780x_ckgen.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_crc.c 0x00000000 Number 0 ac780x_crc.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_ctu.c 0x00000000 Number 0 ac780x_ctu.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_dma.c 0x00000000 Number 0 ac780x_dma.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_ecc_sram.c 0x00000000 Number 0 ac780x_ecc_sram.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_eflash.c 0x00000000 Number 0 ac780x_eflash.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_gpio.c 0x00000000 Number 0 ac780x_gpio.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_i2c.c 0x00000000 Number 0 ac780x_i2c.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_mmdivsqrt.c 0x00000000 Number 0 ac780x_mmdivsqrt.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_pwdt.c 0x00000000 Number 0 ac780x_pwdt.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_pwm.c 0x00000000 Number 0 ac780x_pwm.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_rtc.c 0x00000000 Number 0 ac780x_rtc.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_spi.c 0x00000000 Number 0 ac780x_spi.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_spm.c 0x00000000 Number 0 ac780x_spm.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_timer.c 0x00000000 Number 0 ac780x_timer.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_uart.c 0x00000000 Number 0 ac780x_uart.o ABSOLUTE
- C:\\Users\\avans\\AutoChips\\AC780x_DFP\\1.0.6\\ATC_Driver\\src\\ac780x_wdg.c 0x00000000 Number 0 ac780x_wdg.o ABSOLUTE
- RTE\Device\AC78013MDQA\startup_ac780x.s 0x00000000 Number 0 startup_ac780x.o ABSOLUTE
- RTE\Device\AC78013MDQA\system_ac780x.c 0x00000000 Number 0 system_ac780x.o ABSOLUTE
- RTE\\Device\\AC78013MDQA\\system_ac780x.c 0x00000000 Number 0 system_ac780x.o ABSOLUTE
- dc.s 0x00000000 Number 0 dc.o ABSOLUTE
- RESET 0x08000000 Section 192 startup_ac780x.o(RESET)
- !!!main 0x080000c0 Section 8 __main.o(!!!main)
- !!!scatter 0x080000c8 Section 60 __scatter.o(!!!scatter)
- !!handler_copy 0x08000104 Section 26 __scatter_copy.o(!!handler_copy)
- !!handler_zi 0x08000120 Section 28 __scatter_zi.o(!!handler_zi)
- .ARM.Collect$$libinit$$00000000 0x0800013c Section 2 libinit.o(.ARM.Collect$$libinit$$00000000)
- .ARM.Collect$$libinit$$00000002 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
- .ARM.Collect$$libinit$$00000004 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000004)
- .ARM.Collect$$libinit$$0000000A 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
- .ARM.Collect$$libinit$$0000000C 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
- .ARM.Collect$$libinit$$0000000E 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000000E)
- .ARM.Collect$$libinit$$00000011 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
- .ARM.Collect$$libinit$$00000013 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
- .ARM.Collect$$libinit$$00000015 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
- .ARM.Collect$$libinit$$00000017 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
- .ARM.Collect$$libinit$$00000019 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
- .ARM.Collect$$libinit$$0000001B 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
- .ARM.Collect$$libinit$$0000001D 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
- .ARM.Collect$$libinit$$0000001F 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
- .ARM.Collect$$libinit$$00000021 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
- .ARM.Collect$$libinit$$00000023 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
- .ARM.Collect$$libinit$$00000025 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000025)
- .ARM.Collect$$libinit$$0000002C 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
- .ARM.Collect$$libinit$$0000002E 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
- .ARM.Collect$$libinit$$00000030 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
- .ARM.Collect$$libinit$$00000032 0x0800013e Section 0 libinit2.o(.ARM.Collect$$libinit$$00000032)
- .ARM.Collect$$libinit$$00000033 0x0800013e Section 2 libinit2.o(.ARM.Collect$$libinit$$00000033)
- .ARM.Collect$$libshutdown$$00000000 0x08000140 Section 2 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
- .ARM.Collect$$libshutdown$$00000002 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)
- .ARM.Collect$$libshutdown$$00000004 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)
- .ARM.Collect$$libshutdown$$00000006 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
- .ARM.Collect$$libshutdown$$00000009 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
- .ARM.Collect$$libshutdown$$0000000C 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)
- .ARM.Collect$$libshutdown$$0000000E 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
- .ARM.Collect$$libshutdown$$00000011 0x08000142 Section 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000011)
- .ARM.Collect$$libshutdown$$00000012 0x08000142 Section 2 libshutdown2.o(.ARM.Collect$$libshutdown$$00000012)
- .ARM.Collect$$rtentry$$00000000 0x08000144 Section 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000)
- .ARM.Collect$$rtentry$$00000002 0x08000144 Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002)
- .ARM.Collect$$rtentry$$00000004 0x08000144 Section 6 __rtentry4.o(.ARM.Collect$$rtentry$$00000004)
- .ARM.Collect$$rtentry$$00000009 0x0800014a Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009)
- .ARM.Collect$$rtentry$$0000000A 0x0800014a Section 4 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
- .ARM.Collect$$rtentry$$0000000C 0x0800014e Section 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
- .ARM.Collect$$rtentry$$0000000D 0x0800014e Section 8 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
- .ARM.Collect$$rtexit$$00000000 0x08000156 Section 2 rtexit.o(.ARM.Collect$$rtexit$$00000000)
- .ARM.Collect$$rtexit$$00000002 0x08000158 Section 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
- .ARM.Collect$$rtexit$$00000003 0x08000158 Section 4 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
- .ARM.Collect$$rtexit$$00000004 0x0800015c Section 6 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
- .emb_text 0x08000164 Section 56 rt_memcpy.o(.emb_text)
- .text 0x0800019c Section 120 startup_ac780x.o(.text)
- .text 0x08000214 Section 0 rt_memcpy.o(.text)
- .text 0x08000296 Section 0 rt_memclr.o(.text)
- .text 0x080002d6 Section 0 heapauxi.o(.text)
- .text 0x080002dc Section 0 fdiv.o(.text)
- .text 0x0800043c Section 0 ffixui.o(.text)
- .text 0x0800046c Section 0 ffixul.o(.text)
- .text 0x080004b6 Section 0 fflti.o(.text)
- .text 0x08000514 Section 0 fscalbn.o(.text)
- .text 0x08000558 Section 62 sys_stackheap_outer.o(.text)
- .text 0x08000596 Section 0 exit.o(.text)
- .text 0x080005a8 Section 8 libspace.o(.text)
- .text 0x080005b0 Section 2 use_no_semi.o(.text)
- .text 0x080005b2 Section 0 indicate_semi.o(.text)
- .text 0x080005b4 Section 0 sys_exit.o(.text)
- i.ACMP0_IRQHandler 0x080005c0 Section 0 ac780x_acmp.o(i.ACMP0_IRQHandler)
- i.ADC0_IRQHandler 0x080005dc Section 0 ac780x_adc.o(i.ADC0_IRQHandler)
- i.CAN0_Handler 0x080005fc Section 0 ac780x_can.o(i.CAN0_Handler)
- i.CAN_HandleEvent 0x0800060c Section 0 ac780x_can.o(i.CAN_HandleEvent)
- i.CKGEN_Enable 0x08000654 Section 0 ac780x_ckgen.o(i.CKGEN_Enable)
- i.CKGEN_SetAPBClockDivider 0x08000694 Section 0 ac780x_ckgen.o(i.CKGEN_SetAPBClockDivider)
- i.CKGEN_SetPLLReference 0x080006a8 Section 0 ac780x_ckgen.o(i.CKGEN_SetPLLReference)
- i.CKGEN_SetPllFeedbackDiv 0x080006bc Section 0 ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv)
- i.CKGEN_SetPllPostDiv 0x080006d4 Section 0 ac780x_ckgen.o(i.CKGEN_SetPllPostDiv)
- i.CKGEN_SetPllPrevDiv 0x080006ec Section 0 ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv)
- i.CKGEN_SetSysclkDiv 0x08000700 Section 0 ac780x_ckgen.o(i.CKGEN_SetSysclkDiv)
- i.CKGEN_SetSysclkSrc 0x08000712 Section 0 ac780x_ckgen.o(i.CKGEN_SetSysclkSrc)
- i.CKGEN_SoftReset 0x08000722 Section 0 ac780x_ckgen.o(i.CKGEN_SoftReset)
- i.Config_Init 0x08000764 Section 0 cfg.o(i.Config_Init)
- i.DMA0_Channel0_IRQHandler 0x080007a0 Section 0 ac780x_dma.o(i.DMA0_Channel0_IRQHandler)
- i.DMA0_Channel1_IRQHandler 0x080007c4 Section 0 ac780x_dma.o(i.DMA0_Channel1_IRQHandler)
- i.DMA0_Channel2_IRQHandler 0x080007e8 Section 0 ac780x_dma.o(i.DMA0_Channel2_IRQHandler)
- i.DMA0_Channel3_IRQHandler 0x0800080c Section 0 ac780x_dma.o(i.DMA0_Channel3_IRQHandler)
- i.DMA_ChannelFlush 0x08000830 Section 0 ac780x_dma.o(i.DMA_ChannelFlush)
- i.DMA_ChannelHardRst 0x0800083a Section 0 ac780x_dma.o(i.DMA_ChannelHardRst)
- DMA_ChannelHardRst 0x0800083b Thumb Code 16 ac780x_dma.o(i.DMA_ChannelHardRst)
- i.DMA_ClearFlag 0x0800084a Section 0 ac780x_dma.o(i.DMA_ClearFlag)
- i.DMA_DeInit 0x08000864 Section 0 ac780x_dma.o(i.DMA_DeInit)
- i.DMA_Init 0x080008d8 Section 0 ac780x_dma.o(i.DMA_Init)
- i.DMA_SetChannel 0x08000a1c Section 0 ac780x_dma.o(i.DMA_SetChannel)
- i.ECC_SRAM_IRQHandler 0x08000a28 Section 0 ac780x_ecc_sram.o(i.ECC_SRAM_IRQHandler)
- i.EFLASH_LockCtrl 0x08000a54 Section 0 ac780x_eflash.o(i.EFLASH_LockCtrl)
- i.EFLASH_PageErase 0x08000a64 Section 0 ac780x_eflash.o(i.EFLASH_PageErase)
- i.EFLASH_PageEraseVerify 0x08000abc Section 0 ac780x_eflash.o(i.EFLASH_PageEraseVerify)
- i.EFLASH_PageProgram 0x08000b08 Section 0 ac780x_eflash.o(i.EFLASH_PageProgram)
- i.EFLASH_TrigCtrlCmdReg 0x08000b88 Section 0 ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg)
- EFLASH_TrigCtrlCmdReg 0x08000b89 Thumb Code 12 ac780x_eflash.o(i.EFLASH_TrigCtrlCmdReg)
- i.EFLASH_UnlockCtrl 0x08000b98 Section 0 ac780x_eflash.o(i.EFLASH_UnlockCtrl)
- i.EFLASH_WaitEop 0x08000bd0 Section 0 ac780x_eflash.o(i.EFLASH_WaitEop)
- i.EFLASH_WaitForLastOperation 0x08000bf4 Section 0 ac780x_eflash.o(i.EFLASH_WaitForLastOperation)
- i.EXTI0_IRQHandler 0x08000c38 Section 0 ac780x_gpio.o(i.EXTI0_IRQHandler)
- i.EXTI1_IRQHandler 0x08000c60 Section 0 ac780x_gpio.o(i.EXTI1_IRQHandler)
- i.EXTI2_IRQHandler 0x08000c88 Section 0 ac780x_gpio.o(i.EXTI2_IRQHandler)
- i.EXTI3_8_IRQHandler 0x08000cb0 Section 0 ac780x_gpio.o(i.EXTI3_8_IRQHandler)
- i.EXTI9_15_IRQHandler 0x08000cf4 Section 0 ac780x_gpio.o(i.EXTI9_15_IRQHandler)
- i.Factory_reset 0x08000d38 Section 0 cfg.o(i.Factory_reset)
- Factory_reset 0x08000d39 Thumb Code 24 cfg.o(i.Factory_reset)
- i.GPIO_ClearPendingExtInterrupt 0x08000d58 Section 0 ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt)
- i.GPIO_GetPendingExtIntSource 0x08000d68 Section 0 ac780x_gpio.o(i.GPIO_GetPendingExtIntSource)
- GPIO_GetPendingExtIntSource 0x08000d69 Thumb Code 84 ac780x_gpio.o(i.GPIO_GetPendingExtIntSource)
- i.GPIO_GetPendingExtInterrupt 0x08000dc4 Section 0 ac780x_gpio.o(i.GPIO_GetPendingExtInterrupt)
- i.GPIO_GetPinLevel 0x08000dd0 Section 0 ac780x_gpio.o(i.GPIO_GetPinLevel)
- i.GPIO_PortInit 0x08000ddc Section 0 gpio.o(i.GPIO_PortInit)
- i.GPIO_SetDir 0x08000e80 Section 0 ac780x_gpio.o(i.GPIO_SetDir)
- i.GPIO_SetFunc 0x08000e94 Section 0 ac780x_gpio.o(i.GPIO_SetFunc)
- i.GPIO_SetPinLevel 0x08000f34 Section 0 ac780x_gpio.o(i.GPIO_SetPinLevel)
- i.GPIO_SetPullup 0x08000f46 Section 0 ac780x_gpio.o(i.GPIO_SetPullup)
- i.I2C0_IRQHandler 0x08000f58 Section 0 ac780x_i2c.o(i.I2C0_IRQHandler)
- i.I2C1_IRQHandler 0x08000f84 Section 0 ac780x_i2c.o(i.I2C1_IRQHandler)
- i.I2C_ClearStartFlag 0x08000fb0 Section 0 ac780x_i2c.o(i.I2C_ClearStartFlag)
- I2C_ClearStartFlag 0x08000fb1 Thumb Code 14 ac780x_i2c.o(i.I2C_ClearStartFlag)
- i.I2C_MasterIntHandler 0x08000fc0 Section 0 ac780x_i2c.o(i.I2C_MasterIntHandler)
- I2C_MasterIntHandler 0x08000fc1 Thumb Code 418 ac780x_i2c.o(i.I2C_MasterIntHandler)
- i.I2C_MasterSlaveIntHandler 0x0800116c Section 0 ac780x_i2c.o(i.I2C_MasterSlaveIntHandler)
- I2C_MasterSlaveIntHandler 0x0800116d Thumb Code 102 ac780x_i2c.o(i.I2C_MasterSlaveIntHandler)
- i.I2C_ReceiveLastOneByte 0x080011d8 Section 0 ac780x_i2c.o(i.I2C_ReceiveLastOneByte)
- i.I2C_SlaveIntHandler 0x080011ec Section 0 ac780x_i2c.o(i.I2C_SlaveIntHandler)
- I2C_SlaveIntHandler 0x080011ed Thumb Code 336 ac780x_i2c.o(i.I2C_SlaveIntHandler)
- i.InitDelay 0x08001344 Section 0 system_ac780x.o(i.InitDelay)
- i.NMI_Handler 0x08001358 Section 0 ac780x_spm.o(i.NMI_Handler)
- i.PVD_IRQHandler 0x080013e4 Section 0 ac780x_spm.o(i.PVD_IRQHandler)
- i.PWDT0_IRQHandler 0x0800140c Section 0 ac780x_pwdt.o(i.PWDT0_IRQHandler)
- i.PWDT1_IRQHandler 0x0800141c Section 0 ac780x_pwdt.o(i.PWDT1_IRQHandler)
- i.PWDT_CommonISR 0x0800142c Section 0 ac780x_pwdt.o(i.PWDT_CommonISR)
- PWDT_CommonISR 0x0800142d Thumb Code 76 ac780x_pwdt.o(i.PWDT_CommonISR)
- i.PWM0_IRQHandler 0x0800147c Section 0 ac780x_pwm.o(i.PWM0_IRQHandler)
- i.PWM1_IRQHandler 0x0800148c Section 0 ac780x_pwm.o(i.PWM1_IRQHandler)
- i.PWM_CommonISR 0x0800149c Section 0 ac780x_pwm.o(i.PWM_CommonISR)
- PWM_CommonISR 0x0800149d Thumb Code 82 ac780x_pwm.o(i.PWM_CommonISR)
- i.Process_CoverStatus 0x080014f4 Section 0 process.o(i.Process_CoverStatus)
- i.Process_Init 0x08001500 Section 0 process.o(i.Process_Init)
- i.Process_LockStatus 0x0800158c Section 0 process.o(i.Process_LockStatus)
- i.Process_RunLedPrd 0x08001598 Section 0 process.o(i.Process_RunLedPrd)
- i.Process_ThreeStatus 0x080015d0 Section 0 process.o(i.Process_ThreeStatus)
- i.Process_UnlockStatus 0x0800168c Section 0 process.o(i.Process_UnlockStatus)
- i.RTC_ClearRPIF 0x08001698 Section 0 ac780x_rtc.o(i.RTC_ClearRPIF)
- RTC_ClearRPIF 0x08001699 Thumb Code 16 ac780x_rtc.o(i.RTC_ClearRPIF)
- i.RTC_ClearRTIF 0x080016ac Section 0 ac780x_rtc.o(i.RTC_ClearRTIF)
- RTC_ClearRTIF 0x080016ad Thumb Code 18 ac780x_rtc.o(i.RTC_ClearRTIF)
- i.RTC_IRQHandler 0x080016c4 Section 0 ac780x_rtc.o(i.RTC_IRQHandler)
- i.Read_Addr 0x080016f4 Section 0 protocol.o(i.Read_Addr)
- i.Read_Baudrate 0x08001710 Section 0 protocol.o(i.Read_Baudrate)
- i.Read_Deviceid 0x0800172c Section 0 protocol.o(i.Read_Deviceid)
- i.Read_Devicetype 0x0800175c Section 0 protocol.o(i.Read_Devicetype)
- i.Read_FirmwareVersion 0x0800177c Section 0 protocol.o(i.Read_FirmwareVersion)
- i.Read_HardwareVersion 0x080017b4 Section 0 protocol.o(i.Read_HardwareVersion)
- i.Read_LockStatus 0x080017d4 Section 0 protocol.o(i.Read_LockStatus)
- i.ResetConfig 0x080017f6 Section 0 cfg.o(i.ResetConfig)
- i.SPI0_IRQHandler 0x08001800 Section 0 ac780x_spi.o(i.SPI0_IRQHandler)
- i.SPI1_IRQHandler 0x08001828 Section 0 ac780x_spi.o(i.SPI1_IRQHandler)
- i.SPI_InterruptHandler 0x08001850 Section 0 ac780x_spi.o(i.SPI_InterruptHandler)
- SPI_InterruptHandler 0x08001851 Thumb Code 20 ac780x_spi.o(i.SPI_InterruptHandler)
- i.SPI_MasterInterruptHandler 0x08001864 Section 0 ac780x_spi.o(i.SPI_MasterInterruptHandler)
- SPI_MasterInterruptHandler 0x08001865 Thumb Code 312 ac780x_spi.o(i.SPI_MasterInterruptHandler)
- i.SPI_SetRxFInterrupt 0x080019a8 Section 0 ac780x_spi.o(i.SPI_SetRxFInterrupt)
- SPI_SetRxFInterrupt 0x080019a9 Thumb Code 16 ac780x_spi.o(i.SPI_SetRxFInterrupt)
- i.SPI_SetRxOnly 0x080019b8 Section 0 ac780x_spi.o(i.SPI_SetRxOnly)
- SPI_SetRxOnly 0x080019b9 Thumb Code 14 ac780x_spi.o(i.SPI_SetRxOnly)
- i.SPI_SetTxEInterrupt 0x080019c6 Section 0 ac780x_spi.o(i.SPI_SetTxEInterrupt)
- SPI_SetTxEInterrupt 0x080019c7 Thumb Code 16 ac780x_spi.o(i.SPI_SetTxEInterrupt)
- i.SPI_SlaveInterruptHandler 0x080019d8 Section 0 ac780x_spi.o(i.SPI_SlaveInterruptHandler)
- SPI_SlaveInterruptHandler 0x080019d9 Thumb Code 226 ac780x_spi.o(i.SPI_SlaveInterruptHandler)
- i.SPM_EnablePLL 0x08001ac4 Section 0 ac780x_spm.o(i.SPM_EnablePLL)
- i.SPM_EnableXOSC 0x08001b18 Section 0 ac780x_spm.o(i.SPM_EnableXOSC)
- i.SPM_GetModuleWakeupSourceFlag 0x08001ba0 Section 0 ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag)
- i.SPM_IRQHandler 0x08001bb0 Section 0 ac780x_spm.o(i.SPM_IRQHandler)
- i.SPM_XOSCOKBypassSet 0x08001bd8 Section 0 ac780x_spm.o(i.SPM_XOSCOKBypassSet)
- i.SaveConfig 0x08001bec Section 0 cfg.o(i.SaveConfig)
- i.SetEflashClock 0x08001c30 Section 0 system_ac780x.o(i.SetEflashClock)
- i.SetHSEClock 0x08001c74 Section 0 system_ac780x.o(i.SetHSEClock)
- i.SysTickDelay 0x08001cd8 Section 0 system_ac780x.o(i.SysTickDelay)
- SysTickDelay 0x08001cd9 Thumb Code 44 system_ac780x.o(i.SysTickDelay)
- i.SysTickRepeatDelay 0x08001d08 Section 0 system_ac780x.o(i.SysTickRepeatDelay)
- SysTickRepeatDelay 0x08001d09 Thumb Code 24 system_ac780x.o(i.SysTickRepeatDelay)
- i.SystemInit 0x08001d20 Section 0 system_ac780x.o(i.SystemInit)
- i.TIMER_Channel0_IRQHandler 0x08001d50 Section 0 ac780x_timer.o(i.TIMER_Channel0_IRQHandler)
- i.TIMER_Channel1_IRQHandler 0x08001d60 Section 0 ac780x_timer.o(i.TIMER_Channel1_IRQHandler)
- i.TIMER_Channel2_IRQHandler 0x08001d70 Section 0 ac780x_timer.o(i.TIMER_Channel2_IRQHandler)
- i.TIMER_Channel3_IRQHandler 0x08001d80 Section 0 ac780x_timer.o(i.TIMER_Channel3_IRQHandler)
- i.TIMER_CommonISR 0x08001d90 Section 0 ac780x_timer.o(i.TIMER_CommonISR)
- TIMER_CommonISR 0x08001d91 Thumb Code 48 ac780x_timer.o(i.TIMER_CommonISR)
- i.TIMER_Init 0x08001dc4 Section 0 ac780x_timer.o(i.TIMER_Init)
- i.TIMER_PrdInit 0x08001e58 Section 0 timer.o(i.TIMER_PrdInit)
- i.TIM_CHN2_Callback 0x08001e88 Section 0 timer.o(i.TIM_CHN2_Callback)
- i.Task_Handle 0x08001ec0 Section 0 main_task.o(i.Task_Handle)
- i.Task_Init 0x08001ed0 Section 0 main_task.o(i.Task_Init)
- i.UART0_IRQHandler 0x08001ed8 Section 0 ac780x_uart.o(i.UART0_IRQHandler)
- i.UART1_IRQHandler 0x08001ee8 Section 0 ac780x_uart.o(i.UART1_IRQHandler)
- i.UART2_IRQHandler 0x08001ef8 Section 0 ac780x_uart.o(i.UART2_IRQHandler)
- i.UART_Init 0x08001f08 Section 0 ac780x_uart.o(i.UART_Init)
- i.UART_InterruptHandler 0x08002024 Section 0 ac780x_uart.o(i.UART_InterruptHandler)
- UART_InterruptHandler 0x08002025 Thumb Code 52 ac780x_uart.o(i.UART_InterruptHandler)
- i.UART_ReceiveDMA 0x0800205c Section 0 ac780x_uart.o(i.UART_ReceiveDMA)
- i.UART_SetBaudrate 0x080020ec Section 0 ac780x_uart.o(i.UART_SetBaudrate)
- i.UART_SetParity 0x08002164 Section 0 ac780x_uart.o(i.UART_SetParity)
- i.UART_TransmitDMA 0x0800219c Section 0 ac780x_uart.o(i.UART_TransmitDMA)
- i.Uart0_RxDataHandle 0x08002230 Section 0 main_task.o(i.Uart0_RxDataHandle)
- i.UartRxDMAEventCallback 0x08002464 Section 0 uart.o(i.UartRxDMAEventCallback)
- UartRxDMAEventCallback 0x08002465 Thumb Code 2 uart.o(i.UartRxDMAEventCallback)
- i.UartRxIdleCallBack 0x08002468 Section 0 uart.o(i.UartRxIdleCallBack)
- UartRxIdleCallBack 0x08002469 Thumb Code 34 uart.o(i.UartRxIdleCallBack)
- i.UartTxDMAEventCallback 0x08002494 Section 0 uart.o(i.UartTxDMAEventCallback)
- i.WDG_IRQHandler 0x080024a4 Section 0 ac780x_wdg.o(i.WDG_IRQHandler)
- i.Write_Addr 0x080024c0 Section 0 protocol.o(i.Write_Addr)
- i.Write_Baudrate 0x080024d8 Section 0 protocol.o(i.Write_Baudrate)
- i.Write_Deviceid 0x080024f8 Section 0 protocol.o(i.Write_Deviceid)
- i.Write_Devicetype 0x08002524 Section 0 protocol.o(i.Write_Devicetype)
- i.Write_HardwareVersion 0x08002544 Section 0 protocol.o(i.Write_HardwareVersion)
- i.__ARM_common_switch8 0x08002564 Section 0 uart.o(i.__ARM_common_switch8)
- i.__NVIC_DisableIRQ 0x08002580 Section 0 ac780x_timer.o(i.__NVIC_DisableIRQ)
- __NVIC_DisableIRQ 0x08002581 Thumb Code 26 ac780x_timer.o(i.__NVIC_DisableIRQ)
- i.crc16 0x080025a0 Section 0 crc16.o(i.crc16)
- i.main 0x080025c8 Section 0 main.o(i.main)
- i.mdelay 0x080025e8 Section 0 system_ac780x.o(i.mdelay)
- i.uart0_RecvData 0x0800260c Section 0 uart.o(i.uart0_RecvData)
- i.uart0_TransmitData 0x08002638 Section 0 uart.o(i.uart0_TransmitData)
- i.uart_Initialize 0x08002678 Section 0 uart.o(i.uart_Initialize)
- x$fpl$fadd 0x0800275c Section 140 faddsub.o(x$fpl$fadd)
- _fadd1 0x08002769 Thumb Code 0 faddsub.o(x$fpl$fadd)
- x$fpl$frsb 0x080027e8 Section 24 faddsub.o(x$fpl$frsb)
- x$fpl$fsub 0x08002800 Section 208 faddsub.o(x$fpl$fsub)
- _fsub1 0x0800280d Thumb Code 0 faddsub.o(x$fpl$fsub)
- .constdata 0x080028d0 Section 512 crc16.o(.constdata)
- x$fpl$usenofp 0x080028d0 Section 0 usenofp.o(x$fpl$usenofp)
- CRCH 0x080028d0 Data 256 crc16.o(.constdata)
- CRCL 0x080029d0 Data 256 crc16.o(.constdata)
- .constdata 0x08002ad0 Section 32 ac780x_dma.o(.constdata)
- .constdata 0x08002af0 Section 4 ac780x_timer.o(.constdata)
- s_timerIRQ 0x08002af0 Data 4 ac780x_timer.o(.constdata)
- .constdata 0x08002af4 Section 64 fdiv.o(.constdata)
- fdiv_tab 0x08002af4 Data 64 fdiv.o(.constdata)
- .data 0x20000000 Section 32 protocol.o(.data)
- .data 0x20000020 Section 4 cfg.o(.data)
- .data 0x20000024 Section 12 process.o(.data)
- .data 0x20000030 Section 4 ac780x_acmp.o(.data)
- s_acmpCallback 0x20000030 Data 4 ac780x_acmp.o(.data)
- .data 0x20000034 Section 4 ac780x_adc.o(.data)
- s_adcCallback 0x20000034 Data 4 ac780x_adc.o(.data)
- .data 0x20000038 Section 4 ac780x_ecc_sram.o(.data)
- s_ecc_SramCallback 0x20000038 Data 4 ac780x_ecc_sram.o(.data)
- .data 0x2000003c Section 16 ac780x_i2c.o(.data)
- s_i2cCallback 0x2000003c Data 8 ac780x_i2c.o(.data)
- .data 0x2000004c Section 8 ac780x_pwdt.o(.data)
- s_pwdtCallback 0x2000004c Data 8 ac780x_pwdt.o(.data)
- .data 0x20000054 Section 8 ac780x_pwm.o(.data)
- s_pwmCallback 0x20000054 Data 8 ac780x_pwm.o(.data)
- .data 0x2000005c Section 4 ac780x_rtc.o(.data)
- s_rtcCallback 0x2000005c Data 4 ac780x_rtc.o(.data)
- .data 0x20000060 Section 56 ac780x_spi.o(.data)
- .data 0x20000098 Section 8 ac780x_spm.o(.data)
- s_spmCallback 0x20000098 Data 4 ac780x_spm.o(.data)
- s_pvdCallback 0x2000009c Data 4 ac780x_spm.o(.data)
- .data 0x200000a0 Section 4 ac780x_wdg.o(.data)
- s_wdgCallback 0x200000a0 Data 4 ac780x_wdg.o(.data)
- .data 0x200000a4 Section 20 system_ac780x.o(.data)
- s_pllPREDIV 0x200000a4 Data 3 system_ac780x.o(.data)
- s_facus 0x200000a8 Data 4 system_ac780x.o(.data)
- s_facms 0x200000ac Data 4 system_ac780x.o(.data)
- .bss 0x200000b8 Section 24 cfg.o(.bss)
- reflectionBuff 0x200000b8 Data 24 cfg.o(.bss)
- .bss 0x200000d0 Section 400 uart.o(.bss)
- .bss 0x20000260 Section 12 ac780x_can.o(.bss)
- s_canDevice 0x20000260 Data 12 ac780x_can.o(.bss)
- .bss 0x2000026c Section 16 ac780x_dma.o(.bss)
- .bss 0x2000027c Section 20 ac780x_gpio.o(.bss)
- .bss 0x20000290 Section 32 ac780x_i2c.o(.bss)
- .bss 0x200002b0 Section 16 ac780x_timer.o(.bss)
- s_timerCallback 0x200002b0 Data 16 ac780x_timer.o(.bss)
- .bss 0x200002c0 Section 12 ac780x_uart.o(.bss)
- .bss 0x200002cc Section 96 libspace.o(.bss)
- HEAP 0x20000330 Section 0 startup_ac780x.o(HEAP)
- STACK 0x20000330 Section 1024 startup_ac780x.o(STACK)
- Heap_Mem 0x20000330 Data 0 startup_ac780x.o(HEAP)
- Stack_Mem 0x20000330 Data 1024 startup_ac780x.o(STACK)
- __initial_sp 0x20000730 Data 0 startup_ac780x.o(STACK)
- Global Symbols
- Symbol Name Value Ov Type Size Object(Section)
- 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
- __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE
- _printf_flags 0x00000000 Number 0 printf_stubs.o ABSOLUTE
- _printf_return_value 0x00000000 Number 0 printf_stubs.o ABSOLUTE
- _printf_sizespec 0x00000000 Number 0 printf_stubs.o ABSOLUTE
- _printf_widthprec 0x00000000 Number 0 printf_stubs.o ABSOLUTE
- __ARM_exceptions_init - Undefined Weak Reference
- __alloca_initialize - Undefined Weak Reference
- __arm_fini_ - Undefined Weak Reference
- __arm_preinit_ - Undefined Weak Reference
- __cpp_initialize__aeabi_ - Undefined Weak Reference
- __cxa_finalize - Undefined Weak Reference
- __rt_locale - Undefined Weak Reference
- __sigvec_lookup - Undefined Weak Reference
- __user_heap_extent - Undefined Weak Reference
- _atexit_init - Undefined Weak Reference
- _call_atexit_fns - Undefined Weak Reference
- _clock_init - Undefined Weak Reference
- _fp_trap_init - Undefined Weak Reference
- _fp_trap_shutdown - Undefined Weak Reference
- _get_lc_collate - Undefined Weak Reference
- _get_lc_ctype - Undefined Weak Reference
- _get_lc_monetary - Undefined Weak Reference
- _get_lc_numeric - Undefined Weak Reference
- _get_lc_time - Undefined Weak Reference
- _getenv_init - Undefined Weak Reference
- _handle_redirection - Undefined Weak Reference
- _mutex_acquire - Undefined Weak Reference
- _mutex_free - Undefined Weak Reference
- _mutex_release - Undefined Weak Reference
- _printf_truncate_unsigned - Undefined Weak Reference
- _rand_init - Undefined Weak Reference
- _signal_finish - Undefined Weak Reference
- _signal_init - Undefined Weak Reference
- __Vectors_Size 0x000000c0 Number 0 startup_ac780x.o ABSOLUTE
- __Vectors 0x08000000 Data 4 startup_ac780x.o(RESET)
- __Vectors_End 0x080000c0 Data 0 startup_ac780x.o(RESET)
- __main 0x080000c1 Thumb Code 8 __main.o(!!!main)
- __scatterload 0x080000c9 Thumb Code 0 __scatter.o(!!!scatter)
- __scatterload_rt2 0x080000c9 Thumb Code 52 __scatter.o(!!!scatter)
- __scatterload_rt2_thumb_only 0x080000c9 Thumb Code 0 __scatter.o(!!!scatter)
- __scatterload_null 0x080000d9 Thumb Code 0 __scatter.o(!!!scatter)
- __scatterload_copy 0x08000105 Thumb Code 26 __scatter_copy.o(!!handler_copy)
- __scatterload_zeroinit 0x08000121 Thumb Code 28 __scatter_zi.o(!!handler_zi)
- __rt_lib_init 0x0800013d Thumb Code 0 libinit.o(.ARM.Collect$$libinit$$00000000)
- __rt_lib_init_alloca_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002E)
- __rt_lib_init_argv_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000002C)
- __rt_lib_init_atexit_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001B)
- __rt_lib_init_clock_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000021)
- __rt_lib_init_cpp_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000032)
- __rt_lib_init_exceptions_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000030)
- __rt_lib_init_fp_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000002)
- __rt_lib_init_fp_trap_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001F)
- __rt_lib_init_getenv_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000023)
- __rt_lib_init_heap_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000A)
- __rt_lib_init_lc_collate_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000011)
- __rt_lib_init_lc_ctype_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000013)
- __rt_lib_init_lc_monetary_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000015)
- __rt_lib_init_lc_numeric_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000017)
- __rt_lib_init_lc_time_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000019)
- __rt_lib_init_preinit_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000004)
- __rt_lib_init_rand_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000E)
- __rt_lib_init_return 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000033)
- __rt_lib_init_signal_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000001D)
- __rt_lib_init_stdio_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$00000025)
- __rt_lib_init_user_alloc_1 0x0800013f Thumb Code 0 libinit2.o(.ARM.Collect$$libinit$$0000000C)
- __rt_lib_shutdown 0x08000141 Thumb Code 0 libshutdown.o(.ARM.Collect$$libshutdown$$00000000)
- __rt_lib_shutdown_cpp_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000004)
- __rt_lib_shutdown_fini_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000002)
- __rt_lib_shutdown_fp_trap_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000009)
- __rt_lib_shutdown_heap_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000011)
- __rt_lib_shutdown_return 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000012)
- __rt_lib_shutdown_signal_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000C)
- __rt_lib_shutdown_stdio_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$00000006)
- __rt_lib_shutdown_user_alloc_1 0x08000143 Thumb Code 0 libshutdown2.o(.ARM.Collect$$libshutdown$$0000000E)
- __rt_entry 0x08000145 Thumb Code 0 __rtentry.o(.ARM.Collect$$rtentry$$00000000)
- __rt_entry_presh_1 0x08000145 Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000002)
- __rt_entry_sh 0x08000145 Thumb Code 0 __rtentry4.o(.ARM.Collect$$rtentry$$00000004)
- __rt_entry_li 0x0800014b Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000A)
- __rt_entry_postsh_1 0x0800014b Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$00000009)
- __rt_entry_main 0x0800014f Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000D)
- __rt_entry_postli_1 0x0800014f Thumb Code 0 __rtentry2.o(.ARM.Collect$$rtentry$$0000000C)
- __rt_exit 0x08000157 Thumb Code 0 rtexit.o(.ARM.Collect$$rtexit$$00000000)
- __rt_exit_ls 0x08000159 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000003)
- __rt_exit_prels_1 0x08000159 Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000002)
- __rt_exit_exit 0x0800015d Thumb Code 0 rtexit2.o(.ARM.Collect$$rtexit$$00000004)
- __aeabi_memcpy4 0x08000165 Thumb Code 56 rt_memcpy.o(.emb_text)
- __aeabi_memcpy8 0x08000165 Thumb Code 0 rt_memcpy.o(.emb_text)
- Reset_Handler 0x0800019d Thumb Code 38 startup_ac780x.o(.text)
- HardFault_Handler 0x080001c5 Thumb Code 2 startup_ac780x.o(.text)
- SVC_Handler 0x080001c7 Thumb Code 2 startup_ac780x.o(.text)
- PendSV_Handler 0x080001c9 Thumb Code 2 startup_ac780x.o(.text)
- SysTick_Handler 0x080001cb Thumb Code 2 startup_ac780x.o(.text)
- __user_initial_stackheap 0x080001d1 Thumb Code 10 startup_ac780x.o(.text)
- __aeabi_memcpy 0x08000215 Thumb Code 130 rt_memcpy.o(.text)
- __rt_memcpy 0x08000215 Thumb Code 0 rt_memcpy.o(.text)
- _memset_w 0x08000297 Thumb Code 26 rt_memclr.o(.text)
- _memset 0x080002b1 Thumb Code 30 rt_memclr.o(.text)
- __aeabi_memclr 0x080002cf Thumb Code 4 rt_memclr.o(.text)
- __rt_memclr 0x080002cf Thumb Code 0 rt_memclr.o(.text)
- __aeabi_memclr4 0x080002d3 Thumb Code 0 rt_memclr.o(.text)
- __aeabi_memclr8 0x080002d3 Thumb Code 0 rt_memclr.o(.text)
- __rt_memclr_w 0x080002d3 Thumb Code 4 rt_memclr.o(.text)
- __use_two_region_memory 0x080002d7 Thumb Code 2 heapauxi.o(.text)
- __rt_heap_escrow 0x080002d9 Thumb Code 2 heapauxi.o(.text)
- __rt_heap_expand 0x080002db Thumb Code 2 heapauxi.o(.text)
- __aeabi_fdiv 0x080002dd Thumb Code 0 fdiv.o(.text)
- _fdiv 0x080002dd Thumb Code 334 fdiv.o(.text)
- _frdiv 0x0800042b Thumb Code 8 fdiv.o(.text)
- __aeabi_f2uiz 0x0800043d Thumb Code 0 ffixui.o(.text)
- _ffixu 0x0800043d Thumb Code 48 ffixui.o(.text)
- __aeabi_f2ulz 0x0800046d Thumb Code 0 ffixul.o(.text)
- _ll_ufrom_f 0x0800046d Thumb Code 74 ffixul.o(.text)
- __aeabi_i2f_normalise 0x080004b7 Thumb Code 72 fflti.o(.text)
- __aeabi_i2f 0x080004ff Thumb Code 16 fflti.o(.text)
- _fflt 0x080004ff Thumb Code 0 fflti.o(.text)
- __aeabi_ui2f 0x0800050f Thumb Code 6 fflti.o(.text)
- _ffltu 0x0800050f Thumb Code 0 fflti.o(.text)
- __ARM_scalbnf 0x08000515 Thumb Code 64 fscalbn.o(.text)
- __user_setup_stackheap 0x08000559 Thumb Code 62 sys_stackheap_outer.o(.text)
- exit 0x08000597 Thumb Code 16 exit.o(.text)
- __user_libspace 0x080005a9 Thumb Code 8 libspace.o(.text)
- __user_perproc_libspace 0x080005a9 Thumb Code 0 libspace.o(.text)
- __user_perthread_libspace 0x080005a9 Thumb Code 0 libspace.o(.text)
- __I$use$semihosting 0x080005b1 Thumb Code 0 use_no_semi.o(.text)
- __use_no_semihosting_swi 0x080005b1 Thumb Code 2 use_no_semi.o(.text)
- __semihosting_library_function 0x080005b3 Thumb Code 0 indicate_semi.o(.text)
- _sys_exit 0x080005b5 Thumb Code 8 sys_exit.o(.text)
- ACMP0_IRQHandler 0x080005c1 Thumb Code 20 ac780x_acmp.o(i.ACMP0_IRQHandler)
- ADC0_IRQHandler 0x080005dd Thumb Code 22 ac780x_adc.o(i.ADC0_IRQHandler)
- CAN0_Handler 0x080005fd Thumb Code 10 ac780x_can.o(i.CAN0_Handler)
- CAN_HandleEvent 0x0800060d Thumb Code 62 ac780x_can.o(i.CAN_HandleEvent)
- CKGEN_Enable 0x08000655 Thumb Code 64 ac780x_ckgen.o(i.CKGEN_Enable)
- CKGEN_SetAPBClockDivider 0x08000695 Thumb Code 20 ac780x_ckgen.o(i.CKGEN_SetAPBClockDivider)
- CKGEN_SetPLLReference 0x080006a9 Thumb Code 18 ac780x_ckgen.o(i.CKGEN_SetPLLReference)
- CKGEN_SetPllFeedbackDiv 0x080006bd Thumb Code 18 ac780x_ckgen.o(i.CKGEN_SetPllFeedbackDiv)
- CKGEN_SetPllPostDiv 0x080006d5 Thumb Code 18 ac780x_ckgen.o(i.CKGEN_SetPllPostDiv)
- CKGEN_SetPllPrevDiv 0x080006ed Thumb Code 16 ac780x_ckgen.o(i.CKGEN_SetPllPrevDiv)
- CKGEN_SetSysclkDiv 0x08000701 Thumb Code 18 ac780x_ckgen.o(i.CKGEN_SetSysclkDiv)
- CKGEN_SetSysclkSrc 0x08000713 Thumb Code 16 ac780x_ckgen.o(i.CKGEN_SetSysclkSrc)
- CKGEN_SoftReset 0x08000723 Thumb Code 64 ac780x_ckgen.o(i.CKGEN_SoftReset)
- Config_Init 0x08000765 Thumb Code 44 cfg.o(i.Config_Init)
- DMA0_Channel0_IRQHandler 0x080007a1 Thumb Code 28 ac780x_dma.o(i.DMA0_Channel0_IRQHandler)
- DMA0_Channel1_IRQHandler 0x080007c5 Thumb Code 28 ac780x_dma.o(i.DMA0_Channel1_IRQHandler)
- DMA0_Channel2_IRQHandler 0x080007e9 Thumb Code 28 ac780x_dma.o(i.DMA0_Channel2_IRQHandler)
- DMA0_Channel3_IRQHandler 0x0800080d Thumb Code 28 ac780x_dma.o(i.DMA0_Channel3_IRQHandler)
- DMA_ChannelFlush 0x08000831 Thumb Code 10 ac780x_dma.o(i.DMA_ChannelFlush)
- DMA_ClearFlag 0x0800084b Thumb Code 26 ac780x_dma.o(i.DMA_ClearFlag)
- DMA_DeInit 0x08000865 Thumb Code 100 ac780x_dma.o(i.DMA_DeInit)
- DMA_Init 0x080008d9 Thumb Code 312 ac780x_dma.o(i.DMA_Init)
- DMA_SetChannel 0x08000a1d Thumb Code 12 ac780x_dma.o(i.DMA_SetChannel)
- ECC_SRAM_IRQHandler 0x08000a29 Thumb Code 34 ac780x_ecc_sram.o(i.ECC_SRAM_IRQHandler)
- EFLASH_LockCtrl 0x08000a55 Thumb Code 12 ac780x_eflash.o(i.EFLASH_LockCtrl)
- EFLASH_PageErase 0x08000a65 Thumb Code 82 ac780x_eflash.o(i.EFLASH_PageErase)
- EFLASH_PageEraseVerify 0x08000abd Thumb Code 70 ac780x_eflash.o(i.EFLASH_PageEraseVerify)
- EFLASH_PageProgram 0x08000b09 Thumb Code 122 ac780x_eflash.o(i.EFLASH_PageProgram)
- EFLASH_UnlockCtrl 0x08000b99 Thumb Code 42 ac780x_eflash.o(i.EFLASH_UnlockCtrl)
- EFLASH_WaitEop 0x08000bd1 Thumb Code 32 ac780x_eflash.o(i.EFLASH_WaitEop)
- EFLASH_WaitForLastOperation 0x08000bf5 Thumb Code 64 ac780x_eflash.o(i.EFLASH_WaitForLastOperation)
- EXTI0_IRQHandler 0x08000c39 Thumb Code 34 ac780x_gpio.o(i.EXTI0_IRQHandler)
- EXTI1_IRQHandler 0x08000c61 Thumb Code 34 ac780x_gpio.o(i.EXTI1_IRQHandler)
- EXTI2_IRQHandler 0x08000c89 Thumb Code 34 ac780x_gpio.o(i.EXTI2_IRQHandler)
- EXTI3_8_IRQHandler 0x08000cb1 Thumb Code 62 ac780x_gpio.o(i.EXTI3_8_IRQHandler)
- EXTI9_15_IRQHandler 0x08000cf5 Thumb Code 62 ac780x_gpio.o(i.EXTI9_15_IRQHandler)
- GPIO_ClearPendingExtInterrupt 0x08000d59 Thumb Code 10 ac780x_gpio.o(i.GPIO_ClearPendingExtInterrupt)
- GPIO_GetPendingExtInterrupt 0x08000dc5 Thumb Code 8 ac780x_gpio.o(i.GPIO_GetPendingExtInterrupt)
- GPIO_GetPinLevel 0x08000dd1 Thumb Code 10 ac780x_gpio.o(i.GPIO_GetPinLevel)
- GPIO_PortInit 0x08000ddd Thumb Code 160 gpio.o(i.GPIO_PortInit)
- GPIO_SetDir 0x08000e81 Thumb Code 18 ac780x_gpio.o(i.GPIO_SetDir)
- GPIO_SetFunc 0x08000e95 Thumb Code 152 ac780x_gpio.o(i.GPIO_SetFunc)
- GPIO_SetPinLevel 0x08000f35 Thumb Code 18 ac780x_gpio.o(i.GPIO_SetPinLevel)
- GPIO_SetPullup 0x08000f47 Thumb Code 18 ac780x_gpio.o(i.GPIO_SetPullup)
- I2C0_IRQHandler 0x08000f59 Thumb Code 36 ac780x_i2c.o(i.I2C0_IRQHandler)
- I2C1_IRQHandler 0x08000f85 Thumb Code 36 ac780x_i2c.o(i.I2C1_IRQHandler)
- I2C_ReceiveLastOneByte 0x080011d9 Thumb Code 18 ac780x_i2c.o(i.I2C_ReceiveLastOneByte)
- InitDelay 0x08001345 Thumb Code 12 system_ac780x.o(i.InitDelay)
- NMI_Handler 0x08001359 Thumb Code 132 ac780x_spm.o(i.NMI_Handler)
- PVD_IRQHandler 0x080013e5 Thumb Code 30 ac780x_spm.o(i.PVD_IRQHandler)
- PWDT0_IRQHandler 0x0800140d Thumb Code 10 ac780x_pwdt.o(i.PWDT0_IRQHandler)
- PWDT1_IRQHandler 0x0800141d Thumb Code 10 ac780x_pwdt.o(i.PWDT1_IRQHandler)
- PWM0_IRQHandler 0x0800147d Thumb Code 10 ac780x_pwm.o(i.PWM0_IRQHandler)
- PWM1_IRQHandler 0x0800148d Thumb Code 10 ac780x_pwm.o(i.PWM1_IRQHandler)
- Process_CoverStatus 0x080014f5 Thumb Code 6 process.o(i.Process_CoverStatus)
- Process_Init 0x08001501 Thumb Code 130 process.o(i.Process_Init)
- Process_LockStatus 0x0800158d Thumb Code 6 process.o(i.Process_LockStatus)
- Process_RunLedPrd 0x08001599 Thumb Code 46 process.o(i.Process_RunLedPrd)
- Process_ThreeStatus 0x080015d1 Thumb Code 180 process.o(i.Process_ThreeStatus)
- Process_UnlockStatus 0x0800168d Thumb Code 6 process.o(i.Process_UnlockStatus)
- RTC_IRQHandler 0x080016c5 Thumb Code 40 ac780x_rtc.o(i.RTC_IRQHandler)
- Read_Addr 0x080016f5 Thumb Code 24 protocol.o(i.Read_Addr)
- Read_Baudrate 0x08001711 Thumb Code 24 protocol.o(i.Read_Baudrate)
- Read_Deviceid 0x0800172d Thumb Code 44 protocol.o(i.Read_Deviceid)
- Read_Devicetype 0x0800175d Thumb Code 28 protocol.o(i.Read_Devicetype)
- Read_FirmwareVersion 0x0800177d Thumb Code 50 protocol.o(i.Read_FirmwareVersion)
- Read_HardwareVersion 0x080017b5 Thumb Code 28 protocol.o(i.Read_HardwareVersion)
- Read_LockStatus 0x080017d5 Thumb Code 34 protocol.o(i.Read_LockStatus)
- ResetConfig 0x080017f7 Thumb Code 10 cfg.o(i.ResetConfig)
- SPI0_IRQHandler 0x08001801 Thumb Code 32 ac780x_spi.o(i.SPI0_IRQHandler)
- SPI1_IRQHandler 0x08001829 Thumb Code 32 ac780x_spi.o(i.SPI1_IRQHandler)
- SPM_EnablePLL 0x08001ac5 Thumb Code 76 ac780x_spm.o(i.SPM_EnablePLL)
- SPM_EnableXOSC 0x08001b19 Thumb Code 124 ac780x_spm.o(i.SPM_EnableXOSC)
- SPM_GetModuleWakeupSourceFlag 0x08001ba1 Thumb Code 10 ac780x_spm.o(i.SPM_GetModuleWakeupSourceFlag)
- SPM_IRQHandler 0x08001bb1 Thumb Code 30 ac780x_spm.o(i.SPM_IRQHandler)
- SPM_XOSCOKBypassSet 0x08001bd9 Thumb Code 16 ac780x_spm.o(i.SPM_XOSCOKBypassSet)
- SaveConfig 0x08001bed Thumb Code 58 cfg.o(i.SaveConfig)
- SetEflashClock 0x08001c31 Thumb Code 50 system_ac780x.o(i.SetEflashClock)
- SetHSEClock 0x08001c75 Thumb Code 100 system_ac780x.o(i.SetHSEClock)
- SystemInit 0x08001d21 Thumb Code 30 system_ac780x.o(i.SystemInit)
- TIMER_Channel0_IRQHandler 0x08001d51 Thumb Code 10 ac780x_timer.o(i.TIMER_Channel0_IRQHandler)
- TIMER_Channel1_IRQHandler 0x08001d61 Thumb Code 10 ac780x_timer.o(i.TIMER_Channel1_IRQHandler)
- TIMER_Channel2_IRQHandler 0x08001d71 Thumb Code 10 ac780x_timer.o(i.TIMER_Channel2_IRQHandler)
- TIMER_Channel3_IRQHandler 0x08001d81 Thumb Code 10 ac780x_timer.o(i.TIMER_Channel3_IRQHandler)
- TIMER_Init 0x08001dc5 Thumb Code 130 ac780x_timer.o(i.TIMER_Init)
- TIMER_PrdInit 0x08001e59 Thumb Code 36 timer.o(i.TIMER_PrdInit)
- TIM_CHN2_Callback 0x08001e89 Thumb Code 40 timer.o(i.TIM_CHN2_Callback)
- Task_Handle 0x08001ec1 Thumb Code 16 main_task.o(i.Task_Handle)
- Task_Init 0x08001ed1 Thumb Code 8 main_task.o(i.Task_Init)
- UART0_IRQHandler 0x08001ed9 Thumb Code 10 ac780x_uart.o(i.UART0_IRQHandler)
- UART1_IRQHandler 0x08001ee9 Thumb Code 10 ac780x_uart.o(i.UART1_IRQHandler)
- UART2_IRQHandler 0x08001ef9 Thumb Code 10 ac780x_uart.o(i.UART2_IRQHandler)
- UART_Init 0x08001f09 Thumb Code 274 ac780x_uart.o(i.UART_Init)
- UART_ReceiveDMA 0x0800205d Thumb Code 140 ac780x_uart.o(i.UART_ReceiveDMA)
- UART_SetBaudrate 0x080020ed Thumb Code 114 ac780x_uart.o(i.UART_SetBaudrate)
- UART_SetParity 0x08002165 Thumb Code 56 ac780x_uart.o(i.UART_SetParity)
- UART_TransmitDMA 0x0800219d Thumb Code 144 ac780x_uart.o(i.UART_TransmitDMA)
- Uart0_RxDataHandle 0x08002231 Thumb Code 542 main_task.o(i.Uart0_RxDataHandle)
- UartTxDMAEventCallback 0x08002495 Thumb Code 12 uart.o(i.UartTxDMAEventCallback)
- WDG_IRQHandler 0x080024a5 Thumb Code 18 ac780x_wdg.o(i.WDG_IRQHandler)
- Write_Addr 0x080024c1 Thumb Code 20 protocol.o(i.Write_Addr)
- Write_Baudrate 0x080024d9 Thumb Code 26 protocol.o(i.Write_Baudrate)
- Write_Deviceid 0x080024f9 Thumb Code 40 protocol.o(i.Write_Deviceid)
- Write_Devicetype 0x08002525 Thumb Code 28 protocol.o(i.Write_Devicetype)
- Write_HardwareVersion 0x08002545 Thumb Code 28 protocol.o(i.Write_HardwareVersion)
- __ARM_common_switch8 0x08002565 Thumb Code 26 uart.o(i.__ARM_common_switch8)
- crc16 0x080025a1 Thumb Code 36 crc16.o(i.crc16)
- main 0x080025c9 Thumb Code 30 main.o(i.main)
- mdelay 0x080025e9 Thumb Code 30 system_ac780x.o(i.mdelay)
- uart0_RecvData 0x0800260d Thumb Code 28 uart.o(i.uart0_RecvData)
- uart0_TransmitData 0x08002639 Thumb Code 42 uart.o(i.uart0_TransmitData)
- uart_Initialize 0x08002679 Thumb Code 186 uart.o(i.uart_Initialize)
- __aeabi_fadd 0x0800275d Thumb Code 0 faddsub.o(x$fpl$fadd)
- _fadd 0x0800275d Thumb Code 134 faddsub.o(x$fpl$fadd)
- __aeabi_frsub 0x080027e9 Thumb Code 0 faddsub.o(x$fpl$frsb)
- _frsb 0x080027e9 Thumb Code 24 faddsub.o(x$fpl$frsb)
- __aeabi_fsub 0x08002801 Thumb Code 0 faddsub.o(x$fpl$fsub)
- _fsub 0x08002801 Thumb Code 204 faddsub.o(x$fpl$fsub)
- __I$use$fp 0x080028d0 Number 0 usenofp.o(x$fpl$usenofp)
- g_dmaChannel 0x08002ad0 Data 32 ac780x_dma.o(.constdata)
- Region$$Table$$Base 0x08002b34 Number 0 anon$$obj.o(Region$$Table)
- Region$$Table$$Limit 0x08002b54 Number 0 anon$$obj.o(Region$$Table)
- Firmware_Version 0x20000000 Data 32 protocol.o(.data)
- config 0x20000020 Data 4 cfg.o(.data)
- g_detectTime 0x20000024 Data 1 process.o(.data)
- g_lockstatus 0x20000025 Data 1 process.o(.data)
- g_unlockstatus 0x20000026 Data 1 process.o(.data)
- g_coverstatus 0x20000027 Data 1 process.o(.data)
- lockbits 0x20000028 Data 1 process.o(.data)
- unlockbits 0x20000029 Data 1 process.o(.data)
- coverbits 0x2000002a Data 1 process.o(.data)
- g_blinkLedTime 0x2000002c Data 2 process.o(.data)
- g_blinkLedTgtTime 0x2000002e Data 2 process.o(.data)
- g_i2cStatus 0x20000044 Data 8 ac780x_i2c.o(.data)
- g_spiRxBuf 0x20000060 Data 8 ac780x_spi.o(.data)
- g_spiTxBuf 0x20000068 Data 8 ac780x_spi.o(.data)
- g_spiRxCount 0x20000070 Data 8 ac780x_spi.o(.data)
- g_spiTxCount 0x20000078 Data 8 ac780x_spi.o(.data)
- g_spiBuffSize 0x20000080 Data 8 ac780x_spi.o(.data)
- g_spiStatus 0x20000088 Data 8 ac780x_spi.o(.data)
- g_spiCallbackArray 0x20000090 Data 8 ac780x_spi.o(.data)
- SystemCoreClock 0x200000b0 Data 4 system_ac780x.o(.data)
- g_periphAPBClock 0x200000b4 Data 4 system_ac780x.o(.data)
- uart0_info 0x200000d0 Data 16 uart.o(.bss)
- dmaRxBuf 0x200000e0 Data 320 uart.o(.bss)
- dmaTxBuf 0x20000220 Data 64 uart.o(.bss)
- g_dmaCallbackArray 0x2000026c Data 16 ac780x_dma.o(.bss)
- g_gpioCallbackArray 0x2000027c Data 20 ac780x_gpio.o(.bss)
- g_i2cTransmitInfo 0x20000290 Data 32 ac780x_i2c.o(.bss)
- s_uartCallback 0x200002c0 Data 12 ac780x_uart.o(.bss)
- __libspace_start 0x200002cc Data 96 libspace.o(.bss)
- __temporary_stack_top$libspace 0x2000032c Data 0 libspace.o(.bss)
- ==============================================================================
- Memory Map of the image
- Image Entry point : 0x080000c1
- Load Region LR_IROM1 (Base: 0x08000000, Size: 0x00002c0c, Max: 0x00020000, ABSOLUTE)
- Execution Region ER_IROM1 (Exec base: 0x08000000, Load base: 0x08000000, Size: 0x00002b54, Max: 0x00020000, ABSOLUTE)
- Exec Addr Load Addr Size Type Attr Idx E Section Name Object
- 0x08000000 0x08000000 0x000000c0 Data RO 2793 RESET startup_ac780x.o
- 0x080000c0 0x080000c0 0x00000008 Code RO 3007 * !!!main c_p.l(__main.o)
- 0x080000c8 0x080000c8 0x0000003c Code RO 3384 !!!scatter c_p.l(__scatter.o)
- 0x08000104 0x08000104 0x0000001a Code RO 3386 !!handler_copy c_p.l(__scatter_copy.o)
- 0x0800011e 0x0800011e 0x00000002 PAD
- 0x08000120 0x08000120 0x0000001c Code RO 3388 !!handler_zi c_p.l(__scatter_zi.o)
- 0x0800013c 0x0800013c 0x00000002 Code RO 3172 .ARM.Collect$$libinit$$00000000 c_p.l(libinit.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3174 .ARM.Collect$$libinit$$00000002 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3176 .ARM.Collect$$libinit$$00000004 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3179 .ARM.Collect$$libinit$$0000000A c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3181 .ARM.Collect$$libinit$$0000000C c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3183 .ARM.Collect$$libinit$$0000000E c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3186 .ARM.Collect$$libinit$$00000011 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3188 .ARM.Collect$$libinit$$00000013 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3190 .ARM.Collect$$libinit$$00000015 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3192 .ARM.Collect$$libinit$$00000017 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3194 .ARM.Collect$$libinit$$00000019 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3196 .ARM.Collect$$libinit$$0000001B c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3198 .ARM.Collect$$libinit$$0000001D c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3200 .ARM.Collect$$libinit$$0000001F c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3202 .ARM.Collect$$libinit$$00000021 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3204 .ARM.Collect$$libinit$$00000023 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3206 .ARM.Collect$$libinit$$00000025 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3210 .ARM.Collect$$libinit$$0000002C c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3212 .ARM.Collect$$libinit$$0000002E c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3214 .ARM.Collect$$libinit$$00000030 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000000 Code RO 3216 .ARM.Collect$$libinit$$00000032 c_p.l(libinit2.o)
- 0x0800013e 0x0800013e 0x00000002 Code RO 3217 .ARM.Collect$$libinit$$00000033 c_p.l(libinit2.o)
- 0x08000140 0x08000140 0x00000002 Code RO 3365 .ARM.Collect$$libshutdown$$00000000 c_p.l(libshutdown.o)
- 0x08000142 0x08000142 0x00000000 Code RO 3219 .ARM.Collect$$libshutdown$$00000002 c_p.l(libshutdown2.o)
- 0x08000142 0x08000142 0x00000000 Code RO 3221 .ARM.Collect$$libshutdown$$00000004 c_p.l(libshutdown2.o)
- 0x08000142 0x08000142 0x00000000 Code RO 3223 .ARM.Collect$$libshutdown$$00000006 c_p.l(libshutdown2.o)
- 0x08000142 0x08000142 0x00000000 Code RO 3226 .ARM.Collect$$libshutdown$$00000009 c_p.l(libshutdown2.o)
- 0x08000142 0x08000142 0x00000000 Code RO 3229 .ARM.Collect$$libshutdown$$0000000C c_p.l(libshutdown2.o)
- 0x08000142 0x08000142 0x00000000 Code RO 3231 .ARM.Collect$$libshutdown$$0000000E c_p.l(libshutdown2.o)
- 0x08000142 0x08000142 0x00000000 Code RO 3234 .ARM.Collect$$libshutdown$$00000011 c_p.l(libshutdown2.o)
- 0x08000142 0x08000142 0x00000002 Code RO 3235 .ARM.Collect$$libshutdown$$00000012 c_p.l(libshutdown2.o)
- 0x08000144 0x08000144 0x00000000 Code RO 3026 .ARM.Collect$$rtentry$$00000000 c_p.l(__rtentry.o)
- 0x08000144 0x08000144 0x00000000 Code RO 3044 .ARM.Collect$$rtentry$$00000002 c_p.l(__rtentry2.o)
- 0x08000144 0x08000144 0x00000006 Code RO 3056 .ARM.Collect$$rtentry$$00000004 c_p.l(__rtentry4.o)
- 0x0800014a 0x0800014a 0x00000000 Code RO 3046 .ARM.Collect$$rtentry$$00000009 c_p.l(__rtentry2.o)
- 0x0800014a 0x0800014a 0x00000004 Code RO 3047 .ARM.Collect$$rtentry$$0000000A c_p.l(__rtentry2.o)
- 0x0800014e 0x0800014e 0x00000000 Code RO 3049 .ARM.Collect$$rtentry$$0000000C c_p.l(__rtentry2.o)
- 0x0800014e 0x0800014e 0x00000008 Code RO 3050 .ARM.Collect$$rtentry$$0000000D c_p.l(__rtentry2.o)
- 0x08000156 0x08000156 0x00000002 Code RO 3245 .ARM.Collect$$rtexit$$00000000 c_p.l(rtexit.o)
- 0x08000158 0x08000158 0x00000000 Code RO 3303 .ARM.Collect$$rtexit$$00000002 c_p.l(rtexit2.o)
- 0x08000158 0x08000158 0x00000004 Code RO 3304 .ARM.Collect$$rtexit$$00000003 c_p.l(rtexit2.o)
- 0x0800015c 0x0800015c 0x00000006 Code RO 3305 .ARM.Collect$$rtexit$$00000004 c_p.l(rtexit2.o)
- 0x08000162 0x08000162 0x00000002 PAD
- 0x08000164 0x08000164 0x00000038 Code RO 2995 .emb_text c_p.l(rt_memcpy.o)
- 0x0800019c 0x0800019c 0x00000078 Code RO 2794 .text startup_ac780x.o
- 0x08000214 0x08000214 0x00000082 Code RO 2996 .text c_p.l(rt_memcpy.o)
- 0x08000296 0x08000296 0x00000040 Code RO 2999 .text c_p.l(rt_memclr.o)
- 0x080002d6 0x080002d6 0x00000006 Code RO 3005 .text c_p.l(heapauxi.o)
- 0x080002dc 0x080002dc 0x00000160 Code RO 3015 .text fz_ps.l(fdiv.o)
- 0x0800043c 0x0800043c 0x00000030 Code RO 3018 .text fz_ps.l(ffixui.o)
- 0x0800046c 0x0800046c 0x0000004a Code RO 3020 .text fz_ps.l(ffixul.o)
- 0x080004b6 0x080004b6 0x0000005e Code RO 3022 .text fz_ps.l(fflti.o)
- 0x08000514 0x08000514 0x00000044 Code RO 3024 .text fz_ps.l(fscalbn.o)
- 0x08000558 0x08000558 0x0000003e Code RO 3083 .text c_p.l(sys_stackheap_outer.o)
- 0x08000596 0x08000596 0x00000010 Code RO 3157 .text c_p.l(exit.o)
- 0x080005a6 0x080005a6 0x00000002 PAD
- 0x080005a8 0x080005a8 0x00000008 Code RO 3238 .text c_p.l(libspace.o)
- 0x080005b0 0x080005b0 0x00000002 Code RO 3241 .text c_p.l(use_no_semi.o)
- 0x080005b2 0x080005b2 0x00000000 Code RO 3243 .text c_p.l(indicate_semi.o)
- 0x080005b2 0x080005b2 0x00000002 PAD
- 0x080005b4 0x080005b4 0x0000000c Code RO 3300 .text c_p.l(sys_exit.o)
- 0x080005c0 0x080005c0 0x0000001c Code RO 704 i.ACMP0_IRQHandler ac780x_acmp.o
- 0x080005dc 0x080005dc 0x00000020 Code RO 759 i.ADC0_IRQHandler ac780x_adc.o
- 0x080005fc 0x080005fc 0x00000010 Code RO 840 i.CAN0_Handler ac780x_can.o
- 0x0800060c 0x0800060c 0x00000048 Code RO 844 i.CAN_HandleEvent ac780x_can.o
- 0x08000654 0x08000654 0x00000040 Code RO 969 i.CKGEN_Enable ac780x_ckgen.o
- 0x08000694 0x08000694 0x00000014 Code RO 970 i.CKGEN_SetAPBClockDivider ac780x_ckgen.o
- 0x080006a8 0x080006a8 0x00000012 Code RO 973 i.CKGEN_SetPLLReference ac780x_ckgen.o
- 0x080006ba 0x080006ba 0x00000002 PAD
- 0x080006bc 0x080006bc 0x00000018 Code RO 974 i.CKGEN_SetPllFeedbackDiv ac780x_ckgen.o
- 0x080006d4 0x080006d4 0x00000018 Code RO 975 i.CKGEN_SetPllPostDiv ac780x_ckgen.o
- 0x080006ec 0x080006ec 0x00000014 Code RO 976 i.CKGEN_SetPllPrevDiv ac780x_ckgen.o
- 0x08000700 0x08000700 0x00000012 Code RO 977 i.CKGEN_SetSysclkDiv ac780x_ckgen.o
- 0x08000712 0x08000712 0x00000010 Code RO 978 i.CKGEN_SetSysclkSrc ac780x_ckgen.o
- 0x08000722 0x08000722 0x00000040 Code RO 979 i.CKGEN_SoftReset ac780x_ckgen.o
- 0x08000762 0x08000762 0x00000002 PAD
- 0x08000764 0x08000764 0x0000003c Code RO 363 i.Config_Init cfg.o
- 0x080007a0 0x080007a0 0x00000024 Code RO 1131 i.DMA0_Channel0_IRQHandler ac780x_dma.o
- 0x080007c4 0x080007c4 0x00000024 Code RO 1132 i.DMA0_Channel1_IRQHandler ac780x_dma.o
- 0x080007e8 0x080007e8 0x00000024 Code RO 1133 i.DMA0_Channel2_IRQHandler ac780x_dma.o
- 0x0800080c 0x0800080c 0x00000024 Code RO 1134 i.DMA0_Channel3_IRQHandler ac780x_dma.o
- 0x08000830 0x08000830 0x0000000a Code RO 1135 i.DMA_ChannelFlush ac780x_dma.o
- 0x0800083a 0x0800083a 0x00000010 Code RO 1136 i.DMA_ChannelHardRst ac780x_dma.o
- 0x0800084a 0x0800084a 0x0000001a Code RO 1137 i.DMA_ClearFlag ac780x_dma.o
- 0x08000864 0x08000864 0x00000074 Code RO 1138 i.DMA_DeInit ac780x_dma.o
- 0x080008d8 0x080008d8 0x00000144 Code RO 1142 i.DMA_Init ac780x_dma.o
- 0x08000a1c 0x08000a1c 0x0000000c Code RO 1144 i.DMA_SetChannel ac780x_dma.o
- 0x08000a28 0x08000a28 0x0000002c Code RO 1239 i.ECC_SRAM_IRQHandler ac780x_ecc_sram.o
- 0x08000a54 0x08000a54 0x00000010 Code RO 1299 i.EFLASH_LockCtrl ac780x_eflash.o
- 0x08000a64 0x08000a64 0x00000058 Code RO 1304 i.EFLASH_PageErase ac780x_eflash.o
- 0x08000abc 0x08000abc 0x0000004c Code RO 1305 i.EFLASH_PageEraseVerify ac780x_eflash.o
- 0x08000b08 0x08000b08 0x00000080 Code RO 1306 i.EFLASH_PageProgram ac780x_eflash.o
- 0x08000b88 0x08000b88 0x00000010 Code RO 1310 i.EFLASH_TrigCtrlCmdReg ac780x_eflash.o
- 0x08000b98 0x08000b98 0x00000038 Code RO 1311 i.EFLASH_UnlockCtrl ac780x_eflash.o
- 0x08000bd0 0x08000bd0 0x00000024 Code RO 1312 i.EFLASH_WaitEop ac780x_eflash.o
- 0x08000bf4 0x08000bf4 0x00000044 Code RO 1313 i.EFLASH_WaitForLastOperation ac780x_eflash.o
- 0x08000c38 0x08000c38 0x00000028 Code RO 1415 i.EXTI0_IRQHandler ac780x_gpio.o
- 0x08000c60 0x08000c60 0x00000028 Code RO 1416 i.EXTI1_IRQHandler ac780x_gpio.o
- 0x08000c88 0x08000c88 0x00000028 Code RO 1417 i.EXTI2_IRQHandler ac780x_gpio.o
- 0x08000cb0 0x08000cb0 0x00000044 Code RO 1418 i.EXTI3_8_IRQHandler ac780x_gpio.o
- 0x08000cf4 0x08000cf4 0x00000044 Code RO 1419 i.EXTI9_15_IRQHandler ac780x_gpio.o
- 0x08000d38 0x08000d38 0x00000020 Code RO 364 i.Factory_reset cfg.o
- 0x08000d58 0x08000d58 0x00000010 Code RO 1420 i.GPIO_ClearPendingExtInterrupt ac780x_gpio.o
- 0x08000d68 0x08000d68 0x0000005c Code RO 1425 i.GPIO_GetPendingExtIntSource ac780x_gpio.o
- 0x08000dc4 0x08000dc4 0x0000000c Code RO 1426 i.GPIO_GetPendingExtInterrupt ac780x_gpio.o
- 0x08000dd0 0x08000dd0 0x0000000a Code RO 1428 i.GPIO_GetPinLevel ac780x_gpio.o
- 0x08000dda 0x08000dda 0x00000002 PAD
- 0x08000ddc 0x08000ddc 0x000000a4 Code RO 615 i.GPIO_PortInit gpio.o
- 0x08000e80 0x08000e80 0x00000012 Code RO 1433 i.GPIO_SetDir ac780x_gpio.o
- 0x08000e92 0x08000e92 0x00000002 PAD
- 0x08000e94 0x08000e94 0x000000a0 Code RO 1436 i.GPIO_SetFunc ac780x_gpio.o
- 0x08000f34 0x08000f34 0x00000012 Code RO 1442 i.GPIO_SetPinLevel ac780x_gpio.o
- 0x08000f46 0x08000f46 0x00000012 Code RO 1446 i.GPIO_SetPullup ac780x_gpio.o
- 0x08000f58 0x08000f58 0x0000002c Code RO 1627 i.I2C0_IRQHandler ac780x_i2c.o
- 0x08000f84 0x08000f84 0x0000002c Code RO 1628 i.I2C1_IRQHandler ac780x_i2c.o
- 0x08000fb0 0x08000fb0 0x0000000e Code RO 1629 i.I2C_ClearStartFlag ac780x_i2c.o
- 0x08000fbe 0x08000fbe 0x00000002 PAD
- 0x08000fc0 0x08000fc0 0x000001ac Code RO 1634 i.I2C_MasterIntHandler ac780x_i2c.o
- 0x0800116c 0x0800116c 0x0000006c Code RO 1638 i.I2C_MasterSlaveIntHandler ac780x_i2c.o
- 0x080011d8 0x080011d8 0x00000012 Code RO 1642 i.I2C_ReceiveLastOneByte ac780x_i2c.o
- 0x080011ea 0x080011ea 0x00000002 PAD
- 0x080011ec 0x080011ec 0x00000158 Code RO 1648 i.I2C_SlaveIntHandler ac780x_i2c.o
- 0x08001344 0x08001344 0x00000014 Code RO 2805 i.InitDelay system_ac780x.o
- 0x08001358 0x08001358 0x0000008c Code RO 2394 i.NMI_Handler ac780x_spm.o
- 0x080013e4 0x080013e4 0x00000028 Code RO 2395 i.PVD_IRQHandler ac780x_spm.o
- 0x0800140c 0x0800140c 0x00000010 Code RO 1876 i.PWDT0_IRQHandler ac780x_pwdt.o
- 0x0800141c 0x0800141c 0x00000010 Code RO 1877 i.PWDT1_IRQHandler ac780x_pwdt.o
- 0x0800142c 0x0800142c 0x00000050 Code RO 1878 i.PWDT_CommonISR ac780x_pwdt.o
- 0x0800147c 0x0800147c 0x00000010 Code RO 1945 i.PWM0_IRQHandler ac780x_pwm.o
- 0x0800148c 0x0800148c 0x00000010 Code RO 1946 i.PWM1_IRQHandler ac780x_pwm.o
- 0x0800149c 0x0800149c 0x00000058 Code RO 1947 i.PWM_CommonISR ac780x_pwm.o
- 0x080014f4 0x080014f4 0x0000000c Code RO 407 i.Process_CoverStatus process.o
- 0x08001500 0x08001500 0x0000008c Code RO 408 i.Process_Init process.o
- 0x0800158c 0x0800158c 0x0000000c Code RO 409 i.Process_LockStatus process.o
- 0x08001598 0x08001598 0x00000038 Code RO 410 i.Process_RunLedPrd process.o
- 0x080015d0 0x080015d0 0x000000bc Code RO 411 i.Process_ThreeStatus process.o
- 0x0800168c 0x0800168c 0x0000000c Code RO 412 i.Process_UnlockStatus process.o
- 0x08001698 0x08001698 0x00000014 Code RO 2151 i.RTC_ClearRPIF ac780x_rtc.o
- 0x080016ac 0x080016ac 0x00000018 Code RO 2152 i.RTC_ClearRTIF ac780x_rtc.o
- 0x080016c4 0x080016c4 0x00000030 Code RO 2154 i.RTC_IRQHandler ac780x_rtc.o
- 0x080016f4 0x080016f4 0x0000001c Code RO 274 i.Read_Addr protocol.o
- 0x08001710 0x08001710 0x0000001c Code RO 275 i.Read_Baudrate protocol.o
- 0x0800172c 0x0800172c 0x00000030 Code RO 276 i.Read_Deviceid protocol.o
- 0x0800175c 0x0800175c 0x00000020 Code RO 277 i.Read_Devicetype protocol.o
- 0x0800177c 0x0800177c 0x00000038 Code RO 278 i.Read_FirmwareVersion protocol.o
- 0x080017b4 0x080017b4 0x00000020 Code RO 279 i.Read_HardwareVersion protocol.o
- 0x080017d4 0x080017d4 0x00000022 Code RO 280 i.Read_LockStatus protocol.o
- 0x080017f6 0x080017f6 0x0000000a Code RO 365 i.ResetConfig cfg.o
- 0x08001800 0x08001800 0x00000028 Code RO 2217 i.SPI0_IRQHandler ac780x_spi.o
- 0x08001828 0x08001828 0x00000028 Code RO 2218 i.SPI1_IRQHandler ac780x_spi.o
- 0x08001850 0x08001850 0x00000014 Code RO 2223 i.SPI_InterruptHandler ac780x_spi.o
- 0x08001864 0x08001864 0x00000144 Code RO 2224 i.SPI_MasterInterruptHandler ac780x_spi.o
- 0x080019a8 0x080019a8 0x00000010 Code RO 2231 i.SPI_SetRxFInterrupt ac780x_spi.o
- 0x080019b8 0x080019b8 0x0000000e Code RO 2232 i.SPI_SetRxOnly ac780x_spi.o
- 0x080019c6 0x080019c6 0x00000010 Code RO 2233 i.SPI_SetTxEInterrupt ac780x_spi.o
- 0x080019d6 0x080019d6 0x00000002 PAD
- 0x080019d8 0x080019d8 0x000000ec Code RO 2235 i.SPI_SlaveInterruptHandler ac780x_spi.o
- 0x08001ac4 0x08001ac4 0x00000054 Code RO 2403 i.SPM_EnablePLL ac780x_spm.o
- 0x08001b18 0x08001b18 0x00000088 Code RO 2405 i.SPM_EnableXOSC ac780x_spm.o
- 0x08001ba0 0x08001ba0 0x00000010 Code RO 2408 i.SPM_GetModuleWakeupSourceFlag ac780x_spm.o
- 0x08001bb0 0x08001bb0 0x00000028 Code RO 2409 i.SPM_IRQHandler ac780x_spm.o
- 0x08001bd8 0x08001bd8 0x00000014 Code RO 2412 i.SPM_XOSCOKBypassSet ac780x_spm.o
- 0x08001bec 0x08001bec 0x00000044 Code RO 366 i.SaveConfig cfg.o
- 0x08001c30 0x08001c30 0x00000044 Code RO 2806 i.SetEflashClock system_ac780x.o
- 0x08001c74 0x08001c74 0x00000064 Code RO 2808 i.SetHSEClock system_ac780x.o
- 0x08001cd8 0x08001cd8 0x00000030 Code RO 2815 i.SysTickDelay system_ac780x.o
- 0x08001d08 0x08001d08 0x00000018 Code RO 2816 i.SysTickRepeatDelay system_ac780x.o
- 0x08001d20 0x08001d20 0x00000030 Code RO 2818 i.SystemInit system_ac780x.o
- 0x08001d50 0x08001d50 0x00000010 Code RO 2531 i.TIMER_Channel0_IRQHandler ac780x_timer.o
- 0x08001d60 0x08001d60 0x00000010 Code RO 2532 i.TIMER_Channel1_IRQHandler ac780x_timer.o
- 0x08001d70 0x08001d70 0x00000010 Code RO 2533 i.TIMER_Channel2_IRQHandler ac780x_timer.o
- 0x08001d80 0x08001d80 0x00000010 Code RO 2534 i.TIMER_Channel3_IRQHandler ac780x_timer.o
- 0x08001d90 0x08001d90 0x00000034 Code RO 2535 i.TIMER_CommonISR ac780x_timer.o
- 0x08001dc4 0x08001dc4 0x00000094 Code RO 2538 i.TIMER_Init ac780x_timer.o
- 0x08001e58 0x08001e58 0x00000030 Code RO 589 i.TIMER_PrdInit timer.o
- 0x08001e88 0x08001e88 0x00000038 Code RO 590 i.TIM_CHN2_Callback timer.o
- 0x08001ec0 0x08001ec0 0x00000010 Code RO 233 i.Task_Handle main_task.o
- 0x08001ed0 0x08001ed0 0x00000008 Code RO 234 i.Task_Init main_task.o
- 0x08001ed8 0x08001ed8 0x00000010 Code RO 2614 i.UART0_IRQHandler ac780x_uart.o
- 0x08001ee8 0x08001ee8 0x00000010 Code RO 2615 i.UART1_IRQHandler ac780x_uart.o
- 0x08001ef8 0x08001ef8 0x00000010 Code RO 2616 i.UART2_IRQHandler ac780x_uart.o
- 0x08001f08 0x08001f08 0x0000011c Code RO 2619 i.UART_Init ac780x_uart.o
- 0x08002024 0x08002024 0x00000038 Code RO 2620 i.UART_InterruptHandler ac780x_uart.o
- 0x0800205c 0x0800205c 0x00000090 Code RO 2621 i.UART_ReceiveDMA ac780x_uart.o
- 0x080020ec 0x080020ec 0x00000078 Code RO 2624 i.UART_SetBaudrate ac780x_uart.o
- 0x08002164 0x08002164 0x00000038 Code RO 2627 i.UART_SetParity ac780x_uart.o
- 0x0800219c 0x0800219c 0x00000094 Code RO 2628 i.UART_TransmitDMA ac780x_uart.o
- 0x08002230 0x08002230 0x00000234 Code RO 235 i.Uart0_RxDataHandle main_task.o
- 0x08002464 0x08002464 0x00000002 Code RO 635 i.UartRxDMAEventCallback uart.o
- 0x08002466 0x08002466 0x00000002 PAD
- 0x08002468 0x08002468 0x0000002c Code RO 636 i.UartRxIdleCallBack uart.o
- 0x08002494 0x08002494 0x00000010 Code RO 637 i.UartTxDMAEventCallback uart.o
- 0x080024a4 0x080024a4 0x0000001c Code RO 2738 i.WDG_IRQHandler ac780x_wdg.o
- 0x080024c0 0x080024c0 0x00000018 Code RO 281 i.Write_Addr protocol.o
- 0x080024d8 0x080024d8 0x00000020 Code RO 282 i.Write_Baudrate protocol.o
- 0x080024f8 0x080024f8 0x0000002c Code RO 283 i.Write_Deviceid protocol.o
- 0x08002524 0x08002524 0x00000020 Code RO 284 i.Write_Devicetype protocol.o
- 0x08002544 0x08002544 0x00000020 Code RO 285 i.Write_HardwareVersion protocol.o
- 0x08002564 0x08002564 0x0000001a Code RO 681 i.__ARM_common_switch8 uart.o
- 0x0800257e 0x0800257e 0x00000002 PAD
- 0x08002580 0x08002580 0x00000020 Code RO 2541 i.__NVIC_DisableIRQ ac780x_timer.o
- 0x080025a0 0x080025a0 0x00000028 Code RO 489 i.crc16 crc16.o
- 0x080025c8 0x080025c8 0x0000001e Code RO 3 i.main main.o
- 0x080025e6 0x080025e6 0x00000002 PAD
- 0x080025e8 0x080025e8 0x00000024 Code RO 2819 i.mdelay system_ac780x.o
- 0x0800260c 0x0800260c 0x0000002c Code RO 638 i.uart0_RecvData uart.o
- 0x08002638 0x08002638 0x00000040 Code RO 639 i.uart0_TransmitData uart.o
- 0x08002678 0x08002678 0x000000e4 Code RO 640 i.uart_Initialize uart.o
- 0x0800275c 0x0800275c 0x0000008c Code RO 3009 x$fpl$fadd fz_ps.l(faddsub.o)
- 0x080027e8 0x080027e8 0x00000018 Code RO 3010 x$fpl$frsb fz_ps.l(faddsub.o)
- 0x08002800 0x08002800 0x000000d0 Code RO 3011 x$fpl$fsub fz_ps.l(faddsub.o)
- 0x080028d0 0x080028d0 0x00000000 Code RO 3042 x$fpl$usenofp fz_ps.l(usenofp.o)
- 0x080028d0 0x080028d0 0x00000200 Data RO 490 .constdata crc16.o
- 0x08002ad0 0x08002ad0 0x00000020 Data RO 1146 .constdata ac780x_dma.o
- 0x08002af0 0x08002af0 0x00000004 Data RO 2543 .constdata ac780x_timer.o
- 0x08002af4 0x08002af4 0x00000040 Data RO 3016 .constdata fz_ps.l(fdiv.o)
- 0x08002b34 0x08002b34 0x00000020 Data RO 3382 Region$$Table anon$$obj.o
- Execution Region RW_IRAM1 (Exec base: 0x20000000, Load base: 0x08002b54, Size: 0x00000730, Max: 0x00005000, ABSOLUTE)
- Exec Addr Load Addr Size Type Attr Idx E Section Name Object
- 0x20000000 0x08002b54 0x00000020 Data RW 286 .data protocol.o
- 0x20000020 0x08002b74 0x00000004 Data RW 368 .data cfg.o
- 0x20000024 0x08002b78 0x0000000c Data RW 413 .data process.o
- 0x20000030 0x08002b84 0x00000004 Data RW 710 .data ac780x_acmp.o
- 0x20000034 0x08002b88 0x00000004 Data RW 770 .data ac780x_adc.o
- 0x20000038 0x08002b8c 0x00000004 Data RW 1243 .data ac780x_ecc_sram.o
- 0x2000003c 0x08002b90 0x00000010 Data RW 1661 .data ac780x_i2c.o
- 0x2000004c 0x08002ba0 0x00000008 Data RW 1885 .data ac780x_pwdt.o
- 0x20000054 0x08002ba8 0x00000008 Data RW 1981 .data ac780x_pwm.o
- 0x2000005c 0x08002bb0 0x00000004 Data RW 2159 .data ac780x_rtc.o
- 0x20000060 0x08002bb4 0x00000038 Data RW 2245 .data ac780x_spi.o
- 0x20000098 0x08002bec 0x00000008 Data RW 2413 .data ac780x_spm.o
- 0x200000a0 0x08002bf4 0x00000004 Data RW 2743 .data ac780x_wdg.o
- 0x200000a4 0x08002bf8 0x00000014 Data RW 2821 .data system_ac780x.o
- 0x200000b8 - 0x00000018 Zero RW 367 .bss cfg.o
- 0x200000d0 - 0x00000190 Zero RW 641 .bss uart.o
- 0x20000260 - 0x0000000c Zero RW 858 .bss ac780x_can.o
- 0x2000026c - 0x00000010 Zero RW 1145 .bss ac780x_dma.o
- 0x2000027c - 0x00000014 Zero RW 1448 .bss ac780x_gpio.o
- 0x20000290 - 0x00000020 Zero RW 1659 .bss ac780x_i2c.o
- 0x200002b0 - 0x00000010 Zero RW 2542 .bss ac780x_timer.o
- 0x200002c0 - 0x0000000c Zero RW 2631 .bss ac780x_uart.o
- 0x200002cc - 0x00000060 Zero RW 3239 .bss c_p.l(libspace.o)
- 0x2000032c 0x08002c0c 0x00000004 PAD
- 0x20000330 - 0x00000000 Zero RW 2792 HEAP startup_ac780x.o
- 0x20000330 - 0x00000400 Zero RW 2791 STACK startup_ac780x.o
- ==============================================================================
- Image component sizes
- Code (inc. data) RO Data RW Data ZI Data Debug Object Name
- 28 8 0 4 0 12547 ac780x_acmp.o
- 32 10 0 4 0 4270 ac780x_adc.o
- 88 16 0 0 12 7308 ac780x_can.o
- 268 16 0 0 0 5292 ac780x_ckgen.o
- 648 60 32 0 16 13320 ac780x_dma.o
- 44 10 0 4 0 1722 ac780x_ecc_sram.o
- 484 48 0 0 0 8605 ac780x_eflash.o
- 600 56 0 0 20 9214 ac780x_gpio.o
- 1000 40 0 16 32 13984 ac780x_i2c.o
- 112 16 0 8 0 4154 ac780x_pwdt.o
- 120 18 0 8 0 8312 ac780x_pwm.o
- 92 18 0 4 0 3297 ac780x_rtc.o
- 706 38 0 56 0 10871 ac780x_spi.o
- 476 58 0 8 0 5649 ac780x_spm.o
- 296 52 4 0 16 5661 ac780x_timer.o
- 856 46 0 0 12 10043 ac780x_uart.o
- 28 10 0 4 0 649 ac780x_wdg.o
- 170 34 0 4 24 3162 cfg.o
- 0 0 0 0 0 11132 comm.o
- 40 4 512 0 0 1104 crc16.o
- 164 4 0 0 0 472 gpio.o
- 30 0 0 0 0 92303 main.o
- 588 22 0 0 0 2567 main_task.o
- 420 46 0 12 0 3391 process.o
- 422 48 0 32 0 7167 protocol.o
- 120 60 192 0 1024 696 startup_ac780x.o
- 344 54 0 20 0 4836 system_ac780x.o
- 104 28 0 0 0 976 timer.o
- 424 104 0 0 400 20871 uart.o
- ----------------------------------------------------------------------
- 8724 924 772 184 1556 273575 Object Totals
- 0 0 32 0 0 0 (incl. Generated)
- 20 0 0 0 0 0 (incl. Padding)
- ----------------------------------------------------------------------
- Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name
- 8 0 0 0 0 68 __main.o
- 0 0 0 0 0 0 __rtentry.o
- 12 0 0 0 0 0 __rtentry2.o
- 6 0 0 0 0 0 __rtentry4.o
- 60 8 0 0 0 0 __scatter.o
- 26 0 0 0 0 0 __scatter_copy.o
- 28 0 0 0 0 0 __scatter_zi.o
- 16 0 0 0 0 68 exit.o
- 6 0 0 0 0 136 heapauxi.o
- 0 0 0 0 0 0 indicate_semi.o
- 2 0 0 0 0 0 libinit.o
- 2 0 0 0 0 0 libinit2.o
- 2 0 0 0 0 0 libshutdown.o
- 2 0 0 0 0 0 libshutdown2.o
- 8 4 0 0 96 68 libspace.o
- 64 0 0 0 0 108 rt_memclr.o
- 186 0 0 0 0 144 rt_memcpy.o
- 2 0 0 0 0 0 rtexit.o
- 10 0 0 0 0 0 rtexit2.o
- 12 4 0 0 0 60 sys_exit.o
- 62 0 0 0 0 80 sys_stackheap_outer.o
- 2 0 0 0 0 68 use_no_semi.o
- 372 8 0 0 0 240 faddsub.o
- 352 10 64 0 0 92 fdiv.o
- 48 0 0 0 0 60 ffixui.o
- 74 0 0 0 0 68 ffixul.o
- 94 0 0 0 0 92 fflti.o
- 68 4 0 0 0 68 fscalbn.o
- 0 0 0 0 0 0 usenofp.o
- ----------------------------------------------------------------------
- 1532 38 64 0 100 1420 Library Totals
- 8 0 0 0 4 0 (incl. Padding)
- ----------------------------------------------------------------------
- Code (inc. data) RO Data RW Data ZI Data Debug Library Name
- 516 16 0 0 96 800 c_p.l
- 1008 22 64 0 0 620 fz_ps.l
- ----------------------------------------------------------------------
- 1532 38 64 0 100 1420 Library Totals
- ----------------------------------------------------------------------
- ==============================================================================
- Code (inc. data) RO Data RW Data ZI Data Debug
- 10256 962 836 184 1656 268579 Grand Totals
- 10256 962 836 184 1656 268579 ELF Image Totals
- 10256 962 836 184 0 0 ROM Totals
- ==============================================================================
- Total RO Size (Code + RO Data) 11092 ( 10.83kB)
- Total RW Size (RW Data + ZI Data) 1840 ( 1.80kB)
- Total ROM Size (Code + RO Data + RW Data) 11276 ( 11.01kB)
- ==============================================================================
|