annotate Common/Drivers/STM32F4xx_v220/Source/Templates/iar/startup_stm32f437xx.s @ 83:ef4f45df70c1 kittz

???????
author Dmitry Romanov <kitt@bk.ru>
date Tue, 20 Nov 2018 12:27:40 +0300
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_stm32f437xx.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 : STM32F437xx 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 ;* - Branches to main in the C library (which eventually
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
13 ;* calls main()).
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
14 ;* After Reset the Cortex-M4 processor is in Thread mode,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
15 ;* priority is Privileged, and the Stack is set to Main.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
16 ;********************************************************************************
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
17 ;*
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
18 ;* Redistribution and use in source and binary forms, with or without modification,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
19 ;* are permitted provided that the following conditions are met:
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
20 ;* 1. Redistributions of source code must retain the above copyright notice,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
21 ;* this list of conditions and the following disclaimer.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
22 ;* 2. Redistributions in binary form must reproduce the above copyright notice,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
23 ;* this list of conditions and the following disclaimer in the documentation
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
24 ;* and/or other materials provided with the distribution.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
25 ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
26 ;* may be used to endorse or promote products derived from this software
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
27 ;* without specific prior written permission.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
28 ;*
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
29 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
30 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
31 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
32 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
33 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
34 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
35 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
36 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
37 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
38 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
39 ;*
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 ; The modules in this file are included in the libraries, and may be replaced
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
44 ; by any user-defined modules that define the PUBLIC symbol _program_start or
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
45 ; a user defined start symbol.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
46 ; To override the cstartup defined in the library, simply add your modified
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
47 ; version to the workbench project.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
48 ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
49 ; The vector table is normally located at address 0.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
50 ; 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
51 ; The name "__vector_table" has special meaning for C-SPY:
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
52 ; it is where the SP start value is found, and the NVIC vector
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
53 ; table register (VTOR) is initialized to this address if != 0.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
54 ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
55 ; Cortex-M version
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
56 ;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
57
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
58 MODULE ?cstartup
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
59
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
60 ;; Forward declaration of sections.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
61 SECTION CSTACK:DATA:NOROOT(3)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
62
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
63 SECTION .intvec:CODE:NOROOT(2)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
64
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
65 EXTERN __iar_program_start
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
66 EXTERN SystemInit
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
67 PUBLIC __vector_table
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
68
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
69 DATA
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
70 __vector_table
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
71 DCD sfe(CSTACK)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
72 DCD Reset_Handler ; Reset Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
73
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
74 DCD NMI_Handler ; NMI Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
75 DCD HardFault_Handler ; Hard Fault Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
76 DCD MemManage_Handler ; MPU Fault Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
77 DCD BusFault_Handler ; Bus Fault Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
78 DCD UsageFault_Handler ; Usage Fault Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
79 DCD 0 ; Reserved
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 SVC_Handler ; SVCall Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
84 DCD DebugMon_Handler ; Debug Monitor Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
85 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
86 DCD PendSV_Handler ; PendSV Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
87 DCD SysTick_Handler ; SysTick Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
88
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
89 ; External Interrupts
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
90 DCD WWDG_IRQHandler ; Window WatchDog
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
91 DCD PVD_IRQHandler ; PVD through EXTI Line detection
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
92 DCD TAMP_STAMP_IRQHandler ; Tamper and TimeStamps through the EXTI line
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
93 DCD RTC_WKUP_IRQHandler ; RTC Wakeup through the EXTI line
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
94 DCD FLASH_IRQHandler ; FLASH
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
95 DCD RCC_IRQHandler ; RCC
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
96 DCD EXTI0_IRQHandler ; EXTI Line0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
97 DCD EXTI1_IRQHandler ; EXTI Line1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
98 DCD EXTI2_IRQHandler ; EXTI Line2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
99 DCD EXTI3_IRQHandler ; EXTI Line3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
100 DCD EXTI4_IRQHandler ; EXTI Line4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
101 DCD DMA1_Stream0_IRQHandler ; DMA1 Stream 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
102 DCD DMA1_Stream1_IRQHandler ; DMA1 Stream 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
103 DCD DMA1_Stream2_IRQHandler ; DMA1 Stream 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
104 DCD DMA1_Stream3_IRQHandler ; DMA1 Stream 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
105 DCD DMA1_Stream4_IRQHandler ; DMA1 Stream 4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
106 DCD DMA1_Stream5_IRQHandler ; DMA1 Stream 5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
107 DCD DMA1_Stream6_IRQHandler ; DMA1 Stream 6
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
108 DCD ADC_IRQHandler ; ADC1, ADC2 and ADC3s
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
109 DCD CAN1_TX_IRQHandler ; CAN1 TX
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
110 DCD CAN1_RX0_IRQHandler ; CAN1 RX0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
111 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
112 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
113 DCD EXTI9_5_IRQHandler ; External Line[9:5]s
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
114 DCD TIM1_BRK_TIM9_IRQHandler ; TIM1 Break and TIM9
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
115 DCD TIM1_UP_TIM10_IRQHandler ; TIM1 Update and TIM10
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
116 DCD TIM1_TRG_COM_TIM11_IRQHandler ; TIM1 Trigger and Commutation and TIM11
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
117 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
118 DCD TIM2_IRQHandler ; TIM2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
119 DCD TIM3_IRQHandler ; TIM3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
120 DCD TIM4_IRQHandler ; TIM4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
121 DCD I2C1_EV_IRQHandler ; I2C1 Event
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
122 DCD I2C1_ER_IRQHandler ; I2C1 Error
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
123 DCD I2C2_EV_IRQHandler ; I2C2 Event
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
124 DCD I2C2_ER_IRQHandler ; I2C2 Error
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
125 DCD SPI1_IRQHandler ; SPI1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
126 DCD SPI2_IRQHandler ; SPI2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
127 DCD USART1_IRQHandler ; USART1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
128 DCD USART2_IRQHandler ; USART2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
129 DCD USART3_IRQHandler ; USART3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
130 DCD EXTI15_10_IRQHandler ; External Line[15:10]s
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
131 DCD RTC_Alarm_IRQHandler ; RTC Alarm (A and B) through EXTI Line
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
132 DCD OTG_FS_WKUP_IRQHandler ; USB OTG FS Wakeup through EXTI line
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
133 DCD TIM8_BRK_TIM12_IRQHandler ; TIM8 Break and TIM12
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
134 DCD TIM8_UP_TIM13_IRQHandler ; TIM8 Update and TIM13
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
135 DCD TIM8_TRG_COM_TIM14_IRQHandler ; TIM8 Trigger and Commutation and TIM14
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
136 DCD TIM8_CC_IRQHandler ; TIM8 Capture Compare
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
137 DCD DMA1_Stream7_IRQHandler ; DMA1 Stream7
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
138 DCD FMC_IRQHandler ; FMC
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
139 DCD SDIO_IRQHandler ; SDIO
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
140 DCD TIM5_IRQHandler ; TIM5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
141 DCD SPI3_IRQHandler ; SPI3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
142 DCD UART4_IRQHandler ; UART4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
143 DCD UART5_IRQHandler ; UART5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
144 DCD TIM6_DAC_IRQHandler ; TIM6 and DAC1&2 underrun errors
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
145 DCD TIM7_IRQHandler ; TIM7
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
146 DCD DMA2_Stream0_IRQHandler ; DMA2 Stream 0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
147 DCD DMA2_Stream1_IRQHandler ; DMA2 Stream 1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
148 DCD DMA2_Stream2_IRQHandler ; DMA2 Stream 2
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
149 DCD DMA2_Stream3_IRQHandler ; DMA2 Stream 3
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
150 DCD DMA2_Stream4_IRQHandler ; DMA2 Stream 4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
151 DCD ETH_IRQHandler ; Ethernet
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
152 DCD ETH_WKUP_IRQHandler ; Ethernet Wakeup through EXTI line
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
153 DCD CAN2_TX_IRQHandler ; CAN2 TX
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
154 DCD CAN2_RX0_IRQHandler ; CAN2 RX0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
155 DCD CAN2_RX1_IRQHandler ; CAN2 RX1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
156 DCD CAN2_SCE_IRQHandler ; CAN2 SCE
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
157 DCD OTG_FS_IRQHandler ; USB OTG FS
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
158 DCD DMA2_Stream5_IRQHandler ; DMA2 Stream 5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
159 DCD DMA2_Stream6_IRQHandler ; DMA2 Stream 6
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
160 DCD DMA2_Stream7_IRQHandler ; DMA2 Stream 7
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
161 DCD USART6_IRQHandler ; USART6
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
162 DCD I2C3_EV_IRQHandler ; I2C3 event
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
163 DCD I2C3_ER_IRQHandler ; I2C3 error
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
164 DCD OTG_HS_EP1_OUT_IRQHandler ; USB OTG HS End Point 1 Out
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
165 DCD OTG_HS_EP1_IN_IRQHandler ; USB OTG HS End Point 1 In
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
166 DCD OTG_HS_WKUP_IRQHandler ; USB OTG HS Wakeup through EXTI
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
167 DCD OTG_HS_IRQHandler ; USB OTG HS
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
168 DCD DCMI_IRQHandler ; DCMI
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
169 DCD CRYP_IRQHandler ; CRYP crypto
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
170 DCD HASH_RNG_IRQHandler ; Hash and Rng
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
171 DCD FPU_IRQHandler ; FPU
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
172 DCD UART7_IRQHandler ; UART7
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
173 DCD UART8_IRQHandler ; UART8
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
174 DCD SPI4_IRQHandler ; SPI4
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
175 DCD SPI5_IRQHandler ; SPI5
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
176 DCD SPI6_IRQHandler ; SPI6
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
177 DCD SAI1_IRQHandler ; SAI1
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
178 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
179 DCD 0 ; Reserved
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
180 DCD DMA2D_IRQHandler ; DMA2D
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
181
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
182 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
183 ;;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
184 ;; Default interrupt handlers.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
185 ;;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
186 THUMB
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
187 PUBWEAK Reset_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
188 SECTION .text:CODE:REORDER:NOROOT(2)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
189 Reset_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
190
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
191 LDR R0, =SystemInit
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
192 BLX R0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
193 LDR R0, =__iar_program_start
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
194 BX R0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
195
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
196 PUBWEAK NMI_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 NMI_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
199 B NMI_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
200
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
201 PUBWEAK HardFault_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 HardFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
204 B HardFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
205
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
206 PUBWEAK MemManage_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 MemManage_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
209 B MemManage_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
210
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
211 PUBWEAK BusFault_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 BusFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
214 B BusFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
215
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
216 PUBWEAK UsageFault_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 UsageFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
219 B UsageFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
220
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
221 PUBWEAK SVC_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 SVC_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
224 B SVC_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
225
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
226 PUBWEAK DebugMon_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 DebugMon_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
229 B DebugMon_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
230
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
231 PUBWEAK PendSV_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 PendSV_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
234 B PendSV_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
235
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
236 PUBWEAK SysTick_Handler
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 SysTick_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
239 B SysTick_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
240
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
241 PUBWEAK WWDG_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 WWDG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
244 B WWDG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
245
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
246 PUBWEAK PVD_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 PVD_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
249 B PVD_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
250
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
251 PUBWEAK TAMP_STAMP_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 TAMP_STAMP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
254 B TAMP_STAMP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
255
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
256 PUBWEAK RTC_WKUP_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 RTC_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
259 B RTC_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
260
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
261 PUBWEAK FLASH_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 FLASH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
264 B FLASH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
265
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
266 PUBWEAK RCC_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 RCC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
269 B RCC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
270
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
271 PUBWEAK EXTI0_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 EXTI0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
274 B EXTI0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
275
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
276 PUBWEAK EXTI1_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 EXTI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
279 B EXTI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
280
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
281 PUBWEAK EXTI2_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 EXTI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
284 B EXTI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
285
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
286 PUBWEAK EXTI3_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 EXTI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
289 B EXTI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
290
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
291 PUBWEAK EXTI4_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 EXTI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
294 B EXTI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
295
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
296 PUBWEAK DMA1_Stream0_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_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
299 B DMA1_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
300
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
301 PUBWEAK DMA1_Stream1_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_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
304 B DMA1_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
305
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
306 PUBWEAK DMA1_Stream2_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_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
309 B DMA1_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
310
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
311 PUBWEAK DMA1_Stream3_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_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
314 B DMA1_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
315
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
316 PUBWEAK DMA1_Stream4_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_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
319 B DMA1_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
320
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
321 PUBWEAK DMA1_Stream5_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_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
324 B DMA1_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
325
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
326 PUBWEAK DMA1_Stream6_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 DMA1_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
329 B DMA1_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
330
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
331 PUBWEAK ADC_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 ADC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
334 B ADC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
335
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
336 PUBWEAK CAN1_TX_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 CAN1_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
339 B CAN1_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
340
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
341 PUBWEAK CAN1_RX0_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 CAN1_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
344 B CAN1_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
345
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
346 PUBWEAK CAN1_RX1_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 CAN1_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
349 B CAN1_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
350
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
351 PUBWEAK CAN1_SCE_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 CAN1_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
354 B CAN1_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
355
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
356 PUBWEAK EXTI9_5_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 EXTI9_5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
359 B EXTI9_5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
360
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
361 PUBWEAK TIM1_BRK_TIM9_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 TIM1_BRK_TIM9_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
364 B TIM1_BRK_TIM9_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
365
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
366 PUBWEAK TIM1_UP_TIM10_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 TIM1_UP_TIM10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
369 B TIM1_UP_TIM10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
370
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
371 PUBWEAK TIM1_TRG_COM_TIM11_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 TIM1_TRG_COM_TIM11_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
374 B TIM1_TRG_COM_TIM11_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
375
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
376 PUBWEAK TIM1_CC_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 TIM1_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
379 B TIM1_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
380
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
381 PUBWEAK TIM2_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 TIM2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
384 B TIM2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
385
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
386 PUBWEAK TIM3_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 TIM3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
389 B TIM3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
390
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
391 PUBWEAK TIM4_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 TIM4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
394 B TIM4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
395
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
396 PUBWEAK I2C1_EV_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 I2C1_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
399 B I2C1_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
400
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
401 PUBWEAK I2C1_ER_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 I2C1_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
404 B I2C1_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
405
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
406 PUBWEAK I2C2_EV_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 I2C2_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
409 B I2C2_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
410
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
411 PUBWEAK I2C2_ER_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 I2C2_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
414 B I2C2_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
415
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
416 PUBWEAK SPI1_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 SPI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
419 B SPI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
420
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
421 PUBWEAK SPI2_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 SPI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
424 B SPI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
425
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
426 PUBWEAK USART1_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 USART1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
429 B USART1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
430
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
431 PUBWEAK USART2_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 USART2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
434 B USART2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
435
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
436 PUBWEAK USART3_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 USART3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
439 B USART3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
440
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
441 PUBWEAK EXTI15_10_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 EXTI15_10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
444 B EXTI15_10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
445
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
446 PUBWEAK RTC_Alarm_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 RTC_Alarm_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
449 B RTC_Alarm_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
450
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
451 PUBWEAK OTG_FS_WKUP_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 OTG_FS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
454 B OTG_FS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
455
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
456 PUBWEAK TIM8_BRK_TIM12_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 TIM8_BRK_TIM12_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
459 B TIM8_BRK_TIM12_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
460
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
461 PUBWEAK TIM8_UP_TIM13_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 TIM8_UP_TIM13_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
464 B TIM8_UP_TIM13_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
465
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
466 PUBWEAK TIM8_TRG_COM_TIM14_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 TIM8_TRG_COM_TIM14_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
469 B TIM8_TRG_COM_TIM14_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
470
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
471 PUBWEAK TIM8_CC_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 TIM8_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
474 B TIM8_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
475
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
476 PUBWEAK DMA1_Stream7_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 DMA1_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
479 B DMA1_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
480
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
481 PUBWEAK FMC_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 FMC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
484 B FMC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
485
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
486 PUBWEAK SDIO_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 SDIO_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
489 B SDIO_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
490
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
491 PUBWEAK TIM5_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 TIM5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
494 B TIM5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
495
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
496 PUBWEAK SPI3_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 SPI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
499 B SPI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
500
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
501 PUBWEAK UART4_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 UART4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
504 B UART4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
505
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
506 PUBWEAK UART5_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 UART5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
509 B UART5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
510
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
511 PUBWEAK TIM6_DAC_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 TIM6_DAC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
514 B TIM6_DAC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
515
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
516 PUBWEAK TIM7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
517 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
518 TIM7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
519 B TIM7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
520
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
521 PUBWEAK DMA2_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
522 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
523 DMA2_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
524 B DMA2_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
525
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
526 PUBWEAK DMA2_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
527 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
528 DMA2_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
529 B DMA2_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
530
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
531 PUBWEAK DMA2_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
532 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
533 DMA2_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
534 B DMA2_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
535
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
536 PUBWEAK DMA2_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
537 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
538 DMA2_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
539 B DMA2_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
540
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
541 PUBWEAK DMA2_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
542 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
543 DMA2_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
544 B DMA2_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
545
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
546 PUBWEAK ETH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
547 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
548 ETH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
549 B ETH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
550
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
551 PUBWEAK ETH_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
552 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
553 ETH_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
554 B ETH_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
555
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
556 PUBWEAK CAN2_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
557 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
558 CAN2_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
559 B CAN2_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
560
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
561 PUBWEAK CAN2_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
562 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
563 CAN2_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
564 B CAN2_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
565
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
566 PUBWEAK CAN2_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
567 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
568 CAN2_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
569 B CAN2_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
570
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
571 PUBWEAK CAN2_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
572 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
573 CAN2_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
574 B CAN2_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
575
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
576 PUBWEAK OTG_FS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
577 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
578 OTG_FS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
579 B OTG_FS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
580
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
581 PUBWEAK DMA2_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
582 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
583 DMA2_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
584 B DMA2_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
585
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
586 PUBWEAK DMA2_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
587 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
588 DMA2_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
589 B DMA2_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
590
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
591 PUBWEAK DMA2_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
592 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
593 DMA2_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
594 B DMA2_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
595
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
596 PUBWEAK USART6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
597 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
598 USART6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
599 B USART6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
600
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
601 PUBWEAK I2C3_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
602 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
603 I2C3_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
604 B I2C3_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
605
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
606 PUBWEAK I2C3_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
607 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
608 I2C3_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
609 B I2C3_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
610
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
611 PUBWEAK OTG_HS_EP1_OUT_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
612 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
613 OTG_HS_EP1_OUT_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
614 B OTG_HS_EP1_OUT_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
615
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
616 PUBWEAK OTG_HS_EP1_IN_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
617 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
618 OTG_HS_EP1_IN_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
619 B OTG_HS_EP1_IN_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
620
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
621 PUBWEAK OTG_HS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
622 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
623 OTG_HS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
624 B OTG_HS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
625
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
626 PUBWEAK OTG_HS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
627 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
628 OTG_HS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
629 B OTG_HS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
630
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
631 PUBWEAK DCMI_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
632 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
633 DCMI_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
634 B DCMI_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
635
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
636 PUBWEAK CRYP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
637 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
638 CRYP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
639 B CRYP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
640
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
641 PUBWEAK HASH_RNG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
642 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
643 HASH_RNG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
644 B HASH_RNG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
645
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
646 PUBWEAK FPU_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
647 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
648 FPU_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
649 B FPU_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
650
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
651 PUBWEAK UART7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
652 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
653 UART7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
654 B UART7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
655
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
656 PUBWEAK UART8_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
657 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
658 UART8_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
659 B UART8_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
660
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
661 PUBWEAK SPI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
662 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
663 SPI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
664 B SPI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
665
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
666 PUBWEAK SPI5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
667 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
668 SPI5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
669 B SPI5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
670
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
671 PUBWEAK SPI6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
672 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
673 SPI6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
674 B SPI6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
675
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
676 PUBWEAK SAI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
677 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
678 SAI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
679 B SAI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
680
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
681 PUBWEAK DMA2D_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
682 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
683 DMA2D_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
684 B DMA2D_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
685
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
686
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
687 END
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
688 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/