raspiezo / mbed-dev

Dependents:   Nucleo_L432KC_Quadrature_Decoder_with_ADC_and_DAC

Fork of mbed-dev by mbed official

Committer:
tonnyleonard
Date:
Sat May 27 01:26:18 2017 +0000
Revision:
161:bd0311f1ad86
Parent:
158:b23ee177fd68
Testing ADC with shunt

Who changed what in which revision?

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