HgsIAP_GMVer.map 148 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878
  1. ARM Linker, 5.03 [Build 76] [MDK-ARM Professional]
  2. ==============================================================================
  3. Section Cross References
  4. main.o(i.ReadProductParaFromFlash) refers to id.o(i.GetRandBySTM32ID) for GetRandBySTM32ID
  5. main.o(i.ReadProductParaFromFlash) refers to flash.o(i.ReadFlashData) for ReadFlashData
  6. main.o(i.ReadProductParaFromFlash) refers to iap.o(.bss) for sutProductPara
  7. main.o(i.main) refers to watchdog.o(i.ExtWatchDogInit) for ExtWatchDogInit
  8. main.o(i.main) refers to w25q64.o(i.W25Q64_Init) for W25Q64_Init
  9. main.o(i.main) refers to msgqueue.o(i.MsgDataBufferInit) for MsgDataBufferInit
  10. main.o(i.main) refers to msgqueue.o(i.MsgQueueInit) for MsgQueueInit
  11. main.o(i.main) refers to serial.o(i.Uart1Init) for Uart1Init
  12. main.o(i.main) refers to stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit) for GPIO_ReadOutputDataBit
  13. main.o(i.main) refers to stm32f10x_gpio.o(i.GPIO_WriteBit) for GPIO_WriteBit
  14. main.o(i.main) refers to serial.o(i.IapTrace) for IapTrace
  15. main.o(i.main) refers to main.o(i.ReadProductParaFromFlash) for ReadProductParaFromFlash
  16. main.o(i.main) refers to msg.o(i.NewTask) for NewTask
  17. main.o(i.main) refers to msg.o(i.Uart1Msg) for Uart1Msg
  18. main.o(i.main) refers to memseta.o(.text) for __aeabi_memclr
  19. main.o(i.main) refers to msg.o(i.StartMsg) for StartMsg
  20. main.o(i.main) refers to msg.o(i.Tick500Msg) for Tick500Msg
  21. main.o(i.main) refers to msgqueue.o(.bss) for ModemMsgQueue
  22. main.o(i.main) refers to system_stm32f10x.o(.data) for SystemCoreClock
  23. main.o(i.main) refers to msg.o(.data) for sutMsg
  24. main.o(i.main) refers to iap.o(.bss) for IapRxBuf
  25. stm32f10x_it.o(i.HardFault_Handler) refers to printf8.o(i.__0printf$8) for __2printf
  26. stm32f10x_it.o(i.HardFault_Handler) refers to stm32f10x_it.o(.data) for g_HFH
  27. stm32f10x_it.o(i.SetHFH) refers to stm32f10x_it.o(.data) for g_HFH
  28. stm32f10x_it.o(i.SysTick_Handler) refers to flash.o(i.WriteData) for WriteData
  29. stm32f10x_it.o(i.SysTick_Handler) refers to printf8.o(i.__0printf$8) for __2printf
  30. stm32f10x_it.o(i.SysTick_Handler) refers to msg.o(.data) for sutMsg
  31. stm32f10x_it.o(i.SysTick_Handler) refers to stm32f10x_it.o(.data) for siSecCt
  32. stm32f10x_it.o(i.SysTick_Handler) refers to w25q64.o(.data) for ExFlashWatchDog
  33. stm32f10x_it.o(i.SysTick_Handler) refers to iap.o(.bss) for sutProductPara
  34. stm32f10x_it.o(i.USART1_IRQHandler) refers to serial.o(i.UART1RxTxISRHandler) for UART1RxTxISRHandler
  35. msg.o(i.CopyAppToMcu) refers to printf8.o(i.__0printf$8) for __2printf
  36. msg.o(i.CopyAppToMcu) refers to stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit) for GPIO_ReadOutputDataBit
  37. msg.o(i.CopyAppToMcu) refers to stm32f10x_gpio.o(i.GPIO_WriteBit) for GPIO_WriteBit
  38. msg.o(i.CopyAppToMcu) refers to w25q64.o(i.sFlash_Read) for sFlash_Read
  39. msg.o(i.CopyAppToMcu) refers to flash.o(i.WritePageData) for WritePageData
  40. msg.o(i.NewTask) refers to msg.o(.data) for g_ucTask
  41. msg.o(i.StartMsg) refers to serial.o(i.IapTrace) for IapTrace
  42. msg.o(i.StartMsg) refers to copyapp2mcu.o(i.CopyApp2Mcu) for CopyApp2Mcu
  43. msg.o(i.StartMsg) refers to msg.o(i.NewTask) for NewTask
  44. msg.o(i.StartMsg) refers to printf8.o(i.__0sprintf$8) for __2sprintf
  45. msg.o(i.StartMsg) refers to strcat.o(.text) for strcat
  46. msg.o(i.StartMsg) refers to flash.o(i.ReadFlashData) for ReadFlashData
  47. msg.o(i.StartMsg) refers to memcmp.o(.text) for memcmp
  48. msg.o(i.StartMsg) refers to flash.o(i.WriteData) for WriteData
  49. msg.o(i.StartMsg) refers to iap.o(i.iap_jump_app_s) for iap_jump_app_s
  50. msg.o(i.StartMsg) refers to msg.o(.data) for g_ulTick500Ct
  51. msg.o(i.StartMsg) refers to iap.o(.bss) for sutProductPara
  52. msg.o(i.Tick500Msg) refers to flash.o(i.ReadFlashData) for ReadFlashData
  53. msg.o(i.Tick500Msg) refers to memcmp.o(.text) for memcmp
  54. msg.o(i.Tick500Msg) refers to msg.o(i.NewTask) for NewTask
  55. msg.o(i.Tick500Msg) refers to iap.o(i.IapGetUpdateData) for IapGetUpdateData
  56. msg.o(i.Tick500Msg) refers to serial.o(i.IapTrace) for IapTrace
  57. msg.o(i.Tick500Msg) refers to msg.o(.data) for g_ulTick500Ct
  58. msg.o(i.Tick500Msg) refers to iap.o(.bss) for sutProductPara
  59. msg.o(i.Tick500Msg) refers to iap.o(.data) for g_ulOffset
  60. msg.o(i.Uart1Msg) refers to msg.o(i.SlwStrCmp) for SlwStrCmp
  61. msg.o(i.Uart1Msg) refers to serial.o(i.IapTrace) for IapTrace
  62. msg.o(i.Uart1Msg) refers to iap.o(i.IapGetUpdateVersion) for IapGetUpdateVersion
  63. msg.o(i.Uart1Msg) refers to iap.o(i.IapRecvMsgHandle) for IapRecvMsgHandle
  64. msg.o(i.Uart1Msg) refers to msg.o(i.NewTask) for NewTask
  65. msg.o(i.Uart1Msg) refers to msg.o(.data) for g_ucTask
  66. msg.o(i.Uart1Msg) refers to iap.o(.bss) for IapRxBuf
  67. msg.o(i.Uart1Msg) refers to iap.o(.data) for IapRxLen
  68. id.o(i.GetRandBySTM32ID) refers to id.o(i.GetSTM32ID) for GetSTM32ID
  69. iap.o(i.IapCheckFileMD5) refers to md5.o(i.MD5Init) for MD5Init
  70. iap.o(i.IapCheckFileMD5) refers to flash.o(i.STMFLASH_ReadHalfWord) for STMFLASH_ReadHalfWord
  71. iap.o(i.IapCheckFileMD5) refers to md5.o(i.MD5Update) for MD5Update
  72. iap.o(i.IapCheckFileMD5) refers to md5.o(i.MD5Final) for MD5Final
  73. iap.o(i.IapCheckFileMD5) refers to printf8.o(i.__0sprintf$8) for __2sprintf
  74. iap.o(i.IapCheckFileMD5) refers to strcat.o(.text) for strcat
  75. iap.o(i.IapCheckFileMD5) refers to serial.o(i.IapTrace) for IapTrace
  76. iap.o(i.IapGetUpdateData) refers to iap.o(i.MakePcTaDataReq) for MakePcTaDataReq
  77. iap.o(i.IapGetUpdateData) refers to serial.o(i.Uart1Send) for Uart1Send
  78. iap.o(i.IapGetUpdateData) refers to serial.o(.bss) for TxBuffer1
  79. iap.o(i.IapGetUpdateVersion) refers to iap.o(i.MakePcTaVersionReq) for MakePcTaVersionReq
  80. iap.o(i.IapGetUpdateVersion) refers to serial.o(i.Uart1Send) for Uart1Send
  81. iap.o(i.IapGetUpdateVersion) refers to serial.o(.bss) for TxBuffer1
  82. iap.o(i.IapRecvMsgHandle) refers to printf8.o(i.__0sprintf$8) for __2sprintf
  83. iap.o(i.IapRecvMsgHandle) refers to strcmp.o(.text) for strcmp
  84. iap.o(i.IapRecvMsgHandle) refers to memcpya.o(.text) for __aeabi_memcpy
  85. iap.o(i.IapRecvMsgHandle) refers to msg.o(i.NewTask) for NewTask
  86. iap.o(i.IapRecvMsgHandle) refers to iap.o(i.IapGetUpdateData) for IapGetUpdateData
  87. iap.o(i.IapRecvMsgHandle) refers to serial.o(i.IapTrace) for IapTrace
  88. iap.o(i.IapRecvMsgHandle) refers to iap.o(i.IapGetUpdateVersion) for IapGetUpdateVersion
  89. iap.o(i.IapRecvMsgHandle) refers to crc.o(i.crc16_calc) for crc16_calc
  90. iap.o(i.IapRecvMsgHandle) refers to iap.o(i.IapWriteFileData) for IapWriteFileData
  91. iap.o(i.IapRecvMsgHandle) refers to iap.o(i.IapCheckFileMD5) for IapCheckFileMD5
  92. iap.o(i.IapRecvMsgHandle) refers to iap.o(.bss) for sutProductPara
  93. iap.o(i.IapRecvMsgHandle) refers to iap.o(.data) for g_ulFileLen
  94. iap.o(i.IapWriteFileData) refers to flash.o(i.WritePageData) for WritePageData
  95. iap.o(i.MakePcTaDataReq) refers to memseta.o(.text) for __aeabi_memclr
  96. iap.o(i.MakePcTaDataReq) refers to printf8.o(i.__0sprintf$8) for __2sprintf
  97. iap.o(i.MakePcTaDataReq) refers to memcpya.o(.text) for __aeabi_memcpy
  98. iap.o(i.MakePcTaDataReq) refers to iap.o(.bss) for sutProductPara
  99. iap.o(i.MakePcTaDataReq) refers to iap.o(.data) for g_usTid
  100. iap.o(i.MakePcTaVersionReq) refers to memseta.o(.text) for __aeabi_memclr
  101. iap.o(i.MakePcTaVersionReq) refers to printf8.o(i.__0sprintf$8) for __2sprintf
  102. iap.o(i.MakePcTaVersionReq) refers to strcpy.o(.text) for strcpy
  103. iap.o(i.MakePcTaVersionReq) refers to iap.o(.bss) for sutProductPara
  104. iap.o(i.MakePcTaVersionReq) refers to iap.o(.data) for g_usTid
  105. iap.o(i.iap_jump_app_s) refers to serial.o(i.IapTrace) for IapTrace
  106. iap.o(i.iap_jump_app_s) refers to stm32f10x_usart.o(i.USART_ITConfig) for USART_ITConfig
  107. iap.o(i.iap_jump_app_s) refers to stm32f10x_usart.o(i.USART_DMACmd) for USART_DMACmd
  108. iap.o(i.iap_jump_app_s) refers to stm32f10x_dma.o(i.DMA_Cmd) for DMA_Cmd
  109. iap.o(i.iap_jump_app_s) refers to stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit) for GPIO_ReadOutputDataBit
  110. iap.o(i.iap_jump_app_s) refers to stm32f10x_gpio.o(i.GPIO_WriteBit) for GPIO_WriteBit
  111. iap.o(i.iap_jump_app_s) refers to iap.o(i.iap_load_app) for iap_load_app
  112. iap.o(i.iap_load_app) refers to iap.o(.emb_text) for MSR_MSP
  113. iap.o(i.iap_load_app) refers to iap.o(.data) for jump2app
  114. serial.o(i.IapTrace) refers to delay.o(i.DelayTick) for DelayTick
  115. serial.o(i.IapTrace) refers to printf8.o(i.__0printf$8) for __2printf
  116. serial.o(i.IapTrace) refers to stm32f10x_usart.o(i.USART_SendData) for USART_SendData
  117. serial.o(i.IapTrace) refers to stm32f10x_usart.o(i.USART_GetFlagStatus) for USART_GetFlagStatus
  118. serial.o(i.SlwTrace) refers to stm32f10x_usart.o(i.USART_SendData) for USART_SendData
  119. serial.o(i.SlwTrace) refers to stm32f10x_usart.o(i.USART_GetFlagStatus) for USART_GetFlagStatus
  120. serial.o(i.UART1RxTxISRHandler) refers to stm32f10x_usart.o(i.USART_GetITStatus) for USART_GetITStatus
  121. serial.o(i.UART1RxTxISRHandler) refers to stm32f10x_dma.o(i.DMA_Cmd) for DMA_Cmd
  122. serial.o(i.UART1RxTxISRHandler) refers to memcpya.o(.text) for __aeabi_memcpy
  123. serial.o(i.UART1RxTxISRHandler) refers to msg.o(.data) for sutMsg
  124. serial.o(i.UART1RxTxISRHandler) refers to serial.o(.bss) for RxBuffer1
  125. serial.o(i.UART1RxTxISRHandler) refers to iap.o(.bss) for IapRxBuf
  126. serial.o(i.UART1RxTxISRHandler) refers to iap.o(.data) for IapRxLen
  127. serial.o(i.Uart1DMAInit) refers to stm32f10x_rcc.o(i.RCC_AHBPeriphClockCmd) for RCC_AHBPeriphClockCmd
  128. serial.o(i.Uart1DMAInit) refers to stm32f10x_dma.o(i.DMA_DeInit) for DMA_DeInit
  129. serial.o(i.Uart1DMAInit) refers to stm32f10x_dma.o(i.DMA_Init) for DMA_Init
  130. serial.o(i.Uart1DMAInit) refers to misc.o(i.NVIC_Init) for NVIC_Init
  131. serial.o(i.Uart1DMAInit) refers to stm32f10x_dma.o(i.DMA_ITConfig) for DMA_ITConfig
  132. serial.o(i.Uart1DMAInit) refers to stm32f10x_dma.o(i.DMA_Cmd) for DMA_Cmd
  133. serial.o(i.Uart1DMAInit) refers to serial.o(.bss) for TxBuffer1
  134. serial.o(i.Uart1Init) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
  135. serial.o(i.Uart1Init) refers to stm32f10x_gpio.o(i.GPIO_Init) for GPIO_Init
  136. serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_Init) for USART_Init
  137. serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_Cmd) for USART_Cmd
  138. serial.o(i.Uart1Init) refers to misc.o(i.NVIC_PriorityGroupConfig) for NVIC_PriorityGroupConfig
  139. serial.o(i.Uart1Init) refers to misc.o(i.NVIC_Init) for NVIC_Init
  140. serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_ClearFlag) for USART_ClearFlag
  141. serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_ITConfig) for USART_ITConfig
  142. serial.o(i.Uart1Init) refers to stm32f10x_usart.o(i.USART_DMACmd) for USART_DMACmd
  143. serial.o(i.Uart1Init) refers to serial.o(i.Uart1DMAInit) for Uart1DMAInit
  144. serial.o(i.Uart1Send) refers to stm32f10x_usart.o(i.USART_SendData) for USART_SendData
  145. serial.o(i.Uart1Send) refers to stm32f10x_usart.o(i.USART_GetFlagStatus) for USART_GetFlagStatus
  146. serial.o(i.fputc) refers to stm32f10x_usart.o(i.USART_SendData) for USART_SendData
  147. serial.o(i.fputc) refers to stm32f10x_usart.o(i.USART_GetFlagStatus) for USART_GetFlagStatus
  148. md5.o(i.MD5Final) refers to md5.o(i.MD5Update) for MD5Update
  149. md5.o(i.MD5Final) refers to md5.o(i.Transform) for Transform
  150. md5.o(i.MD5Final) refers to md5.o(.constdata) for PADDING
  151. md5.o(i.MD5Update) refers to md5.o(i.Transform) for Transform
  152. crc.o(i.crc16_calc) refers to crc.o(i.crc16_update) for crc16_update
  153. crc.o(i.crc16_update) refers to crc.o(.constdata) for gm_crc16_table
  154. delay.o(i.Delay_1Ms) refers to delay.o(.data) for fac_ms
  155. delay.o(i.Delay_1Us) refers to delay.o(.data) for fac_us
  156. delay.o(i.Delay_Init) refers to system_stm32f10x.o(.data) for SystemCoreClock
  157. delay.o(i.Delay_Init) refers to delay.o(.data) for fac_us
  158. delay.o(i.Delay_Ms) refers to delay.o(i.Delay_1Ms) for Delay_1Ms
  159. delay.o(i.Delay_Us) refers to delay.o(i.Delay_1Us) for Delay_1Us
  160. flash.o(i.ReadFlashData) refers to flash.o(i.STMFLASH_ReadHalfWord) for STMFLASH_ReadHalfWord
  161. flash.o(i.STMFLASH_Read) refers to flash.o(i.STMFLASH_ReadHalfWord) for STMFLASH_ReadHalfWord
  162. flash.o(i.WriteData) refers to flash.o(i.STMFLASH_Read) for STMFLASH_Read
  163. flash.o(i.WriteData) refers to stm32f10x_flash.o(i.FLASH_Unlock) for FLASH_Unlock
  164. flash.o(i.WriteData) refers to stm32f10x_flash.o(i.FLASH_ErasePage) for FLASH_ErasePage
  165. flash.o(i.WriteData) refers to stm32f10x_flash.o(i.FLASH_ProgramHalfWord) for FLASH_ProgramHalfWord
  166. flash.o(i.WriteData) refers to stm32f10x_flash.o(i.FLASH_Lock) for FLASH_Lock
  167. flash.o(i.WriteData) refers to flash.o(.bss) for STMFLASH_BUF
  168. flash.o(i.WritePageData) refers to stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit) for GPIO_ReadOutputDataBit
  169. flash.o(i.WritePageData) refers to stm32f10x_gpio.o(i.GPIO_WriteBit) for GPIO_WriteBit
  170. flash.o(i.WritePageData) refers to stm32f10x_flash.o(i.FLASH_Unlock) for FLASH_Unlock
  171. flash.o(i.WritePageData) refers to stm32f10x_flash.o(i.FLASH_ErasePage) for FLASH_ErasePage
  172. flash.o(i.WritePageData) refers to stm32f10x_flash.o(i.FLASH_ProgramHalfWord) for FLASH_ProgramHalfWord
  173. flash.o(i.WritePageData) refers to stm32f10x_flash.o(i.FLASH_Lock) for FLASH_Lock
  174. msgqueue.o(i.MsgDataBufferInit) refers to msgqueue.o(.bss) for DataBuffer
  175. msgqueue.o(i.MsgDataBufferInit) refers to msgqueue.o(.data) for DataBufferLen
  176. msgqueue.o(i.MsgQueueAccept) refers to msgqueue.o(.data) for DataBufferLen
  177. msgqueue.o(i.MsgQueueAccept) refers to msgqueue.o(.bss) for DataBuffer
  178. msgqueue.o(i.MsgQueuePost) refers to msgqueue.o(.data) for DataBufferLen
  179. msgqueue.o(i.MsgQueuePost) refers to msgqueue.o(.bss) for DataBuffer
  180. watchdog.o(i.ExtWatchDogInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
  181. watchdog.o(i.ExtWatchDogInit) refers to stm32f10x_gpio.o(i.GPIO_Init) for GPIO_Init
  182. w25q64.o(i.SPIx_ReadWriteByte) refers to stm32f10x_spi.o(i.SPI_I2S_GetFlagStatus) for SPI_I2S_GetFlagStatus
  183. w25q64.o(i.SPIx_ReadWriteByte) refers to stm32f10x_spi.o(i.SPI_I2S_SendData) for SPI_I2S_SendData
  184. w25q64.o(i.SPIx_ReadWriteByte) refers to stm32f10x_spi.o(i.SPI_I2S_ReceiveData) for SPI_I2S_ReceiveData
  185. w25q64.o(i.W25Q64_Init) refers to w25q64.o(i.W25Q64_PortInit) for W25Q64_PortInit
  186. w25q64.o(i.W25Q64_Init) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  187. w25q64.o(i.W25Q64_Init) refers to stm32f10x_spi.o(i.SPI_Init) for SPI_Init
  188. w25q64.o(i.W25Q64_Init) refers to stm32f10x_spi.o(i.SPI_Cmd) for SPI_Cmd
  189. w25q64.o(i.W25Q64_Init) refers to w25q64.o(i.DelayUs) for DelayUs
  190. w25q64.o(i.W25Q64_Init) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
  191. w25q64.o(i.W25Q64_Init) refers to w25q64.o(i.sFlash_ReadID) for sFlash_ReadID
  192. w25q64.o(i.W25Q64_PortInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd) for RCC_APB2PeriphClockCmd
  193. w25q64.o(i.W25Q64_PortInit) refers to stm32f10x_gpio.o(i.GPIO_Init) for GPIO_Init
  194. w25q64.o(i.sFlash_Erase_Chip) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
  195. w25q64.o(i.sFlash_Erase_Chip) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
  196. w25q64.o(i.sFlash_Erase_Chip) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
  197. w25q64.o(i.sFlash_Erase_Chip) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
  198. w25q64.o(i.sFlash_Erase_Chip) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  199. w25q64.o(i.sFlash_Erase_Sector) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
  200. w25q64.o(i.sFlash_Erase_Sector) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
  201. w25q64.o(i.sFlash_Erase_Sector) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
  202. w25q64.o(i.sFlash_Erase_Sector) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
  203. w25q64.o(i.sFlash_Erase_Sector) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  204. w25q64.o(i.sFlash_Global_Protect) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
  205. w25q64.o(i.sFlash_Global_Protect) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
  206. w25q64.o(i.sFlash_Global_Protect) refers to w25q64.o(i.sFlash_Write_SR) for sFlash_Write_SR
  207. w25q64.o(i.sFlash_Global_Unprotect) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
  208. w25q64.o(i.sFlash_Global_Unprotect) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
  209. w25q64.o(i.sFlash_Global_Unprotect) refers to w25q64.o(i.sFlash_Write_SR) for sFlash_Write_SR
  210. w25q64.o(i.sFlash_Read) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
  211. w25q64.o(i.sFlash_Read) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
  212. w25q64.o(i.sFlash_Read) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  213. w25q64.o(i.sFlash_ReadID) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
  214. w25q64.o(i.sFlash_ReadID) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
  215. w25q64.o(i.sFlash_ReadID) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  216. w25q64.o(i.sFlash_ReadSR) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
  217. w25q64.o(i.sFlash_ReadSR) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
  218. w25q64.o(i.sFlash_ReadSR) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  219. w25q64.o(i.sFlash_Wait_Busy) refers to w25q64.o(i.sFlash_ReadSR) for sFlash_ReadSR
  220. w25q64.o(i.sFlash_Write) refers to w25q64.o(i.sFlash_Read) for sFlash_Read
  221. w25q64.o(i.sFlash_Write) refers to w25q64.o(i.sFlash_Erase_Sector) for sFlash_Erase_Sector
  222. w25q64.o(i.sFlash_Write) refers to w25q64.o(i.sFlash_Write_NoCheck) for sFlash_Write_NoCheck
  223. w25q64.o(i.sFlash_Write) refers to w25q64.o(.data) for ExFlashWatchDog
  224. w25q64.o(i.sFlash_Write) refers to w25q64.o(.bss) for sFlash_BUF
  225. w25q64.o(i.sFlash_Write_Disable) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
  226. w25q64.o(i.sFlash_Write_Disable) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
  227. w25q64.o(i.sFlash_Write_Disable) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  228. w25q64.o(i.sFlash_Write_Enable) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
  229. w25q64.o(i.sFlash_Write_Enable) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
  230. w25q64.o(i.sFlash_Write_Enable) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  231. w25q64.o(i.sFlash_Write_NoCheck) refers to w25q64.o(i.sFlash_Write_Page) for sFlash_Write_Page
  232. w25q64.o(i.sFlash_Write_Page) refers to w25q64.o(i.sFlash_Write_Enable) for sFlash_Write_Enable
  233. w25q64.o(i.sFlash_Write_Page) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
  234. w25q64.o(i.sFlash_Write_Page) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
  235. w25q64.o(i.sFlash_Write_Page) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  236. w25q64.o(i.sFlash_Write_Page) refers to w25q64.o(i.sFlash_Wait_Busy) for sFlash_Wait_Busy
  237. w25q64.o(i.sFlash_Write_SR) refers to stm32f10x_gpio.o(i.GPIO_ResetBits) for GPIO_ResetBits
  238. w25q64.o(i.sFlash_Write_SR) refers to w25q64.o(i.SPIx_ReadWriteByte) for SPIx_ReadWriteByte
  239. w25q64.o(i.sFlash_Write_SR) refers to stm32f10x_gpio.o(i.GPIO_SetBits) for GPIO_SetBits
  240. copyapp2mcu.o(i.CheckExFlashAppMD5) refers to md5.o(i.MD5Init) for MD5Init
  241. copyapp2mcu.o(i.CheckExFlashAppMD5) refers to w25q64.o(i.sFlash_Read) for sFlash_Read
  242. copyapp2mcu.o(i.CheckExFlashAppMD5) refers to md5.o(i.MD5Update) for MD5Update
  243. copyapp2mcu.o(i.CheckExFlashAppMD5) refers to md5.o(i.MD5Final) for MD5Final
  244. copyapp2mcu.o(i.CopyApp2Mcu) refers to copyapp2mcu.o(i.CheckExFlashAppMD5) for CheckExFlashAppMD5
  245. copyapp2mcu.o(i.CopyApp2Mcu) refers to w25q64.o(i.sFlash_Read) for sFlash_Read
  246. copyapp2mcu.o(i.CopyApp2Mcu) refers to flash.o(i.WritePageData) for WritePageData
  247. copyapp2mcu.o(i.CopyApp2Mcu) refers to flash.o(i.ReadFlashData) for ReadFlashData
  248. stm32f10x_flash.o(i.FLASH_EnableWriteProtection) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
  249. stm32f10x_flash.o(i.FLASH_EraseAllBank1Pages) refers to stm32f10x_flash.o(i.FLASH_WaitForLastBank1Operation) for FLASH_WaitForLastBank1Operation
  250. stm32f10x_flash.o(i.FLASH_EraseAllPages) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
  251. stm32f10x_flash.o(i.FLASH_EraseOptionBytes) refers to stm32f10x_flash.o(i.FLASH_GetReadOutProtectionStatus) for FLASH_GetReadOutProtectionStatus
  252. stm32f10x_flash.o(i.FLASH_EraseOptionBytes) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
  253. stm32f10x_flash.o(i.FLASH_ErasePage) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
  254. stm32f10x_flash.o(i.FLASH_ProgramHalfWord) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
  255. stm32f10x_flash.o(i.FLASH_ProgramOptionByteData) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
  256. stm32f10x_flash.o(i.FLASH_ProgramWord) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
  257. stm32f10x_flash.o(i.FLASH_ReadOutProtection) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
  258. stm32f10x_flash.o(i.FLASH_UserOptionByteConfig) refers to stm32f10x_flash.o(i.FLASH_WaitForLastOperation) for FLASH_WaitForLastOperation
  259. stm32f10x_flash.o(i.FLASH_WaitForLastBank1Operation) refers to stm32f10x_flash.o(i.FLASH_GetBank1Status) for FLASH_GetBank1Status
  260. stm32f10x_flash.o(i.FLASH_WaitForLastOperation) refers to stm32f10x_flash.o(i.FLASH_GetBank1Status) for FLASH_GetBank1Status
  261. stm32f10x_gpio.o(i.GPIO_AFIODeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
  262. stm32f10x_gpio.o(i.GPIO_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
  263. stm32f10x_rcc.o(i.RCC_GetClocksFreq) refers to stm32f10x_rcc.o(.data) for APBAHBPrescTable
  264. stm32f10x_rcc.o(i.RCC_WaitForHSEStartUp) refers to stm32f10x_rcc.o(i.RCC_GetFlagStatus) for RCC_GetFlagStatus
  265. stm32f10x_adc.o(i.ADC_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
  266. stm32f10x_bkp.o(i.BKP_DeInit) refers to stm32f10x_rcc.o(i.RCC_BackupResetCmd) for RCC_BackupResetCmd
  267. stm32f10x_can.o(i.CAN_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
  268. stm32f10x_can.o(i.CAN_GetITStatus) refers to stm32f10x_can.o(i.CheckITStatus) for CheckITStatus
  269. stm32f10x_can.o(i.CAN_Receive) refers to stm32f10x_can.o(i.CAN_FIFORelease) for CAN_FIFORelease
  270. stm32f10x_cec.o(i.CEC_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
  271. stm32f10x_dac.o(i.DAC_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
  272. stm32f10x_i2c.o(i.I2C_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
  273. stm32f10x_i2c.o(i.I2C_Init) refers to stm32f10x_rcc.o(i.RCC_GetClocksFreq) for RCC_GetClocksFreq
  274. stm32f10x_pwr.o(i.PWR_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
  275. stm32f10x_rtc.o(i.RTC_SetAlarm) refers to stm32f10x_rtc.o(i.RTC_EnterConfigMode) for RTC_EnterConfigMode
  276. stm32f10x_rtc.o(i.RTC_SetAlarm) refers to stm32f10x_rtc.o(i.RTC_ExitConfigMode) for RTC_ExitConfigMode
  277. stm32f10x_rtc.o(i.RTC_SetCounter) refers to stm32f10x_rtc.o(i.RTC_EnterConfigMode) for RTC_EnterConfigMode
  278. stm32f10x_rtc.o(i.RTC_SetCounter) refers to stm32f10x_rtc.o(i.RTC_ExitConfigMode) for RTC_ExitConfigMode
  279. stm32f10x_rtc.o(i.RTC_SetPrescaler) refers to stm32f10x_rtc.o(i.RTC_EnterConfigMode) for RTC_EnterConfigMode
  280. stm32f10x_rtc.o(i.RTC_SetPrescaler) refers to stm32f10x_rtc.o(i.RTC_ExitConfigMode) for RTC_ExitConfigMode
  281. stm32f10x_spi.o(i.I2S_Init) refers to stm32f10x_rcc.o(i.RCC_GetClocksFreq) for RCC_GetClocksFreq
  282. stm32f10x_spi.o(i.SPI_I2S_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
  283. stm32f10x_spi.o(i.SPI_I2S_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
  284. stm32f10x_tim.o(i.TIM_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
  285. stm32f10x_tim.o(i.TIM_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
  286. stm32f10x_tim.o(i.TIM_ETRClockMode1Config) refers to stm32f10x_tim.o(i.TIM_ETRConfig) for TIM_ETRConfig
  287. stm32f10x_tim.o(i.TIM_ETRClockMode2Config) refers to stm32f10x_tim.o(i.TIM_ETRConfig) for TIM_ETRConfig
  288. stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TI1_Config) for TI1_Config
  289. stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TIM_SetIC1Prescaler) for TIM_SetIC1Prescaler
  290. stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TI2_Config) for TI2_Config
  291. stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TIM_SetIC2Prescaler) for TIM_SetIC2Prescaler
  292. stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TI3_Config) for TI3_Config
  293. stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TIM_SetIC3Prescaler) for TIM_SetIC3Prescaler
  294. stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TI4_Config) for TI4_Config
  295. stm32f10x_tim.o(i.TIM_ICInit) refers to stm32f10x_tim.o(i.TIM_SetIC4Prescaler) for TIM_SetIC4Prescaler
  296. stm32f10x_tim.o(i.TIM_ITRxExternalClockConfig) refers to stm32f10x_tim.o(i.TIM_SelectInputTrigger) for TIM_SelectInputTrigger
  297. stm32f10x_tim.o(i.TIM_PWMIConfig) refers to stm32f10x_tim.o(i.TI1_Config) for TI1_Config
  298. stm32f10x_tim.o(i.TIM_PWMIConfig) refers to stm32f10x_tim.o(i.TIM_SetIC1Prescaler) for TIM_SetIC1Prescaler
  299. stm32f10x_tim.o(i.TIM_PWMIConfig) refers to stm32f10x_tim.o(i.TI2_Config) for TI2_Config
  300. stm32f10x_tim.o(i.TIM_PWMIConfig) refers to stm32f10x_tim.o(i.TIM_SetIC2Prescaler) for TIM_SetIC2Prescaler
  301. stm32f10x_tim.o(i.TIM_TIxExternalClockConfig) refers to stm32f10x_tim.o(i.TI2_Config) for TI2_Config
  302. stm32f10x_tim.o(i.TIM_TIxExternalClockConfig) refers to stm32f10x_tim.o(i.TI1_Config) for TI1_Config
  303. stm32f10x_tim.o(i.TIM_TIxExternalClockConfig) refers to stm32f10x_tim.o(i.TIM_SelectInputTrigger) for TIM_SelectInputTrigger
  304. stm32f10x_usart.o(i.USART_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd) for RCC_APB2PeriphResetCmd
  305. stm32f10x_usart.o(i.USART_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
  306. stm32f10x_usart.o(i.USART_Init) refers to stm32f10x_rcc.o(i.RCC_GetClocksFreq) for RCC_GetClocksFreq
  307. stm32f10x_wwdg.o(i.WWDG_DeInit) refers to stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd) for RCC_APB1PeriphResetCmd
  308. system_stm32f10x.o(i.SetSysClock) refers to system_stm32f10x.o(i.SetSysClockTo24) for SetSysClockTo24
  309. system_stm32f10x.o(i.SystemCoreClockUpdate) refers to system_stm32f10x.o(.data) for SystemCoreClock
  310. system_stm32f10x.o(i.SystemInit) refers to system_stm32f10x.o(i.SetSysClock) for SetSysClock
  311. startup_stm32f10x_hd.o(RESET) refers to startup_stm32f10x_hd.o(STACK) for __initial_sp
  312. startup_stm32f10x_hd.o(RESET) refers to startup_stm32f10x_hd.o(.text) for Reset_Handler
  313. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.NMI_Handler) for NMI_Handler
  314. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.HardFault_Handler) for HardFault_Handler
  315. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.MemManage_Handler) for MemManage_Handler
  316. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.BusFault_Handler) for BusFault_Handler
  317. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.UsageFault_Handler) for UsageFault_Handler
  318. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.SVC_Handler) for SVC_Handler
  319. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.DebugMon_Handler) for DebugMon_Handler
  320. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.SysTick_Handler) for SysTick_Handler
  321. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.DMA1_Channel2_IRQHandler) for DMA1_Channel2_IRQHandler
  322. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.DMA1_Channel4_IRQHandler) for DMA1_Channel4_IRQHandler
  323. startup_stm32f10x_hd.o(RESET) refers to stm32f10x_it.o(i.USART1_IRQHandler) for USART1_IRQHandler
  324. startup_stm32f10x_hd.o(.text) refers to system_stm32f10x.o(i.SystemInit) for SystemInit
  325. startup_stm32f10x_hd.o(.text) refers to entry.o(.ARM.Collect$$$$00000000) for __main
  326. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry10a.o(.ARM.Collect$$$$0000000D) for __rt_final_cpp
  327. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry11a.o(.ARM.Collect$$$$0000000F) for __rt_final_exit
  328. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry7b.o(.ARM.Collect$$$$00000008) for _main_clock
  329. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry8b.o(.ARM.Collect$$$$0000000A) for _main_cpp_init
  330. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry9a.o(.ARM.Collect$$$$0000000B) for _main_init
  331. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry5.o(.ARM.Collect$$$$00000004) for _main_scatterload
  332. entry.o(.ARM.Collect$$$$00000000) refers (Special) to entry2.o(.ARM.Collect$$$$00000001) for _main_stk
  333. printfb.o(i.__0fprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  334. printfb.o(i.__0fprintf$bare) refers to serial.o(i.fputc) for fputc
  335. printfb.o(i.__0printf$bare) refers to printfb.o(i._printf_core) for _printf_core
  336. printfb.o(i.__0printf$bare) refers to serial.o(i.fputc) for fputc
  337. printfb.o(i.__0printf$bare) refers to stdout.o(.data) for __stdout
  338. printfb.o(i.__0snprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  339. printfb.o(i.__0snprintf$bare) refers to printfb.o(i._snputc) for _snputc
  340. printfb.o(i.__0sprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  341. printfb.o(i.__0sprintf$bare) refers to printfb.o(i._sputc) for _sputc
  342. printfb.o(i.__0vfprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  343. printfb.o(i.__0vfprintf$bare) refers to serial.o(i.fputc) for fputc
  344. printfb.o(i.__0vprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  345. printfb.o(i.__0vprintf$bare) refers to serial.o(i.fputc) for fputc
  346. printfb.o(i.__0vprintf$bare) refers to stdout.o(.data) for __stdout
  347. printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  348. printfb.o(i.__0vsnprintf$bare) refers to printfb.o(i._snputc) for _snputc
  349. printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._printf_core) for _printf_core
  350. printfb.o(i.__0vsprintf$bare) refers to printfb.o(i._sputc) for _sputc
  351. printf0.o(i.__0fprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  352. printf0.o(i.__0fprintf$0) refers to serial.o(i.fputc) for fputc
  353. printf0.o(i.__0printf$0) refers to printf0.o(i._printf_core) for _printf_core
  354. printf0.o(i.__0printf$0) refers to serial.o(i.fputc) for fputc
  355. printf0.o(i.__0printf$0) refers to stdout.o(.data) for __stdout
  356. printf0.o(i.__0snprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  357. printf0.o(i.__0snprintf$0) refers to printf0.o(i._snputc) for _snputc
  358. printf0.o(i.__0sprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  359. printf0.o(i.__0sprintf$0) refers to printf0.o(i._sputc) for _sputc
  360. printf0.o(i.__0vfprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  361. printf0.o(i.__0vfprintf$0) refers to serial.o(i.fputc) for fputc
  362. printf0.o(i.__0vprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  363. printf0.o(i.__0vprintf$0) refers to serial.o(i.fputc) for fputc
  364. printf0.o(i.__0vprintf$0) refers to stdout.o(.data) for __stdout
  365. printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  366. printf0.o(i.__0vsnprintf$0) refers to printf0.o(i._snputc) for _snputc
  367. printf0.o(i.__0vsprintf$0) refers to printf0.o(i._printf_core) for _printf_core
  368. printf0.o(i.__0vsprintf$0) refers to printf0.o(i._sputc) for _sputc
  369. printf1.o(i.__0fprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  370. printf1.o(i.__0fprintf$1) refers to serial.o(i.fputc) for fputc
  371. printf1.o(i.__0printf$1) refers to printf1.o(i._printf_core) for _printf_core
  372. printf1.o(i.__0printf$1) refers to serial.o(i.fputc) for fputc
  373. printf1.o(i.__0printf$1) refers to stdout.o(.data) for __stdout
  374. printf1.o(i.__0snprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  375. printf1.o(i.__0snprintf$1) refers to printf1.o(i._snputc) for _snputc
  376. printf1.o(i.__0sprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  377. printf1.o(i.__0sprintf$1) refers to printf1.o(i._sputc) for _sputc
  378. printf1.o(i.__0vfprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  379. printf1.o(i.__0vfprintf$1) refers to serial.o(i.fputc) for fputc
  380. printf1.o(i.__0vprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  381. printf1.o(i.__0vprintf$1) refers to serial.o(i.fputc) for fputc
  382. printf1.o(i.__0vprintf$1) refers to stdout.o(.data) for __stdout
  383. printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  384. printf1.o(i.__0vsnprintf$1) refers to printf1.o(i._snputc) for _snputc
  385. printf1.o(i.__0vsprintf$1) refers to printf1.o(i._printf_core) for _printf_core
  386. printf1.o(i.__0vsprintf$1) refers to printf1.o(i._sputc) for _sputc
  387. printf1.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
  388. printf2.o(i.__0fprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  389. printf2.o(i.__0fprintf$2) refers to serial.o(i.fputc) for fputc
  390. printf2.o(i.__0printf$2) refers to printf2.o(i._printf_core) for _printf_core
  391. printf2.o(i.__0printf$2) refers to serial.o(i.fputc) for fputc
  392. printf2.o(i.__0printf$2) refers to stdout.o(.data) for __stdout
  393. printf2.o(i.__0snprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  394. printf2.o(i.__0snprintf$2) refers to printf2.o(i._snputc) for _snputc
  395. printf2.o(i.__0sprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  396. printf2.o(i.__0sprintf$2) refers to printf2.o(i._sputc) for _sputc
  397. printf2.o(i.__0vfprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  398. printf2.o(i.__0vfprintf$2) refers to serial.o(i.fputc) for fputc
  399. printf2.o(i.__0vprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  400. printf2.o(i.__0vprintf$2) refers to serial.o(i.fputc) for fputc
  401. printf2.o(i.__0vprintf$2) refers to stdout.o(.data) for __stdout
  402. printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  403. printf2.o(i.__0vsnprintf$2) refers to printf2.o(i._snputc) for _snputc
  404. printf2.o(i.__0vsprintf$2) refers to printf2.o(i._printf_core) for _printf_core
  405. printf2.o(i.__0vsprintf$2) refers to printf2.o(i._sputc) for _sputc
  406. printf3.o(i.__0fprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  407. printf3.o(i.__0fprintf$3) refers to serial.o(i.fputc) for fputc
  408. printf3.o(i.__0printf$3) refers to printf3.o(i._printf_core) for _printf_core
  409. printf3.o(i.__0printf$3) refers to serial.o(i.fputc) for fputc
  410. printf3.o(i.__0printf$3) refers to stdout.o(.data) for __stdout
  411. printf3.o(i.__0snprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  412. printf3.o(i.__0snprintf$3) refers to printf3.o(i._snputc) for _snputc
  413. printf3.o(i.__0sprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  414. printf3.o(i.__0sprintf$3) refers to printf3.o(i._sputc) for _sputc
  415. printf3.o(i.__0vfprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  416. printf3.o(i.__0vfprintf$3) refers to serial.o(i.fputc) for fputc
  417. printf3.o(i.__0vprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  418. printf3.o(i.__0vprintf$3) refers to serial.o(i.fputc) for fputc
  419. printf3.o(i.__0vprintf$3) refers to stdout.o(.data) for __stdout
  420. printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  421. printf3.o(i.__0vsnprintf$3) refers to printf3.o(i._snputc) for _snputc
  422. printf3.o(i.__0vsprintf$3) refers to printf3.o(i._printf_core) for _printf_core
  423. printf3.o(i.__0vsprintf$3) refers to printf3.o(i._sputc) for _sputc
  424. printf3.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
  425. printf4.o(i.__0fprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  426. printf4.o(i.__0fprintf$4) refers to serial.o(i.fputc) for fputc
  427. printf4.o(i.__0printf$4) refers to printf4.o(i._printf_core) for _printf_core
  428. printf4.o(i.__0printf$4) refers to serial.o(i.fputc) for fputc
  429. printf4.o(i.__0printf$4) refers to stdout.o(.data) for __stdout
  430. printf4.o(i.__0snprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  431. printf4.o(i.__0snprintf$4) refers to printf4.o(i._snputc) for _snputc
  432. printf4.o(i.__0sprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  433. printf4.o(i.__0sprintf$4) refers to printf4.o(i._sputc) for _sputc
  434. printf4.o(i.__0vfprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  435. printf4.o(i.__0vfprintf$4) refers to serial.o(i.fputc) for fputc
  436. printf4.o(i.__0vprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  437. printf4.o(i.__0vprintf$4) refers to serial.o(i.fputc) for fputc
  438. printf4.o(i.__0vprintf$4) refers to stdout.o(.data) for __stdout
  439. printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  440. printf4.o(i.__0vsnprintf$4) refers to printf4.o(i._snputc) for _snputc
  441. printf4.o(i.__0vsprintf$4) refers to printf4.o(i._printf_core) for _printf_core
  442. printf4.o(i.__0vsprintf$4) refers to printf4.o(i._sputc) for _sputc
  443. printf4.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  444. printf5.o(i.__0fprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  445. printf5.o(i.__0fprintf$5) refers to serial.o(i.fputc) for fputc
  446. printf5.o(i.__0printf$5) refers to printf5.o(i._printf_core) for _printf_core
  447. printf5.o(i.__0printf$5) refers to serial.o(i.fputc) for fputc
  448. printf5.o(i.__0printf$5) refers to stdout.o(.data) for __stdout
  449. printf5.o(i.__0snprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  450. printf5.o(i.__0snprintf$5) refers to printf5.o(i._snputc) for _snputc
  451. printf5.o(i.__0sprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  452. printf5.o(i.__0sprintf$5) refers to printf5.o(i._sputc) for _sputc
  453. printf5.o(i.__0vfprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  454. printf5.o(i.__0vfprintf$5) refers to serial.o(i.fputc) for fputc
  455. printf5.o(i.__0vprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  456. printf5.o(i.__0vprintf$5) refers to serial.o(i.fputc) for fputc
  457. printf5.o(i.__0vprintf$5) refers to stdout.o(.data) for __stdout
  458. printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  459. printf5.o(i.__0vsnprintf$5) refers to printf5.o(i._snputc) for _snputc
  460. printf5.o(i.__0vsprintf$5) refers to printf5.o(i._printf_core) for _printf_core
  461. printf5.o(i.__0vsprintf$5) refers to printf5.o(i._sputc) for _sputc
  462. printf5.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  463. printf6.o(i.__0fprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  464. printf6.o(i.__0fprintf$6) refers to serial.o(i.fputc) for fputc
  465. printf6.o(i.__0printf$6) refers to printf6.o(i._printf_core) for _printf_core
  466. printf6.o(i.__0printf$6) refers to serial.o(i.fputc) for fputc
  467. printf6.o(i.__0printf$6) refers to stdout.o(.data) for __stdout
  468. printf6.o(i.__0snprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  469. printf6.o(i.__0snprintf$6) refers to printf6.o(i._snputc) for _snputc
  470. printf6.o(i.__0sprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  471. printf6.o(i.__0sprintf$6) refers to printf6.o(i._sputc) for _sputc
  472. printf6.o(i.__0vfprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  473. printf6.o(i.__0vfprintf$6) refers to serial.o(i.fputc) for fputc
  474. printf6.o(i.__0vprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  475. printf6.o(i.__0vprintf$6) refers to serial.o(i.fputc) for fputc
  476. printf6.o(i.__0vprintf$6) refers to stdout.o(.data) for __stdout
  477. printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  478. printf6.o(i.__0vsnprintf$6) refers to printf6.o(i._snputc) for _snputc
  479. printf6.o(i.__0vsprintf$6) refers to printf6.o(i._printf_core) for _printf_core
  480. printf6.o(i.__0vsprintf$6) refers to printf6.o(i._sputc) for _sputc
  481. printf6.o(i._printf_core) refers to printf6.o(i._printf_pre_padding) for _printf_pre_padding
  482. printf6.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
  483. printf6.o(i._printf_core) refers to printf6.o(i._printf_post_padding) for _printf_post_padding
  484. printf7.o(i.__0fprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  485. printf7.o(i.__0fprintf$7) refers to serial.o(i.fputc) for fputc
  486. printf7.o(i.__0printf$7) refers to printf7.o(i._printf_core) for _printf_core
  487. printf7.o(i.__0printf$7) refers to serial.o(i.fputc) for fputc
  488. printf7.o(i.__0printf$7) refers to stdout.o(.data) for __stdout
  489. printf7.o(i.__0snprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  490. printf7.o(i.__0snprintf$7) refers to printf7.o(i._snputc) for _snputc
  491. printf7.o(i.__0sprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  492. printf7.o(i.__0sprintf$7) refers to printf7.o(i._sputc) for _sputc
  493. printf7.o(i.__0vfprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  494. printf7.o(i.__0vfprintf$7) refers to serial.o(i.fputc) for fputc
  495. printf7.o(i.__0vprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  496. printf7.o(i.__0vprintf$7) refers to serial.o(i.fputc) for fputc
  497. printf7.o(i.__0vprintf$7) refers to stdout.o(.data) for __stdout
  498. printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  499. printf7.o(i.__0vsnprintf$7) refers to printf7.o(i._snputc) for _snputc
  500. printf7.o(i.__0vsprintf$7) refers to printf7.o(i._printf_core) for _printf_core
  501. printf7.o(i.__0vsprintf$7) refers to printf7.o(i._sputc) for _sputc
  502. printf7.o(i._printf_core) refers to printf7.o(i._printf_pre_padding) for _printf_pre_padding
  503. printf7.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  504. printf7.o(i._printf_core) refers to printf7.o(i._printf_post_padding) for _printf_post_padding
  505. printf8.o(i.__0fprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  506. printf8.o(i.__0fprintf$8) refers to serial.o(i.fputc) for fputc
  507. printf8.o(i.__0printf$8) refers to printf8.o(i._printf_core) for _printf_core
  508. printf8.o(i.__0printf$8) refers to serial.o(i.fputc) for fputc
  509. printf8.o(i.__0printf$8) refers to stdout.o(.data) for __stdout
  510. printf8.o(i.__0snprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  511. printf8.o(i.__0snprintf$8) refers to printf8.o(i._snputc) for _snputc
  512. printf8.o(i.__0sprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  513. printf8.o(i.__0sprintf$8) refers to printf8.o(i._sputc) for _sputc
  514. printf8.o(i.__0vfprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  515. printf8.o(i.__0vfprintf$8) refers to serial.o(i.fputc) for fputc
  516. printf8.o(i.__0vprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  517. printf8.o(i.__0vprintf$8) refers to serial.o(i.fputc) for fputc
  518. printf8.o(i.__0vprintf$8) refers to stdout.o(.data) for __stdout
  519. printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  520. printf8.o(i.__0vsnprintf$8) refers to printf8.o(i._snputc) for _snputc
  521. printf8.o(i.__0vsprintf$8) refers to printf8.o(i._printf_core) for _printf_core
  522. printf8.o(i.__0vsprintf$8) refers to printf8.o(i._sputc) for _sputc
  523. printf8.o(i._printf_core) refers to printf8.o(i._printf_pre_padding) for _printf_pre_padding
  524. printf8.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  525. printf8.o(i._printf_core) refers to printf8.o(i._printf_post_padding) for _printf_post_padding
  526. printfa.o(i.__0fprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  527. printfa.o(i.__0fprintf) refers to printfa.o(i._printf_core) for _printf_core
  528. printfa.o(i.__0fprintf) refers to serial.o(i.fputc) for fputc
  529. printfa.o(i.__0printf) refers (Special) to iusefp.o(.text) for __I$use$fp
  530. printfa.o(i.__0printf) refers to printfa.o(i._printf_core) for _printf_core
  531. printfa.o(i.__0printf) refers to serial.o(i.fputc) for fputc
  532. printfa.o(i.__0printf) refers to stdout.o(.data) for __stdout
  533. printfa.o(i.__0snprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  534. printfa.o(i.__0snprintf) refers to printfa.o(i._printf_core) for _printf_core
  535. printfa.o(i.__0snprintf) refers to printfa.o(i._snputc) for _snputc
  536. printfa.o(i.__0sprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  537. printfa.o(i.__0sprintf) refers to printfa.o(i._printf_core) for _printf_core
  538. printfa.o(i.__0sprintf) refers to printfa.o(i._sputc) for _sputc
  539. printfa.o(i.__0vfprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  540. printfa.o(i.__0vfprintf) refers to printfa.o(i._printf_core) for _printf_core
  541. printfa.o(i.__0vfprintf) refers to serial.o(i.fputc) for fputc
  542. printfa.o(i.__0vprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  543. printfa.o(i.__0vprintf) refers to printfa.o(i._printf_core) for _printf_core
  544. printfa.o(i.__0vprintf) refers to serial.o(i.fputc) for fputc
  545. printfa.o(i.__0vprintf) refers to stdout.o(.data) for __stdout
  546. printfa.o(i.__0vsnprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  547. printfa.o(i.__0vsnprintf) refers to printfa.o(i._printf_core) for _printf_core
  548. printfa.o(i.__0vsnprintf) refers to printfa.o(i._snputc) for _snputc
  549. printfa.o(i.__0vsprintf) refers (Special) to iusefp.o(.text) for __I$use$fp
  550. printfa.o(i.__0vsprintf) refers to printfa.o(i._printf_core) for _printf_core
  551. printfa.o(i.__0vsprintf) refers to printfa.o(i._sputc) for _sputc
  552. printfa.o(i._fp_digits) refers (Special) to iusefp.o(.text) for __I$use$fp
  553. printfa.o(i._fp_digits) refers to dmul.o(.text) for __aeabi_dmul
  554. printfa.o(i._fp_digits) refers to ddiv.o(.text) for __aeabi_ddiv
  555. printfa.o(i._fp_digits) refers to cdrcmple.o(.text) for __aeabi_cdrcmple
  556. printfa.o(i._fp_digits) refers to dadd.o(.text) for __aeabi_dadd
  557. printfa.o(i._fp_digits) refers to dfixul.o(.text) for __aeabi_d2ulz
  558. printfa.o(i._fp_digits) refers to uldiv.o(.text) for __aeabi_uldivmod
  559. printfa.o(i._printf_core) refers (Special) to iusefp.o(.text) for __I$use$fp
  560. printfa.o(i._printf_core) refers to printfa.o(i._printf_pre_padding) for _printf_pre_padding
  561. printfa.o(i._printf_core) refers to uldiv.o(.text) for __aeabi_uldivmod
  562. printfa.o(i._printf_core) refers to printfa.o(i._printf_post_padding) for _printf_post_padding
  563. printfa.o(i._printf_core) refers to printfa.o(i._fp_digits) for _fp_digits
  564. printfa.o(i._printf_core) refers to uidiv.o(.text) for __aeabi_uidivmod
  565. printfa.o(i._printf_post_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
  566. printfa.o(i._printf_pre_padding) refers (Special) to iusefp.o(.text) for __I$use$fp
  567. printfa.o(i._snputc) refers (Special) to iusefp.o(.text) for __I$use$fp
  568. printfa.o(i._sputc) refers (Special) to iusefp.o(.text) for __I$use$fp
  569. entry2.o(.ARM.Collect$$$$00000001) refers to entry2.o(.ARM.Collect$$$$00002712) for __lit__00000000
  570. entry2.o(.ARM.Collect$$$$00002712) refers to startup_stm32f10x_hd.o(STACK) for __initial_sp
  571. entry2.o(__vectab_stack_and_reset_area) refers to startup_stm32f10x_hd.o(STACK) for __initial_sp
  572. entry2.o(__vectab_stack_and_reset_area) refers to entry.o(.ARM.Collect$$$$00000000) for __main
  573. entry5.o(.ARM.Collect$$$$00000004) refers to init.o(.text) for __scatterload
  574. entry9a.o(.ARM.Collect$$$$0000000B) refers to main.o(i.main) for main
  575. entry9b.o(.ARM.Collect$$$$0000000C) refers to main.o(i.main) for main
  576. uldiv.o(.text) refers to llushr.o(.text) for __aeabi_llsr
  577. uldiv.o(.text) refers to llshl.o(.text) for __aeabi_llsl
  578. dadd.o(.text) refers to llshl.o(.text) for __aeabi_llsl
  579. dadd.o(.text) refers to llsshr.o(.text) for __aeabi_lasr
  580. dadd.o(.text) refers to depilogue.o(.text) for _double_epilogue
  581. dmul.o(.text) refers to depilogue.o(.text) for _double_epilogue
  582. ddiv.o(.text) refers to depilogue.o(.text) for _double_round
  583. dfixul.o(.text) refers to llushr.o(.text) for __aeabi_llsr
  584. dfixul.o(.text) refers to llshl.o(.text) for __aeabi_llsl
  585. init.o(.text) refers to entry5.o(.ARM.Collect$$$$00000004) for __main_after_scatterload
  586. depilogue.o(.text) refers to llshl.o(.text) for __aeabi_llsl
  587. depilogue.o(.text) refers to llushr.o(.text) for __aeabi_llsr
  588. ==============================================================================
  589. Removing Unused input sections from the image.
  590. Removing main.o(.constdata), (4 bytes).
  591. Removing stm32f10x_it.o(i.SetHFH), (44 bytes).
  592. Removing msg.o(i.CopyAppToMcu), (200 bytes).
  593. Removing iap.o(i.iap_clear_flag), (2 bytes).
  594. Removing iap.o(i.iap_set_flag_s), (2 bytes).
  595. Removing serial.o(i.SlwTrace), (44 bytes).
  596. Removing serial.o(.data), (12 bytes).
  597. Removing delay.o(i.Delay_1Ms), (56 bytes).
  598. Removing delay.o(i.Delay_1Us), (56 bytes).
  599. Removing delay.o(i.Delay_Init), (68 bytes).
  600. Removing delay.o(i.Delay_Ms), (22 bytes).
  601. Removing delay.o(i.Delay_Us), (22 bytes).
  602. Removing delay.o(.data), (4 bytes).
  603. Removing msgqueue.o(i.MsgQueueAccept), (188 bytes).
  604. Removing msgqueue.o(i.MsgQueuePost), (140 bytes).
  605. Removing w25q64.o(i.DelayMs), (32 bytes).
  606. Removing w25q64.o(i.sFlash_Erase_Chip), (44 bytes).
  607. Removing w25q64.o(i.sFlash_Erase_Sector), (68 bytes).
  608. Removing w25q64.o(i.sFlash_Global_Protect), (18 bytes).
  609. Removing w25q64.o(i.sFlash_Global_Unprotect), (18 bytes).
  610. Removing w25q64.o(i.sFlash_PowerDown), (2 bytes).
  611. Removing w25q64.o(i.sFlash_ReadSR), (44 bytes).
  612. Removing w25q64.o(i.sFlash_WAKEUP), (2 bytes).
  613. Removing w25q64.o(i.sFlash_Wait_Busy), (16 bytes).
  614. Removing w25q64.o(i.sFlash_Write), (200 bytes).
  615. Removing w25q64.o(i.sFlash_Write_Disable), (32 bytes).
  616. Removing w25q64.o(i.sFlash_Write_NoCheck), (70 bytes).
  617. Removing w25q64.o(i.sFlash_Write_Page), (88 bytes).
  618. Removing w25q64.o(i.sFlash_Write_SR), (40 bytes).
  619. Removing w25q64.o(.bss), (1024 bytes).
  620. Removing misc.o(i.NVIC_SetVectorTable), (20 bytes).
  621. Removing misc.o(i.NVIC_SystemLPConfig), (32 bytes).
  622. Removing misc.o(i.SysTick_CLKSourceConfig), (40 bytes).
  623. Removing stm32f10x_flash.o(i.FLASH_ClearFlag), (12 bytes).
  624. Removing stm32f10x_flash.o(i.FLASH_EnableWriteProtection), (196 bytes).
  625. Removing stm32f10x_flash.o(i.FLASH_EraseAllBank1Pages), (72 bytes).
  626. Removing stm32f10x_flash.o(i.FLASH_EraseAllPages), (72 bytes).
  627. Removing stm32f10x_flash.o(i.FLASH_EraseOptionBytes), (168 bytes).
  628. Removing stm32f10x_flash.o(i.FLASH_GetFlagStatus), (48 bytes).
  629. Removing stm32f10x_flash.o(i.FLASH_GetPrefetchBufferStatus), (24 bytes).
  630. Removing stm32f10x_flash.o(i.FLASH_GetReadOutProtectionStatus), (24 bytes).
  631. Removing stm32f10x_flash.o(i.FLASH_GetStatus), (52 bytes).
  632. Removing stm32f10x_flash.o(i.FLASH_GetUserOptionByte), (12 bytes).
  633. Removing stm32f10x_flash.o(i.FLASH_GetWriteProtectionOptionByte), (12 bytes).
  634. Removing stm32f10x_flash.o(i.FLASH_HalfCycleAccessCmd), (28 bytes).
  635. Removing stm32f10x_flash.o(i.FLASH_ITConfig), (32 bytes).
  636. Removing stm32f10x_flash.o(i.FLASH_LockBank1), (20 bytes).
  637. Removing stm32f10x_flash.o(i.FLASH_PrefetchBufferCmd), (28 bytes).
  638. Removing stm32f10x_flash.o(i.FLASH_ProgramOptionByteData), (84 bytes).
  639. Removing stm32f10x_flash.o(i.FLASH_ProgramWord), (108 bytes).
  640. Removing stm32f10x_flash.o(i.FLASH_ReadOutProtection), (172 bytes).
  641. Removing stm32f10x_flash.o(i.FLASH_SetLatency), (24 bytes).
  642. Removing stm32f10x_flash.o(i.FLASH_UnlockBank1), (24 bytes).
  643. Removing stm32f10x_flash.o(i.FLASH_UserOptionByteConfig), (104 bytes).
  644. Removing stm32f10x_flash.o(i.FLASH_WaitForLastBank1Operation), (38 bytes).
  645. Removing stm32f10x_gpio.o(i.GPIO_AFIODeInit), (20 bytes).
  646. Removing stm32f10x_gpio.o(i.GPIO_DeInit), (200 bytes).
  647. Removing stm32f10x_gpio.o(i.GPIO_ETH_MediaInterfaceConfig), (12 bytes).
  648. Removing stm32f10x_gpio.o(i.GPIO_EXTILineConfig), (64 bytes).
  649. Removing stm32f10x_gpio.o(i.GPIO_EventOutputCmd), (12 bytes).
  650. Removing stm32f10x_gpio.o(i.GPIO_EventOutputConfig), (32 bytes).
  651. Removing stm32f10x_gpio.o(i.GPIO_PinLockConfig), (18 bytes).
  652. Removing stm32f10x_gpio.o(i.GPIO_PinRemapConfig), (144 bytes).
  653. Removing stm32f10x_gpio.o(i.GPIO_ReadInputData), (8 bytes).
  654. Removing stm32f10x_gpio.o(i.GPIO_ReadInputDataBit), (18 bytes).
  655. Removing stm32f10x_gpio.o(i.GPIO_ReadOutputData), (8 bytes).
  656. Removing stm32f10x_gpio.o(i.GPIO_StructInit), (16 bytes).
  657. Removing stm32f10x_gpio.o(i.GPIO_Write), (4 bytes).
  658. Removing stm32f10x_rcc.o(i.RCC_ADCCLKConfig), (24 bytes).
  659. Removing stm32f10x_rcc.o(i.RCC_APB1PeriphClockCmd), (32 bytes).
  660. Removing stm32f10x_rcc.o(i.RCC_APB1PeriphResetCmd), (32 bytes).
  661. Removing stm32f10x_rcc.o(i.RCC_APB2PeriphResetCmd), (32 bytes).
  662. Removing stm32f10x_rcc.o(i.RCC_AdjustHSICalibrationValue), (24 bytes).
  663. Removing stm32f10x_rcc.o(i.RCC_BackupResetCmd), (12 bytes).
  664. Removing stm32f10x_rcc.o(i.RCC_ClearFlag), (20 bytes).
  665. Removing stm32f10x_rcc.o(i.RCC_ClearITPendingBit), (12 bytes).
  666. Removing stm32f10x_rcc.o(i.RCC_ClockSecuritySystemCmd), (12 bytes).
  667. Removing stm32f10x_rcc.o(i.RCC_DeInit), (76 bytes).
  668. Removing stm32f10x_rcc.o(i.RCC_GetFlagStatus), (60 bytes).
  669. Removing stm32f10x_rcc.o(i.RCC_GetITStatus), (24 bytes).
  670. Removing stm32f10x_rcc.o(i.RCC_GetSYSCLKSource), (16 bytes).
  671. Removing stm32f10x_rcc.o(i.RCC_HCLKConfig), (24 bytes).
  672. Removing stm32f10x_rcc.o(i.RCC_HSEConfig), (76 bytes).
  673. Removing stm32f10x_rcc.o(i.RCC_HSICmd), (12 bytes).
  674. Removing stm32f10x_rcc.o(i.RCC_ITConfig), (32 bytes).
  675. Removing stm32f10x_rcc.o(i.RCC_LSEConfig), (52 bytes).
  676. Removing stm32f10x_rcc.o(i.RCC_LSICmd), (12 bytes).
  677. Removing stm32f10x_rcc.o(i.RCC_MCOConfig), (12 bytes).
  678. Removing stm32f10x_rcc.o(i.RCC_PCLK1Config), (24 bytes).
  679. Removing stm32f10x_rcc.o(i.RCC_PCLK2Config), (24 bytes).
  680. Removing stm32f10x_rcc.o(i.RCC_PLLCmd), (12 bytes).
  681. Removing stm32f10x_rcc.o(i.RCC_PLLConfig), (28 bytes).
  682. Removing stm32f10x_rcc.o(i.RCC_RTCCLKCmd), (12 bytes).
  683. Removing stm32f10x_rcc.o(i.RCC_RTCCLKConfig), (16 bytes).
  684. Removing stm32f10x_rcc.o(i.RCC_SYSCLKConfig), (24 bytes).
  685. Removing stm32f10x_rcc.o(i.RCC_USBCLKConfig), (12 bytes).
  686. Removing stm32f10x_rcc.o(i.RCC_WaitForHSEStartUp), (56 bytes).
  687. Removing stm32f10x_adc.o(i.ADC_AnalogWatchdogCmd), (20 bytes).
  688. Removing stm32f10x_adc.o(i.ADC_AnalogWatchdogSingleChannelConfig), (16 bytes).
  689. Removing stm32f10x_adc.o(i.ADC_AnalogWatchdogThresholdsConfig), (6 bytes).
  690. Removing stm32f10x_adc.o(i.ADC_AutoInjectedConvCmd), (22 bytes).
  691. Removing stm32f10x_adc.o(i.ADC_ClearFlag), (6 bytes).
  692. Removing stm32f10x_adc.o(i.ADC_ClearITPendingBit), (10 bytes).
  693. Removing stm32f10x_adc.o(i.ADC_Cmd), (22 bytes).
  694. Removing stm32f10x_adc.o(i.ADC_DMACmd), (22 bytes).
  695. Removing stm32f10x_adc.o(i.ADC_DeInit), (92 bytes).
  696. Removing stm32f10x_adc.o(i.ADC_DiscModeChannelCountConfig), (24 bytes).
  697. Removing stm32f10x_adc.o(i.ADC_DiscModeCmd), (22 bytes).
  698. Removing stm32f10x_adc.o(i.ADC_ExternalTrigConvCmd), (22 bytes).
  699. Removing stm32f10x_adc.o(i.ADC_ExternalTrigInjectedConvCmd), (22 bytes).
  700. Removing stm32f10x_adc.o(i.ADC_ExternalTrigInjectedConvConfig), (16 bytes).
  701. Removing stm32f10x_adc.o(i.ADC_GetCalibrationStatus), (20 bytes).
  702. Removing stm32f10x_adc.o(i.ADC_GetConversionValue), (8 bytes).
  703. Removing stm32f10x_adc.o(i.ADC_GetDualModeConversionValue), (12 bytes).
  704. Removing stm32f10x_adc.o(i.ADC_GetFlagStatus), (18 bytes).
  705. Removing stm32f10x_adc.o(i.ADC_GetITStatus), (36 bytes).
  706. Removing stm32f10x_adc.o(i.ADC_GetInjectedConversionValue), (28 bytes).
  707. Removing stm32f10x_adc.o(i.ADC_GetResetCalibrationStatus), (20 bytes).
  708. Removing stm32f10x_adc.o(i.ADC_GetSoftwareStartConvStatus), (20 bytes).
  709. Removing stm32f10x_adc.o(i.ADC_GetSoftwareStartInjectedConvCmdStatus), (20 bytes).
  710. Removing stm32f10x_adc.o(i.ADC_ITConfig), (24 bytes).
  711. Removing stm32f10x_adc.o(i.ADC_Init), (80 bytes).
  712. Removing stm32f10x_adc.o(i.ADC_InjectedChannelConfig), (130 bytes).
  713. Removing stm32f10x_adc.o(i.ADC_InjectedDiscModeCmd), (22 bytes).
  714. Removing stm32f10x_adc.o(i.ADC_InjectedSequencerLengthConfig), (24 bytes).
  715. Removing stm32f10x_adc.o(i.ADC_RegularChannelConfig), (184 bytes).
  716. Removing stm32f10x_adc.o(i.ADC_ResetCalibration), (10 bytes).
  717. Removing stm32f10x_adc.o(i.ADC_SetInjectedOffset), (20 bytes).
  718. Removing stm32f10x_adc.o(i.ADC_SoftwareStartConvCmd), (22 bytes).
  719. Removing stm32f10x_adc.o(i.ADC_SoftwareStartInjectedConvCmd), (22 bytes).
  720. Removing stm32f10x_adc.o(i.ADC_StartCalibration), (10 bytes).
  721. Removing stm32f10x_adc.o(i.ADC_StructInit), (18 bytes).
  722. Removing stm32f10x_adc.o(i.ADC_TempSensorVrefintCmd), (36 bytes).
  723. Removing stm32f10x_bkp.o(i.BKP_ClearFlag), (20 bytes).
  724. Removing stm32f10x_bkp.o(i.BKP_ClearITPendingBit), (20 bytes).
  725. Removing stm32f10x_bkp.o(i.BKP_DeInit), (16 bytes).
  726. Removing stm32f10x_bkp.o(i.BKP_GetFlagStatus), (12 bytes).
  727. Removing stm32f10x_bkp.o(i.BKP_GetITStatus), (12 bytes).
  728. Removing stm32f10x_bkp.o(i.BKP_ITConfig), (12 bytes).
  729. Removing stm32f10x_bkp.o(i.BKP_RTCOutputConfig), (28 bytes).
  730. Removing stm32f10x_bkp.o(i.BKP_ReadBackupRegister), (28 bytes).
  731. Removing stm32f10x_bkp.o(i.BKP_SetRTCCalibrationValue), (28 bytes).
  732. Removing stm32f10x_bkp.o(i.BKP_TamperPinCmd), (12 bytes).
  733. Removing stm32f10x_bkp.o(i.BKP_TamperPinLevelConfig), (12 bytes).
  734. Removing stm32f10x_bkp.o(i.BKP_WriteBackupRegister), (28 bytes).
  735. Removing stm32f10x_can.o(i.CAN_CancelTransmit), (48 bytes).
  736. Removing stm32f10x_can.o(i.CAN_ClearFlag), (56 bytes).
  737. Removing stm32f10x_can.o(i.CAN_ClearITPendingBit), (168 bytes).
  738. Removing stm32f10x_can.o(i.CAN_DBGFreeze), (22 bytes).
  739. Removing stm32f10x_can.o(i.CAN_DeInit), (56 bytes).
  740. Removing stm32f10x_can.o(i.CAN_FIFORelease), (22 bytes).
  741. Removing stm32f10x_can.o(i.CAN_FilterInit), (264 bytes).
  742. Removing stm32f10x_can.o(i.CAN_GetFlagStatus), (120 bytes).
  743. Removing stm32f10x_can.o(i.CAN_GetITStatus), (296 bytes).
  744. Removing stm32f10x_can.o(i.CAN_ITConfig), (18 bytes).
  745. Removing stm32f10x_can.o(i.CAN_Init), (276 bytes).
  746. Removing stm32f10x_can.o(i.CAN_MessagePending), (30 bytes).
  747. Removing stm32f10x_can.o(i.CAN_Receive), (234 bytes).
  748. Removing stm32f10x_can.o(i.CAN_SlaveStartBank), (52 bytes).
  749. Removing stm32f10x_can.o(i.CAN_Sleep), (30 bytes).
  750. Removing stm32f10x_can.o(i.CAN_StructInit), (32 bytes).
  751. Removing stm32f10x_can.o(i.CAN_Transmit), (294 bytes).
  752. Removing stm32f10x_can.o(i.CAN_TransmitStatus), (142 bytes).
  753. Removing stm32f10x_can.o(i.CAN_WakeUp), (48 bytes).
  754. Removing stm32f10x_can.o(i.CheckITStatus), (16 bytes).
  755. Removing stm32f10x_cec.o(i.CEC_ClearFlag), (36 bytes).
  756. Removing stm32f10x_cec.o(i.CEC_ClearITPendingBit), (36 bytes).
  757. Removing stm32f10x_cec.o(i.CEC_Cmd), (28 bytes).
  758. Removing stm32f10x_cec.o(i.CEC_DeInit), (22 bytes).
  759. Removing stm32f10x_cec.o(i.CEC_EndOfMessageCmd), (12 bytes).
  760. Removing stm32f10x_cec.o(i.CEC_GetFlagStatus), (48 bytes).
  761. Removing stm32f10x_cec.o(i.CEC_GetITStatus), (40 bytes).
  762. Removing stm32f10x_cec.o(i.CEC_ITConfig), (12 bytes).
  763. Removing stm32f10x_cec.o(i.CEC_Init), (32 bytes).
  764. Removing stm32f10x_cec.o(i.CEC_OwnAddressConfig), (12 bytes).
  765. Removing stm32f10x_cec.o(i.CEC_ReceiveDataByte), (12 bytes).
  766. Removing stm32f10x_cec.o(i.CEC_SendDataByte), (12 bytes).
  767. Removing stm32f10x_cec.o(i.CEC_SetPrescaler), (12 bytes).
  768. Removing stm32f10x_cec.o(i.CEC_StartOfMessage), (12 bytes).
  769. Removing stm32f10x_crc.o(i.CRC_CalcBlockCRC), (36 bytes).
  770. Removing stm32f10x_crc.o(i.CRC_CalcCRC), (16 bytes).
  771. Removing stm32f10x_crc.o(i.CRC_GetCRC), (12 bytes).
  772. Removing stm32f10x_crc.o(i.CRC_GetIDRegister), (12 bytes).
  773. Removing stm32f10x_crc.o(i.CRC_ResetDR), (12 bytes).
  774. Removing stm32f10x_crc.o(i.CRC_SetIDRegister), (12 bytes).
  775. Removing stm32f10x_dac.o(i.DAC_Cmd), (40 bytes).
  776. Removing stm32f10x_dac.o(i.DAC_DMACmd), (44 bytes).
  777. Removing stm32f10x_dac.o(i.DAC_DeInit), (22 bytes).
  778. Removing stm32f10x_dac.o(i.DAC_DualSoftwareTriggerCmd), (36 bytes).
  779. Removing stm32f10x_dac.o(i.DAC_GetDataOutputValue), (36 bytes).
  780. Removing stm32f10x_dac.o(i.DAC_Init), (52 bytes).
  781. Removing stm32f10x_dac.o(i.DAC_SetChannel1Data), (32 bytes).
  782. Removing stm32f10x_dac.o(i.DAC_SetChannel2Data), (32 bytes).
  783. Removing stm32f10x_dac.o(i.DAC_SetDualChannelData), (36 bytes).
  784. Removing stm32f10x_dac.o(i.DAC_SoftwareTriggerCmd), (44 bytes).
  785. Removing stm32f10x_dac.o(i.DAC_StructInit), (12 bytes).
  786. Removing stm32f10x_dac.o(i.DAC_WaveGenerationCmd), (40 bytes).
  787. Removing stm32f10x_dbgmcu.o(i.DBGMCU_Config), (32 bytes).
  788. Removing stm32f10x_dbgmcu.o(i.DBGMCU_GetDEVID), (16 bytes).
  789. Removing stm32f10x_dbgmcu.o(i.DBGMCU_GetREVID), (12 bytes).
  790. Removing stm32f10x_dma.o(i.DMA_ClearFlag), (28 bytes).
  791. Removing stm32f10x_dma.o(i.DMA_ClearITPendingBit), (28 bytes).
  792. Removing stm32f10x_dma.o(i.DMA_GetCurrDataCounter), (8 bytes).
  793. Removing stm32f10x_dma.o(i.DMA_GetFlagStatus), (44 bytes).
  794. Removing stm32f10x_dma.o(i.DMA_GetITStatus), (44 bytes).
  795. Removing stm32f10x_dma.o(i.DMA_SetCurrDataCounter), (4 bytes).
  796. Removing stm32f10x_dma.o(i.DMA_StructInit), (26 bytes).
  797. Removing stm32f10x_exti.o(i.EXTI_ClearFlag), (12 bytes).
  798. Removing stm32f10x_exti.o(i.EXTI_ClearITPendingBit), (12 bytes).
  799. Removing stm32f10x_exti.o(i.EXTI_DeInit), (36 bytes).
  800. Removing stm32f10x_exti.o(i.EXTI_GenerateSWInterrupt), (16 bytes).
  801. Removing stm32f10x_exti.o(i.EXTI_GetFlagStatus), (24 bytes).
  802. Removing stm32f10x_exti.o(i.EXTI_GetITStatus), (40 bytes).
  803. Removing stm32f10x_exti.o(i.EXTI_Init), (148 bytes).
  804. Removing stm32f10x_exti.o(i.EXTI_StructInit), (16 bytes).
  805. Removing stm32f10x_fsmc.o(i.FSMC_ClearFlag), (72 bytes).
  806. Removing stm32f10x_fsmc.o(i.FSMC_ClearITPendingBit), (72 bytes).
  807. Removing stm32f10x_fsmc.o(i.FSMC_GetECC), (28 bytes).
  808. Removing stm32f10x_fsmc.o(i.FSMC_GetFlagStatus), (56 bytes).
  809. Removing stm32f10x_fsmc.o(i.FSMC_GetITStatus), (68 bytes).
  810. Removing stm32f10x_fsmc.o(i.FSMC_ITConfig), (136 bytes).
  811. Removing stm32f10x_fsmc.o(i.FSMC_NANDCmd), (92 bytes).
  812. Removing stm32f10x_fsmc.o(i.FSMC_NANDDeInit), (72 bytes).
  813. Removing stm32f10x_fsmc.o(i.FSMC_NANDECCCmd), (92 bytes).
  814. Removing stm32f10x_fsmc.o(i.FSMC_NANDInit), (140 bytes).
  815. Removing stm32f10x_fsmc.o(i.FSMC_NANDStructInit), (54 bytes).
  816. Removing stm32f10x_fsmc.o(i.FSMC_NORSRAMCmd), (52 bytes).
  817. Removing stm32f10x_fsmc.o(i.FSMC_NORSRAMDeInit), (56 bytes).
  818. Removing stm32f10x_fsmc.o(i.FSMC_NORSRAMInit), (224 bytes).
  819. Removing stm32f10x_fsmc.o(i.FSMC_NORSRAMStructInit), (114 bytes).
  820. Removing stm32f10x_fsmc.o(i.FSMC_PCCARDCmd), (48 bytes).
  821. Removing stm32f10x_fsmc.o(i.FSMC_PCCARDDeInit), (48 bytes).
  822. Removing stm32f10x_fsmc.o(i.FSMC_PCCARDInit), (136 bytes).
  823. Removing stm32f10x_fsmc.o(i.FSMC_PCCARDStructInit), (60 bytes).
  824. Removing stm32f10x_i2c.o(i.I2C_ARPCmd), (24 bytes).
  825. Removing stm32f10x_i2c.o(i.I2C_AcknowledgeConfig), (24 bytes).
  826. Removing stm32f10x_i2c.o(i.I2C_CalculatePEC), (24 bytes).
  827. Removing stm32f10x_i2c.o(i.I2C_CheckEvent), (42 bytes).
  828. Removing stm32f10x_i2c.o(i.I2C_ClearFlag), (12 bytes).
  829. Removing stm32f10x_i2c.o(i.I2C_ClearITPendingBit), (12 bytes).
  830. Removing stm32f10x_i2c.o(i.I2C_Cmd), (24 bytes).
  831. Removing stm32f10x_i2c.o(i.I2C_DMACmd), (24 bytes).
  832. Removing stm32f10x_i2c.o(i.I2C_DMALastTransferCmd), (24 bytes).
  833. Removing stm32f10x_i2c.o(i.I2C_DeInit), (56 bytes).
  834. Removing stm32f10x_i2c.o(i.I2C_DualAddressCmd), (24 bytes).
  835. Removing stm32f10x_i2c.o(i.I2C_FastModeDutyCycleConfig), (28 bytes).
  836. Removing stm32f10x_i2c.o(i.I2C_GeneralCallCmd), (24 bytes).
  837. Removing stm32f10x_i2c.o(i.I2C_GenerateSTART), (24 bytes).
  838. Removing stm32f10x_i2c.o(i.I2C_GenerateSTOP), (24 bytes).
  839. Removing stm32f10x_i2c.o(i.I2C_GetFlagStatus), (58 bytes).
  840. Removing stm32f10x_i2c.o(i.I2C_GetITStatus), (38 bytes).
  841. Removing stm32f10x_i2c.o(i.I2C_GetLastEvent), (26 bytes).
  842. Removing stm32f10x_i2c.o(i.I2C_GetPEC), (8 bytes).
  843. Removing stm32f10x_i2c.o(i.I2C_ITConfig), (18 bytes).
  844. Removing stm32f10x_i2c.o(i.I2C_Init), (236 bytes).
  845. Removing stm32f10x_i2c.o(i.I2C_OwnAddress2Config), (22 bytes).
  846. Removing stm32f10x_i2c.o(i.I2C_PECPositionConfig), (28 bytes).
  847. Removing stm32f10x_i2c.o(i.I2C_ReadRegister), (22 bytes).
  848. Removing stm32f10x_i2c.o(i.I2C_ReceiveData), (8 bytes).
  849. Removing stm32f10x_i2c.o(i.I2C_SMBusAlertConfig), (28 bytes).
  850. Removing stm32f10x_i2c.o(i.I2C_Send7bitAddress), (18 bytes).
  851. Removing stm32f10x_i2c.o(i.I2C_SendData), (4 bytes).
  852. Removing stm32f10x_i2c.o(i.I2C_SoftwareResetCmd), (22 bytes).
  853. Removing stm32f10x_i2c.o(i.I2C_StretchClockCmd), (24 bytes).
  854. Removing stm32f10x_i2c.o(i.I2C_StructInit), (30 bytes).
  855. Removing stm32f10x_i2c.o(i.I2C_TransmitPEC), (24 bytes).
  856. Removing stm32f10x_iwdg.o(i.IWDG_Enable), (16 bytes).
  857. Removing stm32f10x_iwdg.o(i.IWDG_GetFlagStatus), (24 bytes).
  858. Removing stm32f10x_iwdg.o(i.IWDG_ReloadCounter), (16 bytes).
  859. Removing stm32f10x_iwdg.o(i.IWDG_SetPrescaler), (12 bytes).
  860. Removing stm32f10x_iwdg.o(i.IWDG_SetReload), (12 bytes).
  861. Removing stm32f10x_iwdg.o(i.IWDG_WriteAccessCmd), (12 bytes).
  862. Removing stm32f10x_pwr.o(i.PWR_BackupAccessCmd), (12 bytes).
  863. Removing stm32f10x_pwr.o(i.PWR_ClearFlag), (20 bytes).
  864. Removing stm32f10x_pwr.o(i.PWR_DeInit), (22 bytes).
  865. Removing stm32f10x_pwr.o(i.PWR_EnterSTANDBYMode), (52 bytes).
  866. Removing stm32f10x_pwr.o(i.PWR_EnterSTOPMode), (64 bytes).
  867. Removing stm32f10x_pwr.o(i.PWR_GetFlagStatus), (24 bytes).
  868. Removing stm32f10x_pwr.o(i.PWR_PVDCmd), (12 bytes).
  869. Removing stm32f10x_pwr.o(i.PWR_PVDLevelConfig), (24 bytes).
  870. Removing stm32f10x_pwr.o(i.PWR_WakeUpPinCmd), (12 bytes).
  871. Removing stm32f10x_rtc.o(i.RTC_ClearFlag), (16 bytes).
  872. Removing stm32f10x_rtc.o(i.RTC_ClearITPendingBit), (16 bytes).
  873. Removing stm32f10x_rtc.o(i.RTC_EnterConfigMode), (20 bytes).
  874. Removing stm32f10x_rtc.o(i.RTC_ExitConfigMode), (20 bytes).
  875. Removing stm32f10x_rtc.o(i.RTC_GetCounter), (20 bytes).
  876. Removing stm32f10x_rtc.o(i.RTC_GetDivider), (24 bytes).
  877. Removing stm32f10x_rtc.o(i.RTC_GetFlagStatus), (24 bytes).
  878. Removing stm32f10x_rtc.o(i.RTC_GetITStatus), (36 bytes).
  879. Removing stm32f10x_rtc.o(i.RTC_ITConfig), (32 bytes).
  880. Removing stm32f10x_rtc.o(i.RTC_SetAlarm), (28 bytes).
  881. Removing stm32f10x_rtc.o(i.RTC_SetCounter), (28 bytes).
  882. Removing stm32f10x_rtc.o(i.RTC_SetPrescaler), (32 bytes).
  883. Removing stm32f10x_rtc.o(i.RTC_WaitForLastTask), (20 bytes).
  884. Removing stm32f10x_rtc.o(i.RTC_WaitForSynchro), (32 bytes).
  885. Removing stm32f10x_sdio.o(i.SDIO_CEATAITCmd), (16 bytes).
  886. Removing stm32f10x_sdio.o(i.SDIO_ClearFlag), (12 bytes).
  887. Removing stm32f10x_sdio.o(i.SDIO_ClearITPendingBit), (12 bytes).
  888. Removing stm32f10x_sdio.o(i.SDIO_ClockCmd), (12 bytes).
  889. Removing stm32f10x_sdio.o(i.SDIO_CmdStructInit), (14 bytes).
  890. Removing stm32f10x_sdio.o(i.SDIO_CommandCompletionCmd), (12 bytes).
  891. Removing stm32f10x_sdio.o(i.SDIO_DMACmd), (12 bytes).
  892. Removing stm32f10x_sdio.o(i.SDIO_DataConfig), (48 bytes).
  893. Removing stm32f10x_sdio.o(i.SDIO_DataStructInit), (20 bytes).
  894. Removing stm32f10x_sdio.o(i.SDIO_DeInit), (36 bytes).
  895. Removing stm32f10x_sdio.o(i.SDIO_GetCommandResponse), (12 bytes).
  896. Removing stm32f10x_sdio.o(i.SDIO_GetDataCounter), (12 bytes).
  897. Removing stm32f10x_sdio.o(i.SDIO_GetFIFOCount), (12 bytes).
  898. Removing stm32f10x_sdio.o(i.SDIO_GetFlagStatus), (24 bytes).
  899. Removing stm32f10x_sdio.o(i.SDIO_GetITStatus), (24 bytes).
  900. Removing stm32f10x_sdio.o(i.SDIO_GetPowerState), (16 bytes).
  901. Removing stm32f10x_sdio.o(i.SDIO_GetResponse), (24 bytes).
  902. Removing stm32f10x_sdio.o(i.SDIO_ITConfig), (32 bytes).
  903. Removing stm32f10x_sdio.o(i.SDIO_Init), (48 bytes).
  904. Removing stm32f10x_sdio.o(i.SDIO_ReadData), (12 bytes).
  905. Removing stm32f10x_sdio.o(i.SDIO_SendCEATACmd), (12 bytes).
  906. Removing stm32f10x_sdio.o(i.SDIO_SendCommand), (44 bytes).
  907. Removing stm32f10x_sdio.o(i.SDIO_SendSDIOSuspendCmd), (12 bytes).
  908. Removing stm32f10x_sdio.o(i.SDIO_SetPowerState), (28 bytes).
  909. Removing stm32f10x_sdio.o(i.SDIO_SetSDIOOperation), (12 bytes).
  910. Removing stm32f10x_sdio.o(i.SDIO_SetSDIOReadWaitMode), (12 bytes).
  911. Removing stm32f10x_sdio.o(i.SDIO_StartSDIOReadWait), (12 bytes).
  912. Removing stm32f10x_sdio.o(i.SDIO_StopSDIOReadWait), (12 bytes).
  913. Removing stm32f10x_sdio.o(i.SDIO_StructInit), (16 bytes).
  914. Removing stm32f10x_sdio.o(i.SDIO_WriteData), (12 bytes).
  915. Removing stm32f10x_spi.o(i.I2S_Cmd), (24 bytes).
  916. Removing stm32f10x_spi.o(i.I2S_Init), (232 bytes).
  917. Removing stm32f10x_spi.o(i.I2S_StructInit), (20 bytes).
  918. Removing stm32f10x_spi.o(i.SPI_BiDirectionalLineConfig), (28 bytes).
  919. Removing stm32f10x_spi.o(i.SPI_CalculateCRC), (24 bytes).
  920. Removing stm32f10x_spi.o(i.SPI_DataSizeConfig), (18 bytes).
  921. Removing stm32f10x_spi.o(i.SPI_GetCRC), (16 bytes).
  922. Removing stm32f10x_spi.o(i.SPI_GetCRCPolynomial), (6 bytes).
  923. Removing stm32f10x_spi.o(i.SPI_I2S_ClearFlag), (6 bytes).
  924. Removing stm32f10x_spi.o(i.SPI_I2S_ClearITPendingBit), (20 bytes).
  925. Removing stm32f10x_spi.o(i.SPI_I2S_DMACmd), (18 bytes).
  926. Removing stm32f10x_spi.o(i.SPI_I2S_DeInit), (88 bytes).
  927. Removing stm32f10x_spi.o(i.SPI_I2S_GetITStatus), (52 bytes).
  928. Removing stm32f10x_spi.o(i.SPI_I2S_ITConfig), (32 bytes).
  929. Removing stm32f10x_spi.o(i.SPI_NSSInternalSoftwareConfig), (30 bytes).
  930. Removing stm32f10x_spi.o(i.SPI_SSOutputCmd), (24 bytes).
  931. Removing stm32f10x_spi.o(i.SPI_StructInit), (24 bytes).
  932. Removing stm32f10x_spi.o(i.SPI_TransmitCRC), (10 bytes).
  933. Removing stm32f10x_tim.o(i.TI1_Config), (128 bytes).
  934. Removing stm32f10x_tim.o(i.TI2_Config), (152 bytes).
  935. Removing stm32f10x_tim.o(i.TI3_Config), (144 bytes).
  936. Removing stm32f10x_tim.o(i.TI4_Config), (152 bytes).
  937. Removing stm32f10x_tim.o(i.TIM_ARRPreloadConfig), (24 bytes).
  938. Removing stm32f10x_tim.o(i.TIM_BDTRConfig), (32 bytes).
  939. Removing stm32f10x_tim.o(i.TIM_BDTRStructInit), (18 bytes).
  940. Removing stm32f10x_tim.o(i.TIM_CCPreloadControl), (24 bytes).
  941. Removing stm32f10x_tim.o(i.TIM_CCxCmd), (30 bytes).
  942. Removing stm32f10x_tim.o(i.TIM_CCxNCmd), (30 bytes).
  943. Removing stm32f10x_tim.o(i.TIM_ClearFlag), (6 bytes).
  944. Removing stm32f10x_tim.o(i.TIM_ClearITPendingBit), (6 bytes).
  945. Removing stm32f10x_tim.o(i.TIM_ClearOC1Ref), (18 bytes).
  946. Removing stm32f10x_tim.o(i.TIM_ClearOC2Ref), (24 bytes).
  947. Removing stm32f10x_tim.o(i.TIM_ClearOC3Ref), (18 bytes).
  948. Removing stm32f10x_tim.o(i.TIM_ClearOC4Ref), (24 bytes).
  949. Removing stm32f10x_tim.o(i.TIM_Cmd), (24 bytes).
  950. Removing stm32f10x_tim.o(i.TIM_CounterModeConfig), (18 bytes).
  951. Removing stm32f10x_tim.o(i.TIM_CtrlPWMOutputs), (30 bytes).
  952. Removing stm32f10x_tim.o(i.TIM_DMACmd), (18 bytes).
  953. Removing stm32f10x_tim.o(i.TIM_DMAConfig), (10 bytes).
  954. Removing stm32f10x_tim.o(i.TIM_DeInit), (488 bytes).
  955. Removing stm32f10x_tim.o(i.TIM_ETRClockMode1Config), (54 bytes).
  956. Removing stm32f10x_tim.o(i.TIM_ETRClockMode2Config), (32 bytes).
  957. Removing stm32f10x_tim.o(i.TIM_ETRConfig), (28 bytes).
  958. Removing stm32f10x_tim.o(i.TIM_EncoderInterfaceConfig), (66 bytes).
  959. Removing stm32f10x_tim.o(i.TIM_ForcedOC1Config), (18 bytes).
  960. Removing stm32f10x_tim.o(i.TIM_ForcedOC2Config), (26 bytes).
  961. Removing stm32f10x_tim.o(i.TIM_ForcedOC3Config), (18 bytes).
  962. Removing stm32f10x_tim.o(i.TIM_ForcedOC4Config), (26 bytes).
  963. Removing stm32f10x_tim.o(i.TIM_GenerateEvent), (4 bytes).
  964. Removing stm32f10x_tim.o(i.TIM_GetCapture1), (6 bytes).
  965. Removing stm32f10x_tim.o(i.TIM_GetCapture2), (6 bytes).
  966. Removing stm32f10x_tim.o(i.TIM_GetCapture3), (6 bytes).
  967. Removing stm32f10x_tim.o(i.TIM_GetCapture4), (8 bytes).
  968. Removing stm32f10x_tim.o(i.TIM_GetCounter), (6 bytes).
  969. Removing stm32f10x_tim.o(i.TIM_GetFlagStatus), (18 bytes).
  970. Removing stm32f10x_tim.o(i.TIM_GetITStatus), (34 bytes).
  971. Removing stm32f10x_tim.o(i.TIM_GetPrescaler), (6 bytes).
  972. Removing stm32f10x_tim.o(i.TIM_ICInit), (172 bytes).
  973. Removing stm32f10x_tim.o(i.TIM_ICStructInit), (18 bytes).
  974. Removing stm32f10x_tim.o(i.TIM_ITConfig), (18 bytes).
  975. Removing stm32f10x_tim.o(i.TIM_ITRxExternalClockConfig), (24 bytes).
  976. Removing stm32f10x_tim.o(i.TIM_InternalClockConfig), (12 bytes).
  977. Removing stm32f10x_tim.o(i.TIM_OC1FastConfig), (18 bytes).
  978. Removing stm32f10x_tim.o(i.TIM_OC1Init), (152 bytes).
  979. Removing stm32f10x_tim.o(i.TIM_OC1NPolarityConfig), (18 bytes).
  980. Removing stm32f10x_tim.o(i.TIM_OC1PolarityConfig), (18 bytes).
  981. Removing stm32f10x_tim.o(i.TIM_OC1PreloadConfig), (18 bytes).
  982. Removing stm32f10x_tim.o(i.TIM_OC2FastConfig), (26 bytes).
  983. Removing stm32f10x_tim.o(i.TIM_OC2Init), (164 bytes).
  984. Removing stm32f10x_tim.o(i.TIM_OC2NPolarityConfig), (26 bytes).
  985. Removing stm32f10x_tim.o(i.TIM_OC2PolarityConfig), (26 bytes).
  986. Removing stm32f10x_tim.o(i.TIM_OC2PreloadConfig), (26 bytes).
  987. Removing stm32f10x_tim.o(i.TIM_OC3FastConfig), (18 bytes).
  988. Removing stm32f10x_tim.o(i.TIM_OC3Init), (160 bytes).
  989. Removing stm32f10x_tim.o(i.TIM_OC3NPolarityConfig), (26 bytes).
  990. Removing stm32f10x_tim.o(i.TIM_OC3PolarityConfig), (26 bytes).
  991. Removing stm32f10x_tim.o(i.TIM_OC3PreloadConfig), (18 bytes).
  992. Removing stm32f10x_tim.o(i.TIM_OC4FastConfig), (26 bytes).
  993. Removing stm32f10x_tim.o(i.TIM_OC4Init), (124 bytes).
  994. Removing stm32f10x_tim.o(i.TIM_OC4PolarityConfig), (26 bytes).
  995. Removing stm32f10x_tim.o(i.TIM_OC4PreloadConfig), (26 bytes).
  996. Removing stm32f10x_tim.o(i.TIM_OCStructInit), (20 bytes).
  997. Removing stm32f10x_tim.o(i.TIM_PWMIConfig), (124 bytes).
  998. Removing stm32f10x_tim.o(i.TIM_PrescalerConfig), (6 bytes).
  999. Removing stm32f10x_tim.o(i.TIM_SelectCCDMA), (24 bytes).
  1000. Removing stm32f10x_tim.o(i.TIM_SelectCOM), (24 bytes).
  1001. Removing stm32f10x_tim.o(i.TIM_SelectHallSensor), (24 bytes).
  1002. Removing stm32f10x_tim.o(i.TIM_SelectInputTrigger), (18 bytes).
  1003. Removing stm32f10x_tim.o(i.TIM_SelectMasterSlaveMode), (18 bytes).
  1004. Removing stm32f10x_tim.o(i.TIM_SelectOCxM), (82 bytes).
  1005. Removing stm32f10x_tim.o(i.TIM_SelectOnePulseMode), (18 bytes).
  1006. Removing stm32f10x_tim.o(i.TIM_SelectOutputTrigger), (18 bytes).
  1007. Removing stm32f10x_tim.o(i.TIM_SelectSlaveMode), (18 bytes).
  1008. Removing stm32f10x_tim.o(i.TIM_SetAutoreload), (4 bytes).
  1009. Removing stm32f10x_tim.o(i.TIM_SetClockDivision), (18 bytes).
  1010. Removing stm32f10x_tim.o(i.TIM_SetCompare1), (4 bytes).
  1011. Removing stm32f10x_tim.o(i.TIM_SetCompare2), (4 bytes).
  1012. Removing stm32f10x_tim.o(i.TIM_SetCompare3), (4 bytes).
  1013. Removing stm32f10x_tim.o(i.TIM_SetCompare4), (6 bytes).
  1014. Removing stm32f10x_tim.o(i.TIM_SetCounter), (4 bytes).
  1015. Removing stm32f10x_tim.o(i.TIM_SetIC1Prescaler), (18 bytes).
  1016. Removing stm32f10x_tim.o(i.TIM_SetIC2Prescaler), (26 bytes).
  1017. Removing stm32f10x_tim.o(i.TIM_SetIC3Prescaler), (18 bytes).
  1018. Removing stm32f10x_tim.o(i.TIM_SetIC4Prescaler), (26 bytes).
  1019. Removing stm32f10x_tim.o(i.TIM_TIxExternalClockConfig), (62 bytes).
  1020. Removing stm32f10x_tim.o(i.TIM_TimeBaseInit), (164 bytes).
  1021. Removing stm32f10x_tim.o(i.TIM_TimeBaseStructInit), (18 bytes).
  1022. Removing stm32f10x_tim.o(i.TIM_UpdateDisableConfig), (24 bytes).
  1023. Removing stm32f10x_tim.o(i.TIM_UpdateRequestConfig), (24 bytes).
  1024. Removing stm32f10x_usart.o(i.USART_ClearITPendingBit), (30 bytes).
  1025. Removing stm32f10x_usart.o(i.USART_ClockInit), (34 bytes).
  1026. Removing stm32f10x_usart.o(i.USART_ClockStructInit), (12 bytes).
  1027. Removing stm32f10x_usart.o(i.USART_DeInit), (156 bytes).
  1028. Removing stm32f10x_usart.o(i.USART_HalfDuplexCmd), (24 bytes).
  1029. Removing stm32f10x_usart.o(i.USART_IrDACmd), (24 bytes).
  1030. Removing stm32f10x_usart.o(i.USART_IrDAConfig), (18 bytes).
  1031. Removing stm32f10x_usart.o(i.USART_LINBreakDetectLengthConfig), (18 bytes).
  1032. Removing stm32f10x_usart.o(i.USART_LINCmd), (24 bytes).
  1033. Removing stm32f10x_usart.o(i.USART_OneBitMethodCmd), (24 bytes).
  1034. Removing stm32f10x_usart.o(i.USART_OverSampling8Cmd), (22 bytes).
  1035. Removing stm32f10x_usart.o(i.USART_ReceiveData), (10 bytes).
  1036. Removing stm32f10x_usart.o(i.USART_ReceiverWakeUpCmd), (24 bytes).
  1037. Removing stm32f10x_usart.o(i.USART_SendBreak), (10 bytes).
  1038. Removing stm32f10x_usart.o(i.USART_SetAddress), (18 bytes).
  1039. Removing stm32f10x_usart.o(i.USART_SetGuardTime), (16 bytes).
  1040. Removing stm32f10x_usart.o(i.USART_SetPrescaler), (16 bytes).
  1041. Removing stm32f10x_usart.o(i.USART_SmartCardCmd), (24 bytes).
  1042. Removing stm32f10x_usart.o(i.USART_SmartCardNACKCmd), (24 bytes).
  1043. Removing stm32f10x_usart.o(i.USART_StructInit), (24 bytes).
  1044. Removing stm32f10x_usart.o(i.USART_WakeUpConfig), (18 bytes).
  1045. Removing stm32f10x_wwdg.o(i.WWDG_ClearFlag), (12 bytes).
  1046. Removing stm32f10x_wwdg.o(i.WWDG_DeInit), (22 bytes).
  1047. Removing stm32f10x_wwdg.o(i.WWDG_Enable), (16 bytes).
  1048. Removing stm32f10x_wwdg.o(i.WWDG_EnableIT), (12 bytes).
  1049. Removing stm32f10x_wwdg.o(i.WWDG_GetFlagStatus), (12 bytes).
  1050. Removing stm32f10x_wwdg.o(i.WWDG_SetCounter), (16 bytes).
  1051. Removing stm32f10x_wwdg.o(i.WWDG_SetPrescaler), (24 bytes).
  1052. Removing stm32f10x_wwdg.o(i.WWDG_SetWindowValue), (40 bytes).
  1053. Removing core_cm3.o(.emb_text), (32 bytes).
  1054. Removing system_stm32f10x.o(i.SystemCoreClockUpdate), (172 bytes).
  1055. Removing startup_stm32f10x_hd.o(HEAP), (512 bytes).
  1056. Removing dadd.o(.text), (334 bytes).
  1057. Removing dmul.o(.text), (228 bytes).
  1058. Removing ddiv.o(.text), (222 bytes).
  1059. Removing dfixul.o(.text), (48 bytes).
  1060. Removing cdrcmple.o(.text), (40 bytes).
  1061. Removing depilogue.o(.text), (190 bytes).
  1062. 472 unused section(s) (total 21170 bytes) removed from the image.
  1063. ==============================================================================
  1064. Image Symbol Table
  1065. Local Symbols
  1066. Symbol Name Value Ov Type Size Object(Section)
  1067. ../clib/microlib/division.c 0x00000000 Number 0 uldiv.o ABSOLUTE
  1068. ../clib/microlib/division.c 0x00000000 Number 0 uidiv.o ABSOLUTE
  1069. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9a.o ABSOLUTE
  1070. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7b.o ABSOLUTE
  1071. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8a.o ABSOLUTE
  1072. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry9b.o ABSOLUTE
  1073. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10a.o ABSOLUTE
  1074. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry10b.o ABSOLUTE
  1075. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11a.o ABSOLUTE
  1076. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry11b.o ABSOLUTE
  1077. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry8b.o ABSOLUTE
  1078. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry.o ABSOLUTE
  1079. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry7a.o ABSOLUTE
  1080. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry5.o ABSOLUTE
  1081. ../clib/microlib/init/entry.s 0x00000000 Number 0 entry2.o ABSOLUTE
  1082. ../clib/microlib/longlong.c 0x00000000 Number 0 llsshr.o ABSOLUTE
  1083. ../clib/microlib/longlong.c 0x00000000 Number 0 llushr.o ABSOLUTE
  1084. ../clib/microlib/longlong.c 0x00000000 Number 0 llshl.o ABSOLUTE
  1085. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfa.o ABSOLUTE
  1086. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf8.o ABSOLUTE
  1087. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf7.o ABSOLUTE
  1088. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf6.o ABSOLUTE
  1089. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf5.o ABSOLUTE
  1090. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf1.o ABSOLUTE
  1091. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf3.o ABSOLUTE
  1092. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf2.o ABSOLUTE
  1093. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf0.o ABSOLUTE
  1094. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printfb.o ABSOLUTE
  1095. ../clib/microlib/printf/printf.c 0x00000000 Number 0 printf4.o ABSOLUTE
  1096. ../clib/microlib/printf/stubs.s 0x00000000 Number 0 stubs.o ABSOLUTE
  1097. ../clib/microlib/stdio/streams.c 0x00000000 Number 0 stdout.o ABSOLUTE
  1098. ../clib/microlib/string/memcmp.c 0x00000000 Number 0 memcmp.o ABSOLUTE
  1099. ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpya.o ABSOLUTE
  1100. ../clib/microlib/string/memcpy.c 0x00000000 Number 0 memcpyb.o ABSOLUTE
  1101. ../clib/microlib/string/memset.c 0x00000000 Number 0 memseta.o ABSOLUTE
  1102. ../clib/microlib/string/strcat.c 0x00000000 Number 0 strcat.o ABSOLUTE
  1103. ../clib/microlib/string/strcmp.c 0x00000000 Number 0 strcmp.o ABSOLUTE
  1104. ../clib/microlib/string/strcpy.c 0x00000000 Number 0 strcpy.o ABSOLUTE
  1105. ../clib/microlib/stubs.s 0x00000000 Number 0 iusefp.o ABSOLUTE
  1106. ../fplib/microlib/fpadd.c 0x00000000 Number 0 dadd.o ABSOLUTE
  1107. ../fplib/microlib/fpdiv.c 0x00000000 Number 0 ddiv.o ABSOLUTE
  1108. ../fplib/microlib/fpepilogue.c 0x00000000 Number 0 depilogue.o ABSOLUTE
  1109. ../fplib/microlib/fpfix.c 0x00000000 Number 0 dfixul.o ABSOLUTE
  1110. ../fplib/microlib/fpmul.c 0x00000000 Number 0 dmul.o ABSOLUTE
  1111. ..\Libraries\CMSIS\CM3\CoreSupport\core_cm3.c 0x00000000 Number 0 core_cm3.o ABSOLUTE
  1112. ..\Libraries\CMSIS\CM3\DeviceSupport\ST\STM32F10x\startup\arm\startup_stm32f10x_hd.s 0x00000000 Number 0 startup_stm32f10x_hd.o ABSOLUTE
  1113. ..\Libraries\STM32F10x_StdPeriph_Driver\src\misc.c 0x00000000 Number 0 misc.o ABSOLUTE
  1114. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_adc.c 0x00000000 Number 0 stm32f10x_adc.o ABSOLUTE
  1115. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_bkp.c 0x00000000 Number 0 stm32f10x_bkp.o ABSOLUTE
  1116. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_can.c 0x00000000 Number 0 stm32f10x_can.o ABSOLUTE
  1117. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_cec.c 0x00000000 Number 0 stm32f10x_cec.o ABSOLUTE
  1118. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_crc.c 0x00000000 Number 0 stm32f10x_crc.o ABSOLUTE
  1119. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dac.c 0x00000000 Number 0 stm32f10x_dac.o ABSOLUTE
  1120. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dbgmcu.c 0x00000000 Number 0 stm32f10x_dbgmcu.o ABSOLUTE
  1121. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_dma.c 0x00000000 Number 0 stm32f10x_dma.o ABSOLUTE
  1122. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_exti.c 0x00000000 Number 0 stm32f10x_exti.o ABSOLUTE
  1123. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_flash.c 0x00000000 Number 0 stm32f10x_flash.o ABSOLUTE
  1124. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_fsmc.c 0x00000000 Number 0 stm32f10x_fsmc.o ABSOLUTE
  1125. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_gpio.c 0x00000000 Number 0 stm32f10x_gpio.o ABSOLUTE
  1126. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_i2c.c 0x00000000 Number 0 stm32f10x_i2c.o ABSOLUTE
  1127. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_iwdg.c 0x00000000 Number 0 stm32f10x_iwdg.o ABSOLUTE
  1128. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_pwr.c 0x00000000 Number 0 stm32f10x_pwr.o ABSOLUTE
  1129. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rcc.c 0x00000000 Number 0 stm32f10x_rcc.o ABSOLUTE
  1130. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_rtc.c 0x00000000 Number 0 stm32f10x_rtc.o ABSOLUTE
  1131. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_sdio.c 0x00000000 Number 0 stm32f10x_sdio.o ABSOLUTE
  1132. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_spi.c 0x00000000 Number 0 stm32f10x_spi.o ABSOLUTE
  1133. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_tim.c 0x00000000 Number 0 stm32f10x_tim.o ABSOLUTE
  1134. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_usart.c 0x00000000 Number 0 stm32f10x_usart.o ABSOLUTE
  1135. ..\Libraries\STM32F10x_StdPeriph_Driver\src\stm32f10x_wwdg.c 0x00000000 Number 0 stm32f10x_wwdg.o ABSOLUTE
  1136. ..\USER\CopyApp2Mcu.c 0x00000000 Number 0 copyapp2mcu.o ABSOLUTE
  1137. ..\USER\IAP.c 0x00000000 Number 0 iap.o ABSOLUTE
  1138. ..\USER\Msg.c 0x00000000 Number 0 msg.o ABSOLUTE
  1139. ..\USER\MsgQueue.c 0x00000000 Number 0 msgqueue.o ABSOLUTE
  1140. ..\USER\Serial.c 0x00000000 Number 0 serial.o ABSOLUTE
  1141. ..\USER\WatchDog.c 0x00000000 Number 0 watchdog.o ABSOLUTE
  1142. ..\USER\crc.c 0x00000000 Number 0 crc.o ABSOLUTE
  1143. ..\USER\delay.c 0x00000000 Number 0 delay.o ABSOLUTE
  1144. ..\USER\flash.c 0x00000000 Number 0 flash.o ABSOLUTE
  1145. ..\USER\id.c 0x00000000 Number 0 id.o ABSOLUTE
  1146. ..\USER\main.c 0x00000000 Number 0 main.o ABSOLUTE
  1147. ..\USER\md5.c 0x00000000 Number 0 md5.o ABSOLUTE
  1148. ..\USER\sFlash\W25Q64.c 0x00000000 Number 0 w25q64.o ABSOLUTE
  1149. ..\USER\stm32f10x_it.c 0x00000000 Number 0 stm32f10x_it.o ABSOLUTE
  1150. ..\USER\system_stm32f10x.c 0x00000000 Number 0 system_stm32f10x.o ABSOLUTE
  1151. ..\\Libraries\\CMSIS\\CM3\\CoreSupport\\core_cm3.c 0x00000000 Number 0 core_cm3.o ABSOLUTE
  1152. ..\\USER\\IAP.c 0x00000000 Number 0 iap.o ABSOLUTE
  1153. cdrcmple.s 0x00000000 Number 0 cdrcmple.o ABSOLUTE
  1154. dc.s 0x00000000 Number 0 dc.o ABSOLUTE
  1155. handlers.s 0x00000000 Number 0 handlers.o ABSOLUTE
  1156. init.s 0x00000000 Number 0 init.o ABSOLUTE
  1157. RESET 0x08000000 Section 304 startup_stm32f10x_hd.o(RESET)
  1158. .ARM.Collect$$$$00000000 0x08000130 Section 0 entry.o(.ARM.Collect$$$$00000000)
  1159. .ARM.Collect$$$$00000001 0x08000130 Section 4 entry2.o(.ARM.Collect$$$$00000001)
  1160. .ARM.Collect$$$$00000004 0x08000134 Section 4 entry5.o(.ARM.Collect$$$$00000004)
  1161. .ARM.Collect$$$$00000008 0x08000138 Section 0 entry7b.o(.ARM.Collect$$$$00000008)
  1162. .ARM.Collect$$$$0000000A 0x08000138 Section 0 entry8b.o(.ARM.Collect$$$$0000000A)
  1163. .ARM.Collect$$$$0000000B 0x08000138 Section 8 entry9a.o(.ARM.Collect$$$$0000000B)
  1164. .ARM.Collect$$$$0000000D 0x08000140 Section 0 entry10a.o(.ARM.Collect$$$$0000000D)
  1165. .ARM.Collect$$$$0000000F 0x08000140 Section 0 entry11a.o(.ARM.Collect$$$$0000000F)
  1166. .ARM.Collect$$$$00002712 0x08000140 Section 4 entry2.o(.ARM.Collect$$$$00002712)
  1167. __lit__00000000 0x08000140 Data 4 entry2.o(.ARM.Collect$$$$00002712)
  1168. .emb_text 0x08000144 Section 6 iap.o(.emb_text)
  1169. .text 0x0800014c Section 36 startup_stm32f10x_hd.o(.text)
  1170. .text 0x08000170 Section 0 memcpya.o(.text)
  1171. .text 0x08000194 Section 0 memseta.o(.text)
  1172. .text 0x080001b8 Section 0 strcat.o(.text)
  1173. .text 0x080001d0 Section 0 strcmp.o(.text)
  1174. .text 0x080001ec Section 0 memcmp.o(.text)
  1175. .text 0x08000206 Section 0 strcpy.o(.text)
  1176. .text 0x08000218 Section 0 uldiv.o(.text)
  1177. .text 0x0800027c Section 36 init.o(.text)
  1178. .text 0x080002a0 Section 0 llshl.o(.text)
  1179. .text 0x080002be Section 0 llushr.o(.text)
  1180. i.BusFault_Handler 0x080002de Section 0 stm32f10x_it.o(i.BusFault_Handler)
  1181. i.CheckExFlashAppMD5 0x080002e2 Section 0 copyapp2mcu.o(i.CheckExFlashAppMD5)
  1182. i.CopyApp2Mcu 0x08000360 Section 0 copyapp2mcu.o(i.CopyApp2Mcu)
  1183. i.DMA1_Channel2_IRQHandler 0x08000442 Section 0 stm32f10x_it.o(i.DMA1_Channel2_IRQHandler)
  1184. i.DMA1_Channel4_IRQHandler 0x08000444 Section 0 stm32f10x_it.o(i.DMA1_Channel4_IRQHandler)
  1185. i.DMA_Cmd 0x08000446 Section 0 stm32f10x_dma.o(i.DMA_Cmd)
  1186. i.DMA_DeInit 0x08000460 Section 0 stm32f10x_dma.o(i.DMA_DeInit)
  1187. i.DMA_ITConfig 0x080005ac Section 0 stm32f10x_dma.o(i.DMA_ITConfig)
  1188. i.DMA_Init 0x080005be Section 0 stm32f10x_dma.o(i.DMA_Init)
  1189. i.DebugMon_Handler 0x080005fa Section 0 stm32f10x_it.o(i.DebugMon_Handler)
  1190. i.DelayTick 0x080005fc Section 0 delay.o(i.DelayTick)
  1191. i.DelayUs 0x08000626 Section 0 w25q64.o(i.DelayUs)
  1192. i.ExtWatchDogInit 0x08000648 Section 0 watchdog.o(i.ExtWatchDogInit)
  1193. i.FLASH_ErasePage 0x08000674 Section 0 stm32f10x_flash.o(i.FLASH_ErasePage)
  1194. i.FLASH_GetBank1Status 0x080006c0 Section 0 stm32f10x_flash.o(i.FLASH_GetBank1Status)
  1195. i.FLASH_Lock 0x080006f4 Section 0 stm32f10x_flash.o(i.FLASH_Lock)
  1196. i.FLASH_ProgramHalfWord 0x08000708 Section 0 stm32f10x_flash.o(i.FLASH_ProgramHalfWord)
  1197. i.FLASH_Unlock 0x08000748 Section 0 stm32f10x_flash.o(i.FLASH_Unlock)
  1198. i.FLASH_WaitForLastOperation 0x08000760 Section 0 stm32f10x_flash.o(i.FLASH_WaitForLastOperation)
  1199. i.GPIO_Init 0x08000786 Section 0 stm32f10x_gpio.o(i.GPIO_Init)
  1200. i.GPIO_ReadOutputDataBit 0x08000898 Section 0 stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit)
  1201. i.GPIO_ResetBits 0x080008aa Section 0 stm32f10x_gpio.o(i.GPIO_ResetBits)
  1202. i.GPIO_SetBits 0x080008ae Section 0 stm32f10x_gpio.o(i.GPIO_SetBits)
  1203. i.GPIO_WriteBit 0x080008b2 Section 0 stm32f10x_gpio.o(i.GPIO_WriteBit)
  1204. i.GetRandBySTM32ID 0x080008bc Section 0 id.o(i.GetRandBySTM32ID)
  1205. i.GetSTM32ID 0x080008e4 Section 0 id.o(i.GetSTM32ID)
  1206. i.HardFault_Handler 0x08000904 Section 0 stm32f10x_it.o(i.HardFault_Handler)
  1207. i.IapCheckFileMD5 0x08000944 Section 0 iap.o(i.IapCheckFileMD5)
  1208. i.IapGetUpdateData 0x08000a38 Section 0 iap.o(i.IapGetUpdateData)
  1209. i.IapGetUpdateVersion 0x08000a64 Section 0 iap.o(i.IapGetUpdateVersion)
  1210. i.IapRecvMsgHandle 0x08000a88 Section 0 iap.o(i.IapRecvMsgHandle)
  1211. i.IapTrace 0x08000d14 Section 0 serial.o(i.IapTrace)
  1212. i.IapWriteFileData 0x08000d70 Section 0 iap.o(i.IapWriteFileData)
  1213. i.MD5Final 0x08000d9c Section 0 md5.o(i.MD5Final)
  1214. i.MD5Init 0x08000e6c Section 0 md5.o(i.MD5Init)
  1215. i.MD5Update 0x08000e90 Section 0 md5.o(i.MD5Update)
  1216. i.MakePcTaDataReq 0x08000f3c Section 0 iap.o(i.MakePcTaDataReq)
  1217. i.MakePcTaVersionReq 0x08000fac Section 0 iap.o(i.MakePcTaVersionReq)
  1218. i.MemManage_Handler 0x0800100c Section 0 stm32f10x_it.o(i.MemManage_Handler)
  1219. i.MsgDataBufferInit 0x08001010 Section 0 msgqueue.o(i.MsgDataBufferInit)
  1220. i.MsgQueueInit 0x08001044 Section 0 msgqueue.o(i.MsgQueueInit)
  1221. i.NMI_Handler 0x08001068 Section 0 stm32f10x_it.o(i.NMI_Handler)
  1222. i.NVIC_Init 0x0800106c Section 0 misc.o(i.NVIC_Init)
  1223. i.NVIC_PriorityGroupConfig 0x080010e0 Section 0 misc.o(i.NVIC_PriorityGroupConfig)
  1224. i.NewTask 0x080010f4 Section 0 msg.o(i.NewTask)
  1225. i.RCC_AHBPeriphClockCmd 0x08001114 Section 0 stm32f10x_rcc.o(i.RCC_AHBPeriphClockCmd)
  1226. i.RCC_APB2PeriphClockCmd 0x08001134 Section 0 stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd)
  1227. i.RCC_GetClocksFreq 0x08001154 Section 0 stm32f10x_rcc.o(i.RCC_GetClocksFreq)
  1228. i.ReadFlashData 0x08001230 Section 0 flash.o(i.ReadFlashData)
  1229. i.ReadProductParaFromFlash 0x08001260 Section 0 main.o(i.ReadProductParaFromFlash)
  1230. i.SPI_Cmd 0x0800127c Section 0 stm32f10x_spi.o(i.SPI_Cmd)
  1231. i.SPI_I2S_GetFlagStatus 0x08001294 Section 0 stm32f10x_spi.o(i.SPI_I2S_GetFlagStatus)
  1232. i.SPI_I2S_ReceiveData 0x080012a6 Section 0 stm32f10x_spi.o(i.SPI_I2S_ReceiveData)
  1233. i.SPI_I2S_SendData 0x080012ac Section 0 stm32f10x_spi.o(i.SPI_I2S_SendData)
  1234. i.SPI_Init 0x080012b0 Section 0 stm32f10x_spi.o(i.SPI_Init)
  1235. i.SPIx_ReadWriteByte 0x080012ec Section 0 w25q64.o(i.SPIx_ReadWriteByte)
  1236. i.STMFLASH_Read 0x08001324 Section 0 flash.o(i.STMFLASH_Read)
  1237. i.STMFLASH_ReadHalfWord 0x08001346 Section 0 flash.o(i.STMFLASH_ReadHalfWord)
  1238. i.SVC_Handler 0x0800134c Section 0 stm32f10x_it.o(i.SVC_Handler)
  1239. i.SetSysClock 0x0800134e Section 0 system_stm32f10x.o(i.SetSysClock)
  1240. SetSysClock 0x0800134f Thumb Code 8 system_stm32f10x.o(i.SetSysClock)
  1241. i.SetSysClockTo24 0x08001358 Section 0 system_stm32f10x.o(i.SetSysClockTo24)
  1242. SetSysClockTo24 0x08001359 Thumb Code 204 system_stm32f10x.o(i.SetSysClockTo24)
  1243. i.SlwStrCmp 0x0800142c Section 0 msg.o(i.SlwStrCmp)
  1244. i.StartMsg 0x08001454 Section 0 msg.o(i.StartMsg)
  1245. i.SysTick_Handler 0x080015ec Section 0 stm32f10x_it.o(i.SysTick_Handler)
  1246. i.SystemInit 0x0800169c Section 0 system_stm32f10x.o(i.SystemInit)
  1247. i.Tick500Msg 0x080016fc Section 0 msg.o(i.Tick500Msg)
  1248. i.Transform 0x080017e0 Section 0 md5.o(i.Transform)
  1249. Transform 0x080017e1 Thumb Code 1856 md5.o(i.Transform)
  1250. i.UART1RxTxISRHandler 0x08001f88 Section 0 serial.o(i.UART1RxTxISRHandler)
  1251. i.USART1_IRQHandler 0x08002004 Section 0 stm32f10x_it.o(i.USART1_IRQHandler)
  1252. i.USART_ClearFlag 0x0800200c Section 0 stm32f10x_usart.o(i.USART_ClearFlag)
  1253. i.USART_Cmd 0x0800201e Section 0 stm32f10x_usart.o(i.USART_Cmd)
  1254. i.USART_DMACmd 0x08002036 Section 0 stm32f10x_usart.o(i.USART_DMACmd)
  1255. i.USART_GetFlagStatus 0x08002048 Section 0 stm32f10x_usart.o(i.USART_GetFlagStatus)
  1256. i.USART_GetITStatus 0x08002062 Section 0 stm32f10x_usart.o(i.USART_GetITStatus)
  1257. i.USART_ITConfig 0x080020b6 Section 0 stm32f10x_usart.o(i.USART_ITConfig)
  1258. i.USART_Init 0x08002100 Section 0 stm32f10x_usart.o(i.USART_Init)
  1259. i.USART_SendData 0x080021d8 Section 0 stm32f10x_usart.o(i.USART_SendData)
  1260. i.Uart1DMAInit 0x080021e0 Section 0 serial.o(i.Uart1DMAInit)
  1261. i.Uart1Init 0x080022ac Section 0 serial.o(i.Uart1Init)
  1262. i.Uart1Msg 0x080023bc Section 0 msg.o(i.Uart1Msg)
  1263. i.Uart1Send 0x08002478 Section 0 serial.o(i.Uart1Send)
  1264. i.UsageFault_Handler 0x080024bc Section 0 stm32f10x_it.o(i.UsageFault_Handler)
  1265. i.W25Q64_Init 0x080024c0 Section 0 w25q64.o(i.W25Q64_Init)
  1266. i.W25Q64_PortInit 0x08002538 Section 0 w25q64.o(i.W25Q64_PortInit)
  1267. i.WriteData 0x080025b8 Section 0 flash.o(i.WriteData)
  1268. i.WritePageData 0x0800265c Section 0 flash.o(i.WritePageData)
  1269. i.__0printf$8 0x080026e4 Section 0 printf8.o(i.__0printf$8)
  1270. i.__0sprintf$8 0x08002704 Section 0 printf8.o(i.__0sprintf$8)
  1271. i.__scatterload_copy 0x0800272c Section 14 handlers.o(i.__scatterload_copy)
  1272. i.__scatterload_null 0x0800273a Section 2 handlers.o(i.__scatterload_null)
  1273. i.__scatterload_zeroinit 0x0800273c Section 14 handlers.o(i.__scatterload_zeroinit)
  1274. i._printf_core 0x0800274c Section 0 printf8.o(i._printf_core)
  1275. _printf_core 0x0800274d Thumb Code 988 printf8.o(i._printf_core)
  1276. i._printf_post_padding 0x08002b54 Section 0 printf8.o(i._printf_post_padding)
  1277. _printf_post_padding 0x08002b55 Thumb Code 38 printf8.o(i._printf_post_padding)
  1278. i._printf_pre_padding 0x08002b7a Section 0 printf8.o(i._printf_pre_padding)
  1279. _printf_pre_padding 0x08002b7b Thumb Code 48 printf8.o(i._printf_pre_padding)
  1280. i._sputc 0x08002baa Section 0 printf8.o(i._sputc)
  1281. _sputc 0x08002bab Thumb Code 10 printf8.o(i._sputc)
  1282. i.crc16_calc 0x08002bb4 Section 0 crc.o(i.crc16_calc)
  1283. i.crc16_update 0x08002bd8 Section 0 crc.o(i.crc16_update)
  1284. i.fputc 0x08002bf0 Section 0 serial.o(i.fputc)
  1285. i.iap_jump_app_s 0x08002c14 Section 0 iap.o(i.iap_jump_app_s)
  1286. i.iap_load_app 0x08002cf0 Section 0 iap.o(i.iap_load_app)
  1287. i.main 0x08002d0c Section 0 main.o(i.main)
  1288. i.sFlash_Read 0x08002e50 Section 0 w25q64.o(i.sFlash_Read)
  1289. i.sFlash_ReadID 0x08002eac Section 0 w25q64.o(i.sFlash_ReadID)
  1290. i.sFlash_Write_Enable 0x08002efc Section 0 w25q64.o(i.sFlash_Write_Enable)
  1291. .constdata 0x08002f1c Section 64 md5.o(.constdata)
  1292. PADDING 0x08002f1c Data 64 md5.o(.constdata)
  1293. .constdata 0x08002f5c Section 512 crc.o(.constdata)
  1294. gm_crc16_table 0x08002f5c Data 512 crc.o(.constdata)
  1295. .data 0x20000000 Section 18 stm32f10x_it.o(.data)
  1296. siSecCt 0x20000008 Data 4 stm32f10x_it.o(.data)
  1297. ExFlashCt 0x2000000c Data 4 stm32f10x_it.o(.data)
  1298. .data 0x20000014 Section 25 msg.o(.data)
  1299. .data 0x20000030 Section 28 iap.o(.data)
  1300. .data 0x2000004c Section 6 msgqueue.o(.data)
  1301. .data 0x20000052 Section 2 w25q64.o(.data)
  1302. sFlashProtectMode 0x20000052 Data 1 w25q64.o(.data)
  1303. .data 0x20000054 Section 20 stm32f10x_rcc.o(.data)
  1304. APBAHBPrescTable 0x20000054 Data 16 stm32f10x_rcc.o(.data)
  1305. ADCPrescTable 0x20000064 Data 4 stm32f10x_rcc.o(.data)
  1306. .data 0x20000068 Section 20 system_stm32f10x.o(.data)
  1307. .data 0x2000007c Section 4 stdout.o(.data)
  1308. .bss 0x20000080 Section 1161 iap.o(.bss)
  1309. FileMD5 0x20000080 Data 16 iap.o(.bss)
  1310. .bss 0x20000509 Section 1176 serial.o(.bss)
  1311. .bss 0x200009a2 Section 1024 flash.o(.bss)
  1312. .bss 0x20000da2 Section 4142 msgqueue.o(.bss)
  1313. STACK 0x20001dd0 Section 1024 startup_stm32f10x_hd.o(STACK)
  1314. Global Symbols
  1315. Symbol Name Value Ov Type Size Object(Section)
  1316. 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
  1317. __ARM_use_no_argv 0x00000000 Number 0 main.o ABSOLUTE
  1318. _printf_a 0x00000000 Number 0 stubs.o ABSOLUTE
  1319. _printf_c 0x00000000 Number 0 stubs.o ABSOLUTE
  1320. _printf_charcount 0x00000000 Number 0 stubs.o ABSOLUTE
  1321. _printf_d 0x00000000 Number 0 stubs.o ABSOLUTE
  1322. _printf_e 0x00000000 Number 0 stubs.o ABSOLUTE
  1323. _printf_f 0x00000000 Number 0 stubs.o ABSOLUTE
  1324. _printf_flags 0x00000000 Number 0 stubs.o ABSOLUTE
  1325. _printf_fp_dec 0x00000000 Number 0 stubs.o ABSOLUTE
  1326. _printf_fp_hex 0x00000000 Number 0 stubs.o ABSOLUTE
  1327. _printf_g 0x00000000 Number 0 stubs.o ABSOLUTE
  1328. _printf_i 0x00000000 Number 0 stubs.o ABSOLUTE
  1329. _printf_int_dec 0x00000000 Number 0 stubs.o ABSOLUTE
  1330. _printf_l 0x00000000 Number 0 stubs.o ABSOLUTE
  1331. _printf_lc 0x00000000 Number 0 stubs.o ABSOLUTE
  1332. _printf_ll 0x00000000 Number 0 stubs.o ABSOLUTE
  1333. _printf_lld 0x00000000 Number 0 stubs.o ABSOLUTE
  1334. _printf_lli 0x00000000 Number 0 stubs.o ABSOLUTE
  1335. _printf_llo 0x00000000 Number 0 stubs.o ABSOLUTE
  1336. _printf_llu 0x00000000 Number 0 stubs.o ABSOLUTE
  1337. _printf_llx 0x00000000 Number 0 stubs.o ABSOLUTE
  1338. _printf_longlong_dec 0x00000000 Number 0 stubs.o ABSOLUTE
  1339. _printf_longlong_hex 0x00000000 Number 0 stubs.o ABSOLUTE
  1340. _printf_longlong_oct 0x00000000 Number 0 stubs.o ABSOLUTE
  1341. _printf_ls 0x00000000 Number 0 stubs.o ABSOLUTE
  1342. _printf_mbtowc 0x00000000 Number 0 stubs.o ABSOLUTE
  1343. _printf_n 0x00000000 Number 0 stubs.o ABSOLUTE
  1344. _printf_o 0x00000000 Number 0 stubs.o ABSOLUTE
  1345. _printf_p 0x00000000 Number 0 stubs.o ABSOLUTE
  1346. _printf_percent 0x00000000 Number 0 stubs.o ABSOLUTE
  1347. _printf_pre_padding 0x00000000 Number 0 stubs.o ABSOLUTE
  1348. _printf_return_value 0x00000000 Number 0 stubs.o ABSOLUTE
  1349. _printf_s 0x00000000 Number 0 stubs.o ABSOLUTE
  1350. _printf_sizespec 0x00000000 Number 0 stubs.o ABSOLUTE
  1351. _printf_str 0x00000000 Number 0 stubs.o ABSOLUTE
  1352. _printf_truncate_signed 0x00000000 Number 0 stubs.o ABSOLUTE
  1353. _printf_truncate_unsigned 0x00000000 Number 0 stubs.o ABSOLUTE
  1354. _printf_u 0x00000000 Number 0 stubs.o ABSOLUTE
  1355. _printf_wc 0x00000000 Number 0 stubs.o ABSOLUTE
  1356. _printf_wctomb 0x00000000 Number 0 stubs.o ABSOLUTE
  1357. _printf_widthprec 0x00000000 Number 0 stubs.o ABSOLUTE
  1358. _printf_x 0x00000000 Number 0 stubs.o ABSOLUTE
  1359. __cpp_initialize__aeabi_ - Undefined Weak Reference
  1360. __cxa_finalize - Undefined Weak Reference
  1361. __decompress - Undefined Weak Reference
  1362. _clock_init - Undefined Weak Reference
  1363. _microlib_exit - Undefined Weak Reference
  1364. __Vectors_Size 0x00000130 Number 0 startup_stm32f10x_hd.o ABSOLUTE
  1365. __Vectors 0x08000000 Data 4 startup_stm32f10x_hd.o(RESET)
  1366. __Vectors_End 0x08000130 Data 0 startup_stm32f10x_hd.o(RESET)
  1367. __main 0x08000131 Thumb Code 0 entry.o(.ARM.Collect$$$$00000000)
  1368. _main_stk 0x08000131 Thumb Code 0 entry2.o(.ARM.Collect$$$$00000001)
  1369. _main_scatterload 0x08000135 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004)
  1370. __main_after_scatterload 0x08000139 Thumb Code 0 entry5.o(.ARM.Collect$$$$00000004)
  1371. _main_clock 0x08000139 Thumb Code 0 entry7b.o(.ARM.Collect$$$$00000008)
  1372. _main_cpp_init 0x08000139 Thumb Code 0 entry8b.o(.ARM.Collect$$$$0000000A)
  1373. _main_init 0x08000139 Thumb Code 0 entry9a.o(.ARM.Collect$$$$0000000B)
  1374. __rt_final_cpp 0x08000141 Thumb Code 0 entry10a.o(.ARM.Collect$$$$0000000D)
  1375. __rt_final_exit 0x08000141 Thumb Code 0 entry11a.o(.ARM.Collect$$$$0000000F)
  1376. MSR_MSP 0x08000145 Thumb Code 6 iap.o(.emb_text)
  1377. Reset_Handler 0x0800014d Thumb Code 8 startup_stm32f10x_hd.o(.text)
  1378. PendSV_Handler 0x08000163 Thumb Code 2 startup_stm32f10x_hd.o(.text)
  1379. ADC1_2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1380. ADC3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1381. CAN1_RX1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1382. CAN1_SCE_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1383. DMA1_Channel1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1384. DMA1_Channel3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1385. DMA1_Channel5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1386. DMA1_Channel6_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1387. DMA1_Channel7_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1388. DMA2_Channel1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1389. DMA2_Channel2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1390. DMA2_Channel3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1391. DMA2_Channel4_5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1392. EXTI0_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1393. EXTI15_10_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1394. EXTI1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1395. EXTI2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1396. EXTI3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1397. EXTI4_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1398. EXTI9_5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1399. FLASH_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1400. FSMC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1401. I2C1_ER_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1402. I2C1_EV_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1403. I2C2_ER_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1404. I2C2_EV_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1405. PVD_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1406. RCC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1407. RTCAlarm_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1408. RTC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1409. SDIO_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1410. SPI1_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1411. SPI2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1412. SPI3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1413. TAMPER_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1414. TIM1_BRK_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1415. TIM1_CC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1416. TIM1_TRG_COM_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1417. TIM1_UP_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1418. TIM2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1419. TIM3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1420. TIM4_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1421. TIM5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1422. TIM6_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1423. TIM7_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1424. TIM8_BRK_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1425. TIM8_CC_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1426. TIM8_TRG_COM_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1427. TIM8_UP_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1428. UART4_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1429. UART5_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1430. USART2_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1431. USART3_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1432. USBWakeUp_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1433. USB_HP_CAN1_TX_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1434. USB_LP_CAN1_RX0_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1435. WWDG_IRQHandler 0x08000167 Thumb Code 0 startup_stm32f10x_hd.o(.text)
  1436. __aeabi_memcpy 0x08000171 Thumb Code 36 memcpya.o(.text)
  1437. __aeabi_memcpy4 0x08000171 Thumb Code 0 memcpya.o(.text)
  1438. __aeabi_memcpy8 0x08000171 Thumb Code 0 memcpya.o(.text)
  1439. __aeabi_memset 0x08000195 Thumb Code 14 memseta.o(.text)
  1440. __aeabi_memset4 0x08000195 Thumb Code 0 memseta.o(.text)
  1441. __aeabi_memset8 0x08000195 Thumb Code 0 memseta.o(.text)
  1442. __aeabi_memclr 0x080001a3 Thumb Code 4 memseta.o(.text)
  1443. __aeabi_memclr4 0x080001a3 Thumb Code 0 memseta.o(.text)
  1444. __aeabi_memclr8 0x080001a3 Thumb Code 0 memseta.o(.text)
  1445. _memset$wrapper 0x080001a7 Thumb Code 18 memseta.o(.text)
  1446. strcat 0x080001b9 Thumb Code 24 strcat.o(.text)
  1447. strcmp 0x080001d1 Thumb Code 28 strcmp.o(.text)
  1448. memcmp 0x080001ed Thumb Code 26 memcmp.o(.text)
  1449. strcpy 0x08000207 Thumb Code 18 strcpy.o(.text)
  1450. __aeabi_uldivmod 0x08000219 Thumb Code 98 uldiv.o(.text)
  1451. __scatterload 0x0800027d Thumb Code 28 init.o(.text)
  1452. __scatterload_rt2 0x0800027d Thumb Code 0 init.o(.text)
  1453. __aeabi_llsl 0x080002a1 Thumb Code 30 llshl.o(.text)
  1454. _ll_shift_l 0x080002a1 Thumb Code 0 llshl.o(.text)
  1455. __aeabi_llsr 0x080002bf Thumb Code 32 llushr.o(.text)
  1456. _ll_ushift_r 0x080002bf Thumb Code 0 llushr.o(.text)
  1457. BusFault_Handler 0x080002df Thumb Code 4 stm32f10x_it.o(i.BusFault_Handler)
  1458. CheckExFlashAppMD5 0x080002e3 Thumb Code 126 copyapp2mcu.o(i.CheckExFlashAppMD5)
  1459. CopyApp2Mcu 0x08000361 Thumb Code 226 copyapp2mcu.o(i.CopyApp2Mcu)
  1460. DMA1_Channel2_IRQHandler 0x08000443 Thumb Code 2 stm32f10x_it.o(i.DMA1_Channel2_IRQHandler)
  1461. DMA1_Channel4_IRQHandler 0x08000445 Thumb Code 2 stm32f10x_it.o(i.DMA1_Channel4_IRQHandler)
  1462. DMA_Cmd 0x08000447 Thumb Code 24 stm32f10x_dma.o(i.DMA_Cmd)
  1463. DMA_DeInit 0x08000461 Thumb Code 324 stm32f10x_dma.o(i.DMA_DeInit)
  1464. DMA_ITConfig 0x080005ad Thumb Code 18 stm32f10x_dma.o(i.DMA_ITConfig)
  1465. DMA_Init 0x080005bf Thumb Code 60 stm32f10x_dma.o(i.DMA_Init)
  1466. DebugMon_Handler 0x080005fb Thumb Code 2 stm32f10x_it.o(i.DebugMon_Handler)
  1467. DelayTick 0x080005fd Thumb Code 42 delay.o(i.DelayTick)
  1468. DelayUs 0x08000627 Thumb Code 32 w25q64.o(i.DelayUs)
  1469. ExtWatchDogInit 0x08000649 Thumb Code 40 watchdog.o(i.ExtWatchDogInit)
  1470. FLASH_ErasePage 0x08000675 Thumb Code 72 stm32f10x_flash.o(i.FLASH_ErasePage)
  1471. FLASH_GetBank1Status 0x080006c1 Thumb Code 48 stm32f10x_flash.o(i.FLASH_GetBank1Status)
  1472. FLASH_Lock 0x080006f5 Thumb Code 14 stm32f10x_flash.o(i.FLASH_Lock)
  1473. FLASH_ProgramHalfWord 0x08000709 Thumb Code 60 stm32f10x_flash.o(i.FLASH_ProgramHalfWord)
  1474. FLASH_Unlock 0x08000749 Thumb Code 12 stm32f10x_flash.o(i.FLASH_Unlock)
  1475. FLASH_WaitForLastOperation 0x08000761 Thumb Code 38 stm32f10x_flash.o(i.FLASH_WaitForLastOperation)
  1476. GPIO_Init 0x08000787 Thumb Code 274 stm32f10x_gpio.o(i.GPIO_Init)
  1477. GPIO_ReadOutputDataBit 0x08000899 Thumb Code 18 stm32f10x_gpio.o(i.GPIO_ReadOutputDataBit)
  1478. GPIO_ResetBits 0x080008ab Thumb Code 4 stm32f10x_gpio.o(i.GPIO_ResetBits)
  1479. GPIO_SetBits 0x080008af Thumb Code 4 stm32f10x_gpio.o(i.GPIO_SetBits)
  1480. GPIO_WriteBit 0x080008b3 Thumb Code 10 stm32f10x_gpio.o(i.GPIO_WriteBit)
  1481. GetRandBySTM32ID 0x080008bd Thumb Code 40 id.o(i.GetRandBySTM32ID)
  1482. GetSTM32ID 0x080008e5 Thumb Code 26 id.o(i.GetSTM32ID)
  1483. HardFault_Handler 0x08000905 Thumb Code 40 stm32f10x_it.o(i.HardFault_Handler)
  1484. IapCheckFileMD5 0x08000945 Thumb Code 206 iap.o(i.IapCheckFileMD5)
  1485. IapGetUpdateData 0x08000a39 Thumb Code 36 iap.o(i.IapGetUpdateData)
  1486. IapGetUpdateVersion 0x08000a65 Thumb Code 28 iap.o(i.IapGetUpdateVersion)
  1487. IapRecvMsgHandle 0x08000a89 Thumb Code 508 iap.o(i.IapRecvMsgHandle)
  1488. IapTrace 0x08000d15 Thumb Code 76 serial.o(i.IapTrace)
  1489. IapWriteFileData 0x08000d71 Thumb Code 40 iap.o(i.IapWriteFileData)
  1490. MD5Final 0x08000d9d Thumb Code 202 md5.o(i.MD5Final)
  1491. MD5Init 0x08000e6d Thumb Code 26 md5.o(i.MD5Init)
  1492. MD5Update 0x08000e91 Thumb Code 172 md5.o(i.MD5Update)
  1493. MakePcTaDataReq 0x08000f3d Thumb Code 90 iap.o(i.MakePcTaDataReq)
  1494. MakePcTaVersionReq 0x08000fad Thumb Code 80 iap.o(i.MakePcTaVersionReq)
  1495. MemManage_Handler 0x0800100d Thumb Code 4 stm32f10x_it.o(i.MemManage_Handler)
  1496. MsgDataBufferInit 0x08001011 Thumb Code 34 msgqueue.o(i.MsgDataBufferInit)
  1497. MsgQueueInit 0x08001045 Thumb Code 36 msgqueue.o(i.MsgQueueInit)
  1498. NMI_Handler 0x08001069 Thumb Code 2 stm32f10x_it.o(i.NMI_Handler)
  1499. NVIC_Init 0x0800106d Thumb Code 102 misc.o(i.NVIC_Init)
  1500. NVIC_PriorityGroupConfig 0x080010e1 Thumb Code 10 misc.o(i.NVIC_PriorityGroupConfig)
  1501. NewTask 0x080010f5 Thumb Code 20 msg.o(i.NewTask)
  1502. RCC_AHBPeriphClockCmd 0x08001115 Thumb Code 26 stm32f10x_rcc.o(i.RCC_AHBPeriphClockCmd)
  1503. RCC_APB2PeriphClockCmd 0x08001135 Thumb Code 26 stm32f10x_rcc.o(i.RCC_APB2PeriphClockCmd)
  1504. RCC_GetClocksFreq 0x08001155 Thumb Code 192 stm32f10x_rcc.o(i.RCC_GetClocksFreq)
  1505. ReadFlashData 0x08001231 Thumb Code 48 flash.o(i.ReadFlashData)
  1506. ReadProductParaFromFlash 0x08001261 Thumb Code 20 main.o(i.ReadProductParaFromFlash)
  1507. SPI_Cmd 0x0800127d Thumb Code 24 stm32f10x_spi.o(i.SPI_Cmd)
  1508. SPI_I2S_GetFlagStatus 0x08001295 Thumb Code 18 stm32f10x_spi.o(i.SPI_I2S_GetFlagStatus)
  1509. SPI_I2S_ReceiveData 0x080012a7 Thumb Code 6 stm32f10x_spi.o(i.SPI_I2S_ReceiveData)
  1510. SPI_I2S_SendData 0x080012ad Thumb Code 4 stm32f10x_spi.o(i.SPI_I2S_SendData)
  1511. SPI_Init 0x080012b1 Thumb Code 60 stm32f10x_spi.o(i.SPI_Init)
  1512. SPIx_ReadWriteByte 0x080012ed Thumb Code 50 w25q64.o(i.SPIx_ReadWriteByte)
  1513. STMFLASH_Read 0x08001325 Thumb Code 34 flash.o(i.STMFLASH_Read)
  1514. STMFLASH_ReadHalfWord 0x08001347 Thumb Code 6 flash.o(i.STMFLASH_ReadHalfWord)
  1515. SVC_Handler 0x0800134d Thumb Code 2 stm32f10x_it.o(i.SVC_Handler)
  1516. SlwStrCmp 0x0800142d Thumb Code 38 msg.o(i.SlwStrCmp)
  1517. StartMsg 0x08001455 Thumb Code 228 msg.o(i.StartMsg)
  1518. SysTick_Handler 0x080015ed Thumb Code 90 stm32f10x_it.o(i.SysTick_Handler)
  1519. SystemInit 0x0800169d Thumb Code 78 system_stm32f10x.o(i.SystemInit)
  1520. Tick500Msg 0x080016fd Thumb Code 176 msg.o(i.Tick500Msg)
  1521. UART1RxTxISRHandler 0x08001f89 Thumb Code 98 serial.o(i.UART1RxTxISRHandler)
  1522. USART1_IRQHandler 0x08002005 Thumb Code 8 stm32f10x_it.o(i.USART1_IRQHandler)
  1523. USART_ClearFlag 0x0800200d Thumb Code 18 stm32f10x_usart.o(i.USART_ClearFlag)
  1524. USART_Cmd 0x0800201f Thumb Code 24 stm32f10x_usart.o(i.USART_Cmd)
  1525. USART_DMACmd 0x08002037 Thumb Code 18 stm32f10x_usart.o(i.USART_DMACmd)
  1526. USART_GetFlagStatus 0x08002049 Thumb Code 26 stm32f10x_usart.o(i.USART_GetFlagStatus)
  1527. USART_GetITStatus 0x08002063 Thumb Code 84 stm32f10x_usart.o(i.USART_GetITStatus)
  1528. USART_ITConfig 0x080020b7 Thumb Code 74 stm32f10x_usart.o(i.USART_ITConfig)
  1529. USART_Init 0x08002101 Thumb Code 210 stm32f10x_usart.o(i.USART_Init)
  1530. USART_SendData 0x080021d9 Thumb Code 8 stm32f10x_usart.o(i.USART_SendData)
  1531. Uart1DMAInit 0x080021e1 Thumb Code 186 serial.o(i.Uart1DMAInit)
  1532. Uart1Init 0x080022ad Thumb Code 262 serial.o(i.Uart1Init)
  1533. Uart1Msg 0x080023bd Thumb Code 106 msg.o(i.Uart1Msg)
  1534. Uart1Send 0x08002479 Thumb Code 58 serial.o(i.Uart1Send)
  1535. UsageFault_Handler 0x080024bd Thumb Code 4 stm32f10x_it.o(i.UsageFault_Handler)
  1536. W25Q64_Init 0x080024c1 Thumb Code 112 w25q64.o(i.W25Q64_Init)
  1537. W25Q64_PortInit 0x08002539 Thumb Code 118 w25q64.o(i.W25Q64_PortInit)
  1538. WriteData 0x080025b9 Thumb Code 154 flash.o(i.WriteData)
  1539. WritePageData 0x0800265d Thumb Code 126 flash.o(i.WritePageData)
  1540. __0printf$8 0x080026e5 Thumb Code 22 printf8.o(i.__0printf$8)
  1541. __1printf$8 0x080026e5 Thumb Code 0 printf8.o(i.__0printf$8)
  1542. __2printf 0x080026e5 Thumb Code 0 printf8.o(i.__0printf$8)
  1543. __0sprintf$8 0x08002705 Thumb Code 34 printf8.o(i.__0sprintf$8)
  1544. __1sprintf$8 0x08002705 Thumb Code 0 printf8.o(i.__0sprintf$8)
  1545. __2sprintf 0x08002705 Thumb Code 0 printf8.o(i.__0sprintf$8)
  1546. __scatterload_copy 0x0800272d Thumb Code 14 handlers.o(i.__scatterload_copy)
  1547. __scatterload_null 0x0800273b Thumb Code 2 handlers.o(i.__scatterload_null)
  1548. __scatterload_zeroinit 0x0800273d Thumb Code 14 handlers.o(i.__scatterload_zeroinit)
  1549. crc16_calc 0x08002bb5 Thumb Code 34 crc.o(i.crc16_calc)
  1550. crc16_update 0x08002bd9 Thumb Code 20 crc.o(i.crc16_update)
  1551. fputc 0x08002bf1 Thumb Code 32 serial.o(i.fputc)
  1552. iap_jump_app_s 0x08002c15 Thumb Code 174 iap.o(i.iap_jump_app_s)
  1553. iap_load_app 0x08002cf1 Thumb Code 24 iap.o(i.iap_load_app)
  1554. main 0x08002d0d Thumb Code 272 main.o(i.main)
  1555. sFlash_Read 0x08002e51 Thumb Code 86 w25q64.o(i.sFlash_Read)
  1556. sFlash_ReadID 0x08002ead Thumb Code 74 w25q64.o(i.sFlash_ReadID)
  1557. sFlash_Write_Enable 0x08002efd Thumb Code 26 w25q64.o(i.sFlash_Write_Enable)
  1558. Region$$Table$$Base 0x0800315c Number 0 anon$$obj.o(Region$$Table)
  1559. Region$$Table$$Limit 0x0800317c Number 0 anon$$obj.o(Region$$Table)
  1560. g_HFH 0x20000000 Data 8 stm32f10x_it.o(.data)
  1561. g_HFHT 0x20000010 Data 2 stm32f10x_it.o(.data)
  1562. g_ulTickCt 0x20000014 Data 4 msg.o(.data)
  1563. g_ulTick500Ct 0x20000018 Data 4 msg.o(.data)
  1564. g_iPcTaCt 0x2000001c Data 4 msg.o(.data)
  1565. g_iPcTaFlag 0x20000020 Data 4 msg.o(.data)
  1566. sutMsg 0x20000024 Data 7 msg.o(.data)
  1567. g_ucTask 0x2000002b Data 1 msg.o(.data)
  1568. g_ucLastTask 0x2000002c Data 1 msg.o(.data)
  1569. g_usTid 0x20000030 Data 2 iap.o(.data)
  1570. g_ulFileLen 0x20000034 Data 4 iap.o(.data)
  1571. g_ulDFileLen 0x20000038 Data 4 iap.o(.data)
  1572. g_ulOffset 0x2000003c Data 4 iap.o(.data)
  1573. g_ulLength 0x20000040 Data 4 iap.o(.data)
  1574. IapRxLen 0x20000044 Data 2 iap.o(.data)
  1575. jump2app 0x20000048 Data 4 iap.o(.data)
  1576. DataBufferLen 0x2000004c Data 2 msgqueue.o(.data)
  1577. DataBufferIn 0x2000004e Data 2 msgqueue.o(.data)
  1578. DataBufferOut 0x20000050 Data 2 msgqueue.o(.data)
  1579. ExFlashWatchDog 0x20000053 Data 1 w25q64.o(.data)
  1580. SystemCoreClock 0x20000068 Data 4 system_stm32f10x.o(.data)
  1581. AHBPrescTable 0x2000006c Data 16 system_stm32f10x.o(.data)
  1582. __stdout 0x2000007c Data 4 stdout.o(.data)
  1583. sutProductPara 0x20000090 Data 43 iap.o(.bss)
  1584. sutHeader 0x200000bb Data 26 iap.o(.bss)
  1585. IapRxBuf 0x200000d5 Data 1076 iap.o(.bss)
  1586. RxBuffer1 0x20000509 Data 1076 serial.o(.bss)
  1587. TxBuffer1 0x2000093d Data 100 serial.o(.bss)
  1588. STMFLASH_BUF 0x200009a2 Data 1024 flash.o(.bss)
  1589. DataBuffer 0x20000da2 Data 4096 msgqueue.o(.bss)
  1590. ModemMsgQueue 0x20001da2 Data 46 msgqueue.o(.bss)
  1591. __initial_sp 0x200021d0 Data 0 startup_stm32f10x_hd.o(STACK)
  1592. ==============================================================================
  1593. Memory Map of the image
  1594. Image Entry point : 0x08000131
  1595. Load Region LR_IROM1 (Base: 0x08000000, Size: 0x000031fc, Max: 0x00003c00, ABSOLUTE)
  1596. Execution Region ER_IROM1 (Base: 0x08000000, Size: 0x0000317c, Max: 0x00003c00, ABSOLUTE)
  1597. Base Addr Size Type Attr Idx E Section Name Object
  1598. 0x08000000 0x00000130 Data RO 3781 RESET startup_stm32f10x_hd.o
  1599. 0x08000130 0x00000000 Code RO 3786 * .ARM.Collect$$$$00000000 mc_w.l(entry.o)
  1600. 0x08000130 0x00000004 Code RO 4064 .ARM.Collect$$$$00000001 mc_w.l(entry2.o)
  1601. 0x08000134 0x00000004 Code RO 4067 .ARM.Collect$$$$00000004 mc_w.l(entry5.o)
  1602. 0x08000138 0x00000000 Code RO 4069 .ARM.Collect$$$$00000008 mc_w.l(entry7b.o)
  1603. 0x08000138 0x00000000 Code RO 4071 .ARM.Collect$$$$0000000A mc_w.l(entry8b.o)
  1604. 0x08000138 0x00000008 Code RO 4072 .ARM.Collect$$$$0000000B mc_w.l(entry9a.o)
  1605. 0x08000140 0x00000000 Code RO 4074 .ARM.Collect$$$$0000000D mc_w.l(entry10a.o)
  1606. 0x08000140 0x00000000 Code RO 4076 .ARM.Collect$$$$0000000F mc_w.l(entry11a.o)
  1607. 0x08000140 0x00000004 Code RO 4065 .ARM.Collect$$$$00002712 mc_w.l(entry2.o)
  1608. 0x08000144 0x00000006 Code RO 287 .emb_text iap.o
  1609. 0x0800014a 0x00000002 PAD
  1610. 0x0800014c 0x00000024 Code RO 3782 .text startup_stm32f10x_hd.o
  1611. 0x08000170 0x00000024 Code RO 3789 .text mc_w.l(memcpya.o)
  1612. 0x08000194 0x00000024 Code RO 3791 .text mc_w.l(memseta.o)
  1613. 0x080001b8 0x00000018 Code RO 3793 .text mc_w.l(strcat.o)
  1614. 0x080001d0 0x0000001c Code RO 3795 .text mc_w.l(strcmp.o)
  1615. 0x080001ec 0x0000001a Code RO 3797 .text mc_w.l(memcmp.o)
  1616. 0x08000206 0x00000012 Code RO 3799 .text mc_w.l(strcpy.o)
  1617. 0x08000218 0x00000062 Code RO 4081 .text mc_w.l(uldiv.o)
  1618. 0x0800027a 0x00000002 PAD
  1619. 0x0800027c 0x00000024 Code RO 4094 .text mc_w.l(init.o)
  1620. 0x080002a0 0x0000001e Code RO 4096 .text mc_w.l(llshl.o)
  1621. 0x080002be 0x00000020 Code RO 4098 .text mc_w.l(llushr.o)
  1622. 0x080002de 0x00000004 Code RO 135 i.BusFault_Handler stm32f10x_it.o
  1623. 0x080002e2 0x0000007e Code RO 750 i.CheckExFlashAppMD5 copyapp2mcu.o
  1624. 0x08000360 0x000000e2 Code RO 751 i.CopyApp2Mcu copyapp2mcu.o
  1625. 0x08000442 0x00000002 Code RO 136 i.DMA1_Channel2_IRQHandler stm32f10x_it.o
  1626. 0x08000444 0x00000002 Code RO 137 i.DMA1_Channel4_IRQHandler stm32f10x_it.o
  1627. 0x08000446 0x00000018 Code RO 1971 i.DMA_Cmd stm32f10x_dma.o
  1628. 0x0800045e 0x00000002 PAD
  1629. 0x08000460 0x0000014c Code RO 1972 i.DMA_DeInit stm32f10x_dma.o
  1630. 0x080005ac 0x00000012 Code RO 1976 i.DMA_ITConfig stm32f10x_dma.o
  1631. 0x080005be 0x0000003c Code RO 1977 i.DMA_Init stm32f10x_dma.o
  1632. 0x080005fa 0x00000002 Code RO 138 i.DebugMon_Handler stm32f10x_it.o
  1633. 0x080005fc 0x0000002a Code RO 481 i.DelayTick delay.o
  1634. 0x08000626 0x00000020 Code RO 612 i.DelayUs w25q64.o
  1635. 0x08000646 0x00000002 PAD
  1636. 0x08000648 0x0000002c Code RO 599 i.ExtWatchDogInit watchdog.o
  1637. 0x08000674 0x0000004c Code RO 809 i.FLASH_ErasePage stm32f10x_flash.o
  1638. 0x080006c0 0x00000034 Code RO 810 i.FLASH_GetBank1Status stm32f10x_flash.o
  1639. 0x080006f4 0x00000014 Code RO 819 i.FLASH_Lock stm32f10x_flash.o
  1640. 0x08000708 0x00000040 Code RO 822 i.FLASH_ProgramHalfWord stm32f10x_flash.o
  1641. 0x08000748 0x00000018 Code RO 827 i.FLASH_Unlock stm32f10x_flash.o
  1642. 0x08000760 0x00000026 Code RO 831 i.FLASH_WaitForLastOperation stm32f10x_flash.o
  1643. 0x08000786 0x00000112 Code RO 984 i.GPIO_Init stm32f10x_gpio.o
  1644. 0x08000898 0x00000012 Code RO 990 i.GPIO_ReadOutputDataBit stm32f10x_gpio.o
  1645. 0x080008aa 0x00000004 Code RO 991 i.GPIO_ResetBits stm32f10x_gpio.o
  1646. 0x080008ae 0x00000004 Code RO 992 i.GPIO_SetBits stm32f10x_gpio.o
  1647. 0x080008b2 0x0000000a Code RO 995 i.GPIO_WriteBit stm32f10x_gpio.o
  1648. 0x080008bc 0x00000028 Code RO 269 i.GetRandBySTM32ID id.o
  1649. 0x080008e4 0x00000020 Code RO 270 i.GetSTM32ID id.o
  1650. 0x08000904 0x00000040 Code RO 139 i.HardFault_Handler stm32f10x_it.o
  1651. 0x08000944 0x000000f4 Code RO 288 i.IapCheckFileMD5 iap.o
  1652. 0x08000a38 0x0000002c Code RO 289 i.IapGetUpdateData iap.o
  1653. 0x08000a64 0x00000024 Code RO 290 i.IapGetUpdateVersion iap.o
  1654. 0x08000a88 0x0000028c Code RO 291 i.IapRecvMsgHandle iap.o
  1655. 0x08000d14 0x0000005c Code RO 372 i.IapTrace serial.o
  1656. 0x08000d70 0x0000002c Code RO 292 i.IapWriteFileData iap.o
  1657. 0x08000d9c 0x000000d0 Code RO 430 i.MD5Final md5.o
  1658. 0x08000e6c 0x00000024 Code RO 431 i.MD5Init md5.o
  1659. 0x08000e90 0x000000ac Code RO 432 i.MD5Update md5.o
  1660. 0x08000f3c 0x00000070 Code RO 293 i.MakePcTaDataReq iap.o
  1661. 0x08000fac 0x00000060 Code RO 294 i.MakePcTaVersionReq iap.o
  1662. 0x0800100c 0x00000004 Code RO 140 i.MemManage_Handler stm32f10x_it.o
  1663. 0x08001010 0x00000034 Code RO 562 i.MsgDataBufferInit msgqueue.o
  1664. 0x08001044 0x00000024 Code RO 564 i.MsgQueueInit msgqueue.o
  1665. 0x08001068 0x00000002 Code RO 141 i.NMI_Handler stm32f10x_it.o
  1666. 0x0800106a 0x00000002 PAD
  1667. 0x0800106c 0x00000074 Code RO 768 i.NVIC_Init misc.o
  1668. 0x080010e0 0x00000014 Code RO 769 i.NVIC_PriorityGroupConfig misc.o
  1669. 0x080010f4 0x00000020 Code RO 221 i.NewTask msg.o
  1670. 0x08001114 0x00000020 Code RO 1093 i.RCC_AHBPeriphClockCmd stm32f10x_rcc.o
  1671. 0x08001134 0x00000020 Code RO 1096 i.RCC_APB2PeriphClockCmd stm32f10x_rcc.o
  1672. 0x08001154 0x000000dc Code RO 1104 i.RCC_GetClocksFreq stm32f10x_rcc.o
  1673. 0x08001230 0x00000030 Code RO 523 i.ReadFlashData flash.o
  1674. 0x08001260 0x0000001c Code RO 1 i.ReadProductParaFromFlash main.o
  1675. 0x0800127c 0x00000018 Code RO 2811 i.SPI_Cmd stm32f10x_spi.o
  1676. 0x08001294 0x00000012 Code RO 2819 i.SPI_I2S_GetFlagStatus stm32f10x_spi.o
  1677. 0x080012a6 0x00000006 Code RO 2822 i.SPI_I2S_ReceiveData stm32f10x_spi.o
  1678. 0x080012ac 0x00000004 Code RO 2823 i.SPI_I2S_SendData stm32f10x_spi.o
  1679. 0x080012b0 0x0000003c Code RO 2824 i.SPI_Init stm32f10x_spi.o
  1680. 0x080012ec 0x00000038 Code RO 613 i.SPIx_ReadWriteByte w25q64.o
  1681. 0x08001324 0x00000022 Code RO 524 i.STMFLASH_Read flash.o
  1682. 0x08001346 0x00000006 Code RO 525 i.STMFLASH_ReadHalfWord flash.o
  1683. 0x0800134c 0x00000002 Code RO 142 i.SVC_Handler stm32f10x_it.o
  1684. 0x0800134e 0x00000008 Code RO 3745 i.SetSysClock system_stm32f10x.o
  1685. 0x08001356 0x00000002 PAD
  1686. 0x08001358 0x000000d4 Code RO 3746 i.SetSysClockTo24 system_stm32f10x.o
  1687. 0x0800142c 0x00000026 Code RO 222 i.SlwStrCmp msg.o
  1688. 0x08001452 0x00000002 PAD
  1689. 0x08001454 0x00000198 Code RO 223 i.StartMsg msg.o
  1690. 0x080015ec 0x000000b0 Code RO 144 i.SysTick_Handler stm32f10x_it.o
  1691. 0x0800169c 0x00000060 Code RO 3748 i.SystemInit system_stm32f10x.o
  1692. 0x080016fc 0x000000e4 Code RO 224 i.Tick500Msg msg.o
  1693. 0x080017e0 0x000007a8 Code RO 433 i.Transform md5.o
  1694. 0x08001f88 0x0000007c Code RO 374 i.UART1RxTxISRHandler serial.o
  1695. 0x08002004 0x00000008 Code RO 145 i.USART1_IRQHandler stm32f10x_it.o
  1696. 0x0800200c 0x00000012 Code RO 3498 i.USART_ClearFlag stm32f10x_usart.o
  1697. 0x0800201e 0x00000018 Code RO 3502 i.USART_Cmd stm32f10x_usart.o
  1698. 0x08002036 0x00000012 Code RO 3503 i.USART_DMACmd stm32f10x_usart.o
  1699. 0x08002048 0x0000001a Code RO 3505 i.USART_GetFlagStatus stm32f10x_usart.o
  1700. 0x08002062 0x00000054 Code RO 3506 i.USART_GetITStatus stm32f10x_usart.o
  1701. 0x080020b6 0x0000004a Code RO 3508 i.USART_ITConfig stm32f10x_usart.o
  1702. 0x08002100 0x000000d8 Code RO 3509 i.USART_Init stm32f10x_usart.o
  1703. 0x080021d8 0x00000008 Code RO 3519 i.USART_SendData stm32f10x_usart.o
  1704. 0x080021e0 0x000000cc Code RO 375 i.Uart1DMAInit serial.o
  1705. 0x080022ac 0x00000110 Code RO 376 i.Uart1Init serial.o
  1706. 0x080023bc 0x000000bc Code RO 225 i.Uart1Msg msg.o
  1707. 0x08002478 0x00000044 Code RO 377 i.Uart1Send serial.o
  1708. 0x080024bc 0x00000004 Code RO 146 i.UsageFault_Handler stm32f10x_it.o
  1709. 0x080024c0 0x00000078 Code RO 614 i.W25Q64_Init w25q64.o
  1710. 0x08002538 0x00000080 Code RO 615 i.W25Q64_PortInit w25q64.o
  1711. 0x080025b8 0x000000a4 Code RO 526 i.WriteData flash.o
  1712. 0x0800265c 0x00000088 Code RO 527 i.WritePageData flash.o
  1713. 0x080026e4 0x00000020 Code RO 4010 i.__0printf$8 mc_w.l(printf8.o)
  1714. 0x08002704 0x00000028 Code RO 4012 i.__0sprintf$8 mc_w.l(printf8.o)
  1715. 0x0800272c 0x0000000e Code RO 4106 i.__scatterload_copy mc_w.l(handlers.o)
  1716. 0x0800273a 0x00000002 Code RO 4107 i.__scatterload_null mc_w.l(handlers.o)
  1717. 0x0800273c 0x0000000e Code RO 4108 i.__scatterload_zeroinit mc_w.l(handlers.o)
  1718. 0x0800274a 0x00000002 PAD
  1719. 0x0800274c 0x00000408 Code RO 4017 i._printf_core mc_w.l(printf8.o)
  1720. 0x08002b54 0x00000026 Code RO 4018 i._printf_post_padding mc_w.l(printf8.o)
  1721. 0x08002b7a 0x00000030 Code RO 4019 i._printf_pre_padding mc_w.l(printf8.o)
  1722. 0x08002baa 0x0000000a Code RO 4021 i._sputc mc_w.l(printf8.o)
  1723. 0x08002bb4 0x00000022 Code RO 461 i.crc16_calc crc.o
  1724. 0x08002bd6 0x00000002 PAD
  1725. 0x08002bd8 0x00000018 Code RO 462 i.crc16_update crc.o
  1726. 0x08002bf0 0x00000024 Code RO 378 i.fputc serial.o
  1727. 0x08002c14 0x000000dc Code RO 296 i.iap_jump_app_s iap.o
  1728. 0x08002cf0 0x0000001c Code RO 297 i.iap_load_app iap.o
  1729. 0x08002d0c 0x00000144 Code RO 2 i.main main.o
  1730. 0x08002e50 0x0000005c Code RO 621 i.sFlash_Read w25q64.o
  1731. 0x08002eac 0x00000050 Code RO 622 i.sFlash_ReadID w25q64.o
  1732. 0x08002efc 0x00000020 Code RO 628 i.sFlash_Write_Enable w25q64.o
  1733. 0x08002f1c 0x00000040 Data RO 434 .constdata md5.o
  1734. 0x08002f5c 0x00000200 Data RO 463 .constdata crc.o
  1735. 0x0800315c 0x00000020 Data RO 4104 Region$$Table anon$$obj.o
  1736. Execution Region RW_IRAM1 (Base: 0x20000000, Size: 0x000021d0, Max: 0x00004000, ABSOLUTE)
  1737. Base Addr Size Type Attr Idx E Section Name Object
  1738. 0x20000000 0x00000012 Data RW 147 .data stm32f10x_it.o
  1739. 0x20000012 0x00000002 PAD
  1740. 0x20000014 0x00000019 Data RW 226 .data msg.o
  1741. 0x2000002d 0x00000003 PAD
  1742. 0x20000030 0x0000001c Data RW 300 .data iap.o
  1743. 0x2000004c 0x00000006 Data RW 567 .data msgqueue.o
  1744. 0x20000052 0x00000002 Data RW 633 .data w25q64.o
  1745. 0x20000054 0x00000014 Data RW 1124 .data stm32f10x_rcc.o
  1746. 0x20000068 0x00000014 Data RW 3749 .data system_stm32f10x.o
  1747. 0x2000007c 0x00000004 Data RW 4078 .data mc_w.l(stdout.o)
  1748. 0x20000080 0x00000489 Zero RW 299 .bss iap.o
  1749. 0x20000509 0x00000498 Zero RW 379 .bss serial.o
  1750. 0x200009a1 0x00000001 PAD
  1751. 0x200009a2 0x00000400 Zero RW 528 .bss flash.o
  1752. 0x20000da2 0x0000102e Zero RW 566 .bss msgqueue.o
  1753. 0x20001dd0 0x00000400 Zero RW 3779 STACK startup_stm32f10x_hd.o
  1754. ==============================================================================
  1755. Image component sizes
  1756. Code (inc. data) RO Data RW Data ZI Data Debug Object Name
  1757. 352 0 0 0 0 2291 copyapp2mcu.o
  1758. 58 4 512 0 0 1356 crc.o
  1759. 42 0 0 0 0 468 delay.o
  1760. 388 20 0 0 1024 3643 flash.o
  1761. 1482 290 0 28 1161 8757 iap.o
  1762. 72 6 0 0 0 964 id.o
  1763. 352 60 0 0 0 263937 main.o
  1764. 2376 268 64 0 0 4033 md5.o
  1765. 136 24 0 0 0 1511 misc.o
  1766. 894 332 0 25 0 3537 msg.o
  1767. 88 18 0 6 4142 1887 msgqueue.o
  1768. 796 84 0 0 1176 14027 serial.o
  1769. 36 8 304 0 1024 840 startup_stm32f10x_hd.o
  1770. 434 8 0 0 0 3945 stm32f10x_dma.o
  1771. 274 30 0 0 0 3298 stm32f10x_flash.o
  1772. 310 0 0 0 0 4141 stm32f10x_gpio.o
  1773. 270 110 0 18 0 4770 stm32f10x_it.o
  1774. 284 40 0 20 0 4349 stm32f10x_rcc.o
  1775. 112 0 0 0 0 3742 stm32f10x_spi.o
  1776. 468 6 0 0 0 6606 stm32f10x_usart.o
  1777. 316 26 0 20 0 1913 system_stm32f10x.o
  1778. 540 42 0 2 0 5396 w25q64.o
  1779. 44 4 0 0 0 438 watchdog.o
  1780. ----------------------------------------------------------------------
  1781. 10138 1380 912 124 8528 345849 Object Totals
  1782. 0 0 32 0 0 0 (incl. Generated)
  1783. 14 0 0 5 1 0 (incl. Padding)
  1784. ----------------------------------------------------------------------
  1785. Code (inc. data) RO Data RW Data ZI Data Debug Library Member Name
  1786. 0 0 0 0 0 0 entry.o
  1787. 0 0 0 0 0 0 entry10a.o
  1788. 0 0 0 0 0 0 entry11a.o
  1789. 8 4 0 0 0 0 entry2.o
  1790. 4 0 0 0 0 0 entry5.o
  1791. 0 0 0 0 0 0 entry7b.o
  1792. 0 0 0 0 0 0 entry8b.o
  1793. 8 4 0 0 0 0 entry9a.o
  1794. 30 0 0 0 0 0 handlers.o
  1795. 36 8 0 0 0 68 init.o
  1796. 30 0 0 0 0 68 llshl.o
  1797. 32 0 0 0 0 68 llushr.o
  1798. 26 0 0 0 0 80 memcmp.o
  1799. 36 0 0 0 0 68 memcpya.o
  1800. 36 0 0 0 0 108 memseta.o
  1801. 1200 60 0 0 0 504 printf8.o
  1802. 0 0 0 4 0 0 stdout.o
  1803. 24 0 0 0 0 68 strcat.o
  1804. 28 0 0 0 0 76 strcmp.o
  1805. 18 0 0 0 0 68 strcpy.o
  1806. 98 0 0 0 0 92 uldiv.o
  1807. ----------------------------------------------------------------------
  1808. 1618 76 0 4 0 1268 Library Totals
  1809. 4 0 0 0 0 0 (incl. Padding)
  1810. ----------------------------------------------------------------------
  1811. Code (inc. data) RO Data RW Data ZI Data Debug Library Name
  1812. 1614 76 0 4 0 1268 mc_w.l
  1813. ----------------------------------------------------------------------
  1814. 1618 76 0 4 0 1268 Library Totals
  1815. ----------------------------------------------------------------------
  1816. ==============================================================================
  1817. Code (inc. data) RO Data RW Data ZI Data Debug
  1818. 11756 1456 912 128 8528 341553 Grand Totals
  1819. 11756 1456 912 128 8528 341553 ELF Image Totals
  1820. 11756 1456 912 128 0 0 ROM Totals
  1821. ==============================================================================
  1822. Total RO Size (Code + RO Data) 12668 ( 12.37kB)
  1823. Total RW Size (RW Data + ZI Data) 8656 ( 8.45kB)
  1824. Total ROM Size (Code + RO Data + RW Data) 12796 ( 12.50kB)
  1825. ==============================================================================