Initial commit

Dependencies:   FastPWM

Committer:
lypinator
Date:
Wed Sep 16 01:11:49 2020 +0000
Revision:
0:bb348c97df44
Added PWM

Who changed what in which revision?

UserRevisionLine numberNew contents of line
lypinator 0:bb348c97df44 1 ;/******************** (C) COPYRIGHT 2017 STMicroelectronics ********************
lypinator 0:bb348c97df44 2 ;* File Name : startup_stm32f413xx.s
lypinator 0:bb348c97df44 3 ;* Author : MCD Application Team
lypinator 0:bb348c97df44 4 ;* Description : STM32F413xx devices vector table for EWARM toolchain.
lypinator 0:bb348c97df44 5 ;* This module performs:
lypinator 0:bb348c97df44 6 ;* - Set the initial SP
lypinator 0:bb348c97df44 7 ;* - Set the initial PC == _iar_program_start,
lypinator 0:bb348c97df44 8 ;* - Set the vector table entries with the exceptions ISR
lypinator 0:bb348c97df44 9 ;* address.
lypinator 0:bb348c97df44 10 ;* - Configure the system clock
lypinator 0:bb348c97df44 11 ;* - Branches to main in the C library (which eventually
lypinator 0:bb348c97df44 12 ;* calls main()).
lypinator 0:bb348c97df44 13 ;* After Reset the Cortex-M4 processor is in Thread mode,
lypinator 0:bb348c97df44 14 ;* priority is Privileged, and the Stack is set to Main.
lypinator 0:bb348c97df44 15 ;********************************************************************************
lypinator 0:bb348c97df44 16 ;*
lypinator 0:bb348c97df44 17 ;* Redistribution and use in source and binary forms, with or without modification,
lypinator 0:bb348c97df44 18 ;* are permitted provided that the following conditions are met:
lypinator 0:bb348c97df44 19 ;* 1. Redistributions of source code must retain the above copyright notice,
lypinator 0:bb348c97df44 20 ;* this list of conditions and the following disclaimer.
lypinator 0:bb348c97df44 21 ;* 2. Redistributions in binary form must reproduce the above copyright notice,
lypinator 0:bb348c97df44 22 ;* this list of conditions and the following disclaimer in the documentation
lypinator 0:bb348c97df44 23 ;* and/or other materials provided with the distribution.
lypinator 0:bb348c97df44 24 ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
lypinator 0:bb348c97df44 25 ;* may be used to endorse or promote products derived from this software
lypinator 0:bb348c97df44 26 ;* without specific prior written permission.
lypinator 0:bb348c97df44 27 ;*
lypinator 0:bb348c97df44 28 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
lypinator 0:bb348c97df44 29 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
lypinator 0:bb348c97df44 30 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
lypinator 0:bb348c97df44 31 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
lypinator 0:bb348c97df44 32 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
lypinator 0:bb348c97df44 33 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
lypinator 0:bb348c97df44 34 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
lypinator 0:bb348c97df44 35 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
lypinator 0:bb348c97df44 36 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
lypinator 0:bb348c97df44 37 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
lypinator 0:bb348c97df44 38 ;*
lypinator 0:bb348c97df44 39 ;*******************************************************************************
lypinator 0:bb348c97df44 40 ;
lypinator 0:bb348c97df44 41 ;
lypinator 0:bb348c97df44 42 ; The modules in this file are included in the libraries, and may be replaced
lypinator 0:bb348c97df44 43 ; by any user-defined modules that define the PUBLIC symbol _program_start or
lypinator 0:bb348c97df44 44 ; a user defined start symbol.
lypinator 0:bb348c97df44 45 ; To override the cstartup defined in the library, simply add your modified
lypinator 0:bb348c97df44 46 ; version to the workbench project.
lypinator 0:bb348c97df44 47 ;
lypinator 0:bb348c97df44 48 ; The vector table is normally located at address 0.
lypinator 0:bb348c97df44 49 ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6.
lypinator 0:bb348c97df44 50 ; The name "__vector_table" has special meaning for C-SPY:
lypinator 0:bb348c97df44 51 ; it is where the SP start value is found, and the NVIC vector
lypinator 0:bb348c97df44 52 ; table register (VTOR) is initialized to this address if != 0.
lypinator 0:bb348c97df44 53 ;
lypinator 0:bb348c97df44 54 ; Cortex-M version
lypinator 0:bb348c97df44 55 ;
lypinator 0:bb348c97df44 56
lypinator 0:bb348c97df44 57 MODULE ?cstartup
lypinator 0:bb348c97df44 58
lypinator 0:bb348c97df44 59 ;; Forward declaration of sections.
lypinator 0:bb348c97df44 60 SECTION CSTACK:DATA:NOROOT(3)
lypinator 0:bb348c97df44 61
lypinator 0:bb348c97df44 62 SECTION .intvec:CODE:NOROOT(2)
lypinator 0:bb348c97df44 63
lypinator 0:bb348c97df44 64 EXTERN __iar_program_start
lypinator 0:bb348c97df44 65 EXTERN SystemInit
lypinator 0:bb348c97df44 66 PUBLIC __vector_table
lypinator 0:bb348c97df44 67
lypinator 0:bb348c97df44 68 DATA
lypinator 0:bb348c97df44 69 __vector_table
lypinator 0:bb348c97df44 70 DCD sfe(CSTACK)
lypinator 0:bb348c97df44 71 DCD Reset_Handler ; Reset Handler
lypinator 0:bb348c97df44 72
lypinator 0:bb348c97df44 73 DCD NMI_Handler ; NMI Handler
lypinator 0:bb348c97df44 74 DCD HardFault_Handler ; Hard Fault Handler
lypinator 0:bb348c97df44 75 DCD MemManage_Handler ; MPU Fault Handler
lypinator 0:bb348c97df44 76 DCD BusFault_Handler ; Bus Fault Handler
lypinator 0:bb348c97df44 77 DCD UsageFault_Handler ; Usage Fault Handler
lypinator 0:bb348c97df44 78 DCD 0 ; Reserved
lypinator 0:bb348c97df44 79 DCD 0 ; Reserved
lypinator 0:bb348c97df44 80 DCD 0 ; Reserved
lypinator 0:bb348c97df44 81 DCD 0 ; Reserved
lypinator 0:bb348c97df44 82 DCD SVC_Handler ; SVCall Handler
lypinator 0:bb348c97df44 83 DCD DebugMon_Handler ; Debug Monitor Handler
lypinator 0:bb348c97df44 84 DCD 0 ; Reserved
lypinator 0:bb348c97df44 85 DCD PendSV_Handler ; PendSV Handler
lypinator 0:bb348c97df44 86 DCD SysTick_Handler ; SysTick Handler
lypinator 0:bb348c97df44 87
lypinator 0:bb348c97df44 88 ; External Interrupts
lypinator 0:bb348c97df44 89 DCD WWDG_IRQHandler ; Window WatchDog
lypinator 0:bb348c97df44 90 DCD PVD_IRQHandler ; PVD through EXTI Line detection
lypinator 0:bb348c97df44 91 DCD TAMP_STAMP_IRQHandler ; Tamper and TimeStamps through the EXTI line
lypinator 0:bb348c97df44 92 DCD RTC_WKUP_IRQHandler ; RTC Wakeup through the EXTI line
lypinator 0:bb348c97df44 93 DCD FLASH_IRQHandler ; FLASH
lypinator 0:bb348c97df44 94 DCD RCC_IRQHandler ; RCC
lypinator 0:bb348c97df44 95 DCD EXTI0_IRQHandler ; EXTI Line0
lypinator 0:bb348c97df44 96 DCD EXTI1_IRQHandler ; EXTI Line1
lypinator 0:bb348c97df44 97 DCD EXTI2_IRQHandler ; EXTI Line2
lypinator 0:bb348c97df44 98 DCD EXTI3_IRQHandler ; EXTI Line3
lypinator 0:bb348c97df44 99 DCD EXTI4_IRQHandler ; EXTI Line4
lypinator 0:bb348c97df44 100 DCD DMA1_Stream0_IRQHandler ; DMA1 Stream 0
lypinator 0:bb348c97df44 101 DCD DMA1_Stream1_IRQHandler ; DMA1 Stream 1
lypinator 0:bb348c97df44 102 DCD DMA1_Stream2_IRQHandler ; DMA1 Stream 2
lypinator 0:bb348c97df44 103 DCD DMA1_Stream3_IRQHandler ; DMA1 Stream 3
lypinator 0:bb348c97df44 104 DCD DMA1_Stream4_IRQHandler ; DMA1 Stream 4
lypinator 0:bb348c97df44 105 DCD DMA1_Stream5_IRQHandler ; DMA1 Stream 5
lypinator 0:bb348c97df44 106 DCD DMA1_Stream6_IRQHandler ; DMA1 Stream 6
lypinator 0:bb348c97df44 107 DCD ADC_IRQHandler ; ADC1
lypinator 0:bb348c97df44 108 DCD CAN1_TX_IRQHandler ; CAN1 TX
lypinator 0:bb348c97df44 109 DCD CAN1_RX0_IRQHandler ; CAN1 RX0
lypinator 0:bb348c97df44 110 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
lypinator 0:bb348c97df44 111 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
lypinator 0:bb348c97df44 112 DCD EXTI9_5_IRQHandler ; External Line[9:5]s
lypinator 0:bb348c97df44 113 DCD TIM1_BRK_TIM9_IRQHandler ; TIM1 Break and TIM9
lypinator 0:bb348c97df44 114 DCD TIM1_UP_TIM10_IRQHandler ; TIM1 Update and TIM10
lypinator 0:bb348c97df44 115 DCD TIM1_TRG_COM_TIM11_IRQHandler ; TIM1 Trigger and Commutation and TIM11
lypinator 0:bb348c97df44 116 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
lypinator 0:bb348c97df44 117 DCD TIM2_IRQHandler ; TIM2
lypinator 0:bb348c97df44 118 DCD TIM3_IRQHandler ; TIM3
lypinator 0:bb348c97df44 119 DCD TIM4_IRQHandler ; TIM4
lypinator 0:bb348c97df44 120 DCD I2C1_EV_IRQHandler ; I2C1 Event
lypinator 0:bb348c97df44 121 DCD I2C1_ER_IRQHandler ; I2C1 Error
lypinator 0:bb348c97df44 122 DCD I2C2_EV_IRQHandler ; I2C2 Event
lypinator 0:bb348c97df44 123 DCD I2C2_ER_IRQHandler ; I2C2 Error
lypinator 0:bb348c97df44 124 DCD SPI1_IRQHandler ; SPI1
lypinator 0:bb348c97df44 125 DCD SPI2_IRQHandler ; SPI2
lypinator 0:bb348c97df44 126 DCD USART1_IRQHandler ; USART1
lypinator 0:bb348c97df44 127 DCD USART2_IRQHandler ; USART2
lypinator 0:bb348c97df44 128 DCD USART3_IRQHandler ; USART3
lypinator 0:bb348c97df44 129 DCD EXTI15_10_IRQHandler ; External Line[15:10]s
lypinator 0:bb348c97df44 130 DCD RTC_Alarm_IRQHandler ; RTC Alarm (A and B) through EXTI Line
lypinator 0:bb348c97df44 131 DCD OTG_FS_WKUP_IRQHandler ; USB OTG FS Wakeup through EXTI line
lypinator 0:bb348c97df44 132 DCD TIM8_BRK_TIM12_IRQHandler ; TIM8 Break and TIM12
lypinator 0:bb348c97df44 133 DCD TIM8_UP_TIM13_IRQHandler ; TIM8 Update and TIM13
lypinator 0:bb348c97df44 134 DCD TIM8_TRG_COM_TIM14_IRQHandler ; TIM8 Trigger and Commutation and TIM14
lypinator 0:bb348c97df44 135 DCD TIM8_CC_IRQHandler ; TIM8 Capture Compare
lypinator 0:bb348c97df44 136 DCD DMA1_Stream7_IRQHandler ; DMA1 Stream7
lypinator 0:bb348c97df44 137 DCD FSMC_IRQHandler ; FSMC
lypinator 0:bb348c97df44 138 DCD SDIO_IRQHandler ; SDIO
lypinator 0:bb348c97df44 139 DCD TIM5_IRQHandler ; TIM5
lypinator 0:bb348c97df44 140 DCD SPI3_IRQHandler ; SPI3
lypinator 0:bb348c97df44 141 DCD UART4_IRQHandler ; UART4
lypinator 0:bb348c97df44 142 DCD UART5_IRQHandler ; UART5
lypinator 0:bb348c97df44 143 DCD TIM6_DAC_IRQHandler ; TIM6, DAC1 and DAC2
lypinator 0:bb348c97df44 144 DCD TIM7_IRQHandler ; TIM7
lypinator 0:bb348c97df44 145 DCD DMA2_Stream0_IRQHandler ; DMA2 Stream 0
lypinator 0:bb348c97df44 146 DCD DMA2_Stream1_IRQHandler ; DMA2 Stream 1
lypinator 0:bb348c97df44 147 DCD DMA2_Stream2_IRQHandler ; DMA2 Stream 2
lypinator 0:bb348c97df44 148 DCD DMA2_Stream3_IRQHandler ; DMA2 Stream 3
lypinator 0:bb348c97df44 149 DCD DMA2_Stream4_IRQHandler ; DMA2 Stream 4
lypinator 0:bb348c97df44 150 DCD DFSDM1_FLT0_IRQHandler ; DFSDM1 Filter0
lypinator 0:bb348c97df44 151 DCD DFSDM1_FLT1_IRQHandler ; DFSDM1 Filter1
lypinator 0:bb348c97df44 152 DCD CAN2_TX_IRQHandler ; CAN2 TX
lypinator 0:bb348c97df44 153 DCD CAN2_RX0_IRQHandler ; CAN2 RX0
lypinator 0:bb348c97df44 154 DCD CAN2_RX1_IRQHandler ; CAN2 RX1
lypinator 0:bb348c97df44 155 DCD CAN2_SCE_IRQHandler ; CAN2 SCE
lypinator 0:bb348c97df44 156 DCD OTG_FS_IRQHandler ; USB OTG FS
lypinator 0:bb348c97df44 157 DCD DMA2_Stream5_IRQHandler ; DMA2 Stream 5
lypinator 0:bb348c97df44 158 DCD DMA2_Stream6_IRQHandler ; DMA2 Stream 6
lypinator 0:bb348c97df44 159 DCD DMA2_Stream7_IRQHandler ; DMA2 Stream 7
lypinator 0:bb348c97df44 160 DCD USART6_IRQHandler ; USART6
lypinator 0:bb348c97df44 161 DCD I2C3_EV_IRQHandler ; I2C3 event
lypinator 0:bb348c97df44 162 DCD I2C3_ER_IRQHandler ; I2C3 error
lypinator 0:bb348c97df44 163 DCD CAN3_TX_IRQHandler ; CAN3 TX
lypinator 0:bb348c97df44 164 DCD CAN3_RX0_IRQHandler ; CAN3 RX0
lypinator 0:bb348c97df44 165 DCD CAN3_RX1_IRQHandler ; CAN3 RX1
lypinator 0:bb348c97df44 166 DCD CAN3_SCE_IRQHandler ; CAN3 SCE
lypinator 0:bb348c97df44 167 DCD 0 ; Reserved
lypinator 0:bb348c97df44 168 DCD 0 ; Reserved
lypinator 0:bb348c97df44 169 DCD RNG_IRQHandler ; RNG
lypinator 0:bb348c97df44 170 DCD FPU_IRQHandler ; FPU
lypinator 0:bb348c97df44 171 DCD UART7_IRQHandler ; UART7
lypinator 0:bb348c97df44 172 DCD UART8_IRQHandler ; UART8
lypinator 0:bb348c97df44 173 DCD SPI4_IRQHandler ; SPI4
lypinator 0:bb348c97df44 174 DCD SPI5_IRQHandler ; SPI5
lypinator 0:bb348c97df44 175 DCD 0 ; Reserved
lypinator 0:bb348c97df44 176 DCD SAI1_IRQHandler ; SAI1
lypinator 0:bb348c97df44 177 DCD UART9_IRQHandler ; UART9
lypinator 0:bb348c97df44 178 DCD UART10_IRQHandler ; UART10
lypinator 0:bb348c97df44 179 DCD 0 ; Reserved
lypinator 0:bb348c97df44 180 DCD 0 ; Reserved
lypinator 0:bb348c97df44 181 DCD QUADSPI_IRQHandler ; QuadSPI
lypinator 0:bb348c97df44 182 DCD 0 ; Reserved
lypinator 0:bb348c97df44 183 DCD 0 ; Reserved
lypinator 0:bb348c97df44 184 DCD FMPI2C1_EV_IRQHandler ; FMPI2C1 Event
lypinator 0:bb348c97df44 185 DCD FMPI2C1_ER_IRQHandler ; FMPI2C1 Error
lypinator 0:bb348c97df44 186 DCD LPTIM1_IRQHandler ; LPTIM1
lypinator 0:bb348c97df44 187 DCD DFSDM2_FLT0_IRQHandler ; DFSDM2 Filter0
lypinator 0:bb348c97df44 188 DCD DFSDM2_FLT1_IRQHandler ; DFSDM2 Filter1
lypinator 0:bb348c97df44 189 DCD DFSDM2_FLT2_IRQHandler ; DFSDM2 Filter2
lypinator 0:bb348c97df44 190 DCD DFSDM2_FLT3_IRQHandler ; DFSDM2 Filter3
lypinator 0:bb348c97df44 191
lypinator 0:bb348c97df44 192 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
lypinator 0:bb348c97df44 193 ;;
lypinator 0:bb348c97df44 194 ;; Default interrupt handlers.
lypinator 0:bb348c97df44 195 ;;
lypinator 0:bb348c97df44 196 THUMB
lypinator 0:bb348c97df44 197 PUBWEAK Reset_Handler
lypinator 0:bb348c97df44 198 SECTION .text:CODE:REORDER:NOROOT(2)
lypinator 0:bb348c97df44 199 Reset_Handler
lypinator 0:bb348c97df44 200
lypinator 0:bb348c97df44 201 LDR R0, =SystemInit
lypinator 0:bb348c97df44 202 BLX R0
lypinator 0:bb348c97df44 203 LDR R0, =__iar_program_start
lypinator 0:bb348c97df44 204 BX R0
lypinator 0:bb348c97df44 205
lypinator 0:bb348c97df44 206 PUBWEAK NMI_Handler
lypinator 0:bb348c97df44 207 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 208 NMI_Handler
lypinator 0:bb348c97df44 209 B NMI_Handler
lypinator 0:bb348c97df44 210
lypinator 0:bb348c97df44 211 PUBWEAK HardFault_Handler
lypinator 0:bb348c97df44 212 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 213 HardFault_Handler
lypinator 0:bb348c97df44 214 B HardFault_Handler
lypinator 0:bb348c97df44 215
lypinator 0:bb348c97df44 216 PUBWEAK MemManage_Handler
lypinator 0:bb348c97df44 217 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 218 MemManage_Handler
lypinator 0:bb348c97df44 219 B MemManage_Handler
lypinator 0:bb348c97df44 220
lypinator 0:bb348c97df44 221 PUBWEAK BusFault_Handler
lypinator 0:bb348c97df44 222 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 223 BusFault_Handler
lypinator 0:bb348c97df44 224 B BusFault_Handler
lypinator 0:bb348c97df44 225
lypinator 0:bb348c97df44 226 PUBWEAK UsageFault_Handler
lypinator 0:bb348c97df44 227 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 228 UsageFault_Handler
lypinator 0:bb348c97df44 229 B UsageFault_Handler
lypinator 0:bb348c97df44 230
lypinator 0:bb348c97df44 231 PUBWEAK SVC_Handler
lypinator 0:bb348c97df44 232 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 233 SVC_Handler
lypinator 0:bb348c97df44 234 B SVC_Handler
lypinator 0:bb348c97df44 235
lypinator 0:bb348c97df44 236 PUBWEAK DebugMon_Handler
lypinator 0:bb348c97df44 237 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 238 DebugMon_Handler
lypinator 0:bb348c97df44 239 B DebugMon_Handler
lypinator 0:bb348c97df44 240
lypinator 0:bb348c97df44 241 PUBWEAK PendSV_Handler
lypinator 0:bb348c97df44 242 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 243 PendSV_Handler
lypinator 0:bb348c97df44 244 B PendSV_Handler
lypinator 0:bb348c97df44 245
lypinator 0:bb348c97df44 246 PUBWEAK SysTick_Handler
lypinator 0:bb348c97df44 247 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 248 SysTick_Handler
lypinator 0:bb348c97df44 249 B SysTick_Handler
lypinator 0:bb348c97df44 250
lypinator 0:bb348c97df44 251 PUBWEAK WWDG_IRQHandler
lypinator 0:bb348c97df44 252 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 253 WWDG_IRQHandler
lypinator 0:bb348c97df44 254 B WWDG_IRQHandler
lypinator 0:bb348c97df44 255
lypinator 0:bb348c97df44 256 PUBWEAK PVD_IRQHandler
lypinator 0:bb348c97df44 257 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 258 PVD_IRQHandler
lypinator 0:bb348c97df44 259 B PVD_IRQHandler
lypinator 0:bb348c97df44 260
lypinator 0:bb348c97df44 261 PUBWEAK TAMP_STAMP_IRQHandler
lypinator 0:bb348c97df44 262 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 263 TAMP_STAMP_IRQHandler
lypinator 0:bb348c97df44 264 B TAMP_STAMP_IRQHandler
lypinator 0:bb348c97df44 265
lypinator 0:bb348c97df44 266 PUBWEAK RTC_WKUP_IRQHandler
lypinator 0:bb348c97df44 267 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 268 RTC_WKUP_IRQHandler
lypinator 0:bb348c97df44 269 B RTC_WKUP_IRQHandler
lypinator 0:bb348c97df44 270
lypinator 0:bb348c97df44 271 PUBWEAK FLASH_IRQHandler
lypinator 0:bb348c97df44 272 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 273 FLASH_IRQHandler
lypinator 0:bb348c97df44 274 B FLASH_IRQHandler
lypinator 0:bb348c97df44 275
lypinator 0:bb348c97df44 276 PUBWEAK RCC_IRQHandler
lypinator 0:bb348c97df44 277 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 278 RCC_IRQHandler
lypinator 0:bb348c97df44 279 B RCC_IRQHandler
lypinator 0:bb348c97df44 280
lypinator 0:bb348c97df44 281 PUBWEAK EXTI0_IRQHandler
lypinator 0:bb348c97df44 282 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 283 EXTI0_IRQHandler
lypinator 0:bb348c97df44 284 B EXTI0_IRQHandler
lypinator 0:bb348c97df44 285
lypinator 0:bb348c97df44 286 PUBWEAK EXTI1_IRQHandler
lypinator 0:bb348c97df44 287 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 288 EXTI1_IRQHandler
lypinator 0:bb348c97df44 289 B EXTI1_IRQHandler
lypinator 0:bb348c97df44 290
lypinator 0:bb348c97df44 291 PUBWEAK EXTI2_IRQHandler
lypinator 0:bb348c97df44 292 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 293 EXTI2_IRQHandler
lypinator 0:bb348c97df44 294 B EXTI2_IRQHandler
lypinator 0:bb348c97df44 295
lypinator 0:bb348c97df44 296 PUBWEAK EXTI3_IRQHandler
lypinator 0:bb348c97df44 297 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 298 EXTI3_IRQHandler
lypinator 0:bb348c97df44 299 B EXTI3_IRQHandler
lypinator 0:bb348c97df44 300
lypinator 0:bb348c97df44 301 PUBWEAK EXTI4_IRQHandler
lypinator 0:bb348c97df44 302 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 303 EXTI4_IRQHandler
lypinator 0:bb348c97df44 304 B EXTI4_IRQHandler
lypinator 0:bb348c97df44 305
lypinator 0:bb348c97df44 306 PUBWEAK DMA1_Stream0_IRQHandler
lypinator 0:bb348c97df44 307 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 308 DMA1_Stream0_IRQHandler
lypinator 0:bb348c97df44 309 B DMA1_Stream0_IRQHandler
lypinator 0:bb348c97df44 310
lypinator 0:bb348c97df44 311 PUBWEAK DMA1_Stream1_IRQHandler
lypinator 0:bb348c97df44 312 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 313 DMA1_Stream1_IRQHandler
lypinator 0:bb348c97df44 314 B DMA1_Stream1_IRQHandler
lypinator 0:bb348c97df44 315
lypinator 0:bb348c97df44 316 PUBWEAK DMA1_Stream2_IRQHandler
lypinator 0:bb348c97df44 317 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 318 DMA1_Stream2_IRQHandler
lypinator 0:bb348c97df44 319 B DMA1_Stream2_IRQHandler
lypinator 0:bb348c97df44 320
lypinator 0:bb348c97df44 321 PUBWEAK DMA1_Stream3_IRQHandler
lypinator 0:bb348c97df44 322 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 323 DMA1_Stream3_IRQHandler
lypinator 0:bb348c97df44 324 B DMA1_Stream3_IRQHandler
lypinator 0:bb348c97df44 325
lypinator 0:bb348c97df44 326 PUBWEAK DMA1_Stream4_IRQHandler
lypinator 0:bb348c97df44 327 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 328 DMA1_Stream4_IRQHandler
lypinator 0:bb348c97df44 329 B DMA1_Stream4_IRQHandler
lypinator 0:bb348c97df44 330
lypinator 0:bb348c97df44 331 PUBWEAK DMA1_Stream5_IRQHandler
lypinator 0:bb348c97df44 332 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 333 DMA1_Stream5_IRQHandler
lypinator 0:bb348c97df44 334 B DMA1_Stream5_IRQHandler
lypinator 0:bb348c97df44 335
lypinator 0:bb348c97df44 336 PUBWEAK DMA1_Stream6_IRQHandler
lypinator 0:bb348c97df44 337 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 338 DMA1_Stream6_IRQHandler
lypinator 0:bb348c97df44 339 B DMA1_Stream6_IRQHandler
lypinator 0:bb348c97df44 340
lypinator 0:bb348c97df44 341 PUBWEAK ADC_IRQHandler
lypinator 0:bb348c97df44 342 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 343 ADC_IRQHandler
lypinator 0:bb348c97df44 344 B ADC_IRQHandler
lypinator 0:bb348c97df44 345
lypinator 0:bb348c97df44 346 PUBWEAK CAN1_TX_IRQHandler
lypinator 0:bb348c97df44 347 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 348 CAN1_TX_IRQHandler
lypinator 0:bb348c97df44 349 B CAN1_TX_IRQHandler
lypinator 0:bb348c97df44 350
lypinator 0:bb348c97df44 351 PUBWEAK CAN1_RX0_IRQHandler
lypinator 0:bb348c97df44 352 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 353 CAN1_RX0_IRQHandler
lypinator 0:bb348c97df44 354 B CAN1_RX0_IRQHandler
lypinator 0:bb348c97df44 355
lypinator 0:bb348c97df44 356 PUBWEAK CAN1_RX1_IRQHandler
lypinator 0:bb348c97df44 357 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 358 CAN1_RX1_IRQHandler
lypinator 0:bb348c97df44 359 B CAN1_RX1_IRQHandler
lypinator 0:bb348c97df44 360
lypinator 0:bb348c97df44 361 PUBWEAK CAN1_SCE_IRQHandler
lypinator 0:bb348c97df44 362 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 363 CAN1_SCE_IRQHandler
lypinator 0:bb348c97df44 364 B CAN1_SCE_IRQHandler
lypinator 0:bb348c97df44 365
lypinator 0:bb348c97df44 366 PUBWEAK EXTI9_5_IRQHandler
lypinator 0:bb348c97df44 367 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 368 EXTI9_5_IRQHandler
lypinator 0:bb348c97df44 369 B EXTI9_5_IRQHandler
lypinator 0:bb348c97df44 370
lypinator 0:bb348c97df44 371 PUBWEAK TIM1_BRK_TIM9_IRQHandler
lypinator 0:bb348c97df44 372 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 373 TIM1_BRK_TIM9_IRQHandler
lypinator 0:bb348c97df44 374 B TIM1_BRK_TIM9_IRQHandler
lypinator 0:bb348c97df44 375
lypinator 0:bb348c97df44 376 PUBWEAK TIM1_UP_TIM10_IRQHandler
lypinator 0:bb348c97df44 377 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 378 TIM1_UP_TIM10_IRQHandler
lypinator 0:bb348c97df44 379 B TIM1_UP_TIM10_IRQHandler
lypinator 0:bb348c97df44 380
lypinator 0:bb348c97df44 381 PUBWEAK TIM1_TRG_COM_TIM11_IRQHandler
lypinator 0:bb348c97df44 382 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 383 TIM1_TRG_COM_TIM11_IRQHandler
lypinator 0:bb348c97df44 384 B TIM1_TRG_COM_TIM11_IRQHandler
lypinator 0:bb348c97df44 385
lypinator 0:bb348c97df44 386 PUBWEAK TIM1_CC_IRQHandler
lypinator 0:bb348c97df44 387 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 388 TIM1_CC_IRQHandler
lypinator 0:bb348c97df44 389 B TIM1_CC_IRQHandler
lypinator 0:bb348c97df44 390
lypinator 0:bb348c97df44 391 PUBWEAK TIM2_IRQHandler
lypinator 0:bb348c97df44 392 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 393 TIM2_IRQHandler
lypinator 0:bb348c97df44 394 B TIM2_IRQHandler
lypinator 0:bb348c97df44 395
lypinator 0:bb348c97df44 396 PUBWEAK TIM3_IRQHandler
lypinator 0:bb348c97df44 397 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 398 TIM3_IRQHandler
lypinator 0:bb348c97df44 399 B TIM3_IRQHandler
lypinator 0:bb348c97df44 400
lypinator 0:bb348c97df44 401 PUBWEAK TIM4_IRQHandler
lypinator 0:bb348c97df44 402 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 403 TIM4_IRQHandler
lypinator 0:bb348c97df44 404 B TIM4_IRQHandler
lypinator 0:bb348c97df44 405
lypinator 0:bb348c97df44 406 PUBWEAK I2C1_EV_IRQHandler
lypinator 0:bb348c97df44 407 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 408 I2C1_EV_IRQHandler
lypinator 0:bb348c97df44 409 B I2C1_EV_IRQHandler
lypinator 0:bb348c97df44 410
lypinator 0:bb348c97df44 411 PUBWEAK I2C1_ER_IRQHandler
lypinator 0:bb348c97df44 412 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 413 I2C1_ER_IRQHandler
lypinator 0:bb348c97df44 414 B I2C1_ER_IRQHandler
lypinator 0:bb348c97df44 415
lypinator 0:bb348c97df44 416 PUBWEAK I2C2_EV_IRQHandler
lypinator 0:bb348c97df44 417 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 418 I2C2_EV_IRQHandler
lypinator 0:bb348c97df44 419 B I2C2_EV_IRQHandler
lypinator 0:bb348c97df44 420
lypinator 0:bb348c97df44 421 PUBWEAK I2C2_ER_IRQHandler
lypinator 0:bb348c97df44 422 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 423 I2C2_ER_IRQHandler
lypinator 0:bb348c97df44 424 B I2C2_ER_IRQHandler
lypinator 0:bb348c97df44 425
lypinator 0:bb348c97df44 426 PUBWEAK SPI1_IRQHandler
lypinator 0:bb348c97df44 427 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 428 SPI1_IRQHandler
lypinator 0:bb348c97df44 429 B SPI1_IRQHandler
lypinator 0:bb348c97df44 430
lypinator 0:bb348c97df44 431 PUBWEAK SPI2_IRQHandler
lypinator 0:bb348c97df44 432 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 433 SPI2_IRQHandler
lypinator 0:bb348c97df44 434 B SPI2_IRQHandler
lypinator 0:bb348c97df44 435
lypinator 0:bb348c97df44 436 PUBWEAK USART1_IRQHandler
lypinator 0:bb348c97df44 437 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 438 USART1_IRQHandler
lypinator 0:bb348c97df44 439 B USART1_IRQHandler
lypinator 0:bb348c97df44 440
lypinator 0:bb348c97df44 441 PUBWEAK USART2_IRQHandler
lypinator 0:bb348c97df44 442 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 443 USART2_IRQHandler
lypinator 0:bb348c97df44 444 B USART2_IRQHandler
lypinator 0:bb348c97df44 445
lypinator 0:bb348c97df44 446 PUBWEAK USART3_IRQHandler
lypinator 0:bb348c97df44 447 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 448 USART3_IRQHandler
lypinator 0:bb348c97df44 449 B USART3_IRQHandler
lypinator 0:bb348c97df44 450
lypinator 0:bb348c97df44 451 PUBWEAK EXTI15_10_IRQHandler
lypinator 0:bb348c97df44 452 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 453 EXTI15_10_IRQHandler
lypinator 0:bb348c97df44 454 B EXTI15_10_IRQHandler
lypinator 0:bb348c97df44 455
lypinator 0:bb348c97df44 456 PUBWEAK RTC_Alarm_IRQHandler
lypinator 0:bb348c97df44 457 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 458 RTC_Alarm_IRQHandler
lypinator 0:bb348c97df44 459 B RTC_Alarm_IRQHandler
lypinator 0:bb348c97df44 460
lypinator 0:bb348c97df44 461 PUBWEAK OTG_FS_WKUP_IRQHandler
lypinator 0:bb348c97df44 462 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 463 OTG_FS_WKUP_IRQHandler
lypinator 0:bb348c97df44 464 B OTG_FS_WKUP_IRQHandler
lypinator 0:bb348c97df44 465
lypinator 0:bb348c97df44 466 PUBWEAK TIM8_BRK_TIM12_IRQHandler
lypinator 0:bb348c97df44 467 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 468 TIM8_BRK_TIM12_IRQHandler
lypinator 0:bb348c97df44 469 B TIM8_BRK_TIM12_IRQHandler
lypinator 0:bb348c97df44 470
lypinator 0:bb348c97df44 471 PUBWEAK TIM8_UP_TIM13_IRQHandler
lypinator 0:bb348c97df44 472 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 473 TIM8_UP_TIM13_IRQHandler
lypinator 0:bb348c97df44 474 B TIM8_UP_TIM13_IRQHandler
lypinator 0:bb348c97df44 475
lypinator 0:bb348c97df44 476 PUBWEAK TIM8_TRG_COM_TIM14_IRQHandler
lypinator 0:bb348c97df44 477 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 478 TIM8_TRG_COM_TIM14_IRQHandler
lypinator 0:bb348c97df44 479 B TIM8_TRG_COM_TIM14_IRQHandler
lypinator 0:bb348c97df44 480
lypinator 0:bb348c97df44 481 PUBWEAK TIM8_CC_IRQHandler
lypinator 0:bb348c97df44 482 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 483 TIM8_CC_IRQHandler
lypinator 0:bb348c97df44 484 B TIM8_CC_IRQHandler
lypinator 0:bb348c97df44 485
lypinator 0:bb348c97df44 486 PUBWEAK DMA1_Stream7_IRQHandler
lypinator 0:bb348c97df44 487 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 488 DMA1_Stream7_IRQHandler
lypinator 0:bb348c97df44 489 B DMA1_Stream7_IRQHandler
lypinator 0:bb348c97df44 490
lypinator 0:bb348c97df44 491 PUBWEAK FSMC_IRQHandler
lypinator 0:bb348c97df44 492 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 493 FSMC_IRQHandler
lypinator 0:bb348c97df44 494 B FSMC_IRQHandler
lypinator 0:bb348c97df44 495
lypinator 0:bb348c97df44 496 PUBWEAK SDIO_IRQHandler
lypinator 0:bb348c97df44 497 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 498 SDIO_IRQHandler
lypinator 0:bb348c97df44 499 B SDIO_IRQHandler
lypinator 0:bb348c97df44 500
lypinator 0:bb348c97df44 501 PUBWEAK TIM5_IRQHandler
lypinator 0:bb348c97df44 502 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 503 TIM5_IRQHandler
lypinator 0:bb348c97df44 504 B TIM5_IRQHandler
lypinator 0:bb348c97df44 505
lypinator 0:bb348c97df44 506 PUBWEAK SPI3_IRQHandler
lypinator 0:bb348c97df44 507 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 508 SPI3_IRQHandler
lypinator 0:bb348c97df44 509 B SPI3_IRQHandler
lypinator 0:bb348c97df44 510
lypinator 0:bb348c97df44 511 PUBWEAK UART4_IRQHandler
lypinator 0:bb348c97df44 512 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 513 UART4_IRQHandler
lypinator 0:bb348c97df44 514 B UART4_IRQHandler
lypinator 0:bb348c97df44 515
lypinator 0:bb348c97df44 516 PUBWEAK UART5_IRQHandler
lypinator 0:bb348c97df44 517 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 518 UART5_IRQHandler
lypinator 0:bb348c97df44 519 B UART5_IRQHandler
lypinator 0:bb348c97df44 520
lypinator 0:bb348c97df44 521 PUBWEAK TIM6_DAC_IRQHandler
lypinator 0:bb348c97df44 522 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 523 TIM6_DAC_IRQHandler
lypinator 0:bb348c97df44 524 B TIM6_DAC_IRQHandler
lypinator 0:bb348c97df44 525
lypinator 0:bb348c97df44 526 PUBWEAK TIM7_IRQHandler
lypinator 0:bb348c97df44 527 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 528 TIM7_IRQHandler
lypinator 0:bb348c97df44 529 B TIM7_IRQHandler
lypinator 0:bb348c97df44 530
lypinator 0:bb348c97df44 531 PUBWEAK DMA2_Stream0_IRQHandler
lypinator 0:bb348c97df44 532 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 533 DMA2_Stream0_IRQHandler
lypinator 0:bb348c97df44 534 B DMA2_Stream0_IRQHandler
lypinator 0:bb348c97df44 535
lypinator 0:bb348c97df44 536 PUBWEAK DMA2_Stream1_IRQHandler
lypinator 0:bb348c97df44 537 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 538 DMA2_Stream1_IRQHandler
lypinator 0:bb348c97df44 539 B DMA2_Stream1_IRQHandler
lypinator 0:bb348c97df44 540
lypinator 0:bb348c97df44 541 PUBWEAK DMA2_Stream2_IRQHandler
lypinator 0:bb348c97df44 542 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 543 DMA2_Stream2_IRQHandler
lypinator 0:bb348c97df44 544 B DMA2_Stream2_IRQHandler
lypinator 0:bb348c97df44 545
lypinator 0:bb348c97df44 546 PUBWEAK DMA2_Stream3_IRQHandler
lypinator 0:bb348c97df44 547 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 548 DMA2_Stream3_IRQHandler
lypinator 0:bb348c97df44 549 B DMA2_Stream3_IRQHandler
lypinator 0:bb348c97df44 550
lypinator 0:bb348c97df44 551 PUBWEAK DMA2_Stream4_IRQHandler
lypinator 0:bb348c97df44 552 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 553 DMA2_Stream4_IRQHandler
lypinator 0:bb348c97df44 554 B DMA2_Stream4_IRQHandler
lypinator 0:bb348c97df44 555
lypinator 0:bb348c97df44 556 PUBWEAK DFSDM1_FLT0_IRQHandler
lypinator 0:bb348c97df44 557 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 558 DFSDM1_FLT0_IRQHandler
lypinator 0:bb348c97df44 559 B DFSDM1_FLT0_IRQHandler
lypinator 0:bb348c97df44 560
lypinator 0:bb348c97df44 561 PUBWEAK DFSDM1_FLT1_IRQHandler
lypinator 0:bb348c97df44 562 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 563 DFSDM1_FLT1_IRQHandler
lypinator 0:bb348c97df44 564 B DFSDM1_FLT1_IRQHandler
lypinator 0:bb348c97df44 565
lypinator 0:bb348c97df44 566 PUBWEAK CAN2_TX_IRQHandler
lypinator 0:bb348c97df44 567 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 568 CAN2_TX_IRQHandler
lypinator 0:bb348c97df44 569 B CAN2_TX_IRQHandler
lypinator 0:bb348c97df44 570
lypinator 0:bb348c97df44 571 PUBWEAK CAN2_RX0_IRQHandler
lypinator 0:bb348c97df44 572 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 573 CAN2_RX0_IRQHandler
lypinator 0:bb348c97df44 574 B CAN2_RX0_IRQHandler
lypinator 0:bb348c97df44 575
lypinator 0:bb348c97df44 576 PUBWEAK CAN2_RX1_IRQHandler
lypinator 0:bb348c97df44 577 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 578 CAN2_RX1_IRQHandler
lypinator 0:bb348c97df44 579 B CAN2_RX1_IRQHandler
lypinator 0:bb348c97df44 580
lypinator 0:bb348c97df44 581 PUBWEAK CAN2_SCE_IRQHandler
lypinator 0:bb348c97df44 582 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 583 CAN2_SCE_IRQHandler
lypinator 0:bb348c97df44 584 B CAN2_SCE_IRQHandler
lypinator 0:bb348c97df44 585
lypinator 0:bb348c97df44 586 PUBWEAK OTG_FS_IRQHandler
lypinator 0:bb348c97df44 587 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 588 OTG_FS_IRQHandler
lypinator 0:bb348c97df44 589 B OTG_FS_IRQHandler
lypinator 0:bb348c97df44 590
lypinator 0:bb348c97df44 591 PUBWEAK DMA2_Stream5_IRQHandler
lypinator 0:bb348c97df44 592 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 593 DMA2_Stream5_IRQHandler
lypinator 0:bb348c97df44 594 B DMA2_Stream5_IRQHandler
lypinator 0:bb348c97df44 595
lypinator 0:bb348c97df44 596 PUBWEAK DMA2_Stream6_IRQHandler
lypinator 0:bb348c97df44 597 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 598 DMA2_Stream6_IRQHandler
lypinator 0:bb348c97df44 599 B DMA2_Stream6_IRQHandler
lypinator 0:bb348c97df44 600
lypinator 0:bb348c97df44 601 PUBWEAK DMA2_Stream7_IRQHandler
lypinator 0:bb348c97df44 602 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 603 DMA2_Stream7_IRQHandler
lypinator 0:bb348c97df44 604 B DMA2_Stream7_IRQHandler
lypinator 0:bb348c97df44 605
lypinator 0:bb348c97df44 606 PUBWEAK USART6_IRQHandler
lypinator 0:bb348c97df44 607 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 608 USART6_IRQHandler
lypinator 0:bb348c97df44 609 B USART6_IRQHandler
lypinator 0:bb348c97df44 610
lypinator 0:bb348c97df44 611 PUBWEAK I2C3_EV_IRQHandler
lypinator 0:bb348c97df44 612 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 613 I2C3_EV_IRQHandler
lypinator 0:bb348c97df44 614 B I2C3_EV_IRQHandler
lypinator 0:bb348c97df44 615
lypinator 0:bb348c97df44 616 PUBWEAK I2C3_ER_IRQHandler
lypinator 0:bb348c97df44 617 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 618 I2C3_ER_IRQHandler
lypinator 0:bb348c97df44 619 B I2C3_ER_IRQHandler
lypinator 0:bb348c97df44 620
lypinator 0:bb348c97df44 621 PUBWEAK CAN3_TX_IRQHandler
lypinator 0:bb348c97df44 622 SECTION .text:CODE:NOROOT:REORDER(1)
lypinator 0:bb348c97df44 623 CAN3_TX_IRQHandler
lypinator 0:bb348c97df44 624 B CAN3_TX_IRQHandler
lypinator 0:bb348c97df44 625
lypinator 0:bb348c97df44 626 PUBWEAK CAN3_RX0_IRQHandler
lypinator 0:bb348c97df44 627 SECTION .text:CODE:NOROOT:REORDER(1)
lypinator 0:bb348c97df44 628 CAN3_RX0_IRQHandler
lypinator 0:bb348c97df44 629 B CAN3_RX0_IRQHandler
lypinator 0:bb348c97df44 630
lypinator 0:bb348c97df44 631 PUBWEAK CAN3_RX1_IRQHandler
lypinator 0:bb348c97df44 632 SECTION .text:CODE:NOROOT:REORDER(1)
lypinator 0:bb348c97df44 633 CAN3_RX1_IRQHandler
lypinator 0:bb348c97df44 634 B CAN3_RX1_IRQHandler
lypinator 0:bb348c97df44 635
lypinator 0:bb348c97df44 636 PUBWEAK CAN3_SCE_IRQHandler
lypinator 0:bb348c97df44 637 SECTION .text:CODE:NOROOT:REORDER(1)
lypinator 0:bb348c97df44 638 CAN3_SCE_IRQHandler
lypinator 0:bb348c97df44 639 B CAN3_SCE_IRQHandler
lypinator 0:bb348c97df44 640
lypinator 0:bb348c97df44 641 PUBWEAK RNG_IRQHandler
lypinator 0:bb348c97df44 642 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 643 RNG_IRQHandler
lypinator 0:bb348c97df44 644 B RNG_IRQHandler
lypinator 0:bb348c97df44 645
lypinator 0:bb348c97df44 646 PUBWEAK FPU_IRQHandler
lypinator 0:bb348c97df44 647 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 648 FPU_IRQHandler
lypinator 0:bb348c97df44 649 B FPU_IRQHandler
lypinator 0:bb348c97df44 650
lypinator 0:bb348c97df44 651 PUBWEAK UART7_IRQHandler
lypinator 0:bb348c97df44 652 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 653 UART7_IRQHandler
lypinator 0:bb348c97df44 654 B UART7_IRQHandler
lypinator 0:bb348c97df44 655
lypinator 0:bb348c97df44 656 PUBWEAK UART8_IRQHandler
lypinator 0:bb348c97df44 657 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 658 UART8_IRQHandler
lypinator 0:bb348c97df44 659 B UART8_IRQHandler
lypinator 0:bb348c97df44 660
lypinator 0:bb348c97df44 661 PUBWEAK SPI4_IRQHandler
lypinator 0:bb348c97df44 662 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 663 SPI4_IRQHandler
lypinator 0:bb348c97df44 664 B SPI4_IRQHandler
lypinator 0:bb348c97df44 665
lypinator 0:bb348c97df44 666 PUBWEAK SPI5_IRQHandler
lypinator 0:bb348c97df44 667 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 668 SPI5_IRQHandler
lypinator 0:bb348c97df44 669 B SPI5_IRQHandler
lypinator 0:bb348c97df44 670
lypinator 0:bb348c97df44 671 PUBWEAK SAI1_IRQHandler
lypinator 0:bb348c97df44 672 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 673 SAI1_IRQHandler
lypinator 0:bb348c97df44 674 B SAI1_IRQHandler
lypinator 0:bb348c97df44 675
lypinator 0:bb348c97df44 676 PUBWEAK UART9_IRQHandler
lypinator 0:bb348c97df44 677 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 678 UART9_IRQHandler
lypinator 0:bb348c97df44 679 B UART9_IRQHandler
lypinator 0:bb348c97df44 680
lypinator 0:bb348c97df44 681 PUBWEAK UART10_IRQHandler
lypinator 0:bb348c97df44 682 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 683 UART10_IRQHandler
lypinator 0:bb348c97df44 684 B UART10_IRQHandler
lypinator 0:bb348c97df44 685
lypinator 0:bb348c97df44 686 PUBWEAK QUADSPI_IRQHandler
lypinator 0:bb348c97df44 687 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 688 QUADSPI_IRQHandler
lypinator 0:bb348c97df44 689 B QUADSPI_IRQHandler
lypinator 0:bb348c97df44 690
lypinator 0:bb348c97df44 691 PUBWEAK FMPI2C1_EV_IRQHandler
lypinator 0:bb348c97df44 692 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 693 FMPI2C1_EV_IRQHandler
lypinator 0:bb348c97df44 694 B FMPI2C1_EV_IRQHandler
lypinator 0:bb348c97df44 695
lypinator 0:bb348c97df44 696 PUBWEAK FMPI2C1_ER_IRQHandler
lypinator 0:bb348c97df44 697 SECTION .text:CODE:REORDER:NOROOT(1)
lypinator 0:bb348c97df44 698 FMPI2C1_ER_IRQHandler
lypinator 0:bb348c97df44 699 B FMPI2C1_ER_IRQHandler
lypinator 0:bb348c97df44 700
lypinator 0:bb348c97df44 701 PUBWEAK LPTIM1_IRQHandler
lypinator 0:bb348c97df44 702 SECTION .text:CODE:NOROOT:REORDER(1)
lypinator 0:bb348c97df44 703 LPTIM1_IRQHandler
lypinator 0:bb348c97df44 704 B LPTIM1_IRQHandler
lypinator 0:bb348c97df44 705
lypinator 0:bb348c97df44 706 PUBWEAK DFSDM2_FLT0_IRQHandler
lypinator 0:bb348c97df44 707 SECTION .text:CODE:NOROOT:REORDER(1)
lypinator 0:bb348c97df44 708 DFSDM2_FLT0_IRQHandler
lypinator 0:bb348c97df44 709 B DFSDM2_FLT0_IRQHandler
lypinator 0:bb348c97df44 710
lypinator 0:bb348c97df44 711 PUBWEAK DFSDM2_FLT1_IRQHandler
lypinator 0:bb348c97df44 712 SECTION .text:CODE:NOROOT:REORDER(1)
lypinator 0:bb348c97df44 713 DFSDM2_FLT1_IRQHandler
lypinator 0:bb348c97df44 714 B DFSDM2_FLT1_IRQHandler
lypinator 0:bb348c97df44 715
lypinator 0:bb348c97df44 716 PUBWEAK DFSDM2_FLT2_IRQHandler
lypinator 0:bb348c97df44 717 SECTION .text:CODE:NOROOT:REORDER(1)
lypinator 0:bb348c97df44 718 DFSDM2_FLT2_IRQHandler
lypinator 0:bb348c97df44 719 B DFSDM2_FLT2_IRQHandler
lypinator 0:bb348c97df44 720
lypinator 0:bb348c97df44 721 PUBWEAK DFSDM2_FLT3_IRQHandler
lypinator 0:bb348c97df44 722 SECTION .text:CODE:NOROOT:REORDER(1)
lypinator 0:bb348c97df44 723 DFSDM2_FLT3_IRQHandler
lypinator 0:bb348c97df44 724 B DFSDM2_FLT3_IRQHandler
lypinator 0:bb348c97df44 725
lypinator 0:bb348c97df44 726 END
lypinator 0:bb348c97df44 727 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/