annotate Common/Drivers/STM32F4xx_v220/Source/Templates/iar/startup_stm32f401xc.s @ 51:8f8ea3a32e82

Resolved warnings pointing to possible invalid memory access
author Ideenmodellierer
date Tue, 31 Jul 2018 22:28:21 +0200
parents 5f11787b4f42
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
1 ;/******************** (C) COPYRIGHT 2014 STMicroelectronics ********************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
2 ;* File Name : startup_stm32f401xc.s
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
3 ;* Author : MCD Application Team
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
4 ;* Version : V2.2.0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
5 ;* Date : 15-December-2014
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
6 ;* Description : STM32F401xCxx devices vector table for EWARM toolchain.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
7 ;* This module performs:
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
8 ;* - Set the initial SP
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
9 ;* - Set the initial PC == _iar_program_start,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
10 ;* - Set the vector table entries with the exceptions ISR
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
11 ;* address.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
12 ;* - Configure the system clock
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
13 ;* - Branches to main in the C library (which eventually
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
14 ;* calls main()).
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
15 ;* After Reset the Cortex-M4 processor is in Thread mode,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
16 ;* priority is Privileged, and the Stack is set to Main.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
17 ;********************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
18 ;*
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
19 ;* Redistribution and use in source and binary forms, with or without modification,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
20 ;* are permitted provided that the following conditions are met:
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
21 ;* 1. Redistributions of source code must retain the above copyright notice,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
22 ;* this list of conditions and the following disclaimer.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
23 ;* 2. Redistributions in binary form must reproduce the above copyright notice,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
24 ;* this list of conditions and the following disclaimer in the documentation
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
25 ;* and/or other materials provided with the distribution.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
26 ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
27 ;* may be used to endorse or promote products derived from this software
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
28 ;* without specific prior written permission.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
29 ;*
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
30 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
31 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
32 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
33 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
34 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
35 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
36 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
37 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
38 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
39 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
40 ;*
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
41 ;*******************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
42 ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
43 ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
44 ; The modules in this file are included in the libraries, and may be replaced
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
45 ; by any user-defined modules that define the PUBLIC symbol _program_start or
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
46 ; a user defined start symbol.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
47 ; To override the cstartup defined in the library, simply add your modified
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
48 ; version to the workbench project.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
49 ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
50 ; The vector table is normally located at address 0.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
51 ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
52 ; The name "__vector_table" has special meaning for C-SPY:
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
53 ; it is where the SP start value is found, and the NVIC vector
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
54 ; table register (VTOR) is initialized to this address if != 0.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
55 ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
56 ; Cortex-M version
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
57 ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
58
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
59 MODULE ?cstartup
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
60
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
61 ;; Forward declaration of sections.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
62 SECTION CSTACK:DATA:NOROOT(3)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
63
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
64 SECTION .intvec:CODE:NOROOT(2)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
65
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
66 EXTERN __iar_program_start
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
67 EXTERN SystemInit
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
68 PUBLIC __vector_table
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
69
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
70 DATA
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
71 __vector_table
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
72 DCD sfe(CSTACK)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
73 DCD Reset_Handler ; Reset Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
74
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
75 DCD NMI_Handler ; NMI Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
76 DCD HardFault_Handler ; Hard Fault Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
77 DCD MemManage_Handler ; MPU Fault Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
78 DCD BusFault_Handler ; Bus Fault Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
79 DCD UsageFault_Handler ; Usage Fault Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
80 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
81 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
82 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
83 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
84 DCD SVC_Handler ; SVCall Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
85 DCD DebugMon_Handler ; Debug Monitor Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
86 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
87 DCD PendSV_Handler ; PendSV Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
88 DCD SysTick_Handler ; SysTick Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
89
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
90 ; External Interrupts
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
91 DCD WWDG_IRQHandler ; Window WatchDog
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
92 DCD PVD_IRQHandler ; PVD through EXTI Line detection
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
93 DCD TAMP_STAMP_IRQHandler ; Tamper and TimeStamps through the EXTI line
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
94 DCD RTC_WKUP_IRQHandler ; RTC Wakeup through the EXTI line
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
95 DCD FLASH_IRQHandler ; FLASH
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
96 DCD RCC_IRQHandler ; RCC
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
97 DCD EXTI0_IRQHandler ; EXTI Line0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
98 DCD EXTI1_IRQHandler ; EXTI Line1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
99 DCD EXTI2_IRQHandler ; EXTI Line2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
100 DCD EXTI3_IRQHandler ; EXTI Line3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
101 DCD EXTI4_IRQHandler ; EXTI Line4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
102 DCD DMA1_Stream0_IRQHandler ; DMA1 Stream 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
103 DCD DMA1_Stream1_IRQHandler ; DMA1 Stream 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
104 DCD DMA1_Stream2_IRQHandler ; DMA1 Stream 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
105 DCD DMA1_Stream3_IRQHandler ; DMA1 Stream 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
106 DCD DMA1_Stream4_IRQHandler ; DMA1 Stream 4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
107 DCD DMA1_Stream5_IRQHandler ; DMA1 Stream 5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
108 DCD DMA1_Stream6_IRQHandler ; DMA1 Stream 6
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
109 DCD ADC_IRQHandler ; ADC1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
110 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
111 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
112 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
113 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
114 DCD EXTI9_5_IRQHandler ; External Line[9:5]s
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
115 DCD TIM1_BRK_TIM9_IRQHandler ; TIM1 Break and TIM9
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
116 DCD TIM1_UP_TIM10_IRQHandler ; TIM1 Update and TIM10
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
117 DCD TIM1_TRG_COM_TIM11_IRQHandler ; TIM1 Trigger and Commutation and TIM11
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
118 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
119 DCD TIM2_IRQHandler ; TIM2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
120 DCD TIM3_IRQHandler ; TIM3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
121 DCD TIM4_IRQHandler ; TIM4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
122 DCD I2C1_EV_IRQHandler ; I2C1 Event
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
123 DCD I2C1_ER_IRQHandler ; I2C1 Error
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
124 DCD I2C2_EV_IRQHandler ; I2C2 Event
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
125 DCD I2C2_ER_IRQHandler ; I2C2 Error
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
126 DCD SPI1_IRQHandler ; SPI1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
127 DCD SPI2_IRQHandler ; SPI2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
128 DCD USART1_IRQHandler ; USART1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
129 DCD USART2_IRQHandler ; USART2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
130 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
131 DCD EXTI15_10_IRQHandler ; External Line[15:10]s
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
132 DCD RTC_Alarm_IRQHandler ; RTC Alarm (A and B) through EXTI Line
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
133 DCD OTG_FS_WKUP_IRQHandler ; USB OTG FS Wakeup through EXTI line
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
134 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
135 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
136 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
137 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
138 DCD DMA1_Stream7_IRQHandler ; DMA1 Stream7
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
139 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
140 DCD SDIO_IRQHandler ; SDIO
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
141 DCD TIM5_IRQHandler ; TIM5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
142 DCD SPI3_IRQHandler ; SPI3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
143 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
144 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
145 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
146 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
147 DCD DMA2_Stream0_IRQHandler ; DMA2 Stream 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
148 DCD DMA2_Stream1_IRQHandler ; DMA2 Stream 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
149 DCD DMA2_Stream2_IRQHandler ; DMA2 Stream 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
150 DCD DMA2_Stream3_IRQHandler ; DMA2 Stream 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
151 DCD DMA2_Stream4_IRQHandler ; DMA2 Stream 4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
152 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
153 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
154 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
155 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
156 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
157 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
158 DCD OTG_FS_IRQHandler ; USB OTG FS
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
159 DCD DMA2_Stream5_IRQHandler ; DMA2 Stream 5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
160 DCD DMA2_Stream6_IRQHandler ; DMA2 Stream 6
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
161 DCD DMA2_Stream7_IRQHandler ; DMA2 Stream 7
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
162 DCD USART6_IRQHandler ; USART6
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
163 DCD I2C3_EV_IRQHandler ; I2C3 event
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
164 DCD I2C3_ER_IRQHandler ; I2C3 error
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
165 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
166 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
167 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
168 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
169 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
170 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
171 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
172 DCD FPU_IRQHandler ; FPU
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
173 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
174 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
175 DCD SPI4_IRQHandler ; SPI4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
176
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
177 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
178 ;;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
179 ;; Default interrupt handlers.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
180 ;;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
181 THUMB
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
182 PUBWEAK Reset_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
183 SECTION .text:CODE:REORDER:NOROOT(2)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
184 Reset_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
185
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
186 LDR R0, =SystemInit
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
187 BLX R0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
188 LDR R0, =__iar_program_start
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
189 BX R0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
190
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
191 PUBWEAK NMI_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
192 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
193 NMI_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
194 B NMI_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
195
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
196 PUBWEAK HardFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
197 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
198 HardFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
199 B HardFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
200
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
201 PUBWEAK MemManage_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
202 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
203 MemManage_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
204 B MemManage_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
205
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
206 PUBWEAK BusFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
207 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
208 BusFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
209 B BusFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
210
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
211 PUBWEAK UsageFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
212 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
213 UsageFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
214 B UsageFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
215
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
216 PUBWEAK SVC_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
217 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
218 SVC_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
219 B SVC_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
220
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
221 PUBWEAK DebugMon_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
222 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
223 DebugMon_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
224 B DebugMon_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
225
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
226 PUBWEAK PendSV_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
227 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
228 PendSV_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
229 B PendSV_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
230
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
231 PUBWEAK SysTick_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
232 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
233 SysTick_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
234 B SysTick_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
235
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
236 PUBWEAK WWDG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
237 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
238 WWDG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
239 B WWDG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
240
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
241 PUBWEAK PVD_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
242 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
243 PVD_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
244 B PVD_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
245
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
246 PUBWEAK TAMP_STAMP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
247 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
248 TAMP_STAMP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
249 B TAMP_STAMP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
250
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
251 PUBWEAK RTC_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
252 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
253 RTC_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
254 B RTC_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
255
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
256 PUBWEAK FLASH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
257 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
258 FLASH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
259 B FLASH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
260
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
261 PUBWEAK RCC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
262 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
263 RCC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
264 B RCC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
265
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
266 PUBWEAK EXTI0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
267 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
268 EXTI0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
269 B EXTI0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
270
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
271 PUBWEAK EXTI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
272 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
273 EXTI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
274 B EXTI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
275
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
276 PUBWEAK EXTI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
277 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
278 EXTI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
279 B EXTI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
280
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
281 PUBWEAK EXTI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
282 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
283 EXTI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
284 B EXTI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
285
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
286 PUBWEAK EXTI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
287 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
288 EXTI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
289 B EXTI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
290
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
291 PUBWEAK DMA1_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
292 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
293 DMA1_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
294 B DMA1_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
295
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
296 PUBWEAK DMA1_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
297 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
298 DMA1_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
299 B DMA1_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
300
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
301 PUBWEAK DMA1_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
302 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
303 DMA1_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
304 B DMA1_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
305
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
306 PUBWEAK DMA1_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
307 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
308 DMA1_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
309 B DMA1_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
310
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
311 PUBWEAK DMA1_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
312 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
313 DMA1_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
314 B DMA1_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
315
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
316 PUBWEAK DMA1_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
317 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
318 DMA1_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
319 B DMA1_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
320
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
321 PUBWEAK DMA1_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
322 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
323 DMA1_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
324 B DMA1_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
325
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
326 PUBWEAK ADC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
327 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
328 ADC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
329 B ADC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
330
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
331 PUBWEAK EXTI9_5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
332 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
333 EXTI9_5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
334 B EXTI9_5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
335
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
336 PUBWEAK TIM1_BRK_TIM9_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
337 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
338 TIM1_BRK_TIM9_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
339 B TIM1_BRK_TIM9_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
340
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
341 PUBWEAK TIM1_UP_TIM10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
342 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
343 TIM1_UP_TIM10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
344 B TIM1_UP_TIM10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
345
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
346 PUBWEAK TIM1_TRG_COM_TIM11_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
347 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
348 TIM1_TRG_COM_TIM11_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
349 B TIM1_TRG_COM_TIM11_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
350
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
351 PUBWEAK TIM1_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
352 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
353 TIM1_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
354 B TIM1_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
355
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
356 PUBWEAK TIM2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
357 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
358 TIM2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
359 B TIM2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
360
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
361 PUBWEAK TIM3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
362 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
363 TIM3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
364 B TIM3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
365
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
366 PUBWEAK TIM4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
367 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
368 TIM4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
369 B TIM4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
370
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
371 PUBWEAK I2C1_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
372 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
373 I2C1_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
374 B I2C1_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
375
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
376 PUBWEAK I2C1_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
377 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
378 I2C1_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
379 B I2C1_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
380
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
381 PUBWEAK I2C2_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
382 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
383 I2C2_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
384 B I2C2_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
385
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
386 PUBWEAK I2C2_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
387 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
388 I2C2_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
389 B I2C2_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
390
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
391 PUBWEAK SPI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
392 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
393 SPI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
394 B SPI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
395
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
396 PUBWEAK SPI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
397 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
398 SPI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
399 B SPI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
400
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
401 PUBWEAK USART1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
402 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
403 USART1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
404 B USART1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
405
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
406 PUBWEAK USART2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
407 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
408 USART2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
409 B USART2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
410
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
411 PUBWEAK EXTI15_10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
412 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
413 EXTI15_10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
414 B EXTI15_10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
415
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
416 PUBWEAK RTC_Alarm_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
417 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
418 RTC_Alarm_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
419 B RTC_Alarm_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
420
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
421 PUBWEAK OTG_FS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
422 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
423 OTG_FS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
424 B OTG_FS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
425
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
426 PUBWEAK DMA1_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
427 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
428 DMA1_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
429 B DMA1_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
430
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
431 PUBWEAK SDIO_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
432 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
433 SDIO_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
434 B SDIO_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
435
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
436 PUBWEAK TIM5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
437 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
438 TIM5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
439 B TIM5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
440
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
441 PUBWEAK SPI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
442 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
443 SPI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
444 B SPI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
445
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
446 PUBWEAK DMA2_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
447 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
448 DMA2_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
449 B DMA2_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
450
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
451 PUBWEAK DMA2_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
452 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
453 DMA2_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
454 B DMA2_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
455
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
456 PUBWEAK DMA2_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
457 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
458 DMA2_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
459 B DMA2_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
460
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
461 PUBWEAK DMA2_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
462 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
463 DMA2_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
464 B DMA2_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
465
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
466 PUBWEAK DMA2_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
467 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
468 DMA2_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
469 B DMA2_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
470
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
471 PUBWEAK OTG_FS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
472 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
473 OTG_FS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
474 B OTG_FS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
475
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
476 PUBWEAK DMA2_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
477 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
478 DMA2_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
479 B DMA2_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
480
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
481 PUBWEAK DMA2_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
482 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
483 DMA2_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
484 B DMA2_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
485
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
486 PUBWEAK DMA2_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
487 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
488 DMA2_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
489 B DMA2_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
490
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
491 PUBWEAK USART6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
492 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
493 USART6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
494 B USART6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
495
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
496 PUBWEAK I2C3_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
497 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
498 I2C3_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
499 B I2C3_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
500
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
501 PUBWEAK I2C3_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
502 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
503 I2C3_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
504 B I2C3_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
505
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
506 PUBWEAK FPU_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
507 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
508 FPU_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
509 B FPU_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
510
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
511 PUBWEAK SPI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
512 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
513 SPI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
514 B SPI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
515
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
516 END
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
517 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/