inport from local

Dependents:   Hobbyking_Cheetah_0511

Committer:
NYX
Date:
Mon Mar 16 06:35:48 2020 +0000
Revision:
0:85b3fd62ea1a
reinport to mbed;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
NYX 0:85b3fd62ea1a 1 ;******************** (C) COPYRIGHT 2015 STMicroelectronics ********************
NYX 0:85b3fd62ea1a 2 ;* File Name : startup_stm32f446xx.s
NYX 0:85b3fd62ea1a 3 ;* Author : MCD Application Team
NYX 0:85b3fd62ea1a 4 ;* Version : V2.3.2
NYX 0:85b3fd62ea1a 5 ;* Date : 26-June-2015
NYX 0:85b3fd62ea1a 6 ;* Description : STM32F446x devices vector table for MDK-ARM_STD toolchain.
NYX 0:85b3fd62ea1a 7 ;* This module performs:
NYX 0:85b3fd62ea1a 8 ;* - Set the initial SP
NYX 0:85b3fd62ea1a 9 ;* - Set the initial PC == Reset_Handler
NYX 0:85b3fd62ea1a 10 ;* - Set the vector table entries with the exceptions ISR address
NYX 0:85b3fd62ea1a 11 ;* After Reset the CortexM4 processor is in Thread mode,
NYX 0:85b3fd62ea1a 12 ;* priority is Privileged, and the Stack is set to Main.
NYX 0:85b3fd62ea1a 13 ;* <<< Use Configuration Wizard in Context Menu >>>
NYX 0:85b3fd62ea1a 14 ;*******************************************************************************
NYX 0:85b3fd62ea1a 15 ;
NYX 0:85b3fd62ea1a 16 ;* Redistribution and use in source and binary forms, with or without modification,
NYX 0:85b3fd62ea1a 17 ;* are permitted provided that the following conditions are met:
NYX 0:85b3fd62ea1a 18 ;* 1. Redistributions of source code must retain the above copyright notice,
NYX 0:85b3fd62ea1a 19 ;* this list of conditions and the following disclaimer.
NYX 0:85b3fd62ea1a 20 ;* 2. Redistributions in binary form must reproduce the above copyright notice,
NYX 0:85b3fd62ea1a 21 ;* this list of conditions and the following disclaimer in the documentation
NYX 0:85b3fd62ea1a 22 ;* and/or other materials provided with the distribution.
NYX 0:85b3fd62ea1a 23 ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
NYX 0:85b3fd62ea1a 24 ;* may be used to endorse or promote products derived from this software
NYX 0:85b3fd62ea1a 25 ;* without specific prior written permission.
NYX 0:85b3fd62ea1a 26 ;*
NYX 0:85b3fd62ea1a 27 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
NYX 0:85b3fd62ea1a 28 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
NYX 0:85b3fd62ea1a 29 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
NYX 0:85b3fd62ea1a 30 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
NYX 0:85b3fd62ea1a 31 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
NYX 0:85b3fd62ea1a 32 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
NYX 0:85b3fd62ea1a 33 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
NYX 0:85b3fd62ea1a 34 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
NYX 0:85b3fd62ea1a 35 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
NYX 0:85b3fd62ea1a 36 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
NYX 0:85b3fd62ea1a 37 ;
NYX 0:85b3fd62ea1a 38 ;*******************************************************************************
NYX 0:85b3fd62ea1a 39
NYX 0:85b3fd62ea1a 40 __initial_sp EQU 0x20020000 ; Top of RAM
NYX 0:85b3fd62ea1a 41
NYX 0:85b3fd62ea1a 42 PRESERVE8
NYX 0:85b3fd62ea1a 43 THUMB
NYX 0:85b3fd62ea1a 44
NYX 0:85b3fd62ea1a 45
NYX 0:85b3fd62ea1a 46 ; Vector Table Mapped to Address 0 at Reset
NYX 0:85b3fd62ea1a 47 AREA RESET, DATA, READONLY
NYX 0:85b3fd62ea1a 48 EXPORT __Vectors
NYX 0:85b3fd62ea1a 49 EXPORT __Vectors_End
NYX 0:85b3fd62ea1a 50 EXPORT __Vectors_Size
NYX 0:85b3fd62ea1a 51
NYX 0:85b3fd62ea1a 52 __Vectors DCD __initial_sp ; Top of Stack
NYX 0:85b3fd62ea1a 53 DCD Reset_Handler ; Reset Handler
NYX 0:85b3fd62ea1a 54 DCD NMI_Handler ; NMI Handler
NYX 0:85b3fd62ea1a 55 DCD HardFault_Handler ; Hard Fault Handler
NYX 0:85b3fd62ea1a 56 DCD MemManage_Handler ; MPU Fault Handler
NYX 0:85b3fd62ea1a 57 DCD BusFault_Handler ; Bus Fault Handler
NYX 0:85b3fd62ea1a 58 DCD UsageFault_Handler ; Usage Fault Handler
NYX 0:85b3fd62ea1a 59 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 60 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 61 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 62 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 63 DCD SVC_Handler ; SVCall Handler
NYX 0:85b3fd62ea1a 64 DCD DebugMon_Handler ; Debug Monitor Handler
NYX 0:85b3fd62ea1a 65 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 66 DCD PendSV_Handler ; PendSV Handler
NYX 0:85b3fd62ea1a 67 DCD SysTick_Handler ; SysTick Handler
NYX 0:85b3fd62ea1a 68
NYX 0:85b3fd62ea1a 69 ; External Interrupts
NYX 0:85b3fd62ea1a 70 DCD WWDG_IRQHandler ; Window WatchDog
NYX 0:85b3fd62ea1a 71 DCD PVD_IRQHandler ; PVD through EXTI Line detection
NYX 0:85b3fd62ea1a 72 DCD TAMP_STAMP_IRQHandler ; Tamper and TimeStamps through the EXTI line
NYX 0:85b3fd62ea1a 73 DCD RTC_WKUP_IRQHandler ; RTC Wakeup through the EXTI line
NYX 0:85b3fd62ea1a 74 DCD FLASH_IRQHandler ; FLASH
NYX 0:85b3fd62ea1a 75 DCD RCC_IRQHandler ; RCC
NYX 0:85b3fd62ea1a 76 DCD EXTI0_IRQHandler ; EXTI Line0
NYX 0:85b3fd62ea1a 77 DCD EXTI1_IRQHandler ; EXTI Line1
NYX 0:85b3fd62ea1a 78 DCD EXTI2_IRQHandler ; EXTI Line2
NYX 0:85b3fd62ea1a 79 DCD EXTI3_IRQHandler ; EXTI Line3
NYX 0:85b3fd62ea1a 80 DCD EXTI4_IRQHandler ; EXTI Line4
NYX 0:85b3fd62ea1a 81 DCD DMA1_Stream0_IRQHandler ; DMA1 Stream 0
NYX 0:85b3fd62ea1a 82 DCD DMA1_Stream1_IRQHandler ; DMA1 Stream 1
NYX 0:85b3fd62ea1a 83 DCD DMA1_Stream2_IRQHandler ; DMA1 Stream 2
NYX 0:85b3fd62ea1a 84 DCD DMA1_Stream3_IRQHandler ; DMA1 Stream 3
NYX 0:85b3fd62ea1a 85 DCD DMA1_Stream4_IRQHandler ; DMA1 Stream 4
NYX 0:85b3fd62ea1a 86 DCD DMA1_Stream5_IRQHandler ; DMA1 Stream 5
NYX 0:85b3fd62ea1a 87 DCD DMA1_Stream6_IRQHandler ; DMA1 Stream 6
NYX 0:85b3fd62ea1a 88 DCD ADC_IRQHandler ; ADC1, ADC2 and ADC3s
NYX 0:85b3fd62ea1a 89 DCD CAN1_TX_IRQHandler ; CAN1 TX
NYX 0:85b3fd62ea1a 90 DCD CAN1_RX0_IRQHandler ; CAN1 RX0
NYX 0:85b3fd62ea1a 91 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
NYX 0:85b3fd62ea1a 92 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
NYX 0:85b3fd62ea1a 93 DCD EXTI9_5_IRQHandler ; External Line[9:5]s
NYX 0:85b3fd62ea1a 94 DCD TIM1_BRK_TIM9_IRQHandler ; TIM1 Break and TIM9
NYX 0:85b3fd62ea1a 95 DCD TIM1_UP_TIM10_IRQHandler ; TIM1 Update and TIM10
NYX 0:85b3fd62ea1a 96 DCD TIM1_TRG_COM_TIM11_IRQHandler ; TIM1 Trigger and Commutation and TIM11
NYX 0:85b3fd62ea1a 97 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
NYX 0:85b3fd62ea1a 98 DCD TIM2_IRQHandler ; TIM2
NYX 0:85b3fd62ea1a 99 DCD TIM3_IRQHandler ; TIM3
NYX 0:85b3fd62ea1a 100 DCD TIM4_IRQHandler ; TIM4
NYX 0:85b3fd62ea1a 101 DCD I2C1_EV_IRQHandler ; I2C1 Event
NYX 0:85b3fd62ea1a 102 DCD I2C1_ER_IRQHandler ; I2C1 Error
NYX 0:85b3fd62ea1a 103 DCD I2C2_EV_IRQHandler ; I2C2 Event
NYX 0:85b3fd62ea1a 104 DCD I2C2_ER_IRQHandler ; I2C2 Error
NYX 0:85b3fd62ea1a 105 DCD SPI1_IRQHandler ; SPI1
NYX 0:85b3fd62ea1a 106 DCD SPI2_IRQHandler ; SPI2
NYX 0:85b3fd62ea1a 107 DCD USART1_IRQHandler ; USART1
NYX 0:85b3fd62ea1a 108 DCD USART2_IRQHandler ; USART2
NYX 0:85b3fd62ea1a 109 DCD USART3_IRQHandler ; USART3
NYX 0:85b3fd62ea1a 110 DCD EXTI15_10_IRQHandler ; External Line[15:10]s
NYX 0:85b3fd62ea1a 111 DCD RTC_Alarm_IRQHandler ; RTC Alarm (A and B) through EXTI Line
NYX 0:85b3fd62ea1a 112 DCD OTG_FS_WKUP_IRQHandler ; USB OTG FS Wakeup through EXTI line
NYX 0:85b3fd62ea1a 113 DCD TIM8_BRK_TIM12_IRQHandler ; TIM8 Break and TIM12
NYX 0:85b3fd62ea1a 114 DCD TIM8_UP_TIM13_IRQHandler ; TIM8 Update and TIM13
NYX 0:85b3fd62ea1a 115 DCD TIM8_TRG_COM_TIM14_IRQHandler ; TIM8 Trigger and Commutation and TIM14
NYX 0:85b3fd62ea1a 116 DCD TIM8_CC_IRQHandler ; TIM8 Capture Compare
NYX 0:85b3fd62ea1a 117 DCD DMA1_Stream7_IRQHandler ; DMA1 Stream7
NYX 0:85b3fd62ea1a 118 DCD FMC_IRQHandler ; FMC
NYX 0:85b3fd62ea1a 119 DCD SDIO_IRQHandler ; SDIO
NYX 0:85b3fd62ea1a 120 DCD TIM5_IRQHandler ; TIM5
NYX 0:85b3fd62ea1a 121 DCD SPI3_IRQHandler ; SPI3
NYX 0:85b3fd62ea1a 122 DCD UART4_IRQHandler ; UART4
NYX 0:85b3fd62ea1a 123 DCD UART5_IRQHandler ; UART5
NYX 0:85b3fd62ea1a 124 DCD TIM6_DAC_IRQHandler ; TIM6 and DAC1&2 underrun errors
NYX 0:85b3fd62ea1a 125 DCD TIM7_IRQHandler ; TIM7
NYX 0:85b3fd62ea1a 126 DCD DMA2_Stream0_IRQHandler ; DMA2 Stream 0
NYX 0:85b3fd62ea1a 127 DCD DMA2_Stream1_IRQHandler ; DMA2 Stream 1
NYX 0:85b3fd62ea1a 128 DCD DMA2_Stream2_IRQHandler ; DMA2 Stream 2
NYX 0:85b3fd62ea1a 129 DCD DMA2_Stream3_IRQHandler ; DMA2 Stream 3
NYX 0:85b3fd62ea1a 130 DCD DMA2_Stream4_IRQHandler ; DMA2 Stream 4
NYX 0:85b3fd62ea1a 131 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 132 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 133 DCD CAN2_TX_IRQHandler ; CAN2 TX
NYX 0:85b3fd62ea1a 134 DCD CAN2_RX0_IRQHandler ; CAN2 RX0
NYX 0:85b3fd62ea1a 135 DCD CAN2_RX1_IRQHandler ; CAN2 RX1
NYX 0:85b3fd62ea1a 136 DCD CAN2_SCE_IRQHandler ; CAN2 SCE
NYX 0:85b3fd62ea1a 137 DCD OTG_FS_IRQHandler ; USB OTG FS
NYX 0:85b3fd62ea1a 138 DCD DMA2_Stream5_IRQHandler ; DMA2 Stream 5
NYX 0:85b3fd62ea1a 139 DCD DMA2_Stream6_IRQHandler ; DMA2 Stream 6
NYX 0:85b3fd62ea1a 140 DCD DMA2_Stream7_IRQHandler ; DMA2 Stream 7
NYX 0:85b3fd62ea1a 141 DCD USART6_IRQHandler ; USART6
NYX 0:85b3fd62ea1a 142 DCD I2C3_EV_IRQHandler ; I2C3 event
NYX 0:85b3fd62ea1a 143 DCD I2C3_ER_IRQHandler ; I2C3 error
NYX 0:85b3fd62ea1a 144 DCD OTG_HS_EP1_OUT_IRQHandler ; USB OTG HS End Point 1 Out
NYX 0:85b3fd62ea1a 145 DCD OTG_HS_EP1_IN_IRQHandler ; USB OTG HS End Point 1 In
NYX 0:85b3fd62ea1a 146 DCD OTG_HS_WKUP_IRQHandler ; USB OTG HS Wakeup through EXTI
NYX 0:85b3fd62ea1a 147 DCD OTG_HS_IRQHandler ; USB OTG HS
NYX 0:85b3fd62ea1a 148 DCD DCMI_IRQHandler ; DCMI
NYX 0:85b3fd62ea1a 149 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 150 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 151 DCD FPU_IRQHandler ; FPU
NYX 0:85b3fd62ea1a 152 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 153 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 154 DCD SPI4_IRQHandler ; SPI4
NYX 0:85b3fd62ea1a 155 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 156 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 157 DCD SAI1_IRQHandler ; SAI1
NYX 0:85b3fd62ea1a 158 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 159 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 160 DCD 0 ; Reserved
NYX 0:85b3fd62ea1a 161 DCD SAI2_IRQHandler ; SAI2
NYX 0:85b3fd62ea1a 162 DCD QuadSPI_IRQHandler ; QuadSPI
NYX 0:85b3fd62ea1a 163 DCD CEC_IRQHandler ; CEC
NYX 0:85b3fd62ea1a 164 DCD SPDIF_RX_IRQHandler ; SPDIF RX
NYX 0:85b3fd62ea1a 165 DCD I2C4_Event_IRQHandler ; I2C 4 Event
NYX 0:85b3fd62ea1a 166 DCD I2C4_Error_IRQHandler ; I2C 4 Error
NYX 0:85b3fd62ea1a 167 __Vectors_End
NYX 0:85b3fd62ea1a 168
NYX 0:85b3fd62ea1a 169 __Vectors_Size EQU __Vectors_End - __Vectors
NYX 0:85b3fd62ea1a 170
NYX 0:85b3fd62ea1a 171 AREA |.text|, CODE, READONLY
NYX 0:85b3fd62ea1a 172
NYX 0:85b3fd62ea1a 173 ; Reset handler
NYX 0:85b3fd62ea1a 174 Reset_Handler PROC
NYX 0:85b3fd62ea1a 175 EXPORT Reset_Handler [WEAK]
NYX 0:85b3fd62ea1a 176 IMPORT SystemInit
NYX 0:85b3fd62ea1a 177 IMPORT __main
NYX 0:85b3fd62ea1a 178
NYX 0:85b3fd62ea1a 179 LDR R0, =SystemInit
NYX 0:85b3fd62ea1a 180 BLX R0
NYX 0:85b3fd62ea1a 181 LDR R0, =__main
NYX 0:85b3fd62ea1a 182 BX R0
NYX 0:85b3fd62ea1a 183 ENDP
NYX 0:85b3fd62ea1a 184
NYX 0:85b3fd62ea1a 185 ; Dummy Exception Handlers (infinite loops which can be modified)
NYX 0:85b3fd62ea1a 186
NYX 0:85b3fd62ea1a 187 NMI_Handler PROC
NYX 0:85b3fd62ea1a 188 EXPORT NMI_Handler [WEAK]
NYX 0:85b3fd62ea1a 189 B .
NYX 0:85b3fd62ea1a 190 ENDP
NYX 0:85b3fd62ea1a 191 HardFault_Handler\
NYX 0:85b3fd62ea1a 192 PROC
NYX 0:85b3fd62ea1a 193 EXPORT HardFault_Handler [WEAK]
NYX 0:85b3fd62ea1a 194 B .
NYX 0:85b3fd62ea1a 195 ENDP
NYX 0:85b3fd62ea1a 196 MemManage_Handler\
NYX 0:85b3fd62ea1a 197 PROC
NYX 0:85b3fd62ea1a 198 EXPORT MemManage_Handler [WEAK]
NYX 0:85b3fd62ea1a 199 B .
NYX 0:85b3fd62ea1a 200 ENDP
NYX 0:85b3fd62ea1a 201 BusFault_Handler\
NYX 0:85b3fd62ea1a 202 PROC
NYX 0:85b3fd62ea1a 203 EXPORT BusFault_Handler [WEAK]
NYX 0:85b3fd62ea1a 204 B .
NYX 0:85b3fd62ea1a 205 ENDP
NYX 0:85b3fd62ea1a 206 UsageFault_Handler\
NYX 0:85b3fd62ea1a 207 PROC
NYX 0:85b3fd62ea1a 208 EXPORT UsageFault_Handler [WEAK]
NYX 0:85b3fd62ea1a 209 B .
NYX 0:85b3fd62ea1a 210 ENDP
NYX 0:85b3fd62ea1a 211 SVC_Handler PROC
NYX 0:85b3fd62ea1a 212 EXPORT SVC_Handler [WEAK]
NYX 0:85b3fd62ea1a 213 B .
NYX 0:85b3fd62ea1a 214 ENDP
NYX 0:85b3fd62ea1a 215 DebugMon_Handler\
NYX 0:85b3fd62ea1a 216 PROC
NYX 0:85b3fd62ea1a 217 EXPORT DebugMon_Handler [WEAK]
NYX 0:85b3fd62ea1a 218 B .
NYX 0:85b3fd62ea1a 219 ENDP
NYX 0:85b3fd62ea1a 220 PendSV_Handler PROC
NYX 0:85b3fd62ea1a 221 EXPORT PendSV_Handler [WEAK]
NYX 0:85b3fd62ea1a 222 B .
NYX 0:85b3fd62ea1a 223 ENDP
NYX 0:85b3fd62ea1a 224 SysTick_Handler PROC
NYX 0:85b3fd62ea1a 225 EXPORT SysTick_Handler [WEAK]
NYX 0:85b3fd62ea1a 226 B .
NYX 0:85b3fd62ea1a 227 ENDP
NYX 0:85b3fd62ea1a 228
NYX 0:85b3fd62ea1a 229 Default_Handler PROC
NYX 0:85b3fd62ea1a 230
NYX 0:85b3fd62ea1a 231 EXPORT WWDG_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 232 EXPORT PVD_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 233 EXPORT TAMP_STAMP_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 234 EXPORT RTC_WKUP_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 235 EXPORT FLASH_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 236 EXPORT RCC_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 237 EXPORT EXTI0_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 238 EXPORT EXTI1_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 239 EXPORT EXTI2_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 240 EXPORT EXTI3_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 241 EXPORT EXTI4_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 242 EXPORT DMA1_Stream0_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 243 EXPORT DMA1_Stream1_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 244 EXPORT DMA1_Stream2_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 245 EXPORT DMA1_Stream3_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 246 EXPORT DMA1_Stream4_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 247 EXPORT DMA1_Stream5_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 248 EXPORT DMA1_Stream6_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 249 EXPORT ADC_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 250 EXPORT CAN1_TX_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 251 EXPORT CAN1_RX0_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 252 EXPORT CAN1_RX1_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 253 EXPORT CAN1_SCE_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 254 EXPORT EXTI9_5_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 255 EXPORT TIM1_BRK_TIM9_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 256 EXPORT TIM1_UP_TIM10_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 257 EXPORT TIM1_TRG_COM_TIM11_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 258 EXPORT TIM1_CC_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 259 EXPORT TIM2_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 260 EXPORT TIM3_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 261 EXPORT TIM4_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 262 EXPORT I2C1_EV_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 263 EXPORT I2C1_ER_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 264 EXPORT I2C2_EV_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 265 EXPORT I2C2_ER_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 266 EXPORT SPI1_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 267 EXPORT SPI2_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 268 EXPORT USART1_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 269 EXPORT USART2_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 270 EXPORT USART3_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 271 EXPORT EXTI15_10_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 272 EXPORT RTC_Alarm_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 273 EXPORT OTG_FS_WKUP_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 274 EXPORT TIM8_BRK_TIM12_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 275 EXPORT TIM8_UP_TIM13_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 276 EXPORT TIM8_TRG_COM_TIM14_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 277 EXPORT TIM8_CC_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 278 EXPORT DMA1_Stream7_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 279 EXPORT FMC_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 280 EXPORT SDIO_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 281 EXPORT TIM5_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 282 EXPORT SPI3_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 283 EXPORT UART4_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 284 EXPORT UART5_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 285 EXPORT TIM6_DAC_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 286 EXPORT TIM7_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 287 EXPORT DMA2_Stream0_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 288 EXPORT DMA2_Stream1_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 289 EXPORT DMA2_Stream2_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 290 EXPORT DMA2_Stream3_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 291 EXPORT DMA2_Stream4_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 292 EXPORT CAN2_TX_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 293 EXPORT CAN2_RX0_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 294 EXPORT CAN2_RX1_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 295 EXPORT CAN2_SCE_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 296 EXPORT OTG_FS_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 297 EXPORT DMA2_Stream5_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 298 EXPORT DMA2_Stream6_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 299 EXPORT DMA2_Stream7_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 300 EXPORT USART6_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 301 EXPORT I2C3_EV_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 302 EXPORT I2C3_ER_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 303 EXPORT OTG_HS_EP1_OUT_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 304 EXPORT OTG_HS_EP1_IN_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 305 EXPORT OTG_HS_WKUP_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 306 EXPORT OTG_HS_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 307 EXPORT DCMI_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 308 EXPORT FPU_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 309 EXPORT SPI4_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 310 EXPORT SAI1_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 311 EXPORT SPI4_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 312 EXPORT SAI1_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 313 EXPORT SAI2_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 314 EXPORT QuadSPI_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 315 EXPORT CEC_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 316 EXPORT SPDIF_RX_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 317 EXPORT I2C4_Event_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 318 EXPORT I2C4_Error_IRQHandler [WEAK]
NYX 0:85b3fd62ea1a 319
NYX 0:85b3fd62ea1a 320 WWDG_IRQHandler
NYX 0:85b3fd62ea1a 321 PVD_IRQHandler
NYX 0:85b3fd62ea1a 322 TAMP_STAMP_IRQHandler
NYX 0:85b3fd62ea1a 323 RTC_WKUP_IRQHandler
NYX 0:85b3fd62ea1a 324 FLASH_IRQHandler
NYX 0:85b3fd62ea1a 325 RCC_IRQHandler
NYX 0:85b3fd62ea1a 326 EXTI0_IRQHandler
NYX 0:85b3fd62ea1a 327 EXTI1_IRQHandler
NYX 0:85b3fd62ea1a 328 EXTI2_IRQHandler
NYX 0:85b3fd62ea1a 329 EXTI3_IRQHandler
NYX 0:85b3fd62ea1a 330 EXTI4_IRQHandler
NYX 0:85b3fd62ea1a 331 DMA1_Stream0_IRQHandler
NYX 0:85b3fd62ea1a 332 DMA1_Stream1_IRQHandler
NYX 0:85b3fd62ea1a 333 DMA1_Stream2_IRQHandler
NYX 0:85b3fd62ea1a 334 DMA1_Stream3_IRQHandler
NYX 0:85b3fd62ea1a 335 DMA1_Stream4_IRQHandler
NYX 0:85b3fd62ea1a 336 DMA1_Stream5_IRQHandler
NYX 0:85b3fd62ea1a 337 DMA1_Stream6_IRQHandler
NYX 0:85b3fd62ea1a 338 ADC_IRQHandler
NYX 0:85b3fd62ea1a 339 CAN1_TX_IRQHandler
NYX 0:85b3fd62ea1a 340 CAN1_RX0_IRQHandler
NYX 0:85b3fd62ea1a 341 CAN1_RX1_IRQHandler
NYX 0:85b3fd62ea1a 342 CAN1_SCE_IRQHandler
NYX 0:85b3fd62ea1a 343 EXTI9_5_IRQHandler
NYX 0:85b3fd62ea1a 344 TIM1_BRK_TIM9_IRQHandler
NYX 0:85b3fd62ea1a 345 TIM1_UP_TIM10_IRQHandler
NYX 0:85b3fd62ea1a 346 TIM1_TRG_COM_TIM11_IRQHandler
NYX 0:85b3fd62ea1a 347 TIM1_CC_IRQHandler
NYX 0:85b3fd62ea1a 348 TIM2_IRQHandler
NYX 0:85b3fd62ea1a 349 TIM3_IRQHandler
NYX 0:85b3fd62ea1a 350 TIM4_IRQHandler
NYX 0:85b3fd62ea1a 351 I2C1_EV_IRQHandler
NYX 0:85b3fd62ea1a 352 I2C1_ER_IRQHandler
NYX 0:85b3fd62ea1a 353 I2C2_EV_IRQHandler
NYX 0:85b3fd62ea1a 354 I2C2_ER_IRQHandler
NYX 0:85b3fd62ea1a 355 SPI1_IRQHandler
NYX 0:85b3fd62ea1a 356 SPI2_IRQHandler
NYX 0:85b3fd62ea1a 357 USART1_IRQHandler
NYX 0:85b3fd62ea1a 358 USART2_IRQHandler
NYX 0:85b3fd62ea1a 359 USART3_IRQHandler
NYX 0:85b3fd62ea1a 360 EXTI15_10_IRQHandler
NYX 0:85b3fd62ea1a 361 RTC_Alarm_IRQHandler
NYX 0:85b3fd62ea1a 362 OTG_FS_WKUP_IRQHandler
NYX 0:85b3fd62ea1a 363 TIM8_BRK_TIM12_IRQHandler
NYX 0:85b3fd62ea1a 364 TIM8_UP_TIM13_IRQHandler
NYX 0:85b3fd62ea1a 365 TIM8_TRG_COM_TIM14_IRQHandler
NYX 0:85b3fd62ea1a 366 TIM8_CC_IRQHandler
NYX 0:85b3fd62ea1a 367 DMA1_Stream7_IRQHandler
NYX 0:85b3fd62ea1a 368 FMC_IRQHandler
NYX 0:85b3fd62ea1a 369 SDIO_IRQHandler
NYX 0:85b3fd62ea1a 370 TIM5_IRQHandler
NYX 0:85b3fd62ea1a 371 SPI3_IRQHandler
NYX 0:85b3fd62ea1a 372 UART4_IRQHandler
NYX 0:85b3fd62ea1a 373 UART5_IRQHandler
NYX 0:85b3fd62ea1a 374 TIM6_DAC_IRQHandler
NYX 0:85b3fd62ea1a 375 TIM7_IRQHandler
NYX 0:85b3fd62ea1a 376 DMA2_Stream0_IRQHandler
NYX 0:85b3fd62ea1a 377 DMA2_Stream1_IRQHandler
NYX 0:85b3fd62ea1a 378 DMA2_Stream2_IRQHandler
NYX 0:85b3fd62ea1a 379 DMA2_Stream3_IRQHandler
NYX 0:85b3fd62ea1a 380 DMA2_Stream4_IRQHandler
NYX 0:85b3fd62ea1a 381 CAN2_TX_IRQHandler
NYX 0:85b3fd62ea1a 382 CAN2_RX0_IRQHandler
NYX 0:85b3fd62ea1a 383 CAN2_RX1_IRQHandler
NYX 0:85b3fd62ea1a 384 CAN2_SCE_IRQHandler
NYX 0:85b3fd62ea1a 385 OTG_FS_IRQHandler
NYX 0:85b3fd62ea1a 386 DMA2_Stream5_IRQHandler
NYX 0:85b3fd62ea1a 387 DMA2_Stream6_IRQHandler
NYX 0:85b3fd62ea1a 388 DMA2_Stream7_IRQHandler
NYX 0:85b3fd62ea1a 389 USART6_IRQHandler
NYX 0:85b3fd62ea1a 390 I2C3_EV_IRQHandler
NYX 0:85b3fd62ea1a 391 I2C3_ER_IRQHandler
NYX 0:85b3fd62ea1a 392 OTG_HS_EP1_OUT_IRQHandler
NYX 0:85b3fd62ea1a 393 OTG_HS_EP1_IN_IRQHandler
NYX 0:85b3fd62ea1a 394 OTG_HS_WKUP_IRQHandler
NYX 0:85b3fd62ea1a 395 OTG_HS_IRQHandler
NYX 0:85b3fd62ea1a 396 DCMI_IRQHandler
NYX 0:85b3fd62ea1a 397 FPU_IRQHandler
NYX 0:85b3fd62ea1a 398 SPI4_IRQHandler
NYX 0:85b3fd62ea1a 399 SAI1_IRQHandler
NYX 0:85b3fd62ea1a 400 SAI2_IRQHandler
NYX 0:85b3fd62ea1a 401 QuadSPI_IRQHandler
NYX 0:85b3fd62ea1a 402 CEC_IRQHandler
NYX 0:85b3fd62ea1a 403 SPDIF_RX_IRQHandler
NYX 0:85b3fd62ea1a 404 I2C4_Event_IRQHandler
NYX 0:85b3fd62ea1a 405 I2C4_Error_IRQHandler
NYX 0:85b3fd62ea1a 406 B .
NYX 0:85b3fd62ea1a 407
NYX 0:85b3fd62ea1a 408 ENDP
NYX 0:85b3fd62ea1a 409
NYX 0:85b3fd62ea1a 410 ALIGN
NYX 0:85b3fd62ea1a 411 END
NYX 0:85b3fd62ea1a 412
NYX 0:85b3fd62ea1a 413 ;************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE*****