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