Rev 2 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 2 | Rev 3 | ||
---|---|---|---|
Line 1... | Line 1... | ||
1 | /** |
1 | /** |
2 | *************** (C) COPYRIGHT 2017 STMicroelectronics ************************ |
2 | *************** (C) COPYRIGHT 2017 STMicroelectronics ************************ |
3 | * @file startup_stm32f101xe.s |
3 | * @file startup_stm32f101xe.s |
4 | * @author MCD Application Team |
4 | * @author MCD Application Team |
5 | * @brief STM32F101xE Value Line Devices vector table for Atollic toolchain. |
5 | * @brief STM32F101xE Value Line Devices vector table for Atollic toolchain. |
6 | * This module performs: |
6 | * This module performs: |
7 | * - Set the initial SP |
7 | * - Set the initial SP |
8 | * - Set the initial PC == Reset_Handler, |
8 | * - Set the initial PC == Reset_Handler, |
9 | * - Set the vector table entries with the exceptions ISR address |
9 | * - Set the vector table entries with the exceptions ISR address |
10 | * - Configure the clock system |
10 | * - Configure the clock system |
11 | * - Branches to main in the C library (which eventually |
11 | * - Branches to main in the C library (which eventually |
12 | * calls main()). |
12 | * calls main()). |
13 | * After Reset the Cortex-M3 processor is in Thread mode, |
13 | * After Reset the Cortex-M3 processor is in Thread mode, |
14 | * priority is Privileged, and the Stack is set to Main. |
14 | * priority is Privileged, and the Stack is set to Main. |
15 | ****************************************************************************** |
15 | ****************************************************************************** |
16 | * @attention |
16 | * @attention |
17 | * |
17 | * |
18 | * <h2><center>© Copyright (c) 2017 STMicroelectronics. |
18 | * Copyright (c) 2017-2021 STMicroelectronics. |
19 | * All rights reserved.</center></h2> |
19 | * All rights reserved. |
20 | * |
20 | * |
21 | * This software component is licensed by ST under BSD 3-Clause license, |
21 | * This software is licensed under terms that can be found in the LICENSE file |
22 | * the "License"; You may not use this file except in compliance with the |
22 | * in the root directory of this software component. |
23 | * License. You may obtain a copy of the License at: |
23 | * If no LICENSE file comes with this software, it is provided AS-IS. |
24 | * opensource.org/licenses/BSD-3-Clause |
24 | * |
25 | * |
25 | ****************************************************************************** |
26 | ****************************************************************************** |
26 | */ |
27 | */ |
27 | |
28 | 28 | .syntax unified |
|
29 | .syntax unified |
29 | .cpu cortex-m3 |
30 | .cpu cortex-m3 |
30 | .fpu softvfp |
31 | .fpu softvfp |
31 | .thumb |
32 | .thumb |
32 | |
33 | 33 | .global g_pfnVectors |
|
34 | .global g_pfnVectors |
34 | .global Default_Handler |
35 | .global Default_Handler |
35 | |
36 | 36 | /* start address for the initialization values of the .data section. |
|
37 | /* start address for the initialization values of the .data section. |
37 | defined in linker script */ |
38 | defined in linker script */ |
38 | .word _sidata |
39 | .word _sidata |
39 | /* start address for the .data section. defined in linker script */ |
40 | /* start address for the .data section. defined in linker script */ |
40 | .word _sdata |
41 | .word _sdata |
41 | /* end address for the .data section. defined in linker script */ |
42 | /* end address for the .data section. defined in linker script */ |
42 | .word _edata |
43 | .word _edata |
43 | /* start address for the .bss section. defined in linker script */ |
44 | /* start address for the .bss section. defined in linker script */ |
44 | .word _sbss |
45 | .word _sbss |
45 | /* end address for the .bss section. defined in linker script */ |
46 | /* end address for the .bss section. defined in linker script */ |
46 | .word _ebss |
47 | .word _ebss |
47 | |
48 | 48 | .equ BootRAM, 0xF1E0F85F |
|
49 | .equ BootRAM, 0xF1E0F85F |
49 | /** |
50 | /** |
50 | * @brief This is the code that gets called when the processor first |
51 | * @brief This is the code that gets called when the processor first |
51 | * starts execution following a reset event. Only the absolutely |
52 | * starts execution following a reset event. Only the absolutely |
52 | * necessary set is performed, after which the application |
53 | * necessary set is performed, after which the application |
53 | * supplied main() routine is called. |
54 | * supplied main() routine is called. |
54 | * @param None |
55 | * @param None |
55 | * @retval : None |
56 | * @retval : None |
56 | */ |
57 | */ |
57 | |
58 | 58 | .section .text.Reset_Handler |
|
59 | .section .text.Reset_Handler |
59 | .weak Reset_Handler |
60 | .weak Reset_Handler |
60 | .type Reset_Handler, %function |
61 | .type Reset_Handler, %function |
61 | Reset_Handler: |
62 | Reset_Handler: |
62 | |
63 | 63 | /* Call the clock system initialization function.*/ |
|
64 | /* Copy the data segment initializers from flash to SRAM */ |
64 | bl SystemInit |
65 | ldr r0, =_sdata |
65 | |
66 | ldr r1, =_edata |
66 | /* Copy the data segment initializers from flash to SRAM */ |
67 | ldr r2, =_sidata |
67 | ldr r0, =_sdata |
68 | movs r3, #0 |
68 | ldr r1, =_edata |
69 | b LoopCopyDataInit |
69 | ldr r2, =_sidata |
70 | 70 | movs r3, #0 |
|
71 | CopyDataInit: |
71 | b LoopCopyDataInit |
72 | ldr r4, [r2, r3] |
72 | |
73 | str r4, [r0, r3] |
73 | CopyDataInit: |
74 | adds r3, r3, #4 |
74 | ldr r4, [r2, r3] |
75 | 75 | str r4, [r0, r3] |
|
76 | LoopCopyDataInit: |
76 | adds r3, r3, #4 |
77 | adds r4, r0, r3 |
77 | |
78 | cmp r4, r1 |
78 | LoopCopyDataInit: |
79 | bcc CopyDataInit |
79 | adds r4, r0, r3 |
80 | 80 | cmp r4, r1 |
|
81 | /* Zero fill the bss segment. */ |
81 | bcc CopyDataInit |
82 | ldr r2, =_sbss |
82 | |
83 | ldr r4, =_ebss |
83 | /* Zero fill the bss segment. */ |
84 | movs r3, #0 |
84 | ldr r2, =_sbss |
85 | b LoopFillZerobss |
85 | ldr r4, =_ebss |
86 | 86 | movs r3, #0 |
|
87 | FillZerobss: |
87 | b LoopFillZerobss |
88 | str r3, [r2] |
88 | |
89 | adds r2, r2, #4 |
89 | FillZerobss: |
90 | 90 | str r3, [r2] |
|
91 | LoopFillZerobss: |
91 | adds r2, r2, #4 |
92 | cmp r2, r4 |
92 | |
93 | bcc FillZerobss |
93 | LoopFillZerobss: |
94 | 94 | cmp r2, r4 |
|
95 | /* Call the clock system intitialization function.*/ |
95 | bcc FillZerobss |
96 | bl SystemInit |
96 | |
97 | /* Call static constructors */ |
97 | /* Call static constructors */ |
98 | bl __libc_init_array |
98 | bl __libc_init_array |
99 | /* Call the application's entry point.*/ |
99 | /* Call the application's entry point.*/ |
100 | bl main |
100 | bl main |
101 | bx lr |
101 | bx lr |
102 | .size Reset_Handler, .-Reset_Handler |
102 | .size Reset_Handler, .-Reset_Handler |
103 | 103 | ||
104 | /** |
104 | /** |
105 | * @brief This is the code that gets called when the processor receives an |
105 | * @brief This is the code that gets called when the processor receives an |
106 | * unexpected interrupt. This simply enters an infinite loop, preserving |
106 | * unexpected interrupt. This simply enters an infinite loop, preserving |
107 | * the system state for examination by a debugger. |
107 | * the system state for examination by a debugger. |
108 | * |
108 | * |
109 | * @param None |
109 | * @param None |
110 | * @retval : None |
110 | * @retval : None |
111 | */ |
111 | */ |
112 | .section .text.Default_Handler,"ax",%progbits |
112 | .section .text.Default_Handler,"ax",%progbits |
113 | Default_Handler: |
113 | Default_Handler: |
114 | Infinite_Loop: |
114 | Infinite_Loop: |
115 | b Infinite_Loop |
115 | b Infinite_Loop |
116 | .size Default_Handler, .-Default_Handler |
116 | .size Default_Handler, .-Default_Handler |
117 | /****************************************************************************** |
117 | /****************************************************************************** |
118 | * |
118 | * |
119 | * The minimal vector table for a Cortex M3. Note that the proper constructs |
119 | * The minimal vector table for a Cortex M3. Note that the proper constructs |
120 | * must be placed on this to ensure that it ends up at physical address |
120 | * must be placed on this to ensure that it ends up at physical address |
121 | * 0x0000.0000. |
121 | * 0x0000.0000. |
122 | * |
122 | * |
123 | ******************************************************************************/ |
123 | ******************************************************************************/ |
124 | .section .isr_vector,"a",%progbits |
124 | .section .isr_vector,"a",%progbits |
125 | .type g_pfnVectors, %object |
125 | .type g_pfnVectors, %object |
126 | .size g_pfnVectors, .-g_pfnVectors |
126 | .size g_pfnVectors, .-g_pfnVectors |
127 | 127 | ||
128 | 128 | ||
129 | g_pfnVectors: |
129 | g_pfnVectors: |
130 | 130 | ||
131 | .word _estack |
131 | .word _estack |
132 | .word Reset_Handler |
132 | .word Reset_Handler |
133 | .word NMI_Handler |
133 | .word NMI_Handler |
134 | .word HardFault_Handler |
134 | .word HardFault_Handler |
135 | .word MemManage_Handler |
135 | .word MemManage_Handler |
136 | .word BusFault_Handler |
136 | .word BusFault_Handler |
137 | .word UsageFault_Handler |
137 | .word UsageFault_Handler |
138 | .word 0 |
138 | .word 0 |
139 | .word 0 |
139 | .word 0 |
140 | .word 0 |
140 | .word 0 |
141 | .word 0 |
141 | .word 0 |
142 | .word SVC_Handler |
142 | .word SVC_Handler |
143 | .word DebugMon_Handler |
143 | .word DebugMon_Handler |
144 | .word 0 |
144 | .word 0 |
145 | .word PendSV_Handler |
145 | .word PendSV_Handler |
146 | .word SysTick_Handler |
146 | .word SysTick_Handler |
147 | .word WWDG_IRQHandler |
147 | .word WWDG_IRQHandler |
148 | .word PVD_IRQHandler |
148 | .word PVD_IRQHandler |
149 | .word TAMPER_IRQHandler |
149 | .word TAMPER_IRQHandler |
150 | .word RTC_IRQHandler |
150 | .word RTC_IRQHandler |
151 | .word FLASH_IRQHandler |
151 | .word FLASH_IRQHandler |
152 | .word RCC_IRQHandler |
152 | .word RCC_IRQHandler |
153 | .word EXTI0_IRQHandler |
153 | .word EXTI0_IRQHandler |
154 | .word EXTI1_IRQHandler |
154 | .word EXTI1_IRQHandler |
155 | .word EXTI2_IRQHandler |
155 | .word EXTI2_IRQHandler |
156 | .word EXTI3_IRQHandler |
156 | .word EXTI3_IRQHandler |
157 | .word EXTI4_IRQHandler |
157 | .word EXTI4_IRQHandler |
158 | .word DMA1_Channel1_IRQHandler |
158 | .word DMA1_Channel1_IRQHandler |
159 | .word DMA1_Channel2_IRQHandler |
159 | .word DMA1_Channel2_IRQHandler |
160 | .word DMA1_Channel3_IRQHandler |
160 | .word DMA1_Channel3_IRQHandler |
161 | .word DMA1_Channel4_IRQHandler |
161 | .word DMA1_Channel4_IRQHandler |
162 | .word DMA1_Channel5_IRQHandler |
162 | .word DMA1_Channel5_IRQHandler |
163 | .word DMA1_Channel6_IRQHandler |
163 | .word DMA1_Channel6_IRQHandler |
164 | .word DMA1_Channel7_IRQHandler |
164 | .word DMA1_Channel7_IRQHandler |
165 | .word ADC1_IRQHandler |
165 | .word ADC1_IRQHandler |
166 | .word 0 |
166 | .word 0 |
167 | .word 0 |
167 | .word 0 |
168 | .word 0 |
168 | .word 0 |
169 | .word 0 |
169 | .word 0 |
170 | .word EXTI9_5_IRQHandler |
170 | .word EXTI9_5_IRQHandler |
171 | .word 0 |
171 | .word 0 |
172 | .word 0 |
172 | .word 0 |
173 | .word 0 |
173 | .word 0 |
174 | .word 0 |
174 | .word 0 |
175 | .word TIM2_IRQHandler |
175 | .word TIM2_IRQHandler |
176 | .word TIM3_IRQHandler |
176 | .word TIM3_IRQHandler |
177 | .word TIM4_IRQHandler |
177 | .word TIM4_IRQHandler |
178 | .word I2C1_EV_IRQHandler |
178 | .word I2C1_EV_IRQHandler |
179 | .word I2C1_ER_IRQHandler |
179 | .word I2C1_ER_IRQHandler |
180 | .word I2C2_EV_IRQHandler |
180 | .word I2C2_EV_IRQHandler |
181 | .word I2C2_ER_IRQHandler |
181 | .word I2C2_ER_IRQHandler |
182 | .word SPI1_IRQHandler |
182 | .word SPI1_IRQHandler |
183 | .word SPI2_IRQHandler |
183 | .word SPI2_IRQHandler |
184 | .word USART1_IRQHandler |
184 | .word USART1_IRQHandler |
185 | .word USART2_IRQHandler |
185 | .word USART2_IRQHandler |
186 | .word USART3_IRQHandler |
186 | .word USART3_IRQHandler |
187 | .word EXTI15_10_IRQHandler |
187 | .word EXTI15_10_IRQHandler |
188 | .word RTC_Alarm_IRQHandler |
188 | .word RTC_Alarm_IRQHandler |
189 | .word 0 |
189 | .word 0 |
190 | .word 0 |
190 | .word 0 |
191 | .word 0 |
191 | .word 0 |
192 | .word 0 |
192 | .word 0 |
193 | .word 0 |
193 | .word 0 |
194 | .word 0 |
194 | .word 0 |
195 | .word FSMC_IRQHandler |
195 | .word FSMC_IRQHandler |
196 | .word 0 |
196 | .word 0 |
197 | .word TIM5_IRQHandler |
197 | .word TIM5_IRQHandler |
198 | .word SPI3_IRQHandler |
198 | .word SPI3_IRQHandler |
199 | .word UART4_IRQHandler |
199 | .word UART4_IRQHandler |
200 | .word UART5_IRQHandler |
200 | .word UART5_IRQHandler |
201 | .word TIM6_IRQHandler |
201 | .word TIM6_IRQHandler |
202 | .word TIM7_IRQHandler |
202 | .word TIM7_IRQHandler |
203 | .word DMA2_Channel1_IRQHandler |
203 | .word DMA2_Channel1_IRQHandler |
204 | .word DMA2_Channel2_IRQHandler |
204 | .word DMA2_Channel2_IRQHandler |
205 | .word DMA2_Channel3_IRQHandler |
205 | .word DMA2_Channel3_IRQHandler |
206 | .word DMA2_Channel4_5_IRQHandler |
206 | .word DMA2_Channel4_5_IRQHandler |
207 | .word 0 |
207 | .word 0 |
208 | .word 0 |
208 | .word 0 |
209 | .word 0 |
209 | .word 0 |
210 | .word 0 |
210 | .word 0 |
211 | .word 0 |
211 | .word 0 |
212 | .word 0 |
212 | .word 0 |
213 | .word 0 |
213 | .word 0 |
214 | .word 0 |
214 | .word 0 |
215 | .word 0 |
215 | .word 0 |
216 | .word 0 |
216 | .word 0 |
217 | .word 0 |
217 | .word 0 |
218 | .word 0 |
218 | .word 0 |
219 | .word 0 |
219 | .word 0 |
220 | .word 0 |
220 | .word 0 |
221 | .word 0 |
221 | .word 0 |
222 | .word 0 |
222 | .word 0 |
223 | .word 0 |
223 | .word 0 |
224 | .word 0 |
224 | .word 0 |
225 | .word 0 |
225 | .word 0 |
226 | .word 0 |
226 | .word 0 |
227 | .word 0 |
227 | .word 0 |
228 | .word 0 |
228 | .word 0 |
229 | .word 0 |
229 | .word 0 |
230 | .word 0 |
230 | .word 0 |
231 | .word 0 |
231 | .word 0 |
232 | .word 0 |
232 | .word 0 |
233 | .word 0 |
233 | .word 0 |
234 | .word 0 |
234 | .word 0 |
235 | .word 0 |
235 | .word 0 |
236 | .word 0 |
236 | .word 0 |
237 | .word 0 |
237 | .word 0 |
238 | .word 0 |
238 | .word 0 |
239 | .word 0 |
239 | .word 0 |
240 | .word 0 |
240 | .word 0 |
241 | .word 0 |
241 | .word 0 |
242 | .word 0 |
242 | .word 0 |
243 | .word 0 |
243 | .word 0 |
244 | .word 0 |
244 | .word 0 |
245 | .word 0 |
245 | .word 0 |
246 | .word 0 |
246 | .word 0 |
247 | .word 0 |
247 | .word 0 |
248 | .word 0 |
248 | .word 0 |
249 | .word 0 |
249 | .word 0 |
250 | .word 0 |
250 | .word 0 |
251 | .word BootRAM /* @0x1E0. This is for boot in RAM mode for |
251 | .word BootRAM /* @0x1E0. This is for boot in RAM mode for |
252 | STM32F10x High Density devices. */ |
252 | STM32F10x High Density devices. */ |
253 | 253 | ||
254 | /******************************************************************************* |
254 | /******************************************************************************* |
255 | * |
255 | * |
256 | * Provide weak aliases for each Exception handler to the Default_Handler. |
256 | * Provide weak aliases for each Exception handler to the Default_Handler. |
257 | * As they are weak aliases, any function with the same name will override |
257 | * As they are weak aliases, any function with the same name will override |
258 | * this definition. |
258 | * this definition. |
259 | * |
259 | * |
260 | *******************************************************************************/ |
260 | *******************************************************************************/ |
261 | 261 | ||
262 | .weak NMI_Handler |
262 | .weak NMI_Handler |
263 | .thumb_set NMI_Handler,Default_Handler |
263 | .thumb_set NMI_Handler,Default_Handler |
264 | 264 | ||
265 | .weak HardFault_Handler |
265 | .weak HardFault_Handler |
266 | .thumb_set HardFault_Handler,Default_Handler |
266 | .thumb_set HardFault_Handler,Default_Handler |
267 | 267 | ||
268 | .weak MemManage_Handler |
268 | .weak MemManage_Handler |
269 | .thumb_set MemManage_Handler,Default_Handler |
269 | .thumb_set MemManage_Handler,Default_Handler |
270 | 270 | ||
271 | .weak BusFault_Handler |
271 | .weak BusFault_Handler |
272 | .thumb_set BusFault_Handler,Default_Handler |
272 | .thumb_set BusFault_Handler,Default_Handler |
273 | 273 | ||
274 | .weak UsageFault_Handler |
274 | .weak UsageFault_Handler |
275 | .thumb_set UsageFault_Handler,Default_Handler |
275 | .thumb_set UsageFault_Handler,Default_Handler |
276 | 276 | ||
277 | .weak SVC_Handler |
277 | .weak SVC_Handler |
278 | .thumb_set SVC_Handler,Default_Handler |
278 | .thumb_set SVC_Handler,Default_Handler |
279 | 279 | ||
280 | .weak DebugMon_Handler |
280 | .weak DebugMon_Handler |
281 | .thumb_set DebugMon_Handler,Default_Handler |
281 | .thumb_set DebugMon_Handler,Default_Handler |
282 | 282 | ||
283 | .weak PendSV_Handler |
283 | .weak PendSV_Handler |
284 | .thumb_set PendSV_Handler,Default_Handler |
284 | .thumb_set PendSV_Handler,Default_Handler |
285 | 285 | ||
286 | .weak SysTick_Handler |
286 | .weak SysTick_Handler |
287 | .thumb_set SysTick_Handler,Default_Handler |
287 | .thumb_set SysTick_Handler,Default_Handler |
288 | 288 | ||
289 | .weak WWDG_IRQHandler |
289 | .weak WWDG_IRQHandler |
290 | .thumb_set WWDG_IRQHandler,Default_Handler |
290 | .thumb_set WWDG_IRQHandler,Default_Handler |
291 | 291 | ||
292 | .weak PVD_IRQHandler |
292 | .weak PVD_IRQHandler |
293 | .thumb_set PVD_IRQHandler,Default_Handler |
293 | .thumb_set PVD_IRQHandler,Default_Handler |
294 | 294 | ||
295 | .weak TAMPER_IRQHandler |
295 | .weak TAMPER_IRQHandler |
296 | .thumb_set TAMPER_IRQHandler,Default_Handler |
296 | .thumb_set TAMPER_IRQHandler,Default_Handler |
297 | 297 | ||
298 | .weak RTC_IRQHandler |
298 | .weak RTC_IRQHandler |
299 | .thumb_set RTC_IRQHandler,Default_Handler |
299 | .thumb_set RTC_IRQHandler,Default_Handler |
300 | 300 | ||
301 | .weak FLASH_IRQHandler |
301 | .weak FLASH_IRQHandler |
302 | .thumb_set FLASH_IRQHandler,Default_Handler |
302 | .thumb_set FLASH_IRQHandler,Default_Handler |
303 | 303 | ||
304 | .weak RCC_IRQHandler |
304 | .weak RCC_IRQHandler |
305 | .thumb_set RCC_IRQHandler,Default_Handler |
305 | .thumb_set RCC_IRQHandler,Default_Handler |
306 | 306 | ||
307 | .weak EXTI0_IRQHandler |
307 | .weak EXTI0_IRQHandler |
308 | .thumb_set EXTI0_IRQHandler,Default_Handler |
308 | .thumb_set EXTI0_IRQHandler,Default_Handler |
309 | 309 | ||
310 | .weak EXTI1_IRQHandler |
310 | .weak EXTI1_IRQHandler |
311 | .thumb_set EXTI1_IRQHandler,Default_Handler |
311 | .thumb_set EXTI1_IRQHandler,Default_Handler |
312 | 312 | ||
313 | .weak EXTI2_IRQHandler |
313 | .weak EXTI2_IRQHandler |
314 | .thumb_set EXTI2_IRQHandler,Default_Handler |
314 | .thumb_set EXTI2_IRQHandler,Default_Handler |
315 | 315 | ||
316 | .weak EXTI3_IRQHandler |
316 | .weak EXTI3_IRQHandler |
317 | .thumb_set EXTI3_IRQHandler,Default_Handler |
317 | .thumb_set EXTI3_IRQHandler,Default_Handler |
318 | 318 | ||
319 | .weak EXTI4_IRQHandler |
319 | .weak EXTI4_IRQHandler |
320 | .thumb_set EXTI4_IRQHandler,Default_Handler |
320 | .thumb_set EXTI4_IRQHandler,Default_Handler |
321 | 321 | ||
322 | .weak DMA1_Channel1_IRQHandler |
322 | .weak DMA1_Channel1_IRQHandler |
323 | .thumb_set DMA1_Channel1_IRQHandler,Default_Handler |
323 | .thumb_set DMA1_Channel1_IRQHandler,Default_Handler |
324 | 324 | ||
325 | .weak DMA1_Channel2_IRQHandler |
325 | .weak DMA1_Channel2_IRQHandler |
326 | .thumb_set DMA1_Channel2_IRQHandler,Default_Handler |
326 | .thumb_set DMA1_Channel2_IRQHandler,Default_Handler |
327 | 327 | ||
328 | .weak DMA1_Channel3_IRQHandler |
328 | .weak DMA1_Channel3_IRQHandler |
329 | .thumb_set DMA1_Channel3_IRQHandler,Default_Handler |
329 | .thumb_set DMA1_Channel3_IRQHandler,Default_Handler |
330 | 330 | ||
331 | .weak DMA1_Channel4_IRQHandler |
331 | .weak DMA1_Channel4_IRQHandler |
332 | .thumb_set DMA1_Channel4_IRQHandler,Default_Handler |
332 | .thumb_set DMA1_Channel4_IRQHandler,Default_Handler |
333 | 333 | ||
334 | .weak DMA1_Channel5_IRQHandler |
334 | .weak DMA1_Channel5_IRQHandler |
335 | .thumb_set DMA1_Channel5_IRQHandler,Default_Handler |
335 | .thumb_set DMA1_Channel5_IRQHandler,Default_Handler |
336 | 336 | ||
337 | .weak DMA1_Channel6_IRQHandler |
337 | .weak DMA1_Channel6_IRQHandler |
338 | .thumb_set DMA1_Channel6_IRQHandler,Default_Handler |
338 | .thumb_set DMA1_Channel6_IRQHandler,Default_Handler |
339 | 339 | ||
340 | .weak DMA1_Channel7_IRQHandler |
340 | .weak DMA1_Channel7_IRQHandler |
341 | .thumb_set DMA1_Channel7_IRQHandler,Default_Handler |
341 | .thumb_set DMA1_Channel7_IRQHandler,Default_Handler |
342 | 342 | ||
343 | .weak ADC1_IRQHandler |
343 | .weak ADC1_IRQHandler |
344 | .thumb_set ADC1_IRQHandler,Default_Handler |
344 | .thumb_set ADC1_IRQHandler,Default_Handler |
345 | 345 | ||
346 | .weak EXTI9_5_IRQHandler |
346 | .weak EXTI9_5_IRQHandler |
347 | .thumb_set EXTI9_5_IRQHandler,Default_Handler |
347 | .thumb_set EXTI9_5_IRQHandler,Default_Handler |
348 | 348 | ||
349 | .weak TIM2_IRQHandler |
349 | .weak TIM2_IRQHandler |
350 | .thumb_set TIM2_IRQHandler,Default_Handler |
350 | .thumb_set TIM2_IRQHandler,Default_Handler |
351 | 351 | ||
352 | .weak TIM3_IRQHandler |
352 | .weak TIM3_IRQHandler |
353 | .thumb_set TIM3_IRQHandler,Default_Handler |
353 | .thumb_set TIM3_IRQHandler,Default_Handler |
354 | 354 | ||
355 | .weak TIM4_IRQHandler |
355 | .weak TIM4_IRQHandler |
356 | .thumb_set TIM4_IRQHandler,Default_Handler |
356 | .thumb_set TIM4_IRQHandler,Default_Handler |
357 | 357 | ||
358 | .weak I2C1_EV_IRQHandler |
358 | .weak I2C1_EV_IRQHandler |
359 | .thumb_set I2C1_EV_IRQHandler,Default_Handler |
359 | .thumb_set I2C1_EV_IRQHandler,Default_Handler |
360 | 360 | ||
361 | .weak I2C1_ER_IRQHandler |
361 | .weak I2C1_ER_IRQHandler |
362 | .thumb_set I2C1_ER_IRQHandler,Default_Handler |
362 | .thumb_set I2C1_ER_IRQHandler,Default_Handler |
363 | 363 | ||
364 | .weak I2C2_EV_IRQHandler |
364 | .weak I2C2_EV_IRQHandler |
365 | .thumb_set I2C2_EV_IRQHandler,Default_Handler |
365 | .thumb_set I2C2_EV_IRQHandler,Default_Handler |
366 | 366 | ||
367 | .weak I2C2_ER_IRQHandler |
367 | .weak I2C2_ER_IRQHandler |
368 | .thumb_set I2C2_ER_IRQHandler,Default_Handler |
368 | .thumb_set I2C2_ER_IRQHandler,Default_Handler |
369 | 369 | ||
370 | .weak SPI1_IRQHandler |
370 | .weak SPI1_IRQHandler |
371 | .thumb_set SPI1_IRQHandler,Default_Handler |
371 | .thumb_set SPI1_IRQHandler,Default_Handler |
372 | 372 | ||
373 | .weak SPI2_IRQHandler |
373 | .weak SPI2_IRQHandler |
374 | .thumb_set SPI2_IRQHandler,Default_Handler |
374 | .thumb_set SPI2_IRQHandler,Default_Handler |
375 | 375 | ||
376 | .weak USART1_IRQHandler |
376 | .weak USART1_IRQHandler |
377 | .thumb_set USART1_IRQHandler,Default_Handler |
377 | .thumb_set USART1_IRQHandler,Default_Handler |
378 | 378 | ||
379 | .weak USART2_IRQHandler |
379 | .weak USART2_IRQHandler |
380 | .thumb_set USART2_IRQHandler,Default_Handler |
380 | .thumb_set USART2_IRQHandler,Default_Handler |
381 | 381 | ||
382 | .weak USART3_IRQHandler |
382 | .weak USART3_IRQHandler |
383 | .thumb_set USART3_IRQHandler,Default_Handler |
383 | .thumb_set USART3_IRQHandler,Default_Handler |
384 | 384 | ||
385 | .weak EXTI15_10_IRQHandler |
385 | .weak EXTI15_10_IRQHandler |
386 | .thumb_set EXTI15_10_IRQHandler,Default_Handler |
386 | .thumb_set EXTI15_10_IRQHandler,Default_Handler |
387 | 387 | ||
388 | .weak RTC_Alarm_IRQHandler |
388 | .weak RTC_Alarm_IRQHandler |
389 | .thumb_set RTC_Alarm_IRQHandler,Default_Handler |
389 | .thumb_set RTC_Alarm_IRQHandler,Default_Handler |
390 | 390 | ||
391 | .weak FSMC_IRQHandler |
391 | .weak FSMC_IRQHandler |
392 | .thumb_set FSMC_IRQHandler,Default_Handler |
392 | .thumb_set FSMC_IRQHandler,Default_Handler |
393 | 393 | ||
394 | .weak TIM5_IRQHandler |
394 | .weak TIM5_IRQHandler |
395 | .thumb_set TIM5_IRQHandler,Default_Handler |
395 | .thumb_set TIM5_IRQHandler,Default_Handler |
396 | 396 | ||
397 | .weak SPI3_IRQHandler |
397 | .weak SPI3_IRQHandler |
398 | .thumb_set SPI3_IRQHandler,Default_Handler |
398 | .thumb_set SPI3_IRQHandler,Default_Handler |
399 | 399 | ||
400 | .weak UART4_IRQHandler |
400 | .weak UART4_IRQHandler |
401 | .thumb_set UART4_IRQHandler,Default_Handler |
401 | .thumb_set UART4_IRQHandler,Default_Handler |
402 | 402 | ||
403 | .weak UART5_IRQHandler |
403 | .weak UART5_IRQHandler |
404 | .thumb_set UART5_IRQHandler,Default_Handler |
404 | .thumb_set UART5_IRQHandler,Default_Handler |
405 | 405 | ||
406 | .weak TIM6_IRQHandler |
406 | .weak TIM6_IRQHandler |
407 | .thumb_set TIM6_IRQHandler,Default_Handler |
407 | .thumb_set TIM6_IRQHandler,Default_Handler |
408 | 408 | ||
409 | .weak TIM7_IRQHandler |
409 | .weak TIM7_IRQHandler |
410 | .thumb_set TIM7_IRQHandler,Default_Handler |
410 | .thumb_set TIM7_IRQHandler,Default_Handler |
411 | 411 | ||
412 | .weak DMA2_Channel1_IRQHandler |
412 | .weak DMA2_Channel1_IRQHandler |
413 | .thumb_set DMA2_Channel1_IRQHandler,Default_Handler |
413 | .thumb_set DMA2_Channel1_IRQHandler,Default_Handler |
414 | 414 | ||
415 | .weak DMA2_Channel2_IRQHandler |
415 | .weak DMA2_Channel2_IRQHandler |
416 | .thumb_set DMA2_Channel2_IRQHandler,Default_Handler |
416 | .thumb_set DMA2_Channel2_IRQHandler,Default_Handler |
417 | 417 | ||
418 | .weak DMA2_Channel3_IRQHandler |
418 | .weak DMA2_Channel3_IRQHandler |
419 | .thumb_set DMA2_Channel3_IRQHandler,Default_Handler |
419 | .thumb_set DMA2_Channel3_IRQHandler,Default_Handler |
420 | 420 | ||
421 | .weak DMA2_Channel4_5_IRQHandler |
421 | .weak DMA2_Channel4_5_IRQHandler |
422 | .thumb_set DMA2_Channel4_5_IRQHandler,Default_Handler |
422 | .thumb_set DMA2_Channel4_5_IRQHandler,Default_Handler |
423 | 423 | ||
424 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |
- |