You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2054 lines
72 KiB

4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
  1. ARM Macro Assembler Page 1
  2. 1 00000000 ;*******************************************************
  3. ************************
  4. 2 00000000 ;* File Name : startup_stm32f429xx.s
  5. 3 00000000 ;* Author : MCD Application Team
  6. 4 00000000 ;* Description : STM32F429x devices vector table
  7. for MDK-ARM toolchain.
  8. 5 00000000 ;* This module performs:
  9. 6 00000000 ;* - Set the initial SP
  10. 7 00000000 ;* - Set the initial PC == Reset_Ha
  11. ndler
  12. 8 00000000 ;* - Set the vector table entries w
  13. ith the exceptions ISR address
  14. 9 00000000 ;* - Branches to __main in the C li
  15. brary (which eventually
  16. 10 00000000 ;* calls main()).
  17. 11 00000000 ;* After Reset the CortexM4 process
  18. or is in Thread mode,
  19. 12 00000000 ;* priority is Privileged, and the
  20. Stack is set to Main.
  21. 13 00000000 ;*******************************************************
  22. *************************
  23. 14 00000000 ;* @attention
  24. 15 00000000 ;*
  25. 16 00000000 ;* <h2><center>&copy; Copyright (c) 2017 STMicroelectron
  26. ics.
  27. 17 00000000 ;* All rights reserved.</center></h2>
  28. 18 00000000 ;*
  29. 19 00000000 ;* This software component is licensed by ST under BSD 3
  30. -Clause license,
  31. 20 00000000 ;* the "License"; You may not use this file except in co
  32. mpliance with the
  33. 21 00000000 ;* License. You may obtain a copy of the License at:
  34. 22 00000000 ;* opensource.org/licenses/BSD-3-
  35. Clause
  36. 23 00000000 ;*
  37. 24 00000000 ;*******************************************************
  38. ************************
  39. 25 00000000 ;* <<< Use Configuration Wizard in Context Menu >>>
  40. 26 00000000 ;
  41. 27 00000000 ; Amount of memory (in bytes) allocated for Stack
  42. 28 00000000 ; Tailor this value to your application needs
  43. 29 00000000 ; <h> Stack Configuration
  44. 30 00000000 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
  45. 31 00000000 ; </h>
  46. 32 00000000
  47. 33 00000000 00001000
  48. Stack_Size
  49. EQU 0x1000
  50. 34 00000000
  51. 35 00000000 AREA STACK, NOINIT, READWRITE, ALIGN
  52. =3
  53. 36 00000000 Stack_Mem
  54. SPACE Stack_Size
  55. 37 00001000 __initial_sp
  56. 38 00001000
  57. 39 00001000
  58. 40 00001000 ; <h> Heap Configuration
  59. 41 00001000 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
  60. 42 00001000 ; </h>
  61. ARM Macro Assembler Page 2
  62. 43 00001000
  63. 44 00001000 00000000
  64. Heap_Size
  65. EQU 0x0
  66. 45 00001000
  67. 46 00001000 AREA HEAP, NOINIT, READWRITE, ALIGN=
  68. 3
  69. 47 00000000 __heap_base
  70. 48 00000000 Heap_Mem
  71. SPACE Heap_Size
  72. 49 00000000 __heap_limit
  73. 50 00000000
  74. 51 00000000 PRESERVE8
  75. 52 00000000 THUMB
  76. 53 00000000
  77. 54 00000000
  78. 55 00000000 ; Vector Table Mapped to Address 0 at Reset
  79. 56 00000000 AREA RESET, DATA, READONLY
  80. 57 00000000 EXPORT __Vectors
  81. 58 00000000 EXPORT __Vectors_End
  82. 59 00000000 EXPORT __Vectors_Size
  83. 60 00000000
  84. 61 00000000 00000000
  85. __Vectors
  86. DCD __initial_sp ; Top of Stack
  87. 62 00000004 00000000 DCD Reset_Handler ; Reset Handler
  88. 63 00000008 00000000 DCD NMI_Handler ; NMI Handler
  89. 64 0000000C 00000000 DCD HardFault_Handler ; Hard Fault
  90. Handler
  91. 65 00000010 00000000 DCD MemManage_Handler
  92. ; MPU Fault Handler
  93. 66 00000014 00000000 DCD BusFault_Handler
  94. ; Bus Fault Handler
  95. 67 00000018 00000000 DCD UsageFault_Handler ; Usage Faul
  96. t Handler
  97. 68 0000001C 00000000 DCD 0 ; Reserved
  98. 69 00000020 00000000 DCD 0 ; Reserved
  99. 70 00000024 00000000 DCD 0 ; Reserved
  100. 71 00000028 00000000 DCD 0 ; Reserved
  101. 72 0000002C 00000000 DCD SVC_Handler ; SVCall Handler
  102. 73 00000030 00000000 DCD DebugMon_Handler ; Debug Monito
  103. r Handler
  104. 74 00000034 00000000 DCD 0 ; Reserved
  105. 75 00000038 00000000 DCD PendSV_Handler ; PendSV Handler
  106. 76 0000003C 00000000 DCD SysTick_Handler
  107. ; SysTick Handler
  108. 77 00000040
  109. 78 00000040 ; External Interrupts
  110. 79 00000040 00000000 DCD WWDG_IRQHandler ; Window WatchD
  111. og
  112. 80 00000044 00000000 DCD PVD_IRQHandler ; PVD through EX
  113. TI Line detection
  114. ARM Macro Assembler Page 3
  115. 81 00000048 00000000 DCD TAMP_STAMP_IRQHandler ; Tamper
  116. and TimeStamps thro
  117. ugh the EXTI line
  118. 82 0000004C 00000000 DCD RTC_WKUP_IRQHandler ; RTC Wakeu
  119. p through the EXTI
  120. line
  121. 83 00000050 00000000 DCD FLASH_IRQHandler ; FLASH
  122. 84 00000054 00000000 DCD RCC_IRQHandler ; RCC
  123. 85 00000058 00000000 DCD EXTI0_IRQHandler ; EXTI Line0
  124. 86 0000005C 00000000 DCD EXTI1_IRQHandler ; EXTI Line1
  125. 87 00000060 00000000 DCD EXTI2_IRQHandler ; EXTI Line2
  126. 88 00000064 00000000 DCD EXTI3_IRQHandler ; EXTI Line3
  127. 89 00000068 00000000 DCD EXTI4_IRQHandler ; EXTI Line4
  128. 90 0000006C 00000000 DCD DMA1_Stream0_IRQHandler ; DMA1
  129. Stream 0
  130. 91 00000070 00000000 DCD DMA1_Stream1_IRQHandler ; DMA1
  131. Stream 1
  132. 92 00000074 00000000 DCD DMA1_Stream2_IRQHandler ; DMA1
  133. Stream 2
  134. 93 00000078 00000000 DCD DMA1_Stream3_IRQHandler ; DMA1
  135. Stream 3
  136. 94 0000007C 00000000 DCD DMA1_Stream4_IRQHandler ; DMA1
  137. Stream 4
  138. 95 00000080 00000000 DCD DMA1_Stream5_IRQHandler ; DMA1
  139. Stream 5
  140. 96 00000084 00000000 DCD DMA1_Stream6_IRQHandler ; DMA1
  141. ARM Macro Assembler Page 4
  142. Stream 6
  143. 97 00000088 00000000 DCD ADC_IRQHandler ; ADC1, ADC2 and
  144. ADC3s
  145. 98 0000008C 00000000 DCD CAN1_TX_IRQHandler ; CAN1 TX
  146. 99 00000090 00000000 DCD CAN1_RX0_IRQHandler ; CAN1 RX0
  147. 100 00000094 00000000 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
  148. 101 00000098 00000000 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
  149. 102 0000009C 00000000 DCD EXTI9_5_IRQHandler ; External L
  150. ine[9:5]s
  151. 103 000000A0 00000000 DCD TIM1_BRK_TIM9_IRQHandler ; TIM1
  152. Break and TIM9
  153. 104 000000A4 00000000 DCD TIM1_UP_TIM10_IRQHandler ; TIM1
  154. Update and TIM10
  155. 105 000000A8 00000000 DCD TIM1_TRG_COM_TIM11_IRQHandler ;
  156. TIM1 Trigger and C
  157. ommutation and TIM1
  158. 1
  159. 106 000000AC 00000000 DCD TIM1_CC_IRQHandler ; TIM1 Captu
  160. re Compare
  161. 107 000000B0 00000000 DCD TIM2_IRQHandler ; TIM2
  162. 108 000000B4 00000000 DCD TIM3_IRQHandler ; TIM3
  163. 109 000000B8 00000000 DCD TIM4_IRQHandler ; TIM4
  164. 110 000000BC 00000000 DCD I2C1_EV_IRQHandler ; I2C1 Event
  165. 111 000000C0 00000000 DCD I2C1_ER_IRQHandler ; I2C1 Error
  166. 112 000000C4 00000000 DCD I2C2_EV_IRQHandler ; I2C2 Event
  167. ARM Macro Assembler Page 5
  168. 113 000000C8 00000000 DCD I2C2_ER_IRQHandler ; I2C2 Error
  169. 114 000000CC 00000000 DCD SPI1_IRQHandler ; SPI1
  170. 115 000000D0 00000000 DCD SPI2_IRQHandler ; SPI2
  171. 116 000000D4 00000000 DCD USART1_IRQHandler ; USART1
  172. 117 000000D8 00000000 DCD USART2_IRQHandler ; USART2
  173. 118 000000DC 00000000 DCD USART3_IRQHandler ; USART3
  174. 119 000000E0 00000000 DCD EXTI15_10_IRQHandler ; External
  175. Line[15:10]s
  176. 120 000000E4 00000000 DCD RTC_Alarm_IRQHandler ; RTC Alar
  177. m (A and B) through
  178. EXTI Line
  179. 121 000000E8 00000000 DCD OTG_FS_WKUP_IRQHandler ; USB OT
  180. G FS Wakeup through
  181. EXTI line
  182. 122 000000EC 00000000 DCD TIM8_BRK_TIM12_IRQHandler ; TIM
  183. 8 Break and TIM12
  184. 123 000000F0 00000000 DCD TIM8_UP_TIM13_IRQHandler ; TIM8
  185. Update and TIM13
  186. 124 000000F4 00000000 DCD TIM8_TRG_COM_TIM14_IRQHandler ;
  187. TIM8 Trigger and C
  188. ommutation and TIM1
  189. 4
  190. 125 000000F8 00000000 DCD TIM8_CC_IRQHandler ; TIM8 Captu
  191. re Compare
  192. 126 000000FC 00000000 DCD DMA1_Stream7_IRQHandler ; DMA1
  193. Stream7
  194. 127 00000100 00000000 DCD FMC_IRQHandler ; FMC
  195. 128 00000104 00000000 DCD SDIO_IRQHandler ; SDIO
  196. 129 00000108 00000000 DCD TIM5_IRQHandler ; TIM5
  197. ARM Macro Assembler Page 6
  198. 130 0000010C 00000000 DCD SPI3_IRQHandler ; SPI3
  199. 131 00000110 00000000 DCD UART4_IRQHandler ; UART4
  200. 132 00000114 00000000 DCD UART5_IRQHandler ; UART5
  201. 133 00000118 00000000 DCD TIM6_DAC_IRQHandler ; TIM6 and
  202. DAC1&2 underrun err
  203. ors
  204. 134 0000011C 00000000 DCD TIM7_IRQHandler ; TIM7
  205. 135 00000120 00000000 DCD DMA2_Stream0_IRQHandler ; DMA2
  206. Stream 0
  207. 136 00000124 00000000 DCD DMA2_Stream1_IRQHandler ; DMA2
  208. Stream 1
  209. 137 00000128 00000000 DCD DMA2_Stream2_IRQHandler ; DMA2
  210. Stream 2
  211. 138 0000012C 00000000 DCD DMA2_Stream3_IRQHandler ; DMA2
  212. Stream 3
  213. 139 00000130 00000000 DCD DMA2_Stream4_IRQHandler ; DMA2
  214. Stream 4
  215. 140 00000134 00000000 DCD ETH_IRQHandler ; Ethernet
  216. 141 00000138 00000000 DCD ETH_WKUP_IRQHandler ; Ethernet
  217. Wakeup through EXTI
  218. line
  219. 142 0000013C 00000000 DCD CAN2_TX_IRQHandler ; CAN2 TX
  220. 143 00000140 00000000 DCD CAN2_RX0_IRQHandler ; CAN2 RX0
  221. 144 00000144 00000000 DCD CAN2_RX1_IRQHandler ; CAN2 RX1
  222. 145 00000148 00000000 DCD CAN2_SCE_IRQHandler ; CAN2 SCE
  223. ARM Macro Assembler Page 7
  224. 146 0000014C 00000000 DCD OTG_FS_IRQHandler ; USB OTG FS
  225. 147 00000150 00000000 DCD DMA2_Stream5_IRQHandler ; DMA2
  226. Stream 5
  227. 148 00000154 00000000 DCD DMA2_Stream6_IRQHandler ; DMA2
  228. Stream 6
  229. 149 00000158 00000000 DCD DMA2_Stream7_IRQHandler ; DMA2
  230. Stream 7
  231. 150 0000015C 00000000 DCD USART6_IRQHandler ; USART6
  232. 151 00000160 00000000 DCD I2C3_EV_IRQHandler ; I2C3 event
  233. 152 00000164 00000000 DCD I2C3_ER_IRQHandler ; I2C3 error
  234. 153 00000168 00000000 DCD OTG_HS_EP1_OUT_IRQHandler ; USB
  235. OTG HS End Point 1
  236. Out
  237. 154 0000016C 00000000 DCD OTG_HS_EP1_IN_IRQHandler ; USB
  238. OTG HS End Point 1
  239. In
  240. 155 00000170 00000000 DCD OTG_HS_WKUP_IRQHandler ; USB OT
  241. G HS Wakeup through
  242. EXTI
  243. 156 00000174 00000000 DCD OTG_HS_IRQHandler ; USB OTG HS
  244. 157 00000178 00000000 DCD DCMI_IRQHandler ; DCMI
  245. 158 0000017C 00000000 DCD 0 ; Reserved
  246. 159 00000180 00000000 DCD HASH_RNG_IRQHandler
  247. ; Hash and Rng
  248. 160 00000184 00000000 DCD FPU_IRQHandler ; FPU
  249. 161 00000188 00000000 DCD UART7_IRQHandler ; UART7
  250. 162 0000018C 00000000 DCD UART8_IRQHandler ; UART8
  251. 163 00000190 00000000 DCD SPI4_IRQHandler ; SPI4
  252. 164 00000194 00000000 DCD SPI5_IRQHandler ; SPI5
  253. 165 00000198 00000000 DCD SPI6_IRQHandler ; SPI6
  254. 166 0000019C 00000000 DCD SAI1_IRQHandler ; SAI1
  255. 167 000001A0 00000000 DCD LTDC_IRQHandler ; LTDC
  256. 168 000001A4 00000000 DCD LTDC_ER_IRQHandler ; LTDC error
  257. 169 000001A8 00000000 DCD DMA2D_IRQHandler ; DMA2D
  258. ARM Macro Assembler Page 8
  259. 170 000001AC
  260. 171 000001AC __Vectors_End
  261. 172 000001AC
  262. 173 000001AC 000001AC
  263. __Vectors_Size
  264. EQU __Vectors_End - __Vectors
  265. 174 000001AC
  266. 175 000001AC AREA |.text|, CODE, READONLY
  267. 176 00000000
  268. 177 00000000 ; Reset handler
  269. 178 00000000 Reset_Handler
  270. PROC
  271. 179 00000000 EXPORT Reset_Handler [WEAK
  272. ]
  273. 180 00000000 IMPORT SystemInit
  274. 181 00000000 IMPORT __main
  275. 182 00000000
  276. 183 00000000 4806 LDR R0, =SystemInit
  277. 184 00000002 4780 BLX R0
  278. 185 00000004 4806 LDR R0, =__main
  279. 186 00000006 4700 BX R0
  280. 187 00000008 ENDP
  281. 188 00000008
  282. 189 00000008 ; Dummy Exception Handlers (infinite loops which can be
  283. modified)
  284. 190 00000008
  285. 191 00000008 NMI_Handler
  286. PROC
  287. 192 00000008 EXPORT NMI_Handler [WEA
  288. K]
  289. 193 00000008 E7FE B .
  290. 194 0000000A ENDP
  291. 196 0000000A HardFault_Handler
  292. PROC
  293. 197 0000000A EXPORT HardFault_Handler [WEA
  294. K]
  295. 198 0000000A E7FE B .
  296. 199 0000000C ENDP
  297. 201 0000000C MemManage_Handler
  298. PROC
  299. 202 0000000C EXPORT MemManage_Handler [WEA
  300. K]
  301. 203 0000000C E7FE B .
  302. 204 0000000E ENDP
  303. 206 0000000E BusFault_Handler
  304. PROC
  305. 207 0000000E EXPORT BusFault_Handler [WEA
  306. K]
  307. 208 0000000E E7FE B .
  308. 209 00000010 ENDP
  309. 211 00000010 UsageFault_Handler
  310. PROC
  311. 212 00000010 EXPORT UsageFault_Handler [WEA
  312. K]
  313. 213 00000010 E7FE B .
  314. 214 00000012 ENDP
  315. 215 00000012 SVC_Handler
  316. PROC
  317. 216 00000012 EXPORT SVC_Handler [WEA
  318. ARM Macro Assembler Page 9
  319. K]
  320. 217 00000012 E7FE B .
  321. 218 00000014 ENDP
  322. 220 00000014 DebugMon_Handler
  323. PROC
  324. 221 00000014 EXPORT DebugMon_Handler [WEA
  325. K]
  326. 222 00000014 E7FE B .
  327. 223 00000016 ENDP
  328. 224 00000016 PendSV_Handler
  329. PROC
  330. 225 00000016 EXPORT PendSV_Handler [WEA
  331. K]
  332. 226 00000016 E7FE B .
  333. 227 00000018 ENDP
  334. 228 00000018 SysTick_Handler
  335. PROC
  336. 229 00000018 EXPORT SysTick_Handler [WEA
  337. K]
  338. 230 00000018 E7FE B .
  339. 231 0000001A ENDP
  340. 232 0000001A
  341. 233 0000001A Default_Handler
  342. PROC
  343. 234 0000001A
  344. 235 0000001A EXPORT WWDG_IRQHandler
  345. [WEAK]
  346. 236 0000001A EXPORT PVD_IRQHandler
  347. [WEAK]
  348. 237 0000001A EXPORT TAMP_STAMP_IRQHandler
  349. [WEAK]
  350. 238 0000001A EXPORT RTC_WKUP_IRQHandler
  351. [WEAK]
  352. 239 0000001A EXPORT FLASH_IRQHandler
  353. [WEAK]
  354. 240 0000001A EXPORT RCC_IRQHandler
  355. [WEAK]
  356. 241 0000001A EXPORT EXTI0_IRQHandler
  357. [WEAK]
  358. 242 0000001A EXPORT EXTI1_IRQHandler
  359. [WEAK]
  360. 243 0000001A EXPORT EXTI2_IRQHandler
  361. [WEAK]
  362. 244 0000001A EXPORT EXTI3_IRQHandler
  363. [WEAK]
  364. 245 0000001A EXPORT EXTI4_IRQHandler
  365. [WEAK]
  366. 246 0000001A EXPORT DMA1_Stream0_IRQHandler
  367. [WEAK]
  368. 247 0000001A EXPORT DMA1_Stream1_IRQHandler
  369. [WEAK]
  370. 248 0000001A EXPORT DMA1_Stream2_IRQHandler
  371. [WEAK]
  372. 249 0000001A EXPORT DMA1_Stream3_IRQHandler
  373. [WEAK]
  374. 250 0000001A EXPORT DMA1_Stream4_IRQHandler
  375. [WEAK]
  376. 251 0000001A EXPORT DMA1_Stream5_IRQHandler
  377. [WEAK]
  378. ARM Macro Assembler Page 10
  379. 252 0000001A EXPORT DMA1_Stream6_IRQHandler
  380. [WEAK]
  381. 253 0000001A EXPORT ADC_IRQHandler
  382. [WEAK]
  383. 254 0000001A EXPORT CAN1_TX_IRQHandler
  384. [WEAK]
  385. 255 0000001A EXPORT CAN1_RX0_IRQHandler
  386. [WEAK]
  387. 256 0000001A EXPORT CAN1_RX1_IRQHandler
  388. [WEAK]
  389. 257 0000001A EXPORT CAN1_SCE_IRQHandler
  390. [WEAK]
  391. 258 0000001A EXPORT EXTI9_5_IRQHandler
  392. [WEAK]
  393. 259 0000001A EXPORT TIM1_BRK_TIM9_IRQHandler
  394. [WEAK]
  395. 260 0000001A EXPORT TIM1_UP_TIM10_IRQHandler
  396. [WEAK]
  397. 261 0000001A EXPORT TIM1_TRG_COM_TIM11_IRQHandler
  398. [WEAK]
  399. 262 0000001A EXPORT TIM1_CC_IRQHandler
  400. [WEAK]
  401. 263 0000001A EXPORT TIM2_IRQHandler
  402. [WEAK]
  403. 264 0000001A EXPORT TIM3_IRQHandler
  404. [WEAK]
  405. 265 0000001A EXPORT TIM4_IRQHandler
  406. [WEAK]
  407. 266 0000001A EXPORT I2C1_EV_IRQHandler
  408. [WEAK]
  409. 267 0000001A EXPORT I2C1_ER_IRQHandler
  410. [WEAK]
  411. 268 0000001A EXPORT I2C2_EV_IRQHandler
  412. [WEAK]
  413. 269 0000001A EXPORT I2C2_ER_IRQHandler
  414. [WEAK]
  415. 270 0000001A EXPORT SPI1_IRQHandler
  416. [WEAK]
  417. 271 0000001A EXPORT SPI2_IRQHandler
  418. [WEAK]
  419. 272 0000001A EXPORT USART1_IRQHandler
  420. [WEAK]
  421. 273 0000001A EXPORT USART2_IRQHandler
  422. [WEAK]
  423. 274 0000001A EXPORT USART3_IRQHandler
  424. [WEAK]
  425. 275 0000001A EXPORT EXTI15_10_IRQHandler
  426. [WEAK]
  427. 276 0000001A EXPORT RTC_Alarm_IRQHandler
  428. [WEAK]
  429. 277 0000001A EXPORT OTG_FS_WKUP_IRQHandler
  430. [WEAK]
  431. 278 0000001A EXPORT TIM8_BRK_TIM12_IRQHandler
  432. [WEAK]
  433. 279 0000001A EXPORT TIM8_UP_TIM13_IRQHandler
  434. [WEAK]
  435. 280 0000001A EXPORT TIM8_TRG_COM_TIM14_IRQHandler
  436. [WEAK]
  437. 281 0000001A EXPORT TIM8_CC_IRQHandler
  438. ARM Macro Assembler Page 11
  439. [WEAK]
  440. 282 0000001A EXPORT DMA1_Stream7_IRQHandler
  441. [WEAK]
  442. 283 0000001A EXPORT FMC_IRQHandler
  443. [WEAK]
  444. 284 0000001A EXPORT SDIO_IRQHandler
  445. [WEAK]
  446. 285 0000001A EXPORT TIM5_IRQHandler
  447. [WEAK]
  448. 286 0000001A EXPORT SPI3_IRQHandler
  449. [WEAK]
  450. 287 0000001A EXPORT UART4_IRQHandler
  451. [WEAK]
  452. 288 0000001A EXPORT UART5_IRQHandler
  453. [WEAK]
  454. 289 0000001A EXPORT TIM6_DAC_IRQHandler
  455. [WEAK]
  456. 290 0000001A EXPORT TIM7_IRQHandler
  457. [WEAK]
  458. 291 0000001A EXPORT DMA2_Stream0_IRQHandler
  459. [WEAK]
  460. 292 0000001A EXPORT DMA2_Stream1_IRQHandler
  461. [WEAK]
  462. 293 0000001A EXPORT DMA2_Stream2_IRQHandler
  463. [WEAK]
  464. 294 0000001A EXPORT DMA2_Stream3_IRQHandler
  465. [WEAK]
  466. 295 0000001A EXPORT DMA2_Stream4_IRQHandler
  467. [WEAK]
  468. 296 0000001A EXPORT ETH_IRQHandler
  469. [WEAK]
  470. 297 0000001A EXPORT ETH_WKUP_IRQHandler
  471. [WEAK]
  472. 298 0000001A EXPORT CAN2_TX_IRQHandler
  473. [WEAK]
  474. 299 0000001A EXPORT CAN2_RX0_IRQHandler
  475. [WEAK]
  476. 300 0000001A EXPORT CAN2_RX1_IRQHandler
  477. [WEAK]
  478. 301 0000001A EXPORT CAN2_SCE_IRQHandler
  479. [WEAK]
  480. 302 0000001A EXPORT OTG_FS_IRQHandler
  481. [WEAK]
  482. 303 0000001A EXPORT DMA2_Stream5_IRQHandler
  483. [WEAK]
  484. 304 0000001A EXPORT DMA2_Stream6_IRQHandler
  485. [WEAK]
  486. 305 0000001A EXPORT DMA2_Stream7_IRQHandler
  487. [WEAK]
  488. 306 0000001A EXPORT USART6_IRQHandler
  489. [WEAK]
  490. 307 0000001A EXPORT I2C3_EV_IRQHandler
  491. [WEAK]
  492. 308 0000001A EXPORT I2C3_ER_IRQHandler
  493. [WEAK]
  494. 309 0000001A EXPORT OTG_HS_EP1_OUT_IRQHandler
  495. [WEAK]
  496. 310 0000001A EXPORT OTG_HS_EP1_IN_IRQHandler
  497. [WEAK]
  498. ARM Macro Assembler Page 12
  499. 311 0000001A EXPORT OTG_HS_WKUP_IRQHandler
  500. [WEAK]
  501. 312 0000001A EXPORT OTG_HS_IRQHandler
  502. [WEAK]
  503. 313 0000001A EXPORT DCMI_IRQHandler
  504. [WEAK]
  505. 314 0000001A EXPORT HASH_RNG_IRQHandler
  506. [WEAK]
  507. 315 0000001A EXPORT FPU_IRQHandler
  508. [WEAK]
  509. 316 0000001A EXPORT UART7_IRQHandler
  510. [WEAK]
  511. 317 0000001A EXPORT UART8_IRQHandler
  512. [WEAK]
  513. 318 0000001A EXPORT SPI4_IRQHandler
  514. [WEAK]
  515. 319 0000001A EXPORT SPI5_IRQHandler
  516. [WEAK]
  517. 320 0000001A EXPORT SPI6_IRQHandler
  518. [WEAK]
  519. 321 0000001A EXPORT SAI1_IRQHandler
  520. [WEAK]
  521. 322 0000001A EXPORT LTDC_IRQHandler
  522. [WEAK]
  523. 323 0000001A EXPORT LTDC_ER_IRQHandler
  524. [WEAK]
  525. 324 0000001A EXPORT DMA2D_IRQHandler
  526. [WEAK]
  527. 325 0000001A
  528. 326 0000001A WWDG_IRQHandler
  529. 327 0000001A PVD_IRQHandler
  530. 328 0000001A TAMP_STAMP_IRQHandler
  531. 329 0000001A RTC_WKUP_IRQHandler
  532. 330 0000001A FLASH_IRQHandler
  533. 331 0000001A RCC_IRQHandler
  534. 332 0000001A EXTI0_IRQHandler
  535. 333 0000001A EXTI1_IRQHandler
  536. 334 0000001A EXTI2_IRQHandler
  537. 335 0000001A EXTI3_IRQHandler
  538. 336 0000001A EXTI4_IRQHandler
  539. 337 0000001A DMA1_Stream0_IRQHandler
  540. 338 0000001A DMA1_Stream1_IRQHandler
  541. 339 0000001A DMA1_Stream2_IRQHandler
  542. 340 0000001A DMA1_Stream3_IRQHandler
  543. 341 0000001A DMA1_Stream4_IRQHandler
  544. 342 0000001A DMA1_Stream5_IRQHandler
  545. 343 0000001A DMA1_Stream6_IRQHandler
  546. 344 0000001A ADC_IRQHandler
  547. 345 0000001A CAN1_TX_IRQHandler
  548. 346 0000001A CAN1_RX0_IRQHandler
  549. 347 0000001A CAN1_RX1_IRQHandler
  550. 348 0000001A CAN1_SCE_IRQHandler
  551. 349 0000001A EXTI9_5_IRQHandler
  552. 350 0000001A TIM1_BRK_TIM9_IRQHandler
  553. 351 0000001A TIM1_UP_TIM10_IRQHandler
  554. 352 0000001A TIM1_TRG_COM_TIM11_IRQHandler
  555. 353 0000001A TIM1_CC_IRQHandler
  556. 354 0000001A TIM2_IRQHandler
  557. 355 0000001A TIM3_IRQHandler
  558. ARM Macro Assembler Page 13
  559. 356 0000001A TIM4_IRQHandler
  560. 357 0000001A I2C1_EV_IRQHandler
  561. 358 0000001A I2C1_ER_IRQHandler
  562. 359 0000001A I2C2_EV_IRQHandler
  563. 360 0000001A I2C2_ER_IRQHandler
  564. 361 0000001A SPI1_IRQHandler
  565. 362 0000001A SPI2_IRQHandler
  566. 363 0000001A USART1_IRQHandler
  567. 364 0000001A USART2_IRQHandler
  568. 365 0000001A USART3_IRQHandler
  569. 366 0000001A EXTI15_10_IRQHandler
  570. 367 0000001A RTC_Alarm_IRQHandler
  571. 368 0000001A OTG_FS_WKUP_IRQHandler
  572. 369 0000001A TIM8_BRK_TIM12_IRQHandler
  573. 370 0000001A TIM8_UP_TIM13_IRQHandler
  574. 371 0000001A TIM8_TRG_COM_TIM14_IRQHandler
  575. 372 0000001A TIM8_CC_IRQHandler
  576. 373 0000001A DMA1_Stream7_IRQHandler
  577. 374 0000001A FMC_IRQHandler
  578. 375 0000001A SDIO_IRQHandler
  579. 376 0000001A TIM5_IRQHandler
  580. 377 0000001A SPI3_IRQHandler
  581. 378 0000001A UART4_IRQHandler
  582. 379 0000001A UART5_IRQHandler
  583. 380 0000001A TIM6_DAC_IRQHandler
  584. 381 0000001A TIM7_IRQHandler
  585. 382 0000001A DMA2_Stream0_IRQHandler
  586. 383 0000001A DMA2_Stream1_IRQHandler
  587. 384 0000001A DMA2_Stream2_IRQHandler
  588. 385 0000001A DMA2_Stream3_IRQHandler
  589. 386 0000001A DMA2_Stream4_IRQHandler
  590. 387 0000001A ETH_IRQHandler
  591. 388 0000001A ETH_WKUP_IRQHandler
  592. 389 0000001A CAN2_TX_IRQHandler
  593. 390 0000001A CAN2_RX0_IRQHandler
  594. 391 0000001A CAN2_RX1_IRQHandler
  595. 392 0000001A CAN2_SCE_IRQHandler
  596. 393 0000001A OTG_FS_IRQHandler
  597. 394 0000001A DMA2_Stream5_IRQHandler
  598. 395 0000001A DMA2_Stream6_IRQHandler
  599. 396 0000001A DMA2_Stream7_IRQHandler
  600. 397 0000001A USART6_IRQHandler
  601. 398 0000001A I2C3_EV_IRQHandler
  602. 399 0000001A I2C3_ER_IRQHandler
  603. 400 0000001A OTG_HS_EP1_OUT_IRQHandler
  604. 401 0000001A OTG_HS_EP1_IN_IRQHandler
  605. 402 0000001A OTG_HS_WKUP_IRQHandler
  606. 403 0000001A OTG_HS_IRQHandler
  607. 404 0000001A DCMI_IRQHandler
  608. 405 0000001A HASH_RNG_IRQHandler
  609. 406 0000001A FPU_IRQHandler
  610. 407 0000001A UART7_IRQHandler
  611. 408 0000001A UART8_IRQHandler
  612. 409 0000001A SPI4_IRQHandler
  613. 410 0000001A SPI5_IRQHandler
  614. 411 0000001A SPI6_IRQHandler
  615. 412 0000001A SAI1_IRQHandler
  616. 413 0000001A LTDC_IRQHandler
  617. 414 0000001A LTDC_ER_IRQHandler
  618. ARM Macro Assembler Page 14
  619. 415 0000001A DMA2D_IRQHandler
  620. 416 0000001A E7FE B .
  621. 417 0000001C
  622. 418 0000001C ENDP
  623. 419 0000001C
  624. 420 0000001C ALIGN
  625. 421 0000001C
  626. 422 0000001C ;*******************************************************
  627. ************************
  628. 423 0000001C ; User Stack and Heap initialization
  629. 424 0000001C ;*******************************************************
  630. ************************
  631. 425 0000001C IF :DEF:__MICROLIB
  632. 426 0000001C
  633. 427 0000001C EXPORT __initial_sp
  634. 428 0000001C EXPORT __heap_base
  635. 429 0000001C EXPORT __heap_limit
  636. 430 0000001C
  637. 431 0000001C ELSE
  638. 446 ENDIF
  639. 447 0000001C
  640. 448 0000001C END
  641. 00000000
  642. 00000000
  643. Command Line: --debug --xref --diag_suppress=9931 --cpu=Cortex-M4.fp --apcs=int
  644. erwork --depend=wavebox\startup_stm32f429xx.d -owavebox\startup_stm32f429xx.o -
  645. IF:\workspace\sync_wave_box\MDK-ARM\RTE -IC:\Keil_v5\ARM\PACK\ARM\CMSIS\5.4.0\C
  646. MSIS\Core\Include -IC:\Keil_v5\ARM\PACK\Keil\STM32F4xx_DFP\2.13.0 --predefine="
  647. __MICROLIB SETA 1" --predefine="__UVISION_VERSION SETA 514" --predefine="_RTE_
  648. SETA 1" --predefine="STM32F429xx SETA 1" --list=startup_stm32f429xx.lst startup
  649. _stm32f429xx.s
  650. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  651. Relocatable symbols
  652. STACK 00000000
  653. Symbol: STACK
  654. Definitions
  655. At line 35 in file startup_stm32f429xx.s
  656. Uses
  657. None
  658. Comment: STACK unused
  659. Stack_Mem 00000000
  660. Symbol: Stack_Mem
  661. Definitions
  662. At line 36 in file startup_stm32f429xx.s
  663. Uses
  664. None
  665. Comment: Stack_Mem unused
  666. __initial_sp 00001000
  667. Symbol: __initial_sp
  668. Definitions
  669. At line 37 in file startup_stm32f429xx.s
  670. Uses
  671. At line 61 in file startup_stm32f429xx.s
  672. At line 427 in file startup_stm32f429xx.s
  673. 3 symbols
  674. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  675. Relocatable symbols
  676. HEAP 00000000
  677. Symbol: HEAP
  678. Definitions
  679. At line 46 in file startup_stm32f429xx.s
  680. Uses
  681. None
  682. Comment: HEAP unused
  683. Heap_Mem 00000000
  684. Symbol: Heap_Mem
  685. Definitions
  686. At line 48 in file startup_stm32f429xx.s
  687. Uses
  688. None
  689. Comment: Heap_Mem unused
  690. __heap_base 00000000
  691. Symbol: __heap_base
  692. Definitions
  693. At line 47 in file startup_stm32f429xx.s
  694. Uses
  695. At line 428 in file startup_stm32f429xx.s
  696. Comment: __heap_base used once
  697. __heap_limit 00000000
  698. Symbol: __heap_limit
  699. Definitions
  700. At line 49 in file startup_stm32f429xx.s
  701. Uses
  702. At line 429 in file startup_stm32f429xx.s
  703. Comment: __heap_limit used once
  704. 4 symbols
  705. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  706. Relocatable symbols
  707. RESET 00000000
  708. Symbol: RESET
  709. Definitions
  710. At line 56 in file startup_stm32f429xx.s
  711. Uses
  712. None
  713. Comment: RESET unused
  714. __Vectors 00000000
  715. Symbol: __Vectors
  716. Definitions
  717. At line 61 in file startup_stm32f429xx.s
  718. Uses
  719. At line 57 in file startup_stm32f429xx.s
  720. At line 173 in file startup_stm32f429xx.s
  721. __Vectors_End 000001AC
  722. Symbol: __Vectors_End
  723. Definitions
  724. At line 171 in file startup_stm32f429xx.s
  725. Uses
  726. At line 58 in file startup_stm32f429xx.s
  727. At line 173 in file startup_stm32f429xx.s
  728. 3 symbols
  729. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  730. Relocatable symbols
  731. .text 00000000
  732. Symbol: .text
  733. Definitions
  734. At line 175 in file startup_stm32f429xx.s
  735. Uses
  736. None
  737. Comment: .text unused
  738. ADC_IRQHandler 0000001A
  739. Symbol: ADC_IRQHandler
  740. Definitions
  741. At line 344 in file startup_stm32f429xx.s
  742. Uses
  743. At line 97 in file startup_stm32f429xx.s
  744. At line 253 in file startup_stm32f429xx.s
  745. BusFault_Handler 0000000E
  746. Symbol: BusFault_Handler
  747. Definitions
  748. At line 206 in file startup_stm32f429xx.s
  749. Uses
  750. At line 66 in file startup_stm32f429xx.s
  751. At line 207 in file startup_stm32f429xx.s
  752. CAN1_RX0_IRQHandler 0000001A
  753. Symbol: CAN1_RX0_IRQHandler
  754. Definitions
  755. At line 346 in file startup_stm32f429xx.s
  756. Uses
  757. At line 99 in file startup_stm32f429xx.s
  758. At line 255 in file startup_stm32f429xx.s
  759. CAN1_RX1_IRQHandler 0000001A
  760. Symbol: CAN1_RX1_IRQHandler
  761. Definitions
  762. At line 347 in file startup_stm32f429xx.s
  763. Uses
  764. At line 100 in file startup_stm32f429xx.s
  765. At line 256 in file startup_stm32f429xx.s
  766. CAN1_SCE_IRQHandler 0000001A
  767. Symbol: CAN1_SCE_IRQHandler
  768. Definitions
  769. At line 348 in file startup_stm32f429xx.s
  770. Uses
  771. At line 101 in file startup_stm32f429xx.s
  772. At line 257 in file startup_stm32f429xx.s
  773. CAN1_TX_IRQHandler 0000001A
  774. Symbol: CAN1_TX_IRQHandler
  775. Definitions
  776. At line 345 in file startup_stm32f429xx.s
  777. Uses
  778. ARM Macro Assembler Page 2 Alphabetic symbol ordering
  779. Relocatable symbols
  780. At line 98 in file startup_stm32f429xx.s
  781. At line 254 in file startup_stm32f429xx.s
  782. CAN2_RX0_IRQHandler 0000001A
  783. Symbol: CAN2_RX0_IRQHandler
  784. Definitions
  785. At line 390 in file startup_stm32f429xx.s
  786. Uses
  787. At line 143 in file startup_stm32f429xx.s
  788. At line 299 in file startup_stm32f429xx.s
  789. CAN2_RX1_IRQHandler 0000001A
  790. Symbol: CAN2_RX1_IRQHandler
  791. Definitions
  792. At line 391 in file startup_stm32f429xx.s
  793. Uses
  794. At line 144 in file startup_stm32f429xx.s
  795. At line 300 in file startup_stm32f429xx.s
  796. CAN2_SCE_IRQHandler 0000001A
  797. Symbol: CAN2_SCE_IRQHandler
  798. Definitions
  799. At line 392 in file startup_stm32f429xx.s
  800. Uses
  801. At line 145 in file startup_stm32f429xx.s
  802. At line 301 in file startup_stm32f429xx.s
  803. CAN2_TX_IRQHandler 0000001A
  804. Symbol: CAN2_TX_IRQHandler
  805. Definitions
  806. At line 389 in file startup_stm32f429xx.s
  807. Uses
  808. At line 142 in file startup_stm32f429xx.s
  809. At line 298 in file startup_stm32f429xx.s
  810. DCMI_IRQHandler 0000001A
  811. Symbol: DCMI_IRQHandler
  812. Definitions
  813. At line 404 in file startup_stm32f429xx.s
  814. Uses
  815. At line 157 in file startup_stm32f429xx.s
  816. At line 313 in file startup_stm32f429xx.s
  817. DMA1_Stream0_IRQHandler 0000001A
  818. Symbol: DMA1_Stream0_IRQHandler
  819. Definitions
  820. At line 337 in file startup_stm32f429xx.s
  821. Uses
  822. At line 90 in file startup_stm32f429xx.s
  823. At line 246 in file startup_stm32f429xx.s
  824. DMA1_Stream1_IRQHandler 0000001A
  825. ARM Macro Assembler Page 3 Alphabetic symbol ordering
  826. Relocatable symbols
  827. Symbol: DMA1_Stream1_IRQHandler
  828. Definitions
  829. At line 338 in file startup_stm32f429xx.s
  830. Uses
  831. At line 91 in file startup_stm32f429xx.s
  832. At line 247 in file startup_stm32f429xx.s
  833. DMA1_Stream2_IRQHandler 0000001A
  834. Symbol: DMA1_Stream2_IRQHandler
  835. Definitions
  836. At line 339 in file startup_stm32f429xx.s
  837. Uses
  838. At line 92 in file startup_stm32f429xx.s
  839. At line 248 in file startup_stm32f429xx.s
  840. DMA1_Stream3_IRQHandler 0000001A
  841. Symbol: DMA1_Stream3_IRQHandler
  842. Definitions
  843. At line 340 in file startup_stm32f429xx.s
  844. Uses
  845. At line 93 in file startup_stm32f429xx.s
  846. At line 249 in file startup_stm32f429xx.s
  847. DMA1_Stream4_IRQHandler 0000001A
  848. Symbol: DMA1_Stream4_IRQHandler
  849. Definitions
  850. At line 341 in file startup_stm32f429xx.s
  851. Uses
  852. At line 94 in file startup_stm32f429xx.s
  853. At line 250 in file startup_stm32f429xx.s
  854. DMA1_Stream5_IRQHandler 0000001A
  855. Symbol: DMA1_Stream5_IRQHandler
  856. Definitions
  857. At line 342 in file startup_stm32f429xx.s
  858. Uses
  859. At line 95 in file startup_stm32f429xx.s
  860. At line 251 in file startup_stm32f429xx.s
  861. DMA1_Stream6_IRQHandler 0000001A
  862. Symbol: DMA1_Stream6_IRQHandler
  863. Definitions
  864. At line 343 in file startup_stm32f429xx.s
  865. Uses
  866. At line 96 in file startup_stm32f429xx.s
  867. At line 252 in file startup_stm32f429xx.s
  868. DMA1_Stream7_IRQHandler 0000001A
  869. Symbol: DMA1_Stream7_IRQHandler
  870. Definitions
  871. At line 373 in file startup_stm32f429xx.s
  872. Uses
  873. At line 126 in file startup_stm32f429xx.s
  874. ARM Macro Assembler Page 4 Alphabetic symbol ordering
  875. Relocatable symbols
  876. At line 282 in file startup_stm32f429xx.s
  877. DMA2D_IRQHandler 0000001A
  878. Symbol: DMA2D_IRQHandler
  879. Definitions
  880. At line 415 in file startup_stm32f429xx.s
  881. Uses
  882. At line 169 in file startup_stm32f429xx.s
  883. At line 324 in file startup_stm32f429xx.s
  884. DMA2_Stream0_IRQHandler 0000001A
  885. Symbol: DMA2_Stream0_IRQHandler
  886. Definitions
  887. At line 382 in file startup_stm32f429xx.s
  888. Uses
  889. At line 135 in file startup_stm32f429xx.s
  890. At line 291 in file startup_stm32f429xx.s
  891. DMA2_Stream1_IRQHandler 0000001A
  892. Symbol: DMA2_Stream1_IRQHandler
  893. Definitions
  894. At line 383 in file startup_stm32f429xx.s
  895. Uses
  896. At line 136 in file startup_stm32f429xx.s
  897. At line 292 in file startup_stm32f429xx.s
  898. DMA2_Stream2_IRQHandler 0000001A
  899. Symbol: DMA2_Stream2_IRQHandler
  900. Definitions
  901. At line 384 in file startup_stm32f429xx.s
  902. Uses
  903. At line 137 in file startup_stm32f429xx.s
  904. At line 293 in file startup_stm32f429xx.s
  905. DMA2_Stream3_IRQHandler 0000001A
  906. Symbol: DMA2_Stream3_IRQHandler
  907. Definitions
  908. At line 385 in file startup_stm32f429xx.s
  909. Uses
  910. At line 138 in file startup_stm32f429xx.s
  911. At line 294 in file startup_stm32f429xx.s
  912. DMA2_Stream4_IRQHandler 0000001A
  913. Symbol: DMA2_Stream4_IRQHandler
  914. Definitions
  915. At line 386 in file startup_stm32f429xx.s
  916. Uses
  917. At line 139 in file startup_stm32f429xx.s
  918. At line 295 in file startup_stm32f429xx.s
  919. DMA2_Stream5_IRQHandler 0000001A
  920. Symbol: DMA2_Stream5_IRQHandler
  921. ARM Macro Assembler Page 5 Alphabetic symbol ordering
  922. Relocatable symbols
  923. Definitions
  924. At line 394 in file startup_stm32f429xx.s
  925. Uses
  926. At line 147 in file startup_stm32f429xx.s
  927. At line 303 in file startup_stm32f429xx.s
  928. DMA2_Stream6_IRQHandler 0000001A
  929. Symbol: DMA2_Stream6_IRQHandler
  930. Definitions
  931. At line 395 in file startup_stm32f429xx.s
  932. Uses
  933. At line 148 in file startup_stm32f429xx.s
  934. At line 304 in file startup_stm32f429xx.s
  935. DMA2_Stream7_IRQHandler 0000001A
  936. Symbol: DMA2_Stream7_IRQHandler
  937. Definitions
  938. At line 396 in file startup_stm32f429xx.s
  939. Uses
  940. At line 149 in file startup_stm32f429xx.s
  941. At line 305 in file startup_stm32f429xx.s
  942. DebugMon_Handler 00000014
  943. Symbol: DebugMon_Handler
  944. Definitions
  945. At line 220 in file startup_stm32f429xx.s
  946. Uses
  947. At line 73 in file startup_stm32f429xx.s
  948. At line 221 in file startup_stm32f429xx.s
  949. Default_Handler 0000001A
  950. Symbol: Default_Handler
  951. Definitions
  952. At line 233 in file startup_stm32f429xx.s
  953. Uses
  954. None
  955. Comment: Default_Handler unused
  956. ETH_IRQHandler 0000001A
  957. Symbol: ETH_IRQHandler
  958. Definitions
  959. At line 387 in file startup_stm32f429xx.s
  960. Uses
  961. At line 140 in file startup_stm32f429xx.s
  962. At line 296 in file startup_stm32f429xx.s
  963. ETH_WKUP_IRQHandler 0000001A
  964. Symbol: ETH_WKUP_IRQHandler
  965. Definitions
  966. At line 388 in file startup_stm32f429xx.s
  967. Uses
  968. At line 141 in file startup_stm32f429xx.s
  969. At line 297 in file startup_stm32f429xx.s
  970. ARM Macro Assembler Page 6 Alphabetic symbol ordering
  971. Relocatable symbols
  972. EXTI0_IRQHandler 0000001A
  973. Symbol: EXTI0_IRQHandler
  974. Definitions
  975. At line 332 in file startup_stm32f429xx.s
  976. Uses
  977. At line 85 in file startup_stm32f429xx.s
  978. At line 241 in file startup_stm32f429xx.s
  979. EXTI15_10_IRQHandler 0000001A
  980. Symbol: EXTI15_10_IRQHandler
  981. Definitions
  982. At line 366 in file startup_stm32f429xx.s
  983. Uses
  984. At line 119 in file startup_stm32f429xx.s
  985. At line 275 in file startup_stm32f429xx.s
  986. EXTI1_IRQHandler 0000001A
  987. Symbol: EXTI1_IRQHandler
  988. Definitions
  989. At line 333 in file startup_stm32f429xx.s
  990. Uses
  991. At line 86 in file startup_stm32f429xx.s
  992. At line 242 in file startup_stm32f429xx.s
  993. EXTI2_IRQHandler 0000001A
  994. Symbol: EXTI2_IRQHandler
  995. Definitions
  996. At line 334 in file startup_stm32f429xx.s
  997. Uses
  998. At line 87 in file startup_stm32f429xx.s
  999. At line 243 in file startup_stm32f429xx.s
  1000. EXTI3_IRQHandler 0000001A
  1001. Symbol: EXTI3_IRQHandler
  1002. Definitions
  1003. At line 335 in file startup_stm32f429xx.s
  1004. Uses
  1005. At line 88 in file startup_stm32f429xx.s
  1006. At line 244 in file startup_stm32f429xx.s
  1007. EXTI4_IRQHandler 0000001A
  1008. Symbol: EXTI4_IRQHandler
  1009. Definitions
  1010. At line 336 in file startup_stm32f429xx.s
  1011. Uses
  1012. At line 89 in file startup_stm32f429xx.s
  1013. At line 245 in file startup_stm32f429xx.s
  1014. EXTI9_5_IRQHandler 0000001A
  1015. Symbol: EXTI9_5_IRQHandler
  1016. Definitions
  1017. At line 349 in file startup_stm32f429xx.s
  1018. ARM Macro Assembler Page 7 Alphabetic symbol ordering
  1019. Relocatable symbols
  1020. Uses
  1021. At line 102 in file startup_stm32f429xx.s
  1022. At line 258 in file startup_stm32f429xx.s
  1023. FLASH_IRQHandler 0000001A
  1024. Symbol: FLASH_IRQHandler
  1025. Definitions
  1026. At line 330 in file startup_stm32f429xx.s
  1027. Uses
  1028. At line 83 in file startup_stm32f429xx.s
  1029. At line 239 in file startup_stm32f429xx.s
  1030. FMC_IRQHandler 0000001A
  1031. Symbol: FMC_IRQHandler
  1032. Definitions
  1033. At line 374 in file startup_stm32f429xx.s
  1034. Uses
  1035. At line 127 in file startup_stm32f429xx.s
  1036. At line 283 in file startup_stm32f429xx.s
  1037. FPU_IRQHandler 0000001A
  1038. Symbol: FPU_IRQHandler
  1039. Definitions
  1040. At line 406 in file startup_stm32f429xx.s
  1041. Uses
  1042. At line 160 in file startup_stm32f429xx.s
  1043. At line 315 in file startup_stm32f429xx.s
  1044. HASH_RNG_IRQHandler 0000001A
  1045. Symbol: HASH_RNG_IRQHandler
  1046. Definitions
  1047. At line 405 in file startup_stm32f429xx.s
  1048. Uses
  1049. At line 159 in file startup_stm32f429xx.s
  1050. At line 314 in file startup_stm32f429xx.s
  1051. HardFault_Handler 0000000A
  1052. Symbol: HardFault_Handler
  1053. Definitions
  1054. At line 196 in file startup_stm32f429xx.s
  1055. Uses
  1056. At line 64 in file startup_stm32f429xx.s
  1057. At line 197 in file startup_stm32f429xx.s
  1058. I2C1_ER_IRQHandler 0000001A
  1059. Symbol: I2C1_ER_IRQHandler
  1060. Definitions
  1061. At line 358 in file startup_stm32f429xx.s
  1062. Uses
  1063. At line 111 in file startup_stm32f429xx.s
  1064. At line 267 in file startup_stm32f429xx.s
  1065. I2C1_EV_IRQHandler 0000001A
  1066. ARM Macro Assembler Page 8 Alphabetic symbol ordering
  1067. Relocatable symbols
  1068. Symbol: I2C1_EV_IRQHandler
  1069. Definitions
  1070. At line 357 in file startup_stm32f429xx.s
  1071. Uses
  1072. At line 110 in file startup_stm32f429xx.s
  1073. At line 266 in file startup_stm32f429xx.s
  1074. I2C2_ER_IRQHandler 0000001A
  1075. Symbol: I2C2_ER_IRQHandler
  1076. Definitions
  1077. At line 360 in file startup_stm32f429xx.s
  1078. Uses
  1079. At line 113 in file startup_stm32f429xx.s
  1080. At line 269 in file startup_stm32f429xx.s
  1081. I2C2_EV_IRQHandler 0000001A
  1082. Symbol: I2C2_EV_IRQHandler
  1083. Definitions
  1084. At line 359 in file startup_stm32f429xx.s
  1085. Uses
  1086. At line 112 in file startup_stm32f429xx.s
  1087. At line 268 in file startup_stm32f429xx.s
  1088. I2C3_ER_IRQHandler 0000001A
  1089. Symbol: I2C3_ER_IRQHandler
  1090. Definitions
  1091. At line 399 in file startup_stm32f429xx.s
  1092. Uses
  1093. At line 152 in file startup_stm32f429xx.s
  1094. At line 308 in file startup_stm32f429xx.s
  1095. I2C3_EV_IRQHandler 0000001A
  1096. Symbol: I2C3_EV_IRQHandler
  1097. Definitions
  1098. At line 398 in file startup_stm32f429xx.s
  1099. Uses
  1100. At line 151 in file startup_stm32f429xx.s
  1101. At line 307 in file startup_stm32f429xx.s
  1102. LTDC_ER_IRQHandler 0000001A
  1103. Symbol: LTDC_ER_IRQHandler
  1104. Definitions
  1105. At line 414 in file startup_stm32f429xx.s
  1106. Uses
  1107. At line 168 in file startup_stm32f429xx.s
  1108. At line 323 in file startup_stm32f429xx.s
  1109. LTDC_IRQHandler 0000001A
  1110. Symbol: LTDC_IRQHandler
  1111. Definitions
  1112. At line 413 in file startup_stm32f429xx.s
  1113. Uses
  1114. ARM Macro Assembler Page 9 Alphabetic symbol ordering
  1115. Relocatable symbols
  1116. At line 167 in file startup_stm32f429xx.s
  1117. At line 322 in file startup_stm32f429xx.s
  1118. MemManage_Handler 0000000C
  1119. Symbol: MemManage_Handler
  1120. Definitions
  1121. At line 201 in file startup_stm32f429xx.s
  1122. Uses
  1123. At line 65 in file startup_stm32f429xx.s
  1124. At line 202 in file startup_stm32f429xx.s
  1125. NMI_Handler 00000008
  1126. Symbol: NMI_Handler
  1127. Definitions
  1128. At line 191 in file startup_stm32f429xx.s
  1129. Uses
  1130. At line 63 in file startup_stm32f429xx.s
  1131. At line 192 in file startup_stm32f429xx.s
  1132. OTG_FS_IRQHandler 0000001A
  1133. Symbol: OTG_FS_IRQHandler
  1134. Definitions
  1135. At line 393 in file startup_stm32f429xx.s
  1136. Uses
  1137. At line 146 in file startup_stm32f429xx.s
  1138. At line 302 in file startup_stm32f429xx.s
  1139. OTG_FS_WKUP_IRQHandler 0000001A
  1140. Symbol: OTG_FS_WKUP_IRQHandler
  1141. Definitions
  1142. At line 368 in file startup_stm32f429xx.s
  1143. Uses
  1144. At line 121 in file startup_stm32f429xx.s
  1145. At line 277 in file startup_stm32f429xx.s
  1146. OTG_HS_EP1_IN_IRQHandler 0000001A
  1147. Symbol: OTG_HS_EP1_IN_IRQHandler
  1148. Definitions
  1149. At line 401 in file startup_stm32f429xx.s
  1150. Uses
  1151. At line 154 in file startup_stm32f429xx.s
  1152. At line 310 in file startup_stm32f429xx.s
  1153. OTG_HS_EP1_OUT_IRQHandler 0000001A
  1154. Symbol: OTG_HS_EP1_OUT_IRQHandler
  1155. Definitions
  1156. At line 400 in file startup_stm32f429xx.s
  1157. Uses
  1158. At line 153 in file startup_stm32f429xx.s
  1159. At line 309 in file startup_stm32f429xx.s
  1160. OTG_HS_IRQHandler 0000001A
  1161. ARM Macro Assembler Page 10 Alphabetic symbol ordering
  1162. Relocatable symbols
  1163. Symbol: OTG_HS_IRQHandler
  1164. Definitions
  1165. At line 403 in file startup_stm32f429xx.s
  1166. Uses
  1167. At line 156 in file startup_stm32f429xx.s
  1168. At line 312 in file startup_stm32f429xx.s
  1169. OTG_HS_WKUP_IRQHandler 0000001A
  1170. Symbol: OTG_HS_WKUP_IRQHandler
  1171. Definitions
  1172. At line 402 in file startup_stm32f429xx.s
  1173. Uses
  1174. At line 155 in file startup_stm32f429xx.s
  1175. At line 311 in file startup_stm32f429xx.s
  1176. PVD_IRQHandler 0000001A
  1177. Symbol: PVD_IRQHandler
  1178. Definitions
  1179. At line 327 in file startup_stm32f429xx.s
  1180. Uses
  1181. At line 80 in file startup_stm32f429xx.s
  1182. At line 236 in file startup_stm32f429xx.s
  1183. PendSV_Handler 00000016
  1184. Symbol: PendSV_Handler
  1185. Definitions
  1186. At line 224 in file startup_stm32f429xx.s
  1187. Uses
  1188. At line 75 in file startup_stm32f429xx.s
  1189. At line 225 in file startup_stm32f429xx.s
  1190. RCC_IRQHandler 0000001A
  1191. Symbol: RCC_IRQHandler
  1192. Definitions
  1193. At line 331 in file startup_stm32f429xx.s
  1194. Uses
  1195. At line 84 in file startup_stm32f429xx.s
  1196. At line 240 in file startup_stm32f429xx.s
  1197. RTC_Alarm_IRQHandler 0000001A
  1198. Symbol: RTC_Alarm_IRQHandler
  1199. Definitions
  1200. At line 367 in file startup_stm32f429xx.s
  1201. Uses
  1202. At line 120 in file startup_stm32f429xx.s
  1203. At line 276 in file startup_stm32f429xx.s
  1204. RTC_WKUP_IRQHandler 0000001A
  1205. Symbol: RTC_WKUP_IRQHandler
  1206. Definitions
  1207. At line 329 in file startup_stm32f429xx.s
  1208. Uses
  1209. At line 82 in file startup_stm32f429xx.s
  1210. ARM Macro Assembler Page 11 Alphabetic symbol ordering
  1211. Relocatable symbols
  1212. At line 238 in file startup_stm32f429xx.s
  1213. Reset_Handler 00000000
  1214. Symbol: Reset_Handler
  1215. Definitions
  1216. At line 178 in file startup_stm32f429xx.s
  1217. Uses
  1218. At line 62 in file startup_stm32f429xx.s
  1219. At line 179 in file startup_stm32f429xx.s
  1220. SAI1_IRQHandler 0000001A
  1221. Symbol: SAI1_IRQHandler
  1222. Definitions
  1223. At line 412 in file startup_stm32f429xx.s
  1224. Uses
  1225. At line 166 in file startup_stm32f429xx.s
  1226. At line 321 in file startup_stm32f429xx.s
  1227. SDIO_IRQHandler 0000001A
  1228. Symbol: SDIO_IRQHandler
  1229. Definitions
  1230. At line 375 in file startup_stm32f429xx.s
  1231. Uses
  1232. At line 128 in file startup_stm32f429xx.s
  1233. At line 284 in file startup_stm32f429xx.s
  1234. SPI1_IRQHandler 0000001A
  1235. Symbol: SPI1_IRQHandler
  1236. Definitions
  1237. At line 361 in file startup_stm32f429xx.s
  1238. Uses
  1239. At line 114 in file startup_stm32f429xx.s
  1240. At line 270 in file startup_stm32f429xx.s
  1241. SPI2_IRQHandler 0000001A
  1242. Symbol: SPI2_IRQHandler
  1243. Definitions
  1244. At line 362 in file startup_stm32f429xx.s
  1245. Uses
  1246. At line 115 in file startup_stm32f429xx.s
  1247. At line 271 in file startup_stm32f429xx.s
  1248. SPI3_IRQHandler 0000001A
  1249. Symbol: SPI3_IRQHandler
  1250. Definitions
  1251. At line 377 in file startup_stm32f429xx.s
  1252. Uses
  1253. At line 130 in file startup_stm32f429xx.s
  1254. At line 286 in file startup_stm32f429xx.s
  1255. SPI4_IRQHandler 0000001A
  1256. Symbol: SPI4_IRQHandler
  1257. ARM Macro Assembler Page 12 Alphabetic symbol ordering
  1258. Relocatable symbols
  1259. Definitions
  1260. At line 409 in file startup_stm32f429xx.s
  1261. Uses
  1262. At line 163 in file startup_stm32f429xx.s
  1263. At line 318 in file startup_stm32f429xx.s
  1264. SPI5_IRQHandler 0000001A
  1265. Symbol: SPI5_IRQHandler
  1266. Definitions
  1267. At line 410 in file startup_stm32f429xx.s
  1268. Uses
  1269. At line 164 in file startup_stm32f429xx.s
  1270. At line 319 in file startup_stm32f429xx.s
  1271. SPI6_IRQHandler 0000001A
  1272. Symbol: SPI6_IRQHandler
  1273. Definitions
  1274. At line 411 in file startup_stm32f429xx.s
  1275. Uses
  1276. At line 165 in file startup_stm32f429xx.s
  1277. At line 320 in file startup_stm32f429xx.s
  1278. SVC_Handler 00000012
  1279. Symbol: SVC_Handler
  1280. Definitions
  1281. At line 215 in file startup_stm32f429xx.s
  1282. Uses
  1283. At line 72 in file startup_stm32f429xx.s
  1284. At line 216 in file startup_stm32f429xx.s
  1285. SysTick_Handler 00000018
  1286. Symbol: SysTick_Handler
  1287. Definitions
  1288. At line 228 in file startup_stm32f429xx.s
  1289. Uses
  1290. At line 76 in file startup_stm32f429xx.s
  1291. At line 229 in file startup_stm32f429xx.s
  1292. TAMP_STAMP_IRQHandler 0000001A
  1293. Symbol: TAMP_STAMP_IRQHandler
  1294. Definitions
  1295. At line 328 in file startup_stm32f429xx.s
  1296. Uses
  1297. At line 81 in file startup_stm32f429xx.s
  1298. At line 237 in file startup_stm32f429xx.s
  1299. TIM1_BRK_TIM9_IRQHandler 0000001A
  1300. Symbol: TIM1_BRK_TIM9_IRQHandler
  1301. Definitions
  1302. At line 350 in file startup_stm32f429xx.s
  1303. Uses
  1304. At line 103 in file startup_stm32f429xx.s
  1305. At line 259 in file startup_stm32f429xx.s
  1306. ARM Macro Assembler Page 13 Alphabetic symbol ordering
  1307. Relocatable symbols
  1308. TIM1_CC_IRQHandler 0000001A
  1309. Symbol: TIM1_CC_IRQHandler
  1310. Definitions
  1311. At line 353 in file startup_stm32f429xx.s
  1312. Uses
  1313. At line 106 in file startup_stm32f429xx.s
  1314. At line 262 in file startup_stm32f429xx.s
  1315. TIM1_TRG_COM_TIM11_IRQHandler 0000001A
  1316. Symbol: TIM1_TRG_COM_TIM11_IRQHandler
  1317. Definitions
  1318. At line 352 in file startup_stm32f429xx.s
  1319. Uses
  1320. At line 105 in file startup_stm32f429xx.s
  1321. At line 261 in file startup_stm32f429xx.s
  1322. TIM1_UP_TIM10_IRQHandler 0000001A
  1323. Symbol: TIM1_UP_TIM10_IRQHandler
  1324. Definitions
  1325. At line 351 in file startup_stm32f429xx.s
  1326. Uses
  1327. At line 104 in file startup_stm32f429xx.s
  1328. At line 260 in file startup_stm32f429xx.s
  1329. TIM2_IRQHandler 0000001A
  1330. Symbol: TIM2_IRQHandler
  1331. Definitions
  1332. At line 354 in file startup_stm32f429xx.s
  1333. Uses
  1334. At line 107 in file startup_stm32f429xx.s
  1335. At line 263 in file startup_stm32f429xx.s
  1336. TIM3_IRQHandler 0000001A
  1337. Symbol: TIM3_IRQHandler
  1338. Definitions
  1339. At line 355 in file startup_stm32f429xx.s
  1340. Uses
  1341. At line 108 in file startup_stm32f429xx.s
  1342. At line 264 in file startup_stm32f429xx.s
  1343. TIM4_IRQHandler 0000001A
  1344. Symbol: TIM4_IRQHandler
  1345. Definitions
  1346. At line 356 in file startup_stm32f429xx.s
  1347. Uses
  1348. At line 109 in file startup_stm32f429xx.s
  1349. At line 265 in file startup_stm32f429xx.s
  1350. TIM5_IRQHandler 0000001A
  1351. Symbol: TIM5_IRQHandler
  1352. Definitions
  1353. ARM Macro Assembler Page 14 Alphabetic symbol ordering
  1354. Relocatable symbols
  1355. At line 376 in file startup_stm32f429xx.s
  1356. Uses
  1357. At line 129 in file startup_stm32f429xx.s
  1358. At line 285 in file startup_stm32f429xx.s
  1359. TIM6_DAC_IRQHandler 0000001A
  1360. Symbol: TIM6_DAC_IRQHandler
  1361. Definitions
  1362. At line 380 in file startup_stm32f429xx.s
  1363. Uses
  1364. At line 133 in file startup_stm32f429xx.s
  1365. At line 289 in file startup_stm32f429xx.s
  1366. TIM7_IRQHandler 0000001A
  1367. Symbol: TIM7_IRQHandler
  1368. Definitions
  1369. At line 381 in file startup_stm32f429xx.s
  1370. Uses
  1371. At line 134 in file startup_stm32f429xx.s
  1372. At line 290 in file startup_stm32f429xx.s
  1373. TIM8_BRK_TIM12_IRQHandler 0000001A
  1374. Symbol: TIM8_BRK_TIM12_IRQHandler
  1375. Definitions
  1376. At line 369 in file startup_stm32f429xx.s
  1377. Uses
  1378. At line 122 in file startup_stm32f429xx.s
  1379. At line 278 in file startup_stm32f429xx.s
  1380. TIM8_CC_IRQHandler 0000001A
  1381. Symbol: TIM8_CC_IRQHandler
  1382. Definitions
  1383. At line 372 in file startup_stm32f429xx.s
  1384. Uses
  1385. At line 125 in file startup_stm32f429xx.s
  1386. At line 281 in file startup_stm32f429xx.s
  1387. TIM8_TRG_COM_TIM14_IRQHandler 0000001A
  1388. Symbol: TIM8_TRG_COM_TIM14_IRQHandler
  1389. Definitions
  1390. At line 371 in file startup_stm32f429xx.s
  1391. Uses
  1392. At line 124 in file startup_stm32f429xx.s
  1393. At line 280 in file startup_stm32f429xx.s
  1394. TIM8_UP_TIM13_IRQHandler 0000001A
  1395. Symbol: TIM8_UP_TIM13_IRQHandler
  1396. Definitions
  1397. At line 370 in file startup_stm32f429xx.s
  1398. Uses
  1399. At line 123 in file startup_stm32f429xx.s
  1400. At line 279 in file startup_stm32f429xx.s
  1401. ARM Macro Assembler Page 15 Alphabetic symbol ordering
  1402. Relocatable symbols
  1403. UART4_IRQHandler 0000001A
  1404. Symbol: UART4_IRQHandler
  1405. Definitions
  1406. At line 378 in file startup_stm32f429xx.s
  1407. Uses
  1408. At line 131 in file startup_stm32f429xx.s
  1409. At line 287 in file startup_stm32f429xx.s
  1410. UART5_IRQHandler 0000001A
  1411. Symbol: UART5_IRQHandler
  1412. Definitions
  1413. At line 379 in file startup_stm32f429xx.s
  1414. Uses
  1415. At line 132 in file startup_stm32f429xx.s
  1416. At line 288 in file startup_stm32f429xx.s
  1417. UART7_IRQHandler 0000001A
  1418. Symbol: UART7_IRQHandler
  1419. Definitions
  1420. At line 407 in file startup_stm32f429xx.s
  1421. Uses
  1422. At line 161 in file startup_stm32f429xx.s
  1423. At line 316 in file startup_stm32f429xx.s
  1424. UART8_IRQHandler 0000001A
  1425. Symbol: UART8_IRQHandler
  1426. Definitions
  1427. At line 408 in file startup_stm32f429xx.s
  1428. Uses
  1429. At line 162 in file startup_stm32f429xx.s
  1430. At line 317 in file startup_stm32f429xx.s
  1431. USART1_IRQHandler 0000001A
  1432. Symbol: USART1_IRQHandler
  1433. Definitions
  1434. At line 363 in file startup_stm32f429xx.s
  1435. Uses
  1436. At line 116 in file startup_stm32f429xx.s
  1437. At line 272 in file startup_stm32f429xx.s
  1438. USART2_IRQHandler 0000001A
  1439. Symbol: USART2_IRQHandler
  1440. Definitions
  1441. At line 364 in file startup_stm32f429xx.s
  1442. Uses
  1443. At line 117 in file startup_stm32f429xx.s
  1444. At line 273 in file startup_stm32f429xx.s
  1445. USART3_IRQHandler 0000001A
  1446. Symbol: USART3_IRQHandler
  1447. Definitions
  1448. At line 365 in file startup_stm32f429xx.s
  1449. ARM Macro Assembler Page 16 Alphabetic symbol ordering
  1450. Relocatable symbols
  1451. Uses
  1452. At line 118 in file startup_stm32f429xx.s
  1453. At line 274 in file startup_stm32f429xx.s
  1454. USART6_IRQHandler 0000001A
  1455. Symbol: USART6_IRQHandler
  1456. Definitions
  1457. At line 397 in file startup_stm32f429xx.s
  1458. Uses
  1459. At line 150 in file startup_stm32f429xx.s
  1460. At line 306 in file startup_stm32f429xx.s
  1461. UsageFault_Handler 00000010
  1462. Symbol: UsageFault_Handler
  1463. Definitions
  1464. At line 211 in file startup_stm32f429xx.s
  1465. Uses
  1466. At line 67 in file startup_stm32f429xx.s
  1467. At line 212 in file startup_stm32f429xx.s
  1468. WWDG_IRQHandler 0000001A
  1469. Symbol: WWDG_IRQHandler
  1470. Definitions
  1471. At line 326 in file startup_stm32f429xx.s
  1472. Uses
  1473. At line 79 in file startup_stm32f429xx.s
  1474. At line 235 in file startup_stm32f429xx.s
  1475. 102 symbols
  1476. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  1477. Absolute symbols
  1478. Heap_Size 00000000
  1479. Symbol: Heap_Size
  1480. Definitions
  1481. At line 44 in file startup_stm32f429xx.s
  1482. Uses
  1483. At line 48 in file startup_stm32f429xx.s
  1484. Comment: Heap_Size used once
  1485. Stack_Size 00001000
  1486. Symbol: Stack_Size
  1487. Definitions
  1488. At line 33 in file startup_stm32f429xx.s
  1489. Uses
  1490. At line 36 in file startup_stm32f429xx.s
  1491. Comment: Stack_Size used once
  1492. __Vectors_Size 000001AC
  1493. Symbol: __Vectors_Size
  1494. Definitions
  1495. At line 173 in file startup_stm32f429xx.s
  1496. Uses
  1497. At line 59 in file startup_stm32f429xx.s
  1498. Comment: __Vectors_Size used once
  1499. 3 symbols
  1500. ARM Macro Assembler Page 1 Alphabetic symbol ordering
  1501. External symbols
  1502. SystemInit 00000000
  1503. Symbol: SystemInit
  1504. Definitions
  1505. At line 180 in file startup_stm32f429xx.s
  1506. Uses
  1507. At line 183 in file startup_stm32f429xx.s
  1508. Comment: SystemInit used once
  1509. __main 00000000
  1510. Symbol: __main
  1511. Definitions
  1512. At line 181 in file startup_stm32f429xx.s
  1513. Uses
  1514. At line 185 in file startup_stm32f429xx.s
  1515. Comment: __main used once
  1516. 2 symbols
  1517. 454 symbols in table