| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878 |
- ARM Linker, 5.03 [Build 76] [MDK-ARM Professional]
- ==============================================================================
- Section Cross References
- main.o(i.ReadProductParaFromFlash) refers to id.o(i.GetRandBySTM32ID) for GetRandBySTM32ID
- main.o(i.ReadProductParaFromFlash) refers to flash.o(i.ReadFlashData) for ReadFlashData
- main.o(i.ReadProductParaFromFlash) refers to iap.o(.bss) for sutProductPara
- main.o(i.main) refers to watchdog.o(i.ExtWatchDogInit) for ExtWatchDogInit
- main.o(i.main) refers to w25q64.o(i.W25Q64_Init) for W25Q64_Init
- main.o(i.main) refers to msgqueue.o(i.MsgDataBufferInit) for MsgDataBufferInit
- main.o(i.main) refers to msgqueue.o(i.MsgQueueInit) for MsgQueueInit
- main.o(i.main) refers to serial.o(i.Uart1Init) for Uart1Init
- main.o(i.main) refers to stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit) for GPIO_ReadOutputDataBit
- main.o(i.main) refers to stm32f10x_gpio.o(i.GPIO_WriteBit) for GPIO_WriteBit
- main.o(i.main) refers to serial.o(i.IapTrace) for IapTrace
- main.o(i.main) refers to main.o(i.ReadProductParaFromFlash) for ReadProductParaFromFlash
- main.o(i.main) refers to msg.o(i.NewTask) for NewTask
- main.o(i.main) refers to msg.o(i.Uart1Msg) for Uart1Msg
- main.o(i.main) refers to memseta.o(.text) for __aeabi_memclr
- main.o(i.main) refers to msg.o(i.StartMsg) for StartMsg
- main.o(i.main) refers to msg.o(i.Tick500Msg) for Tick500Msg
- main.o(i.main) refers to msgqueue.o(.bss) for ModemMsgQueue
- main.o(i.main) refers to system_stm32f10x.o(.data) for SystemCoreClock
- main.o(i.main) refers to msg.o(.data) for sutMsg
- main.o(i.main) refers to iap.o(.bss) for IapRxBuf
- stm32f10x_it.o(i.HardFault_Handler) refers to printf8.o(i.__0printf$8) for __2printf
- stm32f10x_it.o(i.HardFault_Handler) refers to stm32f10x_it.o(.data) for g_HFH
- stm32f10x_it.o(i.SetHFH) refers to stm32f10x_it.o(.data) for g_HFH
- stm32f10x_it.o(i.SysTick_Handler) refers to flash.o(i.WriteData) for WriteData
- stm32f10x_it.o(i.SysTick_Handler) refers to printf8.o(i.__0printf$8) for __2printf
- stm32f10x_it.o(i.SysTick_Handler) refers to msg.o(.data) for sutMsg
- stm32f10x_it.o(i.SysTick_Handler) refers to stm32f10x_it.o(.data) for siSecCt
- stm32f10x_it.o(i.SysTick_Handler) refers to w25q64.o(.data) for ExFlashWatchDog
- stm32f10x_it.o(i.SysTick_Handler) refers to iap.o(.bss) for sutProductPara
- stm32f10x_it.o(i.USART1_IRQHandler) refers to serial.o(i.UART1RxTxISRHandler) for UART1RxTxISRHandler
- msg.o(i.CopyAppToMcu) refers to printf8.o(i.__0printf$8) for __2printf
- msg.o(i.CopyAppToMcu) refers to stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit) for GPIO_ReadOutputDataBit
- msg.o(i.CopyAppToMcu) refers to stm32f10x_gpio.o(i.GPIO_WriteBit) for GPIO_WriteBit
- msg.o(i.CopyAppToMcu) refers to w25q64.o(i.sFlash_Read) for sFlash_Read
- msg.o(i.CopyAppToMcu) refers to flash.o(i.WritePageData) for WritePageData
- msg.o(i.NewTask) refers to msg.o(.data) for g_ucTask
- msg.o(i.StartMsg) refers to serial.o(i.IapTrace) for IapTrace
- msg.o(i.StartMsg) refers to copyapp2mcu.o(i.CopyApp2Mcu) for CopyApp2Mcu
- msg.o(i.StartMsg) refers to msg.o(i.NewTask) for NewTask
- msg.o(i.StartMsg) refers to printf8.o(i.__0sprintf$8) for __2sprintf
- msg.o(i.StartMsg) refers to strcat.o(.text) for strcat
- msg.o(i.StartMsg) refers to flash.o(i.ReadFlashData) for ReadFlashData
- msg.o(i.StartMsg) refers to memcmp.o(.text) for memcmp
- msg.o(i.StartMsg) refers to flash.o(i.WriteData) for WriteData
- msg.o(i.StartMsg) refers to iap.o(i.iap_jump_app_s) for iap_jump_app_s
- msg.o(i.StartMsg) refers to msg.o(.data) for g_ulTick500Ct
- msg.o(i.StartMsg) refers to iap.o(.bss) for sutProductPara
- msg.o(i.Tick500Msg) refers to flash.o(i.ReadFlashData) for ReadFlashData
- msg.o(i.Tick500Msg) refers to memcmp.o(.text) for memcmp
- msg.o(i.Tick500Msg) refers to msg.o(i.NewTask) for NewTask
- msg.o(i.Tick500Msg) refers to iap.o(i.IapGetUpdateData) for IapGetUpdateData
- msg.o(i.Tick500Msg) refers to serial.o(i.IapTrace) for IapTrace
- msg.o(i.Tick500Msg) refers to msg.o(.data) for g_ulTick500Ct
- msg.o(i.Tick500Msg) refers to iap.o(.bss) for sutProductPara
- msg.o(i.Tick500Msg) refers to iap.o(.data) for g_ulOffset
- msg.o(i.Uart1Msg) refers to msg.o(i.SlwStrCmp) for SlwStrCmp
- msg.o(i.Uart1Msg) refers to serial.o(i.IapTrace) for IapTrace
- msg.o(i.Uart1Msg) refers to iap.o(i.IapGetUpdateVersion) for IapGetUpdateVersion
- msg.o(i.Uart1Msg) refers to iap.o(i.IapRecvMsgHandle) for IapRecvMsgHandle
- msg.o(i.Uart1Msg) refers to msg.o(i.NewTask) for NewTask
- msg.o(i.Uart1Msg) refers to msg.o(.data) for g_ucTask
- msg.o(i.Uart1Msg) refers to iap.o(.bss) for IapRxBuf
- msg.o(i.Uart1Msg) refers to iap.o(.data) for IapRxLen
- id.o(i.GetRandBySTM32ID) refers to id.o(i.GetSTM32ID) for GetSTM32ID
- iap.o(i.IapCheckFileMD5) refers to md5.o(i.MD5Init) for MD5Init
- iap.o(i.IapCheckFileMD5) refers to flash.o(i.STMFLASH_ReadHalfWord) for STMFLASH_ReadHalfWord
- iap.o(i.IapCheckFileMD5) refers to md5.o(i.MD5Update) for MD5Update
- iap.o(i.IapCheckFileMD5) refers to md5.o(i.MD5Final) for MD5Final
- iap.o(i.IapCheckFileMD5) refers to printf8.o(i.__0sprintf$8) for __2sprintf
- iap.o(i.IapCheckFileMD5) refers to strcat.o(.text) for strcat
- iap.o(i.IapCheckFileMD5) refers to serial.o(i.IapTrace) for IapTrace
- iap.o(i.IapGetUpdateData) refers to iap.o(i.MakePcTaDataReq) for MakePcTaDataReq
- iap.o(i.IapGetUpdateData) refers to serial.o(i.Uart1Send) for Uart1Send
- iap.o(i.IapGetUpdateData) refers to serial.o(.bss) for TxBuffer1
- iap.o(i.IapGetUpdateVersion) refers to iap.o(i.MakePcTaVersionReq) for MakePcTaVersionReq
- iap.o(i.IapGetUpdateVersion) refers to serial.o(i.Uart1Send) for Uart1Send
- iap.o(i.IapGetUpdateVersion) refers to serial.o(.bss) for TxBuffer1
- iap.o(i.IapRecvMsgHandle) refers to printf8.o(i.__0sprintf$8) for __2sprintf
- iap.o(i.IapRecvMsgHandle) refers to strcmp.o(.text) for strcmp
- iap.o(i.IapRecvMsgHandle) refers to memcpya.o(.text) for __aeabi_memcpy
- iap.o(i.IapRecvMsgHandle) refers to msg.o(i.NewTask) for NewTask
- iap.o(i.IapRecvMsgHandle) refers to iap.o(i.IapGetUpdateData) for IapGetUpdateData
- iap.o(i.IapRecvMsgHandle) refers to serial.o(i.IapTrace) for IapTrace
- iap.o(i.IapRecvMsgHandle) refers to iap.o(i.IapGetUpdateVersion) for IapGetUpdateVersion
- iap.o(i.IapRecvMsgHandle) refers to crc.o(i.crc16_calc) for crc16_calc
- iap.o(i.IapRecvMsgHandle) refers to iap.o(i.IapWriteFileData) for IapWriteFileData
- iap.o(i.IapRecvMsgHandle) refers to iap.o(i.IapCheckFileMD5) for IapCheckFileMD5
- iap.o(i.IapRecvMsgHandle) refers to iap.o(.bss) for sutProductPara
- iap.o(i.IapRecvMsgHandle) refers to iap.o(.data) for g_ulFileLen
- iap.o(i.IapWriteFileData) refers to flash.o(i.WritePageData) for WritePageData
- iap.o(i.MakePcTaDataReq) refers to memseta.o(.text) for __aeabi_memclr
- iap.o(i.MakePcTaDataReq) refers to printf8.o(i.__0sprintf$8) for __2sprintf
- iap.o(i.MakePcTaDataReq) refers to memcpya.o(.text) for __aeabi_memcpy
- iap.o(i.MakePcTaDataReq) refers to iap.o(.bss) for sutProductPara
- iap.o(i.MakePcTaDataReq) refers to iap.o(.data) for g_usTid
- iap.o(i.MakePcTaVersionReq) refers to memseta.o(.text) for __aeabi_memclr
- iap.o(i.MakePcTaVersionReq) refers to printf8.o(i.__0sprintf$8) for __2sprintf
- iap.o(i.MakePcTaVersionReq) refers to strcpy.o(.text) for strcpy
- iap.o(i.MakePcTaVersionReq) refers to iap.o(.bss) for sutProductPara
- iap.o(i.MakePcTaVersionReq) refers to iap.o(.data) for g_usTid
- iap.o(i.iap_jump_app_s) refers to serial.o(i.IapTrace) for IapTrace
- iap.o(i.iap_jump_app_s) refers to stm32f10x_usart.o(i.USART_ITConfig) for USART_ITConfig
- iap.o(i.iap_jump_app_s) refers to stm32f10x_usart.o(i.USART_DMACmd) for USART_DMACmd
- iap.o(i.iap_jump_app_s) refers to stm32f10x_dma.o(i.DMA_Cmd) for DMA_Cmd
- iap.o(i.iap_jump_app_s) refers to stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit) for GPIO_ReadOutputDataBit
- iap.o(i.iap_jump_app_s) refers to stm32f10x_gpio.o(i.GPIO_WriteBit) for GPIO_WriteBit
- iap.o(i.iap_jump_app_s) refers to iap.o(i.iap_load_app) for iap_load_app
- iap.o(i.iap_load_app) refers to iap.o(.emb_text) for MSR_MSP
- iap.o(i.iap_load_app) refers to iap.o(.data) for jump2app
- serial.o(i.IapTrace) refers to delay.o(i.DelayTick) for DelayTick
- serial.o(i.IapTrace) refers to printf8.o(i.__0printf$8) for __2printf
- serial.o(i.IapTrace) refers to stm32f10x_usart.o(i.USART_SendData) for USART_SendData
- serial.o(i.IapTrace) refers to stm32f10x_usart.o(i.USART_GetFlagStatus) for USART_GetFlagStatus
- serial.o(i.SlwTrace) refers to stm32f10x_usart.o(i.USART_SendData) for USART_SendData
- serial.o(i.SlwTrace) refers to stm32f10x_usart.o(i.USART_GetFlagStatus) for USART_GetFlagStatus
- serial.o(i.UART1RxTxISRHandler) refers to stm32f10x_usart.o(i.USART_GetITStatus) for USART_GetITStatus
- serial.o(i.UART1RxTxISRHandler) refers to stm32f10x_dma.o(i.DMA_Cmd) for DMA_Cmd
- serial.o(i.UART1RxTxISRHandler) refers to memcpya.o(.text) for __aeabi_memcpy
- serial.o(i.UART1RxTxISRHandler) refers to msg.o(.data) for sutMsg
- serial.o(i.UART1RxTxISRHandler) refers to serial.o(.bss) for RxBuffer1
- serial.o(i.UART1RxTxISRHandler) refers to iap.o(.bss) for IapRxBuf
- serial.o(i.UART1RxTxISRHandler) refers to iap.o(.data) for IapRxLen
- serial.o(i.Uart1DMAInit) refers to stm32f10x_rcc.o(i.RCC_AHBPeriphClockCmd) for RCC_AHBPeriphClockCmd
- serial.o(i.Uart1DMAInit) refers to stm32f10x_dma.o(i.DMA_DeInit) for DMA_DeInit
- serial.o(i.Uart1DMAInit) refers to stm32f10x_dma.o(i.DMA_Init) for DMA_Init
- serial.o(i.Uart1DMAInit) refers to misc.o(i.NVIC_Init) for NVIC_Init
- serial.o(i.Uart1DMAInit) refers to stm32f10x_dma.o(i.DMA_ITConfig) for DMA_ITConfig
- serial.o(i.Uart1DMAInit) refers to stm32f10x_dma.o(i.DMA_Cmd) for DMA_Cmd
- serial.o(i.Uart1DMAInit) refers to serial.o(.bss) for TxBuffer1
- serial.o(i.Uart1Init) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
- serial.o(i.Uart1Init) refers to stm32f10x_gpio.o(i.GPIO_Init) for GPIO_Init
- serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_Init) for USART_Init
- serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_Cmd) for USART_Cmd
- serial.o(i.Uart1Init) refers to misc.o(i.NVIC_PriorityGroupConfig) for NVIC_PriorityGroupConfig
- serial.o(i.Uart1Init) refers to misc.o(i.NVIC_Init) for NVIC_Init
- serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_ClearFlag) for USART_ClearFlag
- serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_ITConfig) for USART_ITConfig
- serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_DMACmd) for USART_DMACmd
- serial.o(i.Uart1Init) refers to serial.o(i.Uart1DMAInit) for Uart1DMAInit
- serial.o(i.Uart1Send) refers to stm32f10x_usart.o(i.USART_SendData) for USART_SendData
- serial.o(i.Uart1Send) refers to stm32f10x_usart.o(i.USART_GetFlagStatus) for USART_GetFlagStatus
- serial.o(i.fputc) refers to stm32f10x_usart.o(i.USART_SendData) for USART_SendData
- serial.o(i.fputc) refers to stm32f10x_usart.o(i.USART_GetFlagStatus) for USART_GetFlagStatus
- md5.o(i.MD5Final) refers to md5.o(i.MD5Update) for MD5Update
- md5.o(i.MD5Final) refers to md5.o(i.Transform) for Transform
- md5.o(i.MD5Final) refers to md5.o(.constdata) for PADDING
- md5.o(i.MD5Update) refers to md5.o(i.Transform) for Transform
- crc.o(i.crc16_calc) refers to crc.o(i.crc16_update) for crc16_update
- crc.o(i.crc16_update) refers to crc.o(.constdata) for gm_crc16_table
- delay.o(i.Delay_1Ms) refers to delay.o(.data) for fac_ms
- delay.o(i.Delay_1Us) refers to delay.o(.data) for fac_us
- delay.o(i.Delay_Init) refers to system_stm32f10x.o(.data) for SystemCoreClock
- delay.o(i.Delay_Init) refers to delay.o(.data) for fac_us
- delay.o(i.Delay_Ms) refers to delay.o(i.Delay_1Ms) for Delay_1Ms
- delay.o(i.Delay_Us) refers to delay.o(i.Delay_1Us) for Delay_1Us
- flash.o(i.ReadFlashData) refers to flash.o(i.STMFLASH_ReadHalfWord) for STMFLASH_ReadHalfWord
- flash.o(i.STMFLASH_Read) refers to flash.o(i.STMFLASH_ReadHalfWord) for STMFLASH_ReadHalfWord
- flash.o(i.WriteData) refers to flash.o(i.STMFLASH_Read) for STMFLASH_Read
- flash.o(i.WriteData) refers to stm32f10x_flash.o(i.FLASH_Unlock) for FLASH_Unlock
- flash.o(i.WriteData) refers to stm32f10x_flash.o(i.FLASH_ErasePage) for FLASH_ErasePage
- flash.o(i.WriteData) refers to stm32f10x_flash.o(i.FLASH_ProgramHalfWord) for FLASH_ProgramHalfWord
- flash.o(i.WriteData) refers to stm32f10x_flash.o(i.FLASH_Lock) for FLASH_Lock
- flash.o(i.WriteData) refers to flash.o(.bss) for STMFLASH_BUF
- flash.o(i.WritePageData) refers to stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit) for GPIO_ReadOutputDataBit
- flash.o(i.WritePageData) refers to stm32f10x_gpio.o(i.GPIO_WriteBit) for GPIO_WriteBit
- flash.o(i.WritePageData) refers to stm32f10x_flash.o(i.FLASH_Unlock) for FLASH_Unlock
- flash.o(i.WritePageData) refers to stm32f10x_flash.o(i.FLASH_ErasePage) for FLASH_ErasePage
- flash.o(i.WritePageData) refers to stm32f10x_flash.o(i.FLASH_ProgramHalfWord) for FLASH_ProgramHalfWord
- flash.o(i.WritePageData) refers to stm32f10x_flash.o(i.FLASH_Lock) for FLASH_Lock
- msgqueue.o(i.MsgDataBufferInit) refers to msgqueue.o(.bss) for DataBuffer
- msgqueue.o(i.MsgDataBufferInit) refers to msgqueue.o(.data) for DataBufferLen
- msgqueue.o(i.MsgQueueAccept) refers to msgqueue.o(.data) for DataBufferLen
- msgqueue.o(i.MsgQueueAccept) refers to msgqueue.o(.bss) for DataBuffer
- msgqueue.o(i.MsgQueuePost) refers to msgqueue.o(.data) for DataBufferLen
- msgqueue.o(i.MsgQueuePost) refers to msgqueue.o(.bss) for DataBuffer
- watchdog.o(i.ExtWatchDogInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
- watchdog.o(i.ExtWatchDogInit) refers to stm32f10x_gpio.o(i.GPIO_Init) for GPIO_Init
- w25q64.o(i.SPIx_ReadWriteByte) refers to stm32f10x_spi.o(i.SPI_I2S_GetFlagStatus) for SPI_I2S_GetFlagStatus
- w25q64.o(i.SPIx_ReadWriteByte) refers to stm32f10x_spi.o(i.SPI_I2S_SendData) for SPI_I2S_SendData
- w25q64.o(i.SPIx_ReadWriteByte) refers to stm32f10x_spi.o(i.SPI_I2S_ReceiveData) for SPI_I2S_ReceiveData
- w25q64.o(i.W25Q64_Init) refers to w25q64.o(i.W25Q64_PortInit) for W25Q64_PortInit
- w25q64.o(i.W25Q64_Init) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- w25q64.o(i.W25Q64_Init) refers to stm32f10x_spi.o(i.SPI_Init) for SPI_Init
- w25q64.o(i.W25Q64_Init) refers to stm32f10x_spi.o(i.SPI_Cmd) for SPI_Cmd
- w25q64.o(i.W25Q64_Init) refers to w25q64.o(i.DelayUs) for DelayUs
- w25q64.o(i.W25Q64_Init) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
- w25q64.o(i.W25Q64_Init) refers to w25q64.o(i.sFlash_ReadID) for sFlash_ReadID
- w25q64.o(i.W25Q64_PortInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
- w25q64.o(i.W25Q64_PortInit) refers to stm32f10x_gpio.o(i.GPIO_Init) for GPIO_Init
- w25q64.o(i.sFlash_Erase_Chip) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
- w25q64.o(i.sFlash_Erase_Chip) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
- w25q64.o(i.sFlash_Erase_Chip) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
- w25q64.o(i.sFlash_Erase_Chip) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
- w25q64.o(i.sFlash_Erase_Chip) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- w25q64.o(i.sFlash_Erase_Sector) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
- w25q64.o(i.sFlash_Erase_Sector) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
- w25q64.o(i.sFlash_Erase_Sector) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
- w25q64.o(i.sFlash_Erase_Sector) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
- w25q64.o(i.sFlash_Erase_Sector) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- w25q64.o(i.sFlash_Global_Protect) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
- w25q64.o(i.sFlash_Global_Protect) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
- w25q64.o(i.sFlash_Global_Protect) refers to w25q64.o(i.sFlash_Write_SR) for sFlash_Write_SR
- w25q64.o(i.sFlash_Global_Unprotect) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
- w25q64.o(i.sFlash_Global_Unprotect) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
- w25q64.o(i.sFlash_Global_Unprotect) refers to w25q64.o(i.sFlash_Write_SR) for sFlash_Write_SR
- w25q64.o(i.sFlash_Read) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
- w25q64.o(i.sFlash_Read) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
- w25q64.o(i.sFlash_Read) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- w25q64.o(i.sFlash_ReadID) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
- w25q64.o(i.sFlash_ReadID) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
- w25q64.o(i.sFlash_ReadID) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- w25q64.o(i.sFlash_ReadSR) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
- w25q64.o(i.sFlash_ReadSR) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
- w25q64.o(i.sFlash_ReadSR) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- w25q64.o(i.sFlash_Wait_Busy) refers to w25q64.o(i.sFlash_ReadSR) for sFlash_ReadSR
- w25q64.o(i.sFlash_Write) refers to w25q64.o(i.sFlash_Read) for sFlash_Read
- w25q64.o(i.sFlash_Write) refers to w25q64.o(i.sFlash_Erase_Sector) for sFlash_Erase_Sector
- w25q64.o(i.sFlash_Write) refers to w25q64.o(i.sFlash_Write_NoCheck) for sFlash_Write_NoCheck
- w25q64.o(i.sFlash_Write) refers to w25q64.o(.data) for ExFlashWatchDog
- w25q64.o(i.sFlash_Write) refers to w25q64.o(.bss) for sFlash_BUF
- w25q64.o(i.sFlash_Write_Disable) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
- w25q64.o(i.sFlash_Write_Disable) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
- w25q64.o(i.sFlash_Write_Disable) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- w25q64.o(i.sFlash_Write_Enable) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
- w25q64.o(i.sFlash_Write_Enable) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
- w25q64.o(i.sFlash_Write_Enable) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- w25q64.o(i.sFlash_Write_NoCheck) refers to w25q64.o(i.sFlash_Write_Page) for sFlash_Write_Page
- w25q64.o(i.sFlash_Write_Page) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
- w25q64.o(i.sFlash_Write_Page) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
- w25q64.o(i.sFlash_Write_Page) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
- w25q64.o(i.sFlash_Write_Page) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- w25q64.o(i.sFlash_Write_Page) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
- w25q64.o(i.sFlash_Write_SR) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
- w25q64.o(i.sFlash_Write_SR) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
- w25q64.o(i.sFlash_Write_SR) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
- copyapp2mcu.o(i.CheckExFlashAppMD5) refers to md5.o(i.MD5Init) for MD5Init
- copyapp2mcu.o(i.CheckExFlashAppMD5) refers to w25q64.o(i.sFlash_Read) for sFlash_Read
- copyapp2mcu.o(i.CheckExFlashAppMD5) refers to md5.o(i.MD5Update) for MD5Update
- copyapp2mcu.o(i.CheckExFlashAppMD5) refers to md5.o(i.MD5Final) for MD5Final
- copyapp2mcu.o(i.CopyApp2Mcu) refers to copyapp2mcu.o(i.CheckExFlashAppMD5) for CheckExFlashAppMD5
- copyapp2mcu.o(i.CopyApp2Mcu) refers to w25q64.o(i.sFlash_Read) for sFlash_Read
- copyapp2mcu.o(i.CopyApp2Mcu) refers to flash.o(i.WritePageData) for WritePageData
- copyapp2mcu.o(i.CopyApp2Mcu) refers to flash.o(i.ReadFlashData) for ReadFlashData
- stm32f10x_flash.o(i.FLASH_EnableWriteProtection) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
- stm32f10x_flash.o(i.FLASH_EraseAllBank1Pages) refers to stm32f10x_flash.o(i.FLASH_WaitForLastBank1Operation) for FLASH_WaitForLastBank1Operation
- stm32f10x_flash.o(i.FLASH_EraseAllPages) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
- stm32f10x_flash.o(i.FLASH_EraseOptionBytes) refers to stm32f10x_flash.o(i.FLASH_GetReadOutProtectionStatus) for FLASH_GetReadOutProtectionStatus
- stm32f10x_flash.o(i.FLASH_EraseOptionBytes) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
- stm32f10x_flash.o(i.FLASH_ErasePage) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
- stm32f10x_flash.o(i.FLASH_ProgramHalfWord) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
- stm32f10x_flash.o(i.FLASH_ProgramOptionByteData) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
- stm32f10x_flash.o(i.FLASH_ProgramWord) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
- stm32f10x_flash.o(i.FLASH_ReadOutProtection) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
- stm32f10x_flash.o(i.FLASH_UserOptionByteConfig) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
- stm32f10x_flash.o(i.FLASH_WaitForLastBank1Operation) refers to stm32f10x_flash.o(i.FLASH_GetBank1Status) for FLASH_GetBank1Status
- stm32f10x_flash.o(i.FLASH_WaitForLastOperation) refers to stm32f10x_flash.o(i.FLASH_GetBank1Status) for FLASH_GetBank1Status
- stm32f10x_gpio.o(i.GPIO_AFIODeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
- stm32f10x_gpio.o(i.GPIO_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
- stm32f10x_rcc.o(i.RCC_GetClocksFreq) refers to stm32f10x_rcc.o(.data) for APBAHBPrescTable
- stm32f10x_rcc.o(i.RCC_WaitForHSEStartUp) refers to stm32f10x_rcc.o(i.RCC_GetFlagStatus) for RCC_GetFlagStatus
- stm32f10x_adc.o(i.ADC_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
- stm32f10x_bkp.o(i.BKP_DeInit) refers to stm32f10x_rcc.o(i.RCC_BackupResetCmd) for RCC_BackupResetCmd
- stm32f10x_can.o(i.CAN_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
- stm32f10x_can.o(i.CAN_GetITStatus) refers to stm32f10x_can.o(i.CheckITStatus) for CheckITStatus
- stm32f10x_can.o(i.CAN_Receive) refers to stm32f10x_can.o(i.CAN_FIFORelease) for CAN_FIFORelease
- stm32f10x_cec.o(i.CEC_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
- stm32f10x_dac.o(i.DAC_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
- stm32f10x_i2c.o(i.I2C_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
- stm32f10x_i2c.o(i.I2C_Init) refers to stm32f10x_rcc.o(i.RCC_GetClocksFreq) for RCC_GetClocksFreq
- stm32f10x_pwr.o(i.PWR_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
- stm32f10x_rtc.o(i.RTC_SetAlarm) refers to stm32f10x_rtc.o(i.RTC_EnterConfigMode) for RTC_EnterConfigMode
- stm32f10x_rtc.o(i.RTC_SetAlarm) refers to stm32f10x_rtc.o(i.RTC_ExitConfigMode) for RTC_ExitConfigMode
- stm32f10x_rtc.o(i.RTC_SetCounter) refers to stm32f10x_rtc.o(i.RTC_EnterConfigMode) for RTC_EnterConfigMode
- stm32f10x_rtc.o(i.RTC_SetCounter) refers to stm32f10x_rtc.o(i.RTC_ExitConfigMode) for RTC_ExitConfigMode
- stm32f10x_rtc.o(i.RTC_SetPrescaler) refers to stm32f10x_rtc.o(i.RTC_EnterConfigMode) for RTC_EnterConfigMode
- stm32f10x_rtc.o(i.RTC_SetPrescaler) refers to stm32f10x_rtc.o(i.RTC_ExitConfigMode) for RTC_ExitConfigMode
- stm32f10x_spi.o(i.I2S_Init) refers to stm32f10x_rcc.o(i.RCC_GetClocksFreq) for RCC_GetClocksFreq
- stm32f10x_spi.o(i.SPI_I2S_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
- stm32f10x_spi.o(i.SPI_I2S_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
- stm32f10x_tim.o(i.TIM_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
- stm32f10x_tim.o(i.TIM_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
- stm32f10x_tim.o(i.TIM_ETRClockMode1Config) refers to stm32f10x_tim.o(i.TIM_ETRConfig) for TIM_ETRConfig
- stm32f10x_tim.o(i.TIM_ETRClockMode2Config) refers to stm32f10x_tim.o(i.TIM_ETRConfig) for TIM_ETRConfig
- stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TI1_Config) for TI1_Config
- stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TIM_SetIC1Prescaler) for TIM_SetIC1Prescaler
- stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TI2_Config) for TI2_Config
- stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TIM_SetIC2Prescaler) for TIM_SetIC2Prescaler
- stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TI3_Config) for TI3_Config
- stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TIM_SetIC3Prescaler) for TIM_SetIC3Prescaler
- stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TI4_Config) for TI4_Config
- stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TIM_SetIC4Prescaler) for TIM_SetIC4Prescaler
- stm32f10x_tim.o(i.TIM_ITRxExternalClockConfig) refers to stm32f10x_tim.o(i.TIM_SelectInputTrigger) for TIM_SelectInputTrigger
- stm32f10x_tim.o(i.TIM_PWMIConfig) refers to stm32f10x_tim.o(i.TI1_Config) for TI1_Config
- stm32f10x_tim.o(i.TIM_PWMIConfig) refers to stm32f10x_tim.o(i.TIM_SetIC1Prescaler) for TIM_SetIC1Prescaler
- stm32f10x_tim.o(i.TIM_PWMIConfig) refers to stm32f10x_tim.o(i.TI2_Config) for TI2_Config
- stm32f10x_tim.o(i.TIM_PWMIConfig) refers to stm32f10x_tim.o(i.TIM_SetIC2Prescaler) for TIM_SetIC2Prescaler
- stm32f10x_tim.o(i.TIM_TIxExternalClockConfig) refers to stm32f10x_tim.o(i.TI2_Config) for TI2_Config
- stm32f10x_tim.o(i.TIM_TIxExternalClockConfig) refers to stm32f10x_tim.o(i.TI1_Config) for TI1_Config
- stm32f10x_tim.o(i.TIM_TIxExternalClockConfig) refers to stm32f10x_tim.o(i.TIM_SelectInputTrigger) for TIM_SelectInputTrigger
- stm32f10x_usart.o(i.USART_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
- stm32f10x_usart.o(i.USART_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
- stm32f10x_usart.o(i.USART_Init) refers to stm32f10x_rcc.o(i.RCC_GetClocksFreq) for RCC_GetClocksFreq
- stm32f10x_wwdg.o(i.WWDG_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
- system_stm32f10x.o(i.SetSysClock) refers to system_stm32f10x.o(i.SetSysClockTo24) for SetSysClockTo24
- system_stm32f10x.o(i.SystemCoreClockUpdate) refers to system_stm32f10x.o(.data) for SystemCoreClock
- system_stm32f10x.o(i.SystemInit) refers to system_stm32f10x.o(i.SetSysClock) for SetSysClock
- startup_stm32f10x_hd.o(RESET) refers to startup_stm32f10x_hd.o(STACK) for __initial_sp
- startup_stm32f10x_hd.o(RESET) refers to startup_stm32f10x_hd.o(.text) for Reset_Handler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.NMI_Handler) for NMI_Handler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.HardFault_Handler) for HardFault_Handler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.MemManage_Handler) for MemManage_Handler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.BusFault_Handler) for BusFault_Handler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.UsageFault_Handler) for UsageFault_Handler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.SVC_Handler) for SVC_Handler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.DebugMon_Handler) for DebugMon_Handler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.SysTick_Handler) for SysTick_Handler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.DMA1_Channel2_IRQHandler) for DMA1_Channel2_IRQHandler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.DMA1_Channel4_IRQHandler) for DMA1_Channel4_IRQHandler
- startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.USART1_IRQHandler) for USART1_IRQHandler
- startup_stm32f10x_hd.o(.text) refers to system_stm32f10x.o(i.SystemInit) for SystemInit
- startup_stm32f10x_hd.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
- entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp
- entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit
- entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock
- entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init
- entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init
- entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload
- entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk
- printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
- printfb.o(i.__0fprintf$bare) refers to serial.o(i.fputc) for fputc
- printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core
- printfb.o(i.__0printf$bare) refers to serial.o(i.fputc) for fputc
- printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout
- printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
- printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc
- printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
- printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc
- printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
- printfb.o(i.__0vfprintf$bare) refers to serial.o(i.fputc) for fputc
- printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
- printfb.o(i.__0vprintf$bare) refers to serial.o(i.fputc) for fputc
- printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout
- printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
- printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc
- printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
- printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc
- printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core
- printf0.o(i.__0fprintf$0) refers to serial.o(i.fputc) for fputc
- printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core
- printf0.o(i.__0printf$0) refers to serial.o(i.fputc) for fputc
- printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout
- printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core
- printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc
- printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core
- printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc
- printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core
- printf0.o(i.__0vfprintf$0) refers to serial.o(i.fputc) for fputc
- printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core
- printf0.o(i.__0vprintf$0) refers to serial.o(i.fputc) for fputc
- printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout
- printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core
- printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc
- printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core
- printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc
- printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core
- printf1.o(i.__0fprintf$1) refers to serial.o(i.fputc) for fputc
- printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core
- printf1.o(i.__0printf$1) refers to serial.o(i.fputc) for fputc
- printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout
- printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core
- printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc
- printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core
- printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc
- printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core
- printf1.o(i.__0vfprintf$1) refers to serial.o(i.fputc) for fputc
- printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core
- printf1.o(i.__0vprintf$1) refers to serial.o(i.fputc) for fputc
- printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout
- printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core
- printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc
- printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core
- printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc
- printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
- printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core
- printf2.o(i.__0fprintf$2) refers to serial.o(i.fputc) for fputc
- printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core
- printf2.o(i.__0printf$2) refers to serial.o(i.fputc) for fputc
- printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout
- printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core
- printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc
- printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core
- printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc
- printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core
- printf2.o(i.__0vfprintf$2) refers to serial.o(i.fputc) for fputc
- printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core
- printf2.o(i.__0vprintf$2) refers to serial.o(i.fputc) for fputc
- printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout
- printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core
- printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc
- printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core
- printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc
- printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core
- printf3.o(i.__0fprintf$3) refers to serial.o(i.fputc) for fputc
- printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core
- printf3.o(i.__0printf$3) refers to serial.o(i.fputc) for fputc
- printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout
- printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core
- printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc
- printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core
- printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc
- printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core
- printf3.o(i.__0vfprintf$3) refers to serial.o(i.fputc) for fputc
- printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core
- printf3.o(i.__0vprintf$3) refers to serial.o(i.fputc) for fputc
- printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout
- printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core
- printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc
- printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core
- printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc
- printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
- printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core
- printf4.o(i.__0fprintf$4) refers to serial.o(i.fputc) for fputc
- printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core
- printf4.o(i.__0printf$4) refers to serial.o(i.fputc) for fputc
- printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout
- printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core
- printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc
- printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core
- printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc
- printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core
- printf4.o(i.__0vfprintf$4) refers to serial.o(i.fputc) for fputc
- printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core
- printf4.o(i.__0vprintf$4) refers to serial.o(i.fputc) for fputc
- printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout
- printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core
- printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc
- printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core
- printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc
- printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
- printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core
- printf5.o(i.__0fprintf$5) refers to serial.o(i.fputc) for fputc
- printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core
- printf5.o(i.__0printf$5) refers to serial.o(i.fputc) for fputc
- printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout
- printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core
- printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc
- printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core
- printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc
- printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core
- printf5.o(i.__0vfprintf$5) refers to serial.o(i.fputc) for fputc
- printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core
- printf5.o(i.__0vprintf$5) refers to serial.o(i.fputc) for fputc
- printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout
- printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core
- printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc
- printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core
- printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc
- printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
- printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core
- printf6.o(i.__0fprintf$6) refers to serial.o(i.fputc) for fputc
- printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core
- printf6.o(i.__0printf$6) refers to serial.o(i.fputc) for fputc
- printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout
- printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core
- printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc
- printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core
- printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc
- printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core
- printf6.o(i.__0vfprintf$6) refers to serial.o(i.fputc) for fputc
- printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core
- printf6.o(i.__0vprintf$6) refers to serial.o(i.fputc) for fputc
- printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout
- printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core
- printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc
- printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core
- printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc
- printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding
- printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
- printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding
- printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core
- printf7.o(i.__0fprintf$7) refers to serial.o(i.fputc) for fputc
- printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core
- printf7.o(i.__0printf$7) refers to serial.o(i.fputc) for fputc
- printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout
- printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core
- printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc
- printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core
- printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc
- printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core
- printf7.o(i.__0vfprintf$7) refers to serial.o(i.fputc) for fputc
- printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core
- printf7.o(i.__0vprintf$7) refers to serial.o(i.fputc) for fputc
- printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout
- printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core
- printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc
- printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core
- printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc
- printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding
- printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
- printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding
- printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core
- printf8.o(i.__0fprintf$8) refers to serial.o(i.fputc) for fputc
- printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core
- printf8.o(i.__0printf$8) refers to serial.o(i.fputc) for fputc
- printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout
- printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core
- printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc
- printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core
- printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc
- printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core
- printf8.o(i.__0vfprintf$8) refers to serial.o(i.fputc) for fputc
- printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core
- printf8.o(i.__0vprintf$8) refers to serial.o(i.fputc) for fputc
- printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout
- printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core
- printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc
- printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core
- printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc
- printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding
- printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
- printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding
- printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core
- printfa.o(i.__0fprintf) refers to serial.o(i.fputc) for fputc
- printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core
- printfa.o(i.__0printf) refers to serial.o(i.fputc) for fputc
- printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout
- printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core
- printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc
- printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core
- printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc
- printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core
- printfa.o(i.__0vfprintf) refers to serial.o(i.fputc) for fputc
- printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core
- printfa.o(i.__0vprintf) refers to serial.o(i.fputc) for fputc
- printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout
- printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core
- printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc
- printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core
- printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc
- printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul
- printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv
- printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
- printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd
- printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz
- printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod
- printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding
- printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
- printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding
- printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits
- printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
- printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp
- printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp
- entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000
- entry2.o(.ARM.Collect$$$$00002712) refers to startup_stm32f10x_hd.o(STACK) for __initial_sp
- entry2.o(__vectab_stack_and_reset_area) refers to startup_stm32f10x_hd.o(STACK) for __initial_sp
- entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main
- entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload
- entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main
- entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main
- uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
- uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
- dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl
- dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr
- dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue
- dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue
- ddiv.o(.text) refers to depilogue.o(.text) for _double_round
- dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr
- dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl
- init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
- depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl
- depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr
- ==============================================================================
- Removing Unused input sections from the image.
- Removing main.o(.constdata), (4 bytes).
- Removing stm32f10x_it.o(i.SetHFH), (44 bytes).
- Removing msg.o(i.CopyAppToMcu), (200 bytes).
- Removing iap.o(i.iap_clear_flag), (2 bytes).
- Removing iap.o(i.iap_set_flag_s), (2 bytes).
- Removing serial.o(i.SlwTrace), (44 bytes).
- Removing serial.o(.data), (12 bytes).
- Removing delay.o(i.Delay_1Ms), (56 bytes).
- Removing delay.o(i.Delay_1Us), (56 bytes).
- Removing delay.o(i.Delay_Init), (68 bytes).
- Removing delay.o(i.Delay_Ms), (22 bytes).
- Removing delay.o(i.Delay_Us), (22 bytes).
- Removing delay.o(.data), (4 bytes).
- Removing msgqueue.o(i.MsgQueueAccept), (188 bytes).
- Removing msgqueue.o(i.MsgQueuePost), (140 bytes).
- Removing w25q64.o(i.DelayMs), (32 bytes).
- Removing w25q64.o(i.sFlash_Erase_Chip), (44 bytes).
- Removing w25q64.o(i.sFlash_Erase_Sector), (68 bytes).
- Removing w25q64.o(i.sFlash_Global_Protect), (18 bytes).
- Removing w25q64.o(i.sFlash_Global_Unprotect), (18 bytes).
- Removing w25q64.o(i.sFlash_PowerDown), (2 bytes).
- Removing w25q64.o(i.sFlash_ReadSR), (44 bytes).
- Removing w25q64.o(i.sFlash_WAKEUP), (2 bytes).
- Removing w25q64.o(i.sFlash_Wait_Busy), (16 bytes).
- Removing w25q64.o(i.sFlash_Write), (200 bytes).
- Removing w25q64.o(i.sFlash_Write_Disable), (32 bytes).
- Removing w25q64.o(i.sFlash_Write_NoCheck), (70 bytes).
- Removing w25q64.o(i.sFlash_Write_Page), (88 bytes).
- Removing w25q64.o(i.sFlash_Write_SR), (40 bytes).
- Removing w25q64.o(.bss), (1024 bytes).
- Removing misc.o(i.NVIC_SetVectorTable), (20 bytes).
- Removing misc.o(i.NVIC_SystemLPConfig), (32 bytes).
- Removing misc.o(i.SysTick_CLKSourceConfig), (40 bytes).
- Removing stm32f10x_flash.o(i.FLASH_ClearFlag), (12 bytes).
- Removing stm32f10x_flash.o(i.FLASH_EnableWriteProtection), (196 bytes).
- Removing stm32f10x_flash.o(i.FLASH_EraseAllBank1Pages), (72 bytes).
- Removing stm32f10x_flash.o(i.FLASH_EraseAllPages), (72 bytes).
- Removing stm32f10x_flash.o(i.FLASH_EraseOptionBytes), (168 bytes).
- Removing stm32f10x_flash.o(i.FLASH_GetFlagStatus), (48 bytes).
- Removing stm32f10x_flash.o(i.FLASH_GetPrefetchBufferStatus), (24 bytes).
- Removing stm32f10x_flash.o(i.FLASH_GetReadOutProtectionStatus), (24 bytes).
- Removing stm32f10x_flash.o(i.FLASH_GetStatus), (52 bytes).
- Removing stm32f10x_flash.o(i.FLASH_GetUserOptionByte), (12 bytes).
- Removing stm32f10x_flash.o(i.FLASH_GetWriteProtectionOptionByte), (12 bytes).
- Removing stm32f10x_flash.o(i.FLASH_HalfCycleAccessCmd), (28 bytes).
- Removing stm32f10x_flash.o(i.FLASH_ITConfig), (32 bytes).
- Removing stm32f10x_flash.o(i.FLASH_LockBank1), (20 bytes).
- Removing stm32f10x_flash.o(i.FLASH_PrefetchBufferCmd), (28 bytes).
- Removing stm32f10x_flash.o(i.FLASH_ProgramOptionByteData), (84 bytes).
- Removing stm32f10x_flash.o(i.FLASH_ProgramWord), (108 bytes).
- Removing stm32f10x_flash.o(i.FLASH_ReadOutProtection), (172 bytes).
- Removing stm32f10x_flash.o(i.FLASH_SetLatency), (24 bytes).
- Removing stm32f10x_flash.o(i.FLASH_UnlockBank1), (24 bytes).
- Removing stm32f10x_flash.o(i.FLASH_UserOptionByteConfig), (104 bytes).
- Removing stm32f10x_flash.o(i.FLASH_WaitForLastBank1Operation), (38 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_AFIODeInit), (20 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_DeInit), (200 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_ETH_MediaInterfaceConfig), (12 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_EXTILineConfig), (64 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_EventOutputCmd), (12 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_EventOutputConfig), (32 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_PinLockConfig), (18 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_PinRemapConfig), (144 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_ReadInputData), (8 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_ReadInputDataBit), (18 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_ReadOutputData), (8 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_StructInit), (16 bytes).
- Removing stm32f10x_gpio.o(i.GPIO_Write), (4 bytes).
- Removing stm32f10x_rcc.o(i.RCC_ADCCLKConfig), (24 bytes).
- Removing stm32f10x_rcc.o(i.RCC_APB1PeriphClockCmd), (32 bytes).
- Removing stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd), (32 bytes).
- Removing stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd), (32 bytes).
- Removing stm32f10x_rcc.o(i.RCC_AdjustHSICalibrationValue), (24 bytes).
- Removing stm32f10x_rcc.o(i.RCC_BackupResetCmd), (12 bytes).
- Removing stm32f10x_rcc.o(i.RCC_ClearFlag), (20 bytes).
- Removing stm32f10x_rcc.o(i.RCC_ClearITPendingBit), (12 bytes).
- Removing stm32f10x_rcc.o(i.RCC_ClockSecuritySystemCmd), (12 bytes).
- Removing stm32f10x_rcc.o(i.RCC_DeInit), (76 bytes).
- Removing stm32f10x_rcc.o(i.RCC_GetFlagStatus), (60 bytes).
- Removing stm32f10x_rcc.o(i.RCC_GetITStatus), (24 bytes).
- Removing stm32f10x_rcc.o(i.RCC_GetSYSCLKSource), (16 bytes).
- Removing stm32f10x_rcc.o(i.RCC_HCLKConfig), (24 bytes).
- Removing stm32f10x_rcc.o(i.RCC_HSEConfig), (76 bytes).
- Removing stm32f10x_rcc.o(i.RCC_HSICmd), (12 bytes).
- Removing stm32f10x_rcc.o(i.RCC_ITConfig), (32 bytes).
- Removing stm32f10x_rcc.o(i.RCC_LSEConfig), (52 bytes).
- Removing stm32f10x_rcc.o(i.RCC_LSICmd), (12 bytes).
- Removing stm32f10x_rcc.o(i.RCC_MCOConfig), (12 bytes).
- Removing stm32f10x_rcc.o(i.RCC_PCLK1Config), (24 bytes).
- Removing stm32f10x_rcc.o(i.RCC_PCLK2Config), (24 bytes).
- Removing stm32f10x_rcc.o(i.RCC_PLLCmd), (12 bytes).
- Removing stm32f10x_rcc.o(i.RCC_PLLConfig), (28 bytes).
- Removing stm32f10x_rcc.o(i.RCC_RTCCLKCmd), (12 bytes).
- Removing stm32f10x_rcc.o(i.RCC_RTCCLKConfig), (16 bytes).
- Removing stm32f10x_rcc.o(i.RCC_SYSCLKConfig), (24 bytes).
- Removing stm32f10x_rcc.o(i.RCC_USBCLKConfig), (12 bytes).
- Removing stm32f10x_rcc.o(i.RCC_WaitForHSEStartUp), (56 bytes).
- Removing stm32f10x_adc.o(i.ADC_AnalogWatchdogCmd), (20 bytes).
- Removing stm32f10x_adc.o(i.ADC_AnalogWatchdogSingleChannelConfig), (16 bytes).
- Removing stm32f10x_adc.o(i.ADC_AnalogWatchdogThresholdsConfig), (6 bytes).
- Removing stm32f10x_adc.o(i.ADC_AutoInjectedConvCmd), (22 bytes).
- Removing stm32f10x_adc.o(i.ADC_ClearFlag), (6 bytes).
- Removing stm32f10x_adc.o(i.ADC_ClearITPendingBit), (10 bytes).
- Removing stm32f10x_adc.o(i.ADC_Cmd), (22 bytes).
- Removing stm32f10x_adc.o(i.ADC_DMACmd), (22 bytes).
- Removing stm32f10x_adc.o(i.ADC_DeInit), (92 bytes).
- Removing stm32f10x_adc.o(i.ADC_DiscModeChannelCountConfig), (24 bytes).
- Removing stm32f10x_adc.o(i.ADC_DiscModeCmd), (22 bytes).
- Removing stm32f10x_adc.o(i.ADC_ExternalTrigConvCmd), (22 bytes).
- Removing stm32f10x_adc.o(i.ADC_ExternalTrigInjectedConvCmd), (22 bytes).
- Removing stm32f10x_adc.o(i.ADC_ExternalTrigInjectedConvConfig), (16 bytes).
- Removing stm32f10x_adc.o(i.ADC_GetCalibrationStatus), (20 bytes).
- Removing stm32f10x_adc.o(i.ADC_GetConversionValue), (8 bytes).
- Removing stm32f10x_adc.o(i.ADC_GetDualModeConversionValue), (12 bytes).
- Removing stm32f10x_adc.o(i.ADC_GetFlagStatus), (18 bytes).
- Removing stm32f10x_adc.o(i.ADC_GetITStatus), (36 bytes).
- Removing stm32f10x_adc.o(i.ADC_GetInjectedConversionValue), (28 bytes).
- Removing stm32f10x_adc.o(i.ADC_GetResetCalibrationStatus), (20 bytes).
- Removing stm32f10x_adc.o(i.ADC_GetSoftwareStartConvStatus), (20 bytes).
- Removing stm32f10x_adc.o(i.ADC_GetSoftwareStartInjectedConvCmdStatus), (20 bytes).
- Removing stm32f10x_adc.o(i.ADC_ITConfig), (24 bytes).
- Removing stm32f10x_adc.o(i.ADC_Init), (80 bytes).
- Removing stm32f10x_adc.o(i.ADC_InjectedChannelConfig), (130 bytes).
- Removing stm32f10x_adc.o(i.ADC_InjectedDiscModeCmd), (22 bytes).
- Removing stm32f10x_adc.o(i.ADC_InjectedSequencerLengthConfig), (24 bytes).
- Removing stm32f10x_adc.o(i.ADC_RegularChannelConfig), (184 bytes).
- Removing stm32f10x_adc.o(i.ADC_ResetCalibration), (10 bytes).
- Removing stm32f10x_adc.o(i.ADC_SetInjectedOffset), (20 bytes).
- Removing stm32f10x_adc.o(i.ADC_SoftwareStartConvCmd), (22 bytes).
- Removing stm32f10x_adc.o(i.ADC_SoftwareStartInjectedConvCmd), (22 bytes).
- Removing stm32f10x_adc.o(i.ADC_StartCalibration), (10 bytes).
- Removing stm32f10x_adc.o(i.ADC_StructInit), (18 bytes).
- Removing stm32f10x_adc.o(i.ADC_TempSensorVrefintCmd), (36 bytes).
- Removing stm32f10x_bkp.o(i.BKP_ClearFlag), (20 bytes).
- Removing stm32f10x_bkp.o(i.BKP_ClearITPendingBit), (20 bytes).
- Removing stm32f10x_bkp.o(i.BKP_DeInit), (16 bytes).
- Removing stm32f10x_bkp.o(i.BKP_GetFlagStatus), (12 bytes).
- Removing stm32f10x_bkp.o(i.BKP_GetITStatus), (12 bytes).
- Removing stm32f10x_bkp.o(i.BKP_ITConfig), (12 bytes).
- Removing stm32f10x_bkp.o(i.BKP_RTCOutputConfig), (28 bytes).
- Removing stm32f10x_bkp.o(i.BKP_ReadBackupRegister), (28 bytes).
- Removing stm32f10x_bkp.o(i.BKP_SetRTCCalibrationValue), (28 bytes).
- Removing stm32f10x_bkp.o(i.BKP_TamperPinCmd), (12 bytes).
- Removing stm32f10x_bkp.o(i.BKP_TamperPinLevelConfig), (12 bytes).
- Removing stm32f10x_bkp.o(i.BKP_WriteBackupRegister), (28 bytes).
- Removing stm32f10x_can.o(i.CAN_CancelTransmit), (48 bytes).
- Removing stm32f10x_can.o(i.CAN_ClearFlag), (56 bytes).
- Removing stm32f10x_can.o(i.CAN_ClearITPendingBit), (168 bytes).
- Removing stm32f10x_can.o(i.CAN_DBGFreeze), (22 bytes).
- Removing stm32f10x_can.o(i.CAN_DeInit), (56 bytes).
- Removing stm32f10x_can.o(i.CAN_FIFORelease), (22 bytes).
- Removing stm32f10x_can.o(i.CAN_FilterInit), (264 bytes).
- Removing stm32f10x_can.o(i.CAN_GetFlagStatus), (120 bytes).
- Removing stm32f10x_can.o(i.CAN_GetITStatus), (296 bytes).
- Removing stm32f10x_can.o(i.CAN_ITConfig), (18 bytes).
- Removing stm32f10x_can.o(i.CAN_Init), (276 bytes).
- Removing stm32f10x_can.o(i.CAN_MessagePending), (30 bytes).
- Removing stm32f10x_can.o(i.CAN_Receive), (234 bytes).
- Removing stm32f10x_can.o(i.CAN_SlaveStartBank), (52 bytes).
- Removing stm32f10x_can.o(i.CAN_Sleep), (30 bytes).
- Removing stm32f10x_can.o(i.CAN_StructInit), (32 bytes).
- Removing stm32f10x_can.o(i.CAN_Transmit), (294 bytes).
- Removing stm32f10x_can.o(i.CAN_TransmitStatus), (142 bytes).
- Removing stm32f10x_can.o(i.CAN_WakeUp), (48 bytes).
- Removing stm32f10x_can.o(i.CheckITStatus), (16 bytes).
- Removing stm32f10x_cec.o(i.CEC_ClearFlag), (36 bytes).
- Removing stm32f10x_cec.o(i.CEC_ClearITPendingBit), (36 bytes).
- Removing stm32f10x_cec.o(i.CEC_Cmd), (28 bytes).
- Removing stm32f10x_cec.o(i.CEC_DeInit), (22 bytes).
- Removing stm32f10x_cec.o(i.CEC_EndOfMessageCmd), (12 bytes).
- Removing stm32f10x_cec.o(i.CEC_GetFlagStatus), (48 bytes).
- Removing stm32f10x_cec.o(i.CEC_GetITStatus), (40 bytes).
- Removing stm32f10x_cec.o(i.CEC_ITConfig), (12 bytes).
- Removing stm32f10x_cec.o(i.CEC_Init), (32 bytes).
- Removing stm32f10x_cec.o(i.CEC_OwnAddressConfig), (12 bytes).
- Removing stm32f10x_cec.o(i.CEC_ReceiveDataByte), (12 bytes).
- Removing stm32f10x_cec.o(i.CEC_SendDataByte), (12 bytes).
- Removing stm32f10x_cec.o(i.CEC_SetPrescaler), (12 bytes).
- Removing stm32f10x_cec.o(i.CEC_StartOfMessage), (12 bytes).
- Removing stm32f10x_crc.o(i.CRC_CalcBlockCRC), (36 bytes).
- Removing stm32f10x_crc.o(i.CRC_CalcCRC), (16 bytes).
- Removing stm32f10x_crc.o(i.CRC_GetCRC), (12 bytes).
- Removing stm32f10x_crc.o(i.CRC_GetIDRegister), (12 bytes).
- Removing stm32f10x_crc.o(i.CRC_ResetDR), (12 bytes).
- Removing stm32f10x_crc.o(i.CRC_SetIDRegister), (12 bytes).
- Removing stm32f10x_dac.o(i.DAC_Cmd), (40 bytes).
- Removing stm32f10x_dac.o(i.DAC_DMACmd), (44 bytes).
- Removing stm32f10x_dac.o(i.DAC_DeInit), (22 bytes).
- Removing stm32f10x_dac.o(i.DAC_DualSoftwareTriggerCmd), (36 bytes).
- Removing stm32f10x_dac.o(i.DAC_GetDataOutputValue), (36 bytes).
- Removing stm32f10x_dac.o(i.DAC_Init), (52 bytes).
- Removing stm32f10x_dac.o(i.DAC_SetChannel1Data), (32 bytes).
- Removing stm32f10x_dac.o(i.DAC_SetChannel2Data), (32 bytes).
- Removing stm32f10x_dac.o(i.DAC_SetDualChannelData), (36 bytes).
- Removing stm32f10x_dac.o(i.DAC_SoftwareTriggerCmd), (44 bytes).
- Removing stm32f10x_dac.o(i.DAC_StructInit), (12 bytes).
- Removing stm32f10x_dac.o(i.DAC_WaveGenerationCmd), (40 bytes).
- Removing stm32f10x_dbgmcu.o(i.DBGMCU_Config), (32 bytes).
- Removing stm32f10x_dbgmcu.o(i.DBGMCU_GetDEVID), (16 bytes).
- Removing stm32f10x_dbgmcu.o(i.DBGMCU_GetREVID), (12 bytes).
- Removing stm32f10x_dma.o(i.DMA_ClearFlag), (28 bytes).
- Removing stm32f10x_dma.o(i.DMA_ClearITPendingBit), (28 bytes).
- Removing stm32f10x_dma.o(i.DMA_GetCurrDataCounter), (8 bytes).
- Removing stm32f10x_dma.o(i.DMA_GetFlagStatus), (44 bytes).
- Removing stm32f10x_dma.o(i.DMA_GetITStatus), (44 bytes).
- Removing stm32f10x_dma.o(i.DMA_SetCurrDataCounter), (4 bytes).
- Removing stm32f10x_dma.o(i.DMA_StructInit), (26 bytes).
- Removing stm32f10x_exti.o(i.EXTI_ClearFlag), (12 bytes).
- Removing stm32f10x_exti.o(i.EXTI_ClearITPendingBit), (12 bytes).
- Removing stm32f10x_exti.o(i.EXTI_DeInit), (36 bytes).
- Removing stm32f10x_exti.o(i.EXTI_GenerateSWInterrupt), (16 bytes).
- Removing stm32f10x_exti.o(i.EXTI_GetFlagStatus), (24 bytes).
- Removing stm32f10x_exti.o(i.EXTI_GetITStatus), (40 bytes).
- Removing stm32f10x_exti.o(i.EXTI_Init), (148 bytes).
- Removing stm32f10x_exti.o(i.EXTI_StructInit), (16 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_ClearFlag), (72 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_ClearITPendingBit), (72 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_GetECC), (28 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_GetFlagStatus), (56 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_GetITStatus), (68 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_ITConfig), (136 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_NANDCmd), (92 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_NANDDeInit), (72 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_NANDECCCmd), (92 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_NANDInit), (140 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_NANDStructInit), (54 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_NORSRAMCmd), (52 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_NORSRAMDeInit), (56 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_NORSRAMInit), (224 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_NORSRAMStructInit), (114 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_PCCARDCmd), (48 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_PCCARDDeInit), (48 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_PCCARDInit), (136 bytes).
- Removing stm32f10x_fsmc.o(i.FSMC_PCCARDStructInit), (60 bytes).
- Removing stm32f10x_i2c.o(i.I2C_ARPCmd), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_AcknowledgeConfig), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_CalculatePEC), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_CheckEvent), (42 bytes).
- Removing stm32f10x_i2c.o(i.I2C_ClearFlag), (12 bytes).
- Removing stm32f10x_i2c.o(i.I2C_ClearITPendingBit), (12 bytes).
- Removing stm32f10x_i2c.o(i.I2C_Cmd), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_DMACmd), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_DMALastTransferCmd), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_DeInit), (56 bytes).
- Removing stm32f10x_i2c.o(i.I2C_DualAddressCmd), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_FastModeDutyCycleConfig), (28 bytes).
- Removing stm32f10x_i2c.o(i.I2C_GeneralCallCmd), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_GenerateSTART), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_GenerateSTOP), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_GetFlagStatus), (58 bytes).
- Removing stm32f10x_i2c.o(i.I2C_GetITStatus), (38 bytes).
- Removing stm32f10x_i2c.o(i.I2C_GetLastEvent), (26 bytes).
- Removing stm32f10x_i2c.o(i.I2C_GetPEC), (8 bytes).
- Removing stm32f10x_i2c.o(i.I2C_ITConfig), (18 bytes).
- Removing stm32f10x_i2c.o(i.I2C_Init), (236 bytes).
- Removing stm32f10x_i2c.o(i.I2C_OwnAddress2Config), (22 bytes).
- Removing stm32f10x_i2c.o(i.I2C_PECPositionConfig), (28 bytes).
- Removing stm32f10x_i2c.o(i.I2C_ReadRegister), (22 bytes).
- Removing stm32f10x_i2c.o(i.I2C_ReceiveData), (8 bytes).
- Removing stm32f10x_i2c.o(i.I2C_SMBusAlertConfig), (28 bytes).
- Removing stm32f10x_i2c.o(i.I2C_Send7bitAddress), (18 bytes).
- Removing stm32f10x_i2c.o(i.I2C_SendData), (4 bytes).
- Removing stm32f10x_i2c.o(i.I2C_SoftwareResetCmd), (22 bytes).
- Removing stm32f10x_i2c.o(i.I2C_StretchClockCmd), (24 bytes).
- Removing stm32f10x_i2c.o(i.I2C_StructInit), (30 bytes).
- Removing stm32f10x_i2c.o(i.I2C_TransmitPEC), (24 bytes).
- Removing stm32f10x_iwdg.o(i.IWDG_Enable), (16 bytes).
- Removing stm32f10x_iwdg.o(i.IWDG_GetFlagStatus), (24 bytes).
- Removing stm32f10x_iwdg.o(i.IWDG_ReloadCounter), (16 bytes).
- Removing stm32f10x_iwdg.o(i.IWDG_SetPrescaler), (12 bytes).
- Removing stm32f10x_iwdg.o(i.IWDG_SetReload), (12 bytes).
- Removing stm32f10x_iwdg.o(i.IWDG_WriteAccessCmd), (12 bytes).
- Removing stm32f10x_pwr.o(i.PWR_BackupAccessCmd), (12 bytes).
- Removing stm32f10x_pwr.o(i.PWR_ClearFlag), (20 bytes).
- Removing stm32f10x_pwr.o(i.PWR_DeInit), (22 bytes).
- Removing stm32f10x_pwr.o(i.PWR_EnterSTANDBYMode), (52 bytes).
- Removing stm32f10x_pwr.o(i.PWR_EnterSTOPMode), (64 bytes).
- Removing stm32f10x_pwr.o(i.PWR_GetFlagStatus), (24 bytes).
- Removing stm32f10x_pwr.o(i.PWR_PVDCmd), (12 bytes).
- Removing stm32f10x_pwr.o(i.PWR_PVDLevelConfig), (24 bytes).
- Removing stm32f10x_pwr.o(i.PWR_WakeUpPinCmd), (12 bytes).
- Removing stm32f10x_rtc.o(i.RTC_ClearFlag), (16 bytes).
- Removing stm32f10x_rtc.o(i.RTC_ClearITPendingBit), (16 bytes).
- Removing stm32f10x_rtc.o(i.RTC_EnterConfigMode), (20 bytes).
- Removing stm32f10x_rtc.o(i.RTC_ExitConfigMode), (20 bytes).
- Removing stm32f10x_rtc.o(i.RTC_GetCounter), (20 bytes).
- Removing stm32f10x_rtc.o(i.RTC_GetDivider), (24 bytes).
- Removing stm32f10x_rtc.o(i.RTC_GetFlagStatus), (24 bytes).
- Removing stm32f10x_rtc.o(i.RTC_GetITStatus), (36 bytes).
- Removing stm32f10x_rtc.o(i.RTC_ITConfig), (32 bytes).
- Removing stm32f10x_rtc.o(i.RTC_SetAlarm), (28 bytes).
- Removing stm32f10x_rtc.o(i.RTC_SetCounter), (28 bytes).
- Removing stm32f10x_rtc.o(i.RTC_SetPrescaler), (32 bytes).
- Removing stm32f10x_rtc.o(i.RTC_WaitForLastTask), (20 bytes).
- Removing stm32f10x_rtc.o(i.RTC_WaitForSynchro), (32 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_CEATAITCmd), (16 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_ClearFlag), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_ClearITPendingBit), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_ClockCmd), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_CmdStructInit), (14 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_CommandCompletionCmd), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_DMACmd), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_DataConfig), (48 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_DataStructInit), (20 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_DeInit), (36 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_GetCommandResponse), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_GetDataCounter), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_GetFIFOCount), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_GetFlagStatus), (24 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_GetITStatus), (24 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_GetPowerState), (16 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_GetResponse), (24 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_ITConfig), (32 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_Init), (48 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_ReadData), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_SendCEATACmd), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_SendCommand), (44 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_SendSDIOSuspendCmd), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_SetPowerState), (28 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_SetSDIOOperation), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_SetSDIOReadWaitMode), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_StartSDIOReadWait), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_StopSDIOReadWait), (12 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_StructInit), (16 bytes).
- Removing stm32f10x_sdio.o(i.SDIO_WriteData), (12 bytes).
- Removing stm32f10x_spi.o(i.I2S_Cmd), (24 bytes).
- Removing stm32f10x_spi.o(i.I2S_Init), (232 bytes).
- Removing stm32f10x_spi.o(i.I2S_StructInit), (20 bytes).
- Removing stm32f10x_spi.o(i.SPI_BiDirectionalLineConfig), (28 bytes).
- Removing stm32f10x_spi.o(i.SPI_CalculateCRC), (24 bytes).
- Removing stm32f10x_spi.o(i.SPI_DataSizeConfig), (18 bytes).
- Removing stm32f10x_spi.o(i.SPI_GetCRC), (16 bytes).
- Removing stm32f10x_spi.o(i.SPI_GetCRCPolynomial), (6 bytes).
- Removing stm32f10x_spi.o(i.SPI_I2S_ClearFlag), (6 bytes).
- Removing stm32f10x_spi.o(i.SPI_I2S_ClearITPendingBit), (20 bytes).
- Removing stm32f10x_spi.o(i.SPI_I2S_DMACmd), (18 bytes).
- Removing stm32f10x_spi.o(i.SPI_I2S_DeInit), (88 bytes).
- Removing stm32f10x_spi.o(i.SPI_I2S_GetITStatus), (52 bytes).
- Removing stm32f10x_spi.o(i.SPI_I2S_ITConfig), (32 bytes).
- Removing stm32f10x_spi.o(i.SPI_NSSInternalSoftwareConfig), (30 bytes).
- Removing stm32f10x_spi.o(i.SPI_SSOutputCmd), (24 bytes).
- Removing stm32f10x_spi.o(i.SPI_StructInit), (24 bytes).
- Removing stm32f10x_spi.o(i.SPI_TransmitCRC), (10 bytes).
- Removing stm32f10x_tim.o(i.TI1_Config), (128 bytes).
- Removing stm32f10x_tim.o(i.TI2_Config), (152 bytes).
- Removing stm32f10x_tim.o(i.TI3_Config), (144 bytes).
- Removing stm32f10x_tim.o(i.TI4_Config), (152 bytes).
- Removing stm32f10x_tim.o(i.TIM_ARRPreloadConfig), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_BDTRConfig), (32 bytes).
- Removing stm32f10x_tim.o(i.TIM_BDTRStructInit), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_CCPreloadControl), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_CCxCmd), (30 bytes).
- Removing stm32f10x_tim.o(i.TIM_CCxNCmd), (30 bytes).
- Removing stm32f10x_tim.o(i.TIM_ClearFlag), (6 bytes).
- Removing stm32f10x_tim.o(i.TIM_ClearITPendingBit), (6 bytes).
- Removing stm32f10x_tim.o(i.TIM_ClearOC1Ref), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_ClearOC2Ref), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_ClearOC3Ref), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_ClearOC4Ref), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_Cmd), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_CounterModeConfig), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_CtrlPWMOutputs), (30 bytes).
- Removing stm32f10x_tim.o(i.TIM_DMACmd), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_DMAConfig), (10 bytes).
- Removing stm32f10x_tim.o(i.TIM_DeInit), (488 bytes).
- Removing stm32f10x_tim.o(i.TIM_ETRClockMode1Config), (54 bytes).
- Removing stm32f10x_tim.o(i.TIM_ETRClockMode2Config), (32 bytes).
- Removing stm32f10x_tim.o(i.TIM_ETRConfig), (28 bytes).
- Removing stm32f10x_tim.o(i.TIM_EncoderInterfaceConfig), (66 bytes).
- Removing stm32f10x_tim.o(i.TIM_ForcedOC1Config), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_ForcedOC2Config), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_ForcedOC3Config), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_ForcedOC4Config), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_GenerateEvent), (4 bytes).
- Removing stm32f10x_tim.o(i.TIM_GetCapture1), (6 bytes).
- Removing stm32f10x_tim.o(i.TIM_GetCapture2), (6 bytes).
- Removing stm32f10x_tim.o(i.TIM_GetCapture3), (6 bytes).
- Removing stm32f10x_tim.o(i.TIM_GetCapture4), (8 bytes).
- Removing stm32f10x_tim.o(i.TIM_GetCounter), (6 bytes).
- Removing stm32f10x_tim.o(i.TIM_GetFlagStatus), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_GetITStatus), (34 bytes).
- Removing stm32f10x_tim.o(i.TIM_GetPrescaler), (6 bytes).
- Removing stm32f10x_tim.o(i.TIM_ICInit), (172 bytes).
- Removing stm32f10x_tim.o(i.TIM_ICStructInit), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_ITConfig), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_ITRxExternalClockConfig), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_InternalClockConfig), (12 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC1FastConfig), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC1Init), (152 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC1NPolarityConfig), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC1PolarityConfig), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC1PreloadConfig), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC2FastConfig), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC2Init), (164 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC2NPolarityConfig), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC2PolarityConfig), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC2PreloadConfig), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC3FastConfig), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC3Init), (160 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC3NPolarityConfig), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC3PolarityConfig), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC3PreloadConfig), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC4FastConfig), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC4Init), (124 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC4PolarityConfig), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_OC4PreloadConfig), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_OCStructInit), (20 bytes).
- Removing stm32f10x_tim.o(i.TIM_PWMIConfig), (124 bytes).
- Removing stm32f10x_tim.o(i.TIM_PrescalerConfig), (6 bytes).
- Removing stm32f10x_tim.o(i.TIM_SelectCCDMA), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_SelectCOM), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_SelectHallSensor), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_SelectInputTrigger), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_SelectMasterSlaveMode), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_SelectOCxM), (82 bytes).
- Removing stm32f10x_tim.o(i.TIM_SelectOnePulseMode), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_SelectOutputTrigger), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_SelectSlaveMode), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetAutoreload), (4 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetClockDivision), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetCompare1), (4 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetCompare2), (4 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetCompare3), (4 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetCompare4), (6 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetCounter), (4 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetIC1Prescaler), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetIC2Prescaler), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetIC3Prescaler), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_SetIC4Prescaler), (26 bytes).
- Removing stm32f10x_tim.o(i.TIM_TIxExternalClockConfig), (62 bytes).
- Removing stm32f10x_tim.o(i.TIM_TimeBaseInit), (164 bytes).
- Removing stm32f10x_tim.o(i.TIM_TimeBaseStructInit), (18 bytes).
- Removing stm32f10x_tim.o(i.TIM_UpdateDisableConfig), (24 bytes).
- Removing stm32f10x_tim.o(i.TIM_UpdateRequestConfig), (24 bytes).
- Removing stm32f10x_usart.o(i.USART_ClearITPendingBit), (30 bytes).
- Removing stm32f10x_usart.o(i.USART_ClockInit), (34 bytes).
- Removing stm32f10x_usart.o(i.USART_ClockStructInit), (12 bytes).
- Removing stm32f10x_usart.o(i.USART_DeInit), (156 bytes).
- Removing stm32f10x_usart.o(i.USART_HalfDuplexCmd), (24 bytes).
- Removing stm32f10x_usart.o(i.USART_IrDACmd), (24 bytes).
- Removing stm32f10x_usart.o(i.USART_IrDAConfig), (18 bytes).
- Removing stm32f10x_usart.o(i.USART_LINBreakDetectLengthConfig), (18 bytes).
- Removing stm32f10x_usart.o(i.USART_LINCmd), (24 bytes).
- Removing stm32f10x_usart.o(i.USART_OneBitMethodCmd), (24 bytes).
- Removing stm32f10x_usart.o(i.USART_OverSampling8Cmd), (22 bytes).
- Removing stm32f10x_usart.o(i.USART_ReceiveData), (10 bytes).
- Removing stm32f10x_usart.o(i.USART_ReceiverWakeUpCmd), (24 bytes).
- Removing stm32f10x_usart.o(i.USART_SendBreak), (10 bytes).
- Removing stm32f10x_usart.o(i.USART_SetAddress), (18 bytes).
- Removing stm32f10x_usart.o(i.USART_SetGuardTime), (16 bytes).
- Removing stm32f10x_usart.o(i.USART_SetPrescaler), (16 bytes).
- Removing stm32f10x_usart.o(i.USART_SmartCardCmd), (24 bytes).
- Removing stm32f10x_usart.o(i.USART_SmartCardNACKCmd), (24 bytes).
- Removing stm32f10x_usart.o(i.USART_StructInit), (24 bytes).
- Removing stm32f10x_usart.o(i.USART_WakeUpConfig), (18 bytes).
- Removing stm32f10x_wwdg.o(i.WWDG_ClearFlag), (12 bytes).
- Removing stm32f10x_wwdg.o(i.WWDG_DeInit), (22 bytes).
- Removing stm32f10x_wwdg.o(i.WWDG_Enable), (16 bytes).
- Removing stm32f10x_wwdg.o(i.WWDG_EnableIT), (12 bytes).
- Removing stm32f10x_wwdg.o(i.WWDG_GetFlagStatus), (12 bytes).
- Removing stm32f10x_wwdg.o(i.WWDG_SetCounter), (16 bytes).
- Removing stm32f10x_wwdg.o(i.WWDG_SetPrescaler), (24 bytes).
- Removing stm32f10x_wwdg.o(i.WWDG_SetWindowValue), (40 bytes).
- Removing core_cm3.o(.emb_text), (32 bytes).
- Removing system_stm32f10x.o(i.SystemCoreClockUpdate), (172 bytes).
- Removing startup_stm32f10x_hd.o(HEAP), (512 bytes).
- Removing dadd.o(.text), (334 bytes).
- Removing dmul.o(.text), (228 bytes).
- Removing ddiv.o(.text), (222 bytes).
- Removing dfixul.o(.text), (48 bytes).
- Removing cdrcmple.o(.text), (40 bytes).
- Removing depilogue.o(.text), (190 bytes).
- 472 unused section(s) (total 21170 bytes) removed from the image.
- ==============================================================================
- Image Symbol Table
- Local Symbols
- Symbol Name Value Ov Type Size Object(Section)
- ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE
- ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE
- ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE
- ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE
- ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE
- ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE
- ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE
- ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE
- ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE
- ../clib/microlib/string/memcmp.c 0x00000000 Number 0 memcmp.o ABSOLUTE
- ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE
- ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE
- ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE
- ../clib/microlib/string/strcat.c 0x00000000 Number 0 strcat.o ABSOLUTE
- ../clib/microlib/string/strcmp.c 0x00000000 Number 0 strcmp.o ABSOLUTE
- ../clib/microlib/string/strcpy.c 0x00000000 Number 0 strcpy.o ABSOLUTE
- ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE
- ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE
- ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE
- ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE
- ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE
- ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE
- ..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.c 0x00000000 Number 0 core_cm3.o ABSOLUTE
- ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_hd.s 0x00000000 Number 0 startup_stm32f10x_hd.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c 0x00000000 Number 0 misc.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c 0x00000000 Number 0 stm32f10x_adc.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c 0x00000000 Number 0 stm32f10x_bkp.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c 0x00000000 Number 0 stm32f10x_can.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c 0x00000000 Number 0 stm32f10x_cec.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c 0x00000000 Number 0 stm32f10x_crc.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c 0x00000000 Number 0 stm32f10x_dac.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c 0x00000000 Number 0 stm32f10x_dbgmcu.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c 0x00000000 Number 0 stm32f10x_dma.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c 0x00000000 Number 0 stm32f10x_exti.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c 0x00000000 Number 0 stm32f10x_flash.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c 0x00000000 Number 0 stm32f10x_fsmc.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c 0x00000000 Number 0 stm32f10x_gpio.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c 0x00000000 Number 0 stm32f10x_i2c.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c 0x00000000 Number 0 stm32f10x_iwdg.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c 0x00000000 Number 0 stm32f10x_pwr.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c 0x00000000 Number 0 stm32f10x_rcc.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c 0x00000000 Number 0 stm32f10x_rtc.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c 0x00000000 Number 0 stm32f10x_sdio.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c 0x00000000 Number 0 stm32f10x_spi.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c 0x00000000 Number 0 stm32f10x_tim.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c 0x00000000 Number 0 stm32f10x_usart.o ABSOLUTE
- ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c 0x00000000 Number 0 stm32f10x_wwdg.o ABSOLUTE
- ..\USER\CopyApp2Mcu.c 0x00000000 Number 0 copyapp2mcu.o ABSOLUTE
- ..\USER\IAP.c 0x00000000 Number 0 iap.o ABSOLUTE
- ..\USER\Msg.c 0x00000000 Number 0 msg.o ABSOLUTE
- ..\USER\MsgQueue.c 0x00000000 Number 0 msgqueue.o ABSOLUTE
- ..\USER\Serial.c 0x00000000 Number 0 serial.o ABSOLUTE
- ..\USER\WatchDog.c 0x00000000 Number 0 watchdog.o ABSOLUTE
- ..\USER\crc.c 0x00000000 Number 0 crc.o ABSOLUTE
- ..\USER\delay.c 0x00000000 Number 0 delay.o ABSOLUTE
- ..\USER\flash.c 0x00000000 Number 0 flash.o ABSOLUTE
- ..\USER\id.c 0x00000000 Number 0 id.o ABSOLUTE
- ..\USER\main.c 0x00000000 Number 0 main.o ABSOLUTE
- ..\USER\md5.c 0x00000000 Number 0 md5.o ABSOLUTE
- ..\USER\sFlash\W25Q64.c 0x00000000 Number 0 w25q64.o ABSOLUTE
- ..\USER\stm32f10x_it.c 0x00000000 Number 0 stm32f10x_it.o ABSOLUTE
- ..\USER\system_stm32f10x.c 0x00000000 Number 0 system_stm32f10x.o ABSOLUTE
- ..\\Libraries\\CMSIS\\CM3\\CoreSupport\\core_cm3.c 0x00000000 Number 0 core_cm3.o ABSOLUTE
- ..\\USER\\IAP.c 0x00000000 Number 0 iap.o ABSOLUTE
- cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE
- dc.s 0x00000000 Number 0 dc.o ABSOLUTE
- handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE
- init.s 0x00000000 Number 0 init.o ABSOLUTE
- RESET 0x08000000 Section 304 startup_stm32f10x_hd.o(RESET)
- .ARM.Collect$$$$00000000 0x08000130 Section 0 entry.o(.ARM.Collect$$$$00000000)
- .ARM.Collect$$$$00000001 0x08000130 Section 4 entry2.o(.ARM.Collect$$$$00000001)
- .ARM.Collect$$$$00000004 0x08000134 Section 4 entry5.o(.ARM.Collect$$$$00000004)
- .ARM.Collect$$$$00000008 0x08000138 Section 0 entry7b.o(.ARM.Collect$$$$00000008)
- .ARM.Collect$$$$0000000A 0x08000138 Section 0 entry8b.o(.ARM.Collect$$$$0000000A)
- .ARM.Collect$$$$0000000B 0x08000138 Section 8 entry9a.o(.ARM.Collect$$$$0000000B)
- .ARM.Collect$$$$0000000D 0x08000140 Section 0 entry10a.o(.ARM.Collect$$$$0000000D)
- .ARM.Collect$$$$0000000F 0x08000140 Section 0 entry11a.o(.ARM.Collect$$$$0000000F)
- .ARM.Collect$$$$00002712 0x08000140 Section 4 entry2.o(.ARM.Collect$$$$00002712)
- __lit__00000000 0x08000140 Data 4 entry2.o(.ARM.Collect$$$$00002712)
- .emb_text 0x08000144 Section 6 iap.o(.emb_text)
- .text 0x0800014c Section 36 startup_stm32f10x_hd.o(.text)
- .text 0x08000170 Section 0 memcpya.o(.text)
- .text 0x08000194 Section 0 memseta.o(.text)
- .text 0x080001b8 Section 0 strcat.o(.text)
- .text 0x080001d0 Section 0 strcmp.o(.text)
- .text 0x080001ec Section 0 memcmp.o(.text)
- .text 0x08000206 Section 0 strcpy.o(.text)
- .text 0x08000218 Section 0 uldiv.o(.text)
- .text 0x0800027c Section 36 init.o(.text)
- .text 0x080002a0 Section 0 llshl.o(.text)
- .text 0x080002be Section 0 llushr.o(.text)
- i.BusFault_Handler 0x080002de Section 0 stm32f10x_it.o(i.BusFault_Handler)
- i.CheckExFlashAppMD5 0x080002e2 Section 0 copyapp2mcu.o(i.CheckExFlashAppMD5)
- i.CopyApp2Mcu 0x08000360 Section 0 copyapp2mcu.o(i.CopyApp2Mcu)
- i.DMA1_Channel2_IRQHandler 0x08000442 Section 0 stm32f10x_it.o(i.DMA1_Channel2_IRQHandler)
- i.DMA1_Channel4_IRQHandler 0x08000444 Section 0 stm32f10x_it.o(i.DMA1_Channel4_IRQHandler)
- i.DMA_Cmd 0x08000446 Section 0 stm32f10x_dma.o(i.DMA_Cmd)
- i.DMA_DeInit 0x08000460 Section 0 stm32f10x_dma.o(i.DMA_DeInit)
- i.DMA_ITConfig 0x080005ac Section 0 stm32f10x_dma.o(i.DMA_ITConfig)
- i.DMA_Init 0x080005be Section 0 stm32f10x_dma.o(i.DMA_Init)
- i.DebugMon_Handler 0x080005fa Section 0 stm32f10x_it.o(i.DebugMon_Handler)
- i.DelayTick 0x080005fc Section 0 delay.o(i.DelayTick)
- i.DelayUs 0x08000626 Section 0 w25q64.o(i.DelayUs)
- i.ExtWatchDogInit 0x08000648 Section 0 watchdog.o(i.ExtWatchDogInit)
- i.FLASH_ErasePage 0x08000674 Section 0 stm32f10x_flash.o(i.FLASH_ErasePage)
- i.FLASH_GetBank1Status 0x080006c0 Section 0 stm32f10x_flash.o(i.FLASH_GetBank1Status)
- i.FLASH_Lock 0x080006f4 Section 0 stm32f10x_flash.o(i.FLASH_Lock)
- i.FLASH_ProgramHalfWord 0x08000708 Section 0 stm32f10x_flash.o(i.FLASH_ProgramHalfWord)
- i.FLASH_Unlock 0x08000748 Section 0 stm32f10x_flash.o(i.FLASH_Unlock)
- i.FLASH_WaitForLastOperation 0x08000760 Section 0 stm32f10x_flash.o(i.FLASH_WaitForLastOperation)
- i.GPIO_Init 0x08000786 Section 0 stm32f10x_gpio.o(i.GPIO_Init)
- i.GPIO_ReadOutputDataBit 0x08000898 Section 0 stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit)
- i.GPIO_ResetBits 0x080008aa Section 0 stm32f10x_gpio.o(i.GPIO_ResetBits)
- i.GPIO_SetBits 0x080008ae Section 0 stm32f10x_gpio.o(i.GPIO_SetBits)
- i.GPIO_WriteBit 0x080008b2 Section 0 stm32f10x_gpio.o(i.GPIO_WriteBit)
- i.GetRandBySTM32ID 0x080008bc Section 0 id.o(i.GetRandBySTM32ID)
- i.GetSTM32ID 0x080008e4 Section 0 id.o(i.GetSTM32ID)
- i.HardFault_Handler 0x08000904 Section 0 stm32f10x_it.o(i.HardFault_Handler)
- i.IapCheckFileMD5 0x08000944 Section 0 iap.o(i.IapCheckFileMD5)
- i.IapGetUpdateData 0x08000a38 Section 0 iap.o(i.IapGetUpdateData)
- i.IapGetUpdateVersion 0x08000a64 Section 0 iap.o(i.IapGetUpdateVersion)
- i.IapRecvMsgHandle 0x08000a88 Section 0 iap.o(i.IapRecvMsgHandle)
- i.IapTrace 0x08000d14 Section 0 serial.o(i.IapTrace)
- i.IapWriteFileData 0x08000d70 Section 0 iap.o(i.IapWriteFileData)
- i.MD5Final 0x08000d9c Section 0 md5.o(i.MD5Final)
- i.MD5Init 0x08000e6c Section 0 md5.o(i.MD5Init)
- i.MD5Update 0x08000e90 Section 0 md5.o(i.MD5Update)
- i.MakePcTaDataReq 0x08000f3c Section 0 iap.o(i.MakePcTaDataReq)
- i.MakePcTaVersionReq 0x08000fac Section 0 iap.o(i.MakePcTaVersionReq)
- i.MemManage_Handler 0x0800100c Section 0 stm32f10x_it.o(i.MemManage_Handler)
- i.MsgDataBufferInit 0x08001010 Section 0 msgqueue.o(i.MsgDataBufferInit)
- i.MsgQueueInit 0x08001044 Section 0 msgqueue.o(i.MsgQueueInit)
- i.NMI_Handler 0x08001068 Section 0 stm32f10x_it.o(i.NMI_Handler)
- i.NVIC_Init 0x0800106c Section 0 misc.o(i.NVIC_Init)
- i.NVIC_PriorityGroupConfig 0x080010e0 Section 0 misc.o(i.NVIC_PriorityGroupConfig)
- i.NewTask 0x080010f4 Section 0 msg.o(i.NewTask)
- i.RCC_AHBPeriphClockCmd 0x08001114 Section 0 stm32f10x_rcc.o(i.RCC_AHBPeriphClockCmd)
- i.RCC_APB2PeriphClockCmd 0x08001134 Section 0 stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd)
- i.RCC_GetClocksFreq 0x08001154 Section 0 stm32f10x_rcc.o(i.RCC_GetClocksFreq)
- i.ReadFlashData 0x08001230 Section 0 flash.o(i.ReadFlashData)
- i.ReadProductParaFromFlash 0x08001260 Section 0 main.o(i.ReadProductParaFromFlash)
- i.SPI_Cmd 0x0800127c Section 0 stm32f10x_spi.o(i.SPI_Cmd)
- i.SPI_I2S_GetFlagStatus 0x08001294 Section 0 stm32f10x_spi.o(i.SPI_I2S_GetFlagStatus)
- i.SPI_I2S_ReceiveData 0x080012a6 Section 0 stm32f10x_spi.o(i.SPI_I2S_ReceiveData)
- i.SPI_I2S_SendData 0x080012ac Section 0 stm32f10x_spi.o(i.SPI_I2S_SendData)
- i.SPI_Init 0x080012b0 Section 0 stm32f10x_spi.o(i.SPI_Init)
- i.SPIx_ReadWriteByte 0x080012ec Section 0 w25q64.o(i.SPIx_ReadWriteByte)
- i.STMFLASH_Read 0x08001324 Section 0 flash.o(i.STMFLASH_Read)
- i.STMFLASH_ReadHalfWord 0x08001346 Section 0 flash.o(i.STMFLASH_ReadHalfWord)
- i.SVC_Handler 0x0800134c Section 0 stm32f10x_it.o(i.SVC_Handler)
- i.SetSysClock 0x0800134e Section 0 system_stm32f10x.o(i.SetSysClock)
- SetSysClock 0x0800134f Thumb Code 8 system_stm32f10x.o(i.SetSysClock)
- i.SetSysClockTo24 0x08001358 Section 0 system_stm32f10x.o(i.SetSysClockTo24)
- SetSysClockTo24 0x08001359 Thumb Code 204 system_stm32f10x.o(i.SetSysClockTo24)
- i.SlwStrCmp 0x0800142c Section 0 msg.o(i.SlwStrCmp)
- i.StartMsg 0x08001454 Section 0 msg.o(i.StartMsg)
- i.SysTick_Handler 0x080015ec Section 0 stm32f10x_it.o(i.SysTick_Handler)
- i.SystemInit 0x0800169c Section 0 system_stm32f10x.o(i.SystemInit)
- i.Tick500Msg 0x080016fc Section 0 msg.o(i.Tick500Msg)
- i.Transform 0x080017e0 Section 0 md5.o(i.Transform)
- Transform 0x080017e1 Thumb Code 1856 md5.o(i.Transform)
- i.UART1RxTxISRHandler 0x08001f88 Section 0 serial.o(i.UART1RxTxISRHandler)
- i.USART1_IRQHandler 0x08002004 Section 0 stm32f10x_it.o(i.USART1_IRQHandler)
- i.USART_ClearFlag 0x0800200c Section 0 stm32f10x_usart.o(i.USART_ClearFlag)
- i.USART_Cmd 0x0800201e Section 0 stm32f10x_usart.o(i.USART_Cmd)
- i.USART_DMACmd 0x08002036 Section 0 stm32f10x_usart.o(i.USART_DMACmd)
- i.USART_GetFlagStatus 0x08002048 Section 0 stm32f10x_usart.o(i.USART_GetFlagStatus)
- i.USART_GetITStatus 0x08002062 Section 0 stm32f10x_usart.o(i.USART_GetITStatus)
- i.USART_ITConfig 0x080020b6 Section 0 stm32f10x_usart.o(i.USART_ITConfig)
- i.USART_Init 0x08002100 Section 0 stm32f10x_usart.o(i.USART_Init)
- i.USART_SendData 0x080021d8 Section 0 stm32f10x_usart.o(i.USART_SendData)
- i.Uart1DMAInit 0x080021e0 Section 0 serial.o(i.Uart1DMAInit)
- i.Uart1Init 0x080022ac Section 0 serial.o(i.Uart1Init)
- i.Uart1Msg 0x080023bc Section 0 msg.o(i.Uart1Msg)
- i.Uart1Send 0x08002478 Section 0 serial.o(i.Uart1Send)
- i.UsageFault_Handler 0x080024bc Section 0 stm32f10x_it.o(i.UsageFault_Handler)
- i.W25Q64_Init 0x080024c0 Section 0 w25q64.o(i.W25Q64_Init)
- i.W25Q64_PortInit 0x08002538 Section 0 w25q64.o(i.W25Q64_PortInit)
- i.WriteData 0x080025b8 Section 0 flash.o(i.WriteData)
- i.WritePageData 0x0800265c Section 0 flash.o(i.WritePageData)
- i.__0printf$8 0x080026e4 Section 0 printf8.o(i.__0printf$8)
- i.__0sprintf$8 0x08002704 Section 0 printf8.o(i.__0sprintf$8)
- i.__scatterload_copy 0x0800272c Section 14 handlers.o(i.__scatterload_copy)
- i.__scatterload_null 0x0800273a Section 2 handlers.o(i.__scatterload_null)
- i.__scatterload_zeroinit 0x0800273c Section 14 handlers.o(i.__scatterload_zeroinit)
- i._printf_core 0x0800274c Section 0 printf8.o(i._printf_core)
- _printf_core 0x0800274d Thumb Code 988 printf8.o(i._printf_core)
- i._printf_post_padding 0x08002b54 Section 0 printf8.o(i._printf_post_padding)
- _printf_post_padding 0x08002b55 Thumb Code 38 printf8.o(i._printf_post_padding)
- i._printf_pre_padding 0x08002b7a Section 0 printf8.o(i._printf_pre_padding)
- _printf_pre_padding 0x08002b7b Thumb Code 48 printf8.o(i._printf_pre_padding)
- i._sputc 0x08002baa Section 0 printf8.o(i._sputc)
- _sputc 0x08002bab Thumb Code 10 printf8.o(i._sputc)
- i.crc16_calc 0x08002bb4 Section 0 crc.o(i.crc16_calc)
- i.crc16_update 0x08002bd8 Section 0 crc.o(i.crc16_update)
- i.fputc 0x08002bf0 Section 0 serial.o(i.fputc)
- i.iap_jump_app_s 0x08002c14 Section 0 iap.o(i.iap_jump_app_s)
- i.iap_load_app 0x08002cf0 Section 0 iap.o(i.iap_load_app)
- i.main 0x08002d0c Section 0 main.o(i.main)
- i.sFlash_Read 0x08002e50 Section 0 w25q64.o(i.sFlash_Read)
- i.sFlash_ReadID 0x08002eac Section 0 w25q64.o(i.sFlash_ReadID)
- i.sFlash_Write_Enable 0x08002efc Section 0 w25q64.o(i.sFlash_Write_Enable)
- .constdata 0x08002f1c Section 64 md5.o(.constdata)
- PADDING 0x08002f1c Data 64 md5.o(.constdata)
- .constdata 0x08002f5c Section 512 crc.o(.constdata)
- gm_crc16_table 0x08002f5c Data 512 crc.o(.constdata)
- .data 0x20000000 Section 18 stm32f10x_it.o(.data)
- siSecCt 0x20000008 Data 4 stm32f10x_it.o(.data)
- ExFlashCt 0x2000000c Data 4 stm32f10x_it.o(.data)
- .data 0x20000014 Section 25 msg.o(.data)
- .data 0x20000030 Section 28 iap.o(.data)
- .data 0x2000004c Section 6 msgqueue.o(.data)
- .data 0x20000052 Section 2 w25q64.o(.data)
- sFlashProtectMode 0x20000052 Data 1 w25q64.o(.data)
- .data 0x20000054 Section 20 stm32f10x_rcc.o(.data)
- APBAHBPrescTable 0x20000054 Data 16 stm32f10x_rcc.o(.data)
- ADCPrescTable 0x20000064 Data 4 stm32f10x_rcc.o(.data)
- .data 0x20000068 Section 20 system_stm32f10x.o(.data)
- .data 0x2000007c Section 4 stdout.o(.data)
- .bss 0x20000080 Section 1161 iap.o(.bss)
- FileMD5 0x20000080 Data 16 iap.o(.bss)
- .bss 0x20000509 Section 1176 serial.o(.bss)
- .bss 0x200009a2 Section 1024 flash.o(.bss)
- .bss 0x20000da2 Section 4142 msgqueue.o(.bss)
- STACK 0x20001dd0 Section 1024 startup_stm32f10x_hd.o(STACK)
- Global Symbols
- Symbol Name Value Ov Type Size Object(Section)
- BuildAttributes$$THM_ISAv4$P$D$K$B$S$PE$A:L22UL41UL21$X:L11$S22US41US21$IEEE1$IW$USESV6$~STKCKD$USESV7$~SHL$OSPACE$ROPI$EBA8$MICROLIB$REQ8$PRES8$EABIv2 0x00000000 Number 0 anon$$obj.o ABSOLUTE
- __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE
- _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE
- _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE
- __cpp_initialize__aeabi_ - Undefined Weak Reference
- __cxa_finalize - Undefined Weak Reference
- __decompress - Undefined Weak Reference
- _clock_init - Undefined Weak Reference
- _microlib_exit - Undefined Weak Reference
- __Vectors_Size 0x00000130 Number 0 startup_stm32f10x_hd.o ABSOLUTE
- __Vectors 0x08000000 Data 4 startup_stm32f10x_hd.o(RESET)
- __Vectors_End 0x08000130 Data 0 startup_stm32f10x_hd.o(RESET)
- __main 0x08000131 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000)
- _main_stk 0x08000131 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001)
- _main_scatterload 0x08000135 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004)
- __main_after_scatterload 0x08000139 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004)
- _main_clock 0x08000139 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008)
- _main_cpp_init 0x08000139 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A)
- _main_init 0x08000139 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B)
- __rt_final_cpp 0x08000141 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D)
- __rt_final_exit 0x08000141 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F)
- MSR_MSP 0x08000145 Thumb Code 6 iap.o(.emb_text)
- Reset_Handler 0x0800014d Thumb Code 8 startup_stm32f10x_hd.o(.text)
- PendSV_Handler 0x08000163 Thumb Code 2 startup_stm32f10x_hd.o(.text)
- ADC1_2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- ADC3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- CAN1_RX1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- CAN1_SCE_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- DMA1_Channel1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- DMA1_Channel3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- DMA1_Channel5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- DMA1_Channel6_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- DMA1_Channel7_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- DMA2_Channel1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- DMA2_Channel2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- DMA2_Channel3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- DMA2_Channel4_5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- EXTI0_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- EXTI15_10_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- EXTI1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- EXTI2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- EXTI3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- EXTI4_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- EXTI9_5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- FLASH_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- FSMC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- I2C1_ER_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- I2C1_EV_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- I2C2_ER_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- I2C2_EV_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- PVD_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- RCC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- RTCAlarm_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- RTC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- SDIO_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- SPI1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- SPI2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- SPI3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TAMPER_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM1_BRK_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM1_CC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM1_TRG_COM_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM1_UP_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM4_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM6_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM7_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM8_BRK_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM8_CC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM8_TRG_COM_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- TIM8_UP_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- UART4_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- UART5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- USART2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- USART3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- USBWakeUp_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- USB_HP_CAN1_TX_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- USB_LP_CAN1_RX0_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- WWDG_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
- __aeabi_memcpy 0x08000171 Thumb Code 36 memcpya.o(.text)
- __aeabi_memcpy4 0x08000171 Thumb Code 0 memcpya.o(.text)
- __aeabi_memcpy8 0x08000171 Thumb Code 0 memcpya.o(.text)
- __aeabi_memset 0x08000195 Thumb Code 14 memseta.o(.text)
- __aeabi_memset4 0x08000195 Thumb Code 0 memseta.o(.text)
- __aeabi_memset8 0x08000195 Thumb Code 0 memseta.o(.text)
- __aeabi_memclr 0x080001a3 Thumb Code 4 memseta.o(.text)
- __aeabi_memclr4 0x080001a3 Thumb Code 0 memseta.o(.text)
- __aeabi_memclr8 0x080001a3 Thumb Code 0 memseta.o(.text)
- _memset$wrapper 0x080001a7 Thumb Code 18 memseta.o(.text)
- strcat 0x080001b9 Thumb Code 24 strcat.o(.text)
- strcmp 0x080001d1 Thumb Code 28 strcmp.o(.text)
- memcmp 0x080001ed Thumb Code 26 memcmp.o(.text)
- strcpy 0x08000207 Thumb Code 18 strcpy.o(.text)
- __aeabi_uldivmod 0x08000219 Thumb Code 98 uldiv.o(.text)
- __scatterload 0x0800027d Thumb Code 28 init.o(.text)
- __scatterload_rt2 0x0800027d Thumb Code 0 init.o(.text)
- __aeabi_llsl 0x080002a1 Thumb Code 30 llshl.o(.text)
- _ll_shift_l 0x080002a1 Thumb Code 0 llshl.o(.text)
- __aeabi_llsr 0x080002bf Thumb Code 32 llushr.o(.text)
- _ll_ushift_r 0x080002bf Thumb Code 0 llushr.o(.text)
- BusFault_Handler 0x080002df Thumb Code 4 stm32f10x_it.o(i.BusFault_Handler)
- CheckExFlashAppMD5 0x080002e3 Thumb Code 126 copyapp2mcu.o(i.CheckExFlashAppMD5)
- CopyApp2Mcu 0x08000361 Thumb Code 226 copyapp2mcu.o(i.CopyApp2Mcu)
- DMA1_Channel2_IRQHandler 0x08000443 Thumb Code 2 stm32f10x_it.o(i.DMA1_Channel2_IRQHandler)
- DMA1_Channel4_IRQHandler 0x08000445 Thumb Code 2 stm32f10x_it.o(i.DMA1_Channel4_IRQHandler)
- DMA_Cmd 0x08000447 Thumb Code 24 stm32f10x_dma.o(i.DMA_Cmd)
- DMA_DeInit 0x08000461 Thumb Code 324 stm32f10x_dma.o(i.DMA_DeInit)
- DMA_ITConfig 0x080005ad Thumb Code 18 stm32f10x_dma.o(i.DMA_ITConfig)
- DMA_Init 0x080005bf Thumb Code 60 stm32f10x_dma.o(i.DMA_Init)
- DebugMon_Handler 0x080005fb Thumb Code 2 stm32f10x_it.o(i.DebugMon_Handler)
- DelayTick 0x080005fd Thumb Code 42 delay.o(i.DelayTick)
- DelayUs 0x08000627 Thumb Code 32 w25q64.o(i.DelayUs)
- ExtWatchDogInit 0x08000649 Thumb Code 40 watchdog.o(i.ExtWatchDogInit)
- FLASH_ErasePage 0x08000675 Thumb Code 72 stm32f10x_flash.o(i.FLASH_ErasePage)
- FLASH_GetBank1Status 0x080006c1 Thumb Code 48 stm32f10x_flash.o(i.FLASH_GetBank1Status)
- FLASH_Lock 0x080006f5 Thumb Code 14 stm32f10x_flash.o(i.FLASH_Lock)
- FLASH_ProgramHalfWord 0x08000709 Thumb Code 60 stm32f10x_flash.o(i.FLASH_ProgramHalfWord)
- FLASH_Unlock 0x08000749 Thumb Code 12 stm32f10x_flash.o(i.FLASH_Unlock)
- FLASH_WaitForLastOperation 0x08000761 Thumb Code 38 stm32f10x_flash.o(i.FLASH_WaitForLastOperation)
- GPIO_Init 0x08000787 Thumb Code 274 stm32f10x_gpio.o(i.GPIO_Init)
- GPIO_ReadOutputDataBit 0x08000899 Thumb Code 18 stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit)
- GPIO_ResetBits 0x080008ab Thumb Code 4 stm32f10x_gpio.o(i.GPIO_ResetBits)
- GPIO_SetBits 0x080008af Thumb Code 4 stm32f10x_gpio.o(i.GPIO_SetBits)
- GPIO_WriteBit 0x080008b3 Thumb Code 10 stm32f10x_gpio.o(i.GPIO_WriteBit)
- GetRandBySTM32ID 0x080008bd Thumb Code 40 id.o(i.GetRandBySTM32ID)
- GetSTM32ID 0x080008e5 Thumb Code 26 id.o(i.GetSTM32ID)
- HardFault_Handler 0x08000905 Thumb Code 40 stm32f10x_it.o(i.HardFault_Handler)
- IapCheckFileMD5 0x08000945 Thumb Code 206 iap.o(i.IapCheckFileMD5)
- IapGetUpdateData 0x08000a39 Thumb Code 36 iap.o(i.IapGetUpdateData)
- IapGetUpdateVersion 0x08000a65 Thumb Code 28 iap.o(i.IapGetUpdateVersion)
- IapRecvMsgHandle 0x08000a89 Thumb Code 508 iap.o(i.IapRecvMsgHandle)
- IapTrace 0x08000d15 Thumb Code 76 serial.o(i.IapTrace)
- IapWriteFileData 0x08000d71 Thumb Code 40 iap.o(i.IapWriteFileData)
- MD5Final 0x08000d9d Thumb Code 202 md5.o(i.MD5Final)
- MD5Init 0x08000e6d Thumb Code 26 md5.o(i.MD5Init)
- MD5Update 0x08000e91 Thumb Code 172 md5.o(i.MD5Update)
- MakePcTaDataReq 0x08000f3d Thumb Code 90 iap.o(i.MakePcTaDataReq)
- MakePcTaVersionReq 0x08000fad Thumb Code 80 iap.o(i.MakePcTaVersionReq)
- MemManage_Handler 0x0800100d Thumb Code 4 stm32f10x_it.o(i.MemManage_Handler)
- MsgDataBufferInit 0x08001011 Thumb Code 34 msgqueue.o(i.MsgDataBufferInit)
- MsgQueueInit 0x08001045 Thumb Code 36 msgqueue.o(i.MsgQueueInit)
- NMI_Handler 0x08001069 Thumb Code 2 stm32f10x_it.o(i.NMI_Handler)
- NVIC_Init 0x0800106d Thumb Code 102 misc.o(i.NVIC_Init)
- NVIC_PriorityGroupConfig 0x080010e1 Thumb Code 10 misc.o(i.NVIC_PriorityGroupConfig)
- NewTask 0x080010f5 Thumb Code 20 msg.o(i.NewTask)
- RCC_AHBPeriphClockCmd 0x08001115 Thumb Code 26 stm32f10x_rcc.o(i.RCC_AHBPeriphClockCmd)
- RCC_APB2PeriphClockCmd 0x08001135 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd)
- RCC_GetClocksFreq 0x08001155 Thumb Code 192 stm32f10x_rcc.o(i.RCC_GetClocksFreq)
- ReadFlashData 0x08001231 Thumb Code 48 flash.o(i.ReadFlashData)
- ReadProductParaFromFlash 0x08001261 Thumb Code 20 main.o(i.ReadProductParaFromFlash)
- SPI_Cmd 0x0800127d Thumb Code 24 stm32f10x_spi.o(i.SPI_Cmd)
- SPI_I2S_GetFlagStatus 0x08001295 Thumb Code 18 stm32f10x_spi.o(i.SPI_I2S_GetFlagStatus)
- SPI_I2S_ReceiveData 0x080012a7 Thumb Code 6 stm32f10x_spi.o(i.SPI_I2S_ReceiveData)
- SPI_I2S_SendData 0x080012ad Thumb Code 4 stm32f10x_spi.o(i.SPI_I2S_SendData)
- SPI_Init 0x080012b1 Thumb Code 60 stm32f10x_spi.o(i.SPI_Init)
- SPIx_ReadWriteByte 0x080012ed Thumb Code 50 w25q64.o(i.SPIx_ReadWriteByte)
- STMFLASH_Read 0x08001325 Thumb Code 34 flash.o(i.STMFLASH_Read)
- STMFLASH_ReadHalfWord 0x08001347 Thumb Code 6 flash.o(i.STMFLASH_ReadHalfWord)
- SVC_Handler 0x0800134d Thumb Code 2 stm32f10x_it.o(i.SVC_Handler)
- SlwStrCmp 0x0800142d Thumb Code 38 msg.o(i.SlwStrCmp)
- StartMsg 0x08001455 Thumb Code 228 msg.o(i.StartMsg)
- SysTick_Handler 0x080015ed Thumb Code 90 stm32f10x_it.o(i.SysTick_Handler)
- SystemInit 0x0800169d Thumb Code 78 system_stm32f10x.o(i.SystemInit)
- Tick500Msg 0x080016fd Thumb Code 176 msg.o(i.Tick500Msg)
- UART1RxTxISRHandler 0x08001f89 Thumb Code 98 serial.o(i.UART1RxTxISRHandler)
- USART1_IRQHandler 0x08002005 Thumb Code 8 stm32f10x_it.o(i.USART1_IRQHandler)
- USART_ClearFlag 0x0800200d Thumb Code 18 stm32f10x_usart.o(i.USART_ClearFlag)
- USART_Cmd 0x0800201f Thumb Code 24 stm32f10x_usart.o(i.USART_Cmd)
- USART_DMACmd 0x08002037 Thumb Code 18 stm32f10x_usart.o(i.USART_DMACmd)
- USART_GetFlagStatus 0x08002049 Thumb Code 26 stm32f10x_usart.o(i.USART_GetFlagStatus)
- USART_GetITStatus 0x08002063 Thumb Code 84 stm32f10x_usart.o(i.USART_GetITStatus)
- USART_ITConfig 0x080020b7 Thumb Code 74 stm32f10x_usart.o(i.USART_ITConfig)
- USART_Init 0x08002101 Thumb Code 210 stm32f10x_usart.o(i.USART_Init)
- USART_SendData 0x080021d9 Thumb Code 8 stm32f10x_usart.o(i.USART_SendData)
- Uart1DMAInit 0x080021e1 Thumb Code 186 serial.o(i.Uart1DMAInit)
- Uart1Init 0x080022ad Thumb Code 262 serial.o(i.Uart1Init)
- Uart1Msg 0x080023bd Thumb Code 106 msg.o(i.Uart1Msg)
- Uart1Send 0x08002479 Thumb Code 58 serial.o(i.Uart1Send)
- UsageFault_Handler 0x080024bd Thumb Code 4 stm32f10x_it.o(i.UsageFault_Handler)
- W25Q64_Init 0x080024c1 Thumb Code 112 w25q64.o(i.W25Q64_Init)
- W25Q64_PortInit 0x08002539 Thumb Code 118 w25q64.o(i.W25Q64_PortInit)
- WriteData 0x080025b9 Thumb Code 154 flash.o(i.WriteData)
- WritePageData 0x0800265d Thumb Code 126 flash.o(i.WritePageData)
- __0printf$8 0x080026e5 Thumb Code 22 printf8.o(i.__0printf$8)
- __1printf$8 0x080026e5 Thumb Code 0 printf8.o(i.__0printf$8)
- __2printf 0x080026e5 Thumb Code 0 printf8.o(i.__0printf$8)
- __0sprintf$8 0x08002705 Thumb Code 34 printf8.o(i.__0sprintf$8)
- __1sprintf$8 0x08002705 Thumb Code 0 printf8.o(i.__0sprintf$8)
- __2sprintf 0x08002705 Thumb Code 0 printf8.o(i.__0sprintf$8)
- __scatterload_copy 0x0800272d Thumb Code 14 handlers.o(i.__scatterload_copy)
- __scatterload_null 0x0800273b Thumb Code 2 handlers.o(i.__scatterload_null)
- __scatterload_zeroinit 0x0800273d Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
- crc16_calc 0x08002bb5 Thumb Code 34 crc.o(i.crc16_calc)
- crc16_update 0x08002bd9 Thumb Code 20 crc.o(i.crc16_update)
- fputc 0x08002bf1 Thumb Code 32 serial.o(i.fputc)
- iap_jump_app_s 0x08002c15 Thumb Code 174 iap.o(i.iap_jump_app_s)
- iap_load_app 0x08002cf1 Thumb Code 24 iap.o(i.iap_load_app)
- main 0x08002d0d Thumb Code 272 main.o(i.main)
- sFlash_Read 0x08002e51 Thumb Code 86 w25q64.o(i.sFlash_Read)
- sFlash_ReadID 0x08002ead Thumb Code 74 w25q64.o(i.sFlash_ReadID)
- sFlash_Write_Enable 0x08002efd Thumb Code 26 w25q64.o(i.sFlash_Write_Enable)
- Region$$Table$$Base 0x0800315c Number 0 anon$$obj.o(Region$$Table)
- Region$$Table$$Limit 0x0800317c Number 0 anon$$obj.o(Region$$Table)
- g_HFH 0x20000000 Data 8 stm32f10x_it.o(.data)
- g_HFHT 0x20000010 Data 2 stm32f10x_it.o(.data)
- g_ulTickCt 0x20000014 Data 4 msg.o(.data)
- g_ulTick500Ct 0x20000018 Data 4 msg.o(.data)
- g_iPcTaCt 0x2000001c Data 4 msg.o(.data)
- g_iPcTaFlag 0x20000020 Data 4 msg.o(.data)
- sutMsg 0x20000024 Data 7 msg.o(.data)
- g_ucTask 0x2000002b Data 1 msg.o(.data)
- g_ucLastTask 0x2000002c Data 1 msg.o(.data)
- g_usTid 0x20000030 Data 2 iap.o(.data)
- g_ulFileLen 0x20000034 Data 4 iap.o(.data)
- g_ulDFileLen 0x20000038 Data 4 iap.o(.data)
- g_ulOffset 0x2000003c Data 4 iap.o(.data)
- g_ulLength 0x20000040 Data 4 iap.o(.data)
- IapRxLen 0x20000044 Data 2 iap.o(.data)
- jump2app 0x20000048 Data 4 iap.o(.data)
- DataBufferLen 0x2000004c Data 2 msgqueue.o(.data)
- DataBufferIn 0x2000004e Data 2 msgqueue.o(.data)
- DataBufferOut 0x20000050 Data 2 msgqueue.o(.data)
- ExFlashWatchDog 0x20000053 Data 1 w25q64.o(.data)
- SystemCoreClock 0x20000068 Data 4 system_stm32f10x.o(.data)
- AHBPrescTable 0x2000006c Data 16 system_stm32f10x.o(.data)
- __stdout 0x2000007c Data 4 stdout.o(.data)
- sutProductPara 0x20000090 Data 43 iap.o(.bss)
- sutHeader 0x200000bb Data 26 iap.o(.bss)
- IapRxBuf 0x200000d5 Data 1076 iap.o(.bss)
- RxBuffer1 0x20000509 Data 1076 serial.o(.bss)
- TxBuffer1 0x2000093d Data 100 serial.o(.bss)
- STMFLASH_BUF 0x200009a2 Data 1024 flash.o(.bss)
- DataBuffer 0x20000da2 Data 4096 msgqueue.o(.bss)
- ModemMsgQueue 0x20001da2 Data 46 msgqueue.o(.bss)
- __initial_sp 0x200021d0 Data 0 startup_stm32f10x_hd.o(STACK)
- ==============================================================================
- Memory Map of the image
- Image Entry point : 0x08000131
- Load Region LR_IROM1 (Base: 0x08000000, Size: 0x000031fc, Max: 0x00003c00, ABSOLUTE)
- Execution Region ER_IROM1 (Base: 0x08000000, Size: 0x0000317c, Max: 0x00003c00, ABSOLUTE)
- Base Addr Size Type Attr Idx E Section Name Object
- 0x08000000 0x00000130 Data RO 3781 RESET startup_stm32f10x_hd.o
- 0x08000130 0x00000000 Code RO 3786 * .ARM.Collect$$$$00000000 mc_w.l(entry.o)
- 0x08000130 0x00000004 Code RO 4064 .ARM.Collect$$$$00000001 mc_w.l(entry2.o)
- 0x08000134 0x00000004 Code RO 4067 .ARM.Collect$$$$00000004 mc_w.l(entry5.o)
- 0x08000138 0x00000000 Code RO 4069 .ARM.Collect$$$$00000008 mc_w.l(entry7b.o)
- 0x08000138 0x00000000 Code RO 4071 .ARM.Collect$$$$0000000A mc_w.l(entry8b.o)
- 0x08000138 0x00000008 Code RO 4072 .ARM.Collect$$$$0000000B mc_w.l(entry9a.o)
- 0x08000140 0x00000000 Code RO 4074 .ARM.Collect$$$$0000000D mc_w.l(entry10a.o)
- 0x08000140 0x00000000 Code RO 4076 .ARM.Collect$$$$0000000F mc_w.l(entry11a.o)
- 0x08000140 0x00000004 Code RO 4065 .ARM.Collect$$$$00002712 mc_w.l(entry2.o)
- 0x08000144 0x00000006 Code RO 287 .emb_text iap.o
- 0x0800014a 0x00000002 PAD
- 0x0800014c 0x00000024 Code RO 3782 .text startup_stm32f10x_hd.o
- 0x08000170 0x00000024 Code RO 3789 .text mc_w.l(memcpya.o)
- 0x08000194 0x00000024 Code RO 3791 .text mc_w.l(memseta.o)
- 0x080001b8 0x00000018 Code RO 3793 .text mc_w.l(strcat.o)
- 0x080001d0 0x0000001c Code RO 3795 .text mc_w.l(strcmp.o)
- 0x080001ec 0x0000001a Code RO 3797 .text mc_w.l(memcmp.o)
- 0x08000206 0x00000012 Code RO 3799 .text mc_w.l(strcpy.o)
- 0x08000218 0x00000062 Code RO 4081 .text mc_w.l(uldiv.o)
- 0x0800027a 0x00000002 PAD
- 0x0800027c 0x00000024 Code RO 4094 .text mc_w.l(init.o)
- 0x080002a0 0x0000001e Code RO 4096 .text mc_w.l(llshl.o)
- 0x080002be 0x00000020 Code RO 4098 .text mc_w.l(llushr.o)
- 0x080002de 0x00000004 Code RO 135 i.BusFault_Handler stm32f10x_it.o
- 0x080002e2 0x0000007e Code RO 750 i.CheckExFlashAppMD5 copyapp2mcu.o
- 0x08000360 0x000000e2 Code RO 751 i.CopyApp2Mcu copyapp2mcu.o
- 0x08000442 0x00000002 Code RO 136 i.DMA1_Channel2_IRQHandler stm32f10x_it.o
- 0x08000444 0x00000002 Code RO 137 i.DMA1_Channel4_IRQHandler stm32f10x_it.o
- 0x08000446 0x00000018 Code RO 1971 i.DMA_Cmd stm32f10x_dma.o
- 0x0800045e 0x00000002 PAD
- 0x08000460 0x0000014c Code RO 1972 i.DMA_DeInit stm32f10x_dma.o
- 0x080005ac 0x00000012 Code RO 1976 i.DMA_ITConfig stm32f10x_dma.o
- 0x080005be 0x0000003c Code RO 1977 i.DMA_Init stm32f10x_dma.o
- 0x080005fa 0x00000002 Code RO 138 i.DebugMon_Handler stm32f10x_it.o
- 0x080005fc 0x0000002a Code RO 481 i.DelayTick delay.o
- 0x08000626 0x00000020 Code RO 612 i.DelayUs w25q64.o
- 0x08000646 0x00000002 PAD
- 0x08000648 0x0000002c Code RO 599 i.ExtWatchDogInit watchdog.o
- 0x08000674 0x0000004c Code RO 809 i.FLASH_ErasePage stm32f10x_flash.o
- 0x080006c0 0x00000034 Code RO 810 i.FLASH_GetBank1Status stm32f10x_flash.o
- 0x080006f4 0x00000014 Code RO 819 i.FLASH_Lock stm32f10x_flash.o
- 0x08000708 0x00000040 Code RO 822 i.FLASH_ProgramHalfWord stm32f10x_flash.o
- 0x08000748 0x00000018 Code RO 827 i.FLASH_Unlock stm32f10x_flash.o
- 0x08000760 0x00000026 Code RO 831 i.FLASH_WaitForLastOperation stm32f10x_flash.o
- 0x08000786 0x00000112 Code RO 984 i.GPIO_Init stm32f10x_gpio.o
- 0x08000898 0x00000012 Code RO 990 i.GPIO_ReadOutputDataBit stm32f10x_gpio.o
- 0x080008aa 0x00000004 Code RO 991 i.GPIO_ResetBits stm32f10x_gpio.o
- 0x080008ae 0x00000004 Code RO 992 i.GPIO_SetBits stm32f10x_gpio.o
- 0x080008b2 0x0000000a Code RO 995 i.GPIO_WriteBit stm32f10x_gpio.o
- 0x080008bc 0x00000028 Code RO 269 i.GetRandBySTM32ID id.o
- 0x080008e4 0x00000020 Code RO 270 i.GetSTM32ID id.o
- 0x08000904 0x00000040 Code RO 139 i.HardFault_Handler stm32f10x_it.o
- 0x08000944 0x000000f4 Code RO 288 i.IapCheckFileMD5 iap.o
- 0x08000a38 0x0000002c Code RO 289 i.IapGetUpdateData iap.o
- 0x08000a64 0x00000024 Code RO 290 i.IapGetUpdateVersion iap.o
- 0x08000a88 0x0000028c Code RO 291 i.IapRecvMsgHandle iap.o
- 0x08000d14 0x0000005c Code RO 372 i.IapTrace serial.o
- 0x08000d70 0x0000002c Code RO 292 i.IapWriteFileData iap.o
- 0x08000d9c 0x000000d0 Code RO 430 i.MD5Final md5.o
- 0x08000e6c 0x00000024 Code RO 431 i.MD5Init md5.o
- 0x08000e90 0x000000ac Code RO 432 i.MD5Update md5.o
- 0x08000f3c 0x00000070 Code RO 293 i.MakePcTaDataReq iap.o
- 0x08000fac 0x00000060 Code RO 294 i.MakePcTaVersionReq iap.o
- 0x0800100c 0x00000004 Code RO 140 i.MemManage_Handler stm32f10x_it.o
- 0x08001010 0x00000034 Code RO 562 i.MsgDataBufferInit msgqueue.o
- 0x08001044 0x00000024 Code RO 564 i.MsgQueueInit msgqueue.o
- 0x08001068 0x00000002 Code RO 141 i.NMI_Handler stm32f10x_it.o
- 0x0800106a 0x00000002 PAD
- 0x0800106c 0x00000074 Code RO 768 i.NVIC_Init misc.o
- 0x080010e0 0x00000014 Code RO 769 i.NVIC_PriorityGroupConfig misc.o
- 0x080010f4 0x00000020 Code RO 221 i.NewTask msg.o
- 0x08001114 0x00000020 Code RO 1093 i.RCC_AHBPeriphClockCmd stm32f10x_rcc.o
- 0x08001134 0x00000020 Code RO 1096 i.RCC_APB2PeriphClockCmd stm32f10x_rcc.o
- 0x08001154 0x000000dc Code RO 1104 i.RCC_GetClocksFreq stm32f10x_rcc.o
- 0x08001230 0x00000030 Code RO 523 i.ReadFlashData flash.o
- 0x08001260 0x0000001c Code RO 1 i.ReadProductParaFromFlash main.o
- 0x0800127c 0x00000018 Code RO 2811 i.SPI_Cmd stm32f10x_spi.o
- 0x08001294 0x00000012 Code RO 2819 i.SPI_I2S_GetFlagStatus stm32f10x_spi.o
- 0x080012a6 0x00000006 Code RO 2822 i.SPI_I2S_ReceiveData stm32f10x_spi.o
- 0x080012ac 0x00000004 Code RO 2823 i.SPI_I2S_SendData stm32f10x_spi.o
- 0x080012b0 0x0000003c Code RO 2824 i.SPI_Init stm32f10x_spi.o
- 0x080012ec 0x00000038 Code RO 613 i.SPIx_ReadWriteByte w25q64.o
- 0x08001324 0x00000022 Code RO 524 i.STMFLASH_Read flash.o
- 0x08001346 0x00000006 Code RO 525 i.STMFLASH_ReadHalfWord flash.o
- 0x0800134c 0x00000002 Code RO 142 i.SVC_Handler stm32f10x_it.o
- 0x0800134e 0x00000008 Code RO 3745 i.SetSysClock system_stm32f10x.o
- 0x08001356 0x00000002 PAD
- 0x08001358 0x000000d4 Code RO 3746 i.SetSysClockTo24 system_stm32f10x.o
- 0x0800142c 0x00000026 Code RO 222 i.SlwStrCmp msg.o
- 0x08001452 0x00000002 PAD
- 0x08001454 0x00000198 Code RO 223 i.StartMsg msg.o
- 0x080015ec 0x000000b0 Code RO 144 i.SysTick_Handler stm32f10x_it.o
- 0x0800169c 0x00000060 Code RO 3748 i.SystemInit system_stm32f10x.o
- 0x080016fc 0x000000e4 Code RO 224 i.Tick500Msg msg.o
- 0x080017e0 0x000007a8 Code RO 433 i.Transform md5.o
- 0x08001f88 0x0000007c Code RO 374 i.UART1RxTxISRHandler serial.o
- 0x08002004 0x00000008 Code RO 145 i.USART1_IRQHandler stm32f10x_it.o
- 0x0800200c 0x00000012 Code RO 3498 i.USART_ClearFlag stm32f10x_usart.o
- 0x0800201e 0x00000018 Code RO 3502 i.USART_Cmd stm32f10x_usart.o
- 0x08002036 0x00000012 Code RO 3503 i.USART_DMACmd stm32f10x_usart.o
- 0x08002048 0x0000001a Code RO 3505 i.USART_GetFlagStatus stm32f10x_usart.o
- 0x08002062 0x00000054 Code RO 3506 i.USART_GetITStatus stm32f10x_usart.o
- 0x080020b6 0x0000004a Code RO 3508 i.USART_ITConfig stm32f10x_usart.o
- 0x08002100 0x000000d8 Code RO 3509 i.USART_Init stm32f10x_usart.o
- 0x080021d8 0x00000008 Code RO 3519 i.USART_SendData stm32f10x_usart.o
- 0x080021e0 0x000000cc Code RO 375 i.Uart1DMAInit serial.o
- 0x080022ac 0x00000110 Code RO 376 i.Uart1Init serial.o
- 0x080023bc 0x000000bc Code RO 225 i.Uart1Msg msg.o
- 0x08002478 0x00000044 Code RO 377 i.Uart1Send serial.o
- 0x080024bc 0x00000004 Code RO 146 i.UsageFault_Handler stm32f10x_it.o
- 0x080024c0 0x00000078 Code RO 614 i.W25Q64_Init w25q64.o
- 0x08002538 0x00000080 Code RO 615 i.W25Q64_PortInit w25q64.o
- 0x080025b8 0x000000a4 Code RO 526 i.WriteData flash.o
- 0x0800265c 0x00000088 Code RO 527 i.WritePageData flash.o
- 0x080026e4 0x00000020 Code RO 4010 i.__0printf$8 mc_w.l(printf8.o)
- 0x08002704 0x00000028 Code RO 4012 i.__0sprintf$8 mc_w.l(printf8.o)
- 0x0800272c 0x0000000e Code RO 4106 i.__scatterload_copy mc_w.l(handlers.o)
- 0x0800273a 0x00000002 Code RO 4107 i.__scatterload_null mc_w.l(handlers.o)
- 0x0800273c 0x0000000e Code RO 4108 i.__scatterload_zeroinit mc_w.l(handlers.o)
- 0x0800274a 0x00000002 PAD
- 0x0800274c 0x00000408 Code RO 4017 i._printf_core mc_w.l(printf8.o)
- 0x08002b54 0x00000026 Code RO 4018 i._printf_post_padding mc_w.l(printf8.o)
- 0x08002b7a 0x00000030 Code RO 4019 i._printf_pre_padding mc_w.l(printf8.o)
- 0x08002baa 0x0000000a Code RO 4021 i._sputc mc_w.l(printf8.o)
- 0x08002bb4 0x00000022 Code RO 461 i.crc16_calc crc.o
- 0x08002bd6 0x00000002 PAD
- 0x08002bd8 0x00000018 Code RO 462 i.crc16_update crc.o
- 0x08002bf0 0x00000024 Code RO 378 i.fputc serial.o
- 0x08002c14 0x000000dc Code RO 296 i.iap_jump_app_s iap.o
- 0x08002cf0 0x0000001c Code RO 297 i.iap_load_app iap.o
- 0x08002d0c 0x00000144 Code RO 2 i.main main.o
- 0x08002e50 0x0000005c Code RO 621 i.sFlash_Read w25q64.o
- 0x08002eac 0x00000050 Code RO 622 i.sFlash_ReadID w25q64.o
- 0x08002efc 0x00000020 Code RO 628 i.sFlash_Write_Enable w25q64.o
- 0x08002f1c 0x00000040 Data RO 434 .constdata md5.o
- 0x08002f5c 0x00000200 Data RO 463 .constdata crc.o
- 0x0800315c 0x00000020 Data RO 4104 Region$$Table anon$$obj.o
- Execution Region RW_IRAM1 (Base: 0x20000000, Size: 0x000021d0, Max: 0x00004000, ABSOLUTE)
- Base Addr Size Type Attr Idx E Section Name Object
- 0x20000000 0x00000012 Data RW 147 .data stm32f10x_it.o
- 0x20000012 0x00000002 PAD
- 0x20000014 0x00000019 Data RW 226 .data msg.o
- 0x2000002d 0x00000003 PAD
- 0x20000030 0x0000001c Data RW 300 .data iap.o
- 0x2000004c 0x00000006 Data RW 567 .data msgqueue.o
- 0x20000052 0x00000002 Data RW 633 .data w25q64.o
- 0x20000054 0x00000014 Data RW 1124 .data stm32f10x_rcc.o
- 0x20000068 0x00000014 Data RW 3749 .data system_stm32f10x.o
- 0x2000007c 0x00000004 Data RW 4078 .data mc_w.l(stdout.o)
- 0x20000080 0x00000489 Zero RW 299 .bss iap.o
- 0x20000509 0x00000498 Zero RW 379 .bss serial.o
- 0x200009a1 0x00000001 PAD
- 0x200009a2 0x00000400 Zero RW 528 .bss flash.o
- 0x20000da2 0x0000102e Zero RW 566 .bss msgqueue.o
- 0x20001dd0 0x00000400 Zero RW 3779 STACK startup_stm32f10x_hd.o
- ==============================================================================
- Image component sizes
- Code (inc. data) RO Data RW Data ZI Data Debug Object Name
- 352 0 0 0 0 2291 copyapp2mcu.o
- 58 4 512 0 0 1356 crc.o
- 42 0 0 0 0 468 delay.o
- 388 20 0 0 1024 3643 flash.o
- 1482 290 0 28 1161 8757 iap.o
- 72 6 0 0 0 964 id.o
- 352 60 0 0 0 263937 main.o
- 2376 268 64 0 0 4033 md5.o
- 136 24 0 0 0 1511 misc.o
- 894 332 0 25 0 3537 msg.o
- 88 18 0 6 4142 1887 msgqueue.o
- 796 84 0 0 1176 14027 serial.o
- 36 8 304 0 1024 840 startup_stm32f10x_hd.o
- 434 8 0 0 0 3945 stm32f10x_dma.o
- 274 30 0 0 0 3298 stm32f10x_flash.o
- 310 0 0 0 0 4141 stm32f10x_gpio.o
- 270 110 0 18 0 4770 stm32f10x_it.o
- 284 40 0 20 0 4349 stm32f10x_rcc.o
- 112 0 0 0 0 3742 stm32f10x_spi.o
- 468 6 0 0 0 6606 stm32f10x_usart.o
- 316 26 0 20 0 1913 system_stm32f10x.o
- 540 42 0 2 0 5396 w25q64.o
- 44 4 0 0 0 438 watchdog.o
- ----------------------------------------------------------------------
- 10138 1380 912 124 8528 345849 Object Totals
- 0 0 32 0 0 0 (incl. Generated)
- 14 0 0 5 1 0 (incl. Padding)
- ----------------------------------------------------------------------
- Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name
- 0 0 0 0 0 0 entry.o
- 0 0 0 0 0 0 entry10a.o
- 0 0 0 0 0 0 entry11a.o
- 8 4 0 0 0 0 entry2.o
- 4 0 0 0 0 0 entry5.o
- 0 0 0 0 0 0 entry7b.o
- 0 0 0 0 0 0 entry8b.o
- 8 4 0 0 0 0 entry9a.o
- 30 0 0 0 0 0 handlers.o
- 36 8 0 0 0 68 init.o
- 30 0 0 0 0 68 llshl.o
- 32 0 0 0 0 68 llushr.o
- 26 0 0 0 0 80 memcmp.o
- 36 0 0 0 0 68 memcpya.o
- 36 0 0 0 0 108 memseta.o
- 1200 60 0 0 0 504 printf8.o
- 0 0 0 4 0 0 stdout.o
- 24 0 0 0 0 68 strcat.o
- 28 0 0 0 0 76 strcmp.o
- 18 0 0 0 0 68 strcpy.o
- 98 0 0 0 0 92 uldiv.o
- ----------------------------------------------------------------------
- 1618 76 0 4 0 1268 Library Totals
- 4 0 0 0 0 0 (incl. Padding)
- ----------------------------------------------------------------------
- Code (inc. data) RO Data RW Data ZI Data Debug Library Name
- 1614 76 0 4 0 1268 mc_w.l
- ----------------------------------------------------------------------
- 1618 76 0 4 0 1268 Library Totals
- ----------------------------------------------------------------------
- ==============================================================================
- Code (inc. data) RO Data RW Data ZI Data Debug
- 11756 1456 912 128 8528 341553 Grand Totals
- 11756 1456 912 128 8528 341553 ELF Image Totals
- 11756 1456 912 128 0 0 ROM Totals
- ==============================================================================
- Total RO Size (Code + RO Data) 12668 ( 12.37kB)
- Total RW Size (RW Data + ZI Data) 8656 ( 8.45kB)
- Total ROM Size (Code + RO Data + RW Data) 12796 ( 12.50kB)
- ==============================================================================
|