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.

1924 lines
68 KiB

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