annotate Common/Drivers/STM32F4xx_v220/Source/Templates/iar/startup_stm32f407xx.s @ 98:01169b86f9c6 kittz

+2ms delay
author Dmitry Romanov <kitt@bk.ru>
date Mon, 26 Nov 2018 13:58:51 +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_stm32f407xx.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 : STM32F407xx 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 FSMC_IRQHandler ; FSMC
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 0 ; Reserved
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
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
173 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
174 ;;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
175 ;; Default interrupt handlers.
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
176 ;;
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
177 THUMB
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
178 PUBWEAK Reset_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
179 SECTION .text:CODE:REORDER:NOROOT(2)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
180 Reset_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
181
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
182 LDR R0, =SystemInit
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
183 BLX R0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
184 LDR R0, =__iar_program_start
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
185 BX R0
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
186
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
187 PUBWEAK NMI_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
188 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
189 NMI_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
190 B NMI_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
191
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
192 PUBWEAK HardFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
193 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
194 HardFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
195 B HardFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
196
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
197 PUBWEAK MemManage_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
198 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
199 MemManage_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
200 B MemManage_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
201
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
202 PUBWEAK BusFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
203 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
204 BusFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
205 B BusFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
206
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
207 PUBWEAK UsageFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
208 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
209 UsageFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
210 B UsageFault_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
211
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
212 PUBWEAK SVC_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
213 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
214 SVC_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
215 B SVC_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
216
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
217 PUBWEAK DebugMon_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
218 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
219 DebugMon_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
220 B DebugMon_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
221
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
222 PUBWEAK PendSV_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
223 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
224 PendSV_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
225 B PendSV_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
226
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
227 PUBWEAK SysTick_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
228 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
229 SysTick_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
230 B SysTick_Handler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
231
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
232 PUBWEAK WWDG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
233 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
234 WWDG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
235 B WWDG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
236
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
237 PUBWEAK PVD_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
238 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
239 PVD_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
240 B PVD_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
241
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
242 PUBWEAK TAMP_STAMP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
243 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
244 TAMP_STAMP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
245 B TAMP_STAMP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
246
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
247 PUBWEAK RTC_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
248 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
249 RTC_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
250 B RTC_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
251
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
252 PUBWEAK FLASH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
253 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
254 FLASH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
255 B FLASH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
256
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
257 PUBWEAK RCC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
258 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
259 RCC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
260 B RCC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
261
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
262 PUBWEAK EXTI0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
263 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
264 EXTI0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
265 B EXTI0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
266
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
267 PUBWEAK EXTI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
268 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
269 EXTI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
270 B EXTI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
271
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
272 PUBWEAK EXTI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
273 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
274 EXTI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
275 B EXTI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
276
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
277 PUBWEAK EXTI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
278 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
279 EXTI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
280 B EXTI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
281
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
282 PUBWEAK EXTI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
283 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
284 EXTI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
285 B EXTI4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
286
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
287 PUBWEAK DMA1_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
288 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
289 DMA1_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
290 B DMA1_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
291
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
292 PUBWEAK DMA1_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
293 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
294 DMA1_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
295 B DMA1_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
296
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
297 PUBWEAK DMA1_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
298 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
299 DMA1_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
300 B DMA1_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
301
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
302 PUBWEAK DMA1_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
303 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
304 DMA1_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
305 B DMA1_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
306
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
307 PUBWEAK DMA1_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
308 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
309 DMA1_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
310 B DMA1_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
311
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
312 PUBWEAK DMA1_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
313 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
314 DMA1_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
315 B DMA1_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
316
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
317 PUBWEAK DMA1_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
318 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
319 DMA1_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
320 B DMA1_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
321
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
322 PUBWEAK ADC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
323 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
324 ADC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
325 B ADC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
326
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
327 PUBWEAK CAN1_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
328 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
329 CAN1_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
330 B CAN1_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
331
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
332 PUBWEAK CAN1_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
333 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
334 CAN1_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
335 B CAN1_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
336
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
337 PUBWEAK CAN1_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
338 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
339 CAN1_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
340 B CAN1_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
341
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
342 PUBWEAK CAN1_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
343 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
344 CAN1_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
345 B CAN1_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
346
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
347 PUBWEAK EXTI9_5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
348 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
349 EXTI9_5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
350 B EXTI9_5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
351
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
352 PUBWEAK TIM1_BRK_TIM9_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
353 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
354 TIM1_BRK_TIM9_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
355 B TIM1_BRK_TIM9_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
356
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
357 PUBWEAK TIM1_UP_TIM10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
358 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
359 TIM1_UP_TIM10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
360 B TIM1_UP_TIM10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
361
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
362 PUBWEAK TIM1_TRG_COM_TIM11_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
363 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
364 TIM1_TRG_COM_TIM11_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
365 B TIM1_TRG_COM_TIM11_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
366
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
367 PUBWEAK TIM1_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
368 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
369 TIM1_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
370 B TIM1_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
371
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
372 PUBWEAK TIM2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
373 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
374 TIM2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
375 B TIM2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
376
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
377 PUBWEAK TIM3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
378 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
379 TIM3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
380 B TIM3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
381
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
382 PUBWEAK TIM4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
383 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
384 TIM4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
385 B TIM4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
386
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
387 PUBWEAK I2C1_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
388 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
389 I2C1_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
390 B I2C1_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
391
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
392 PUBWEAK I2C1_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
393 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
394 I2C1_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
395 B I2C1_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
396
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
397 PUBWEAK I2C2_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
398 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
399 I2C2_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
400 B I2C2_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
401
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
402 PUBWEAK I2C2_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
403 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
404 I2C2_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
405 B I2C2_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
406
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
407 PUBWEAK SPI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
408 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
409 SPI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
410 B SPI1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
411
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
412 PUBWEAK SPI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
413 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
414 SPI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
415 B SPI2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
416
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
417 PUBWEAK USART1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
418 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
419 USART1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
420 B USART1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
421
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
422 PUBWEAK USART2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
423 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
424 USART2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
425 B USART2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
426
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
427 PUBWEAK USART3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
428 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
429 USART3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
430 B USART3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
431
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
432 PUBWEAK EXTI15_10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
433 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
434 EXTI15_10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
435 B EXTI15_10_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
436
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
437 PUBWEAK RTC_Alarm_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
438 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
439 RTC_Alarm_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
440 B RTC_Alarm_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
441
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
442 PUBWEAK OTG_FS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
443 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
444 OTG_FS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
445 B OTG_FS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
446
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
447 PUBWEAK TIM8_BRK_TIM12_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
448 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
449 TIM8_BRK_TIM12_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
450 B TIM8_BRK_TIM12_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
451
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
452 PUBWEAK TIM8_UP_TIM13_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
453 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
454 TIM8_UP_TIM13_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
455 B TIM8_UP_TIM13_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
456
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
457 PUBWEAK TIM8_TRG_COM_TIM14_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
458 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
459 TIM8_TRG_COM_TIM14_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
460 B TIM8_TRG_COM_TIM14_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
461
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
462 PUBWEAK TIM8_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
463 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
464 TIM8_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
465 B TIM8_CC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
466
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
467 PUBWEAK DMA1_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
468 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
469 DMA1_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
470 B DMA1_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
471
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
472 PUBWEAK FSMC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
473 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
474 FSMC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
475 B FSMC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
476
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
477 PUBWEAK SDIO_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
478 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
479 SDIO_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
480 B SDIO_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
481
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
482 PUBWEAK TIM5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
483 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
484 TIM5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
485 B TIM5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
486
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
487 PUBWEAK SPI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
488 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
489 SPI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
490 B SPI3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
491
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
492 PUBWEAK UART4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
493 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
494 UART4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
495 B UART4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
496
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
497 PUBWEAK UART5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
498 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
499 UART5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
500 B UART5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
501
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
502 PUBWEAK TIM6_DAC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
503 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
504 TIM6_DAC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
505 B TIM6_DAC_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
506
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
507 PUBWEAK TIM7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
508 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
509 TIM7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
510 B TIM7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
511
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
512 PUBWEAK DMA2_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
513 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
514 DMA2_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
515 B DMA2_Stream0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
516
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
517 PUBWEAK DMA2_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
518 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
519 DMA2_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
520 B DMA2_Stream1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
521
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
522 PUBWEAK DMA2_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
523 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
524 DMA2_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
525 B DMA2_Stream2_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
526
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
527 PUBWEAK DMA2_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
528 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
529 DMA2_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
530 B DMA2_Stream3_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
531
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
532 PUBWEAK DMA2_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
533 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
534 DMA2_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
535 B DMA2_Stream4_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
536
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
537 PUBWEAK ETH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
538 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
539 ETH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
540 B ETH_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
541
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
542 PUBWEAK ETH_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
543 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
544 ETH_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
545 B ETH_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
546
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
547 PUBWEAK CAN2_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
548 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
549 CAN2_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
550 B CAN2_TX_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
551
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
552 PUBWEAK CAN2_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
553 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
554 CAN2_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
555 B CAN2_RX0_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
556
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
557 PUBWEAK CAN2_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
558 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
559 CAN2_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
560 B CAN2_RX1_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
561
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
562 PUBWEAK CAN2_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
563 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
564 CAN2_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
565 B CAN2_SCE_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
566
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
567 PUBWEAK OTG_FS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
568 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
569 OTG_FS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
570 B OTG_FS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
571
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
572 PUBWEAK DMA2_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
573 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
574 DMA2_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
575 B DMA2_Stream5_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
576
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
577 PUBWEAK DMA2_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
578 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
579 DMA2_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
580 B DMA2_Stream6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
581
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
582 PUBWEAK DMA2_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
583 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
584 DMA2_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
585 B DMA2_Stream7_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
586
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
587 PUBWEAK USART6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
588 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
589 USART6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
590 B USART6_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
591
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
592 PUBWEAK I2C3_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
593 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
594 I2C3_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
595 B I2C3_EV_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
596
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
597 PUBWEAK I2C3_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
598 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
599 I2C3_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
600 B I2C3_ER_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
601
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
602 PUBWEAK OTG_HS_EP1_OUT_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
603 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
604 OTG_HS_EP1_OUT_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
605 B OTG_HS_EP1_OUT_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
606
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
607 PUBWEAK OTG_HS_EP1_IN_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
608 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
609 OTG_HS_EP1_IN_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
610 B OTG_HS_EP1_IN_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
611
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
612 PUBWEAK OTG_HS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
613 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
614 OTG_HS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
615 B OTG_HS_WKUP_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
616
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
617 PUBWEAK OTG_HS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
618 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
619 OTG_HS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
620 B OTG_HS_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
621
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
622 PUBWEAK DCMI_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
623 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
624 DCMI_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
625 B DCMI_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
626
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
627 PUBWEAK HASH_RNG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
628 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
629 HASH_RNG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
630 B HASH_RNG_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
631
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
632 PUBWEAK FPU_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
633 SECTION .text:CODE:REORDER:NOROOT(1)
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
634 FPU_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
635 B FPU_IRQHandler
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
636
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
637 END
5f11787b4f42 include in ostc4 repository
heinrichsweikamp
parents:
diff changeset
638 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/