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.

2266 lines
88 KiB

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