Frederick Huang / mbed-STM32L452

Dependents:   STM32L452_Nucleo_ticker

Fork of mbed-dev by mbed official

Committer:
Kojto
Date:
Tue Feb 14 14:44:10 2017 +0000
Revision:
158:b23ee177fd68
This updates the lib to the mbed lib v136

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 158:b23ee177fd68 1 /**
Kojto 158:b23ee177fd68 2 ******************************************************************************
Kojto 158:b23ee177fd68 3 * @file startup_stm32l486xx.s
Kojto 158:b23ee177fd68 4 * @author MCD Application Team
Kojto 158:b23ee177fd68 5 * @version V1.1.2
Kojto 158:b23ee177fd68 6 * @date 12-September-2016
Kojto 158:b23ee177fd68 7 * @brief STM32L486xx devices vector table for GCC toolchain.
Kojto 158:b23ee177fd68 8 * This module performs:
Kojto 158:b23ee177fd68 9 * - Set the initial SP
Kojto 158:b23ee177fd68 10 * - Set the initial PC == Reset_Handler,
Kojto 158:b23ee177fd68 11 * - Set the vector table entries with the exceptions ISR address,
Kojto 158:b23ee177fd68 12 * - Configure the clock system
Kojto 158:b23ee177fd68 13 * - Branches to main in the C library (which eventually
Kojto 158:b23ee177fd68 14 * calls main()).
Kojto 158:b23ee177fd68 15 * After Reset the Cortex-M4 processor is in Thread mode,
Kojto 158:b23ee177fd68 16 * priority is Privileged, and the Stack is set to Main.
Kojto 158:b23ee177fd68 17 ******************************************************************************
Kojto 158:b23ee177fd68 18 * @attention
Kojto 158:b23ee177fd68 19 *
Kojto 158:b23ee177fd68 20 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
Kojto 158:b23ee177fd68 21 *
Kojto 158:b23ee177fd68 22 * Redistribution and use in source and binary forms, with or without modification,
Kojto 158:b23ee177fd68 23 * are permitted provided that the following conditions are met:
Kojto 158:b23ee177fd68 24 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 158:b23ee177fd68 25 * this list of conditions and the following disclaimer.
Kojto 158:b23ee177fd68 26 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 158:b23ee177fd68 27 * this list of conditions and the following disclaimer in the documentation
Kojto 158:b23ee177fd68 28 * and/or other materials provided with the distribution.
Kojto 158:b23ee177fd68 29 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 158:b23ee177fd68 30 * may be used to endorse or promote products derived from this software
Kojto 158:b23ee177fd68 31 * without specific prior written permission.
Kojto 158:b23ee177fd68 32 *
Kojto 158:b23ee177fd68 33 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 158:b23ee177fd68 34 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 158:b23ee177fd68 35 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 158:b23ee177fd68 36 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 158:b23ee177fd68 37 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 158:b23ee177fd68 38 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 158:b23ee177fd68 39 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 158:b23ee177fd68 40 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 158:b23ee177fd68 41 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 158:b23ee177fd68 42 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 158:b23ee177fd68 43 *
Kojto 158:b23ee177fd68 44 ******************************************************************************
Kojto 158:b23ee177fd68 45 */
Kojto 158:b23ee177fd68 46
Kojto 158:b23ee177fd68 47 .syntax unified
Kojto 158:b23ee177fd68 48 .cpu cortex-m4
Kojto 158:b23ee177fd68 49 .fpu softvfp
Kojto 158:b23ee177fd68 50 .thumb
Kojto 158:b23ee177fd68 51
Kojto 158:b23ee177fd68 52 .global g_pfnVectors
Kojto 158:b23ee177fd68 53 .global Default_Handler
Kojto 158:b23ee177fd68 54
Kojto 158:b23ee177fd68 55 /* start address for the initialization values of the .data section.
Kojto 158:b23ee177fd68 56 defined in linker script */
Kojto 158:b23ee177fd68 57 .word _sidata
Kojto 158:b23ee177fd68 58 /* start address for the .data section. defined in linker script */
Kojto 158:b23ee177fd68 59 .word _sdata
Kojto 158:b23ee177fd68 60 /* end address for the .data section. defined in linker script */
Kojto 158:b23ee177fd68 61 .word _edata
Kojto 158:b23ee177fd68 62
Kojto 158:b23ee177fd68 63 .equ BootRAM, 0xF1E0F85F
Kojto 158:b23ee177fd68 64 /**
Kojto 158:b23ee177fd68 65 * @brief This is the code that gets called when the processor first
Kojto 158:b23ee177fd68 66 * starts execution following a reset event. Only the absolutely
Kojto 158:b23ee177fd68 67 * necessary set is performed, after which the application
Kojto 158:b23ee177fd68 68 * supplied main() routine is called.
Kojto 158:b23ee177fd68 69 * @param None
Kojto 158:b23ee177fd68 70 * @retval : None
Kojto 158:b23ee177fd68 71 */
Kojto 158:b23ee177fd68 72
Kojto 158:b23ee177fd68 73 .section .text.Reset_Handler
Kojto 158:b23ee177fd68 74 .weak Reset_Handler
Kojto 158:b23ee177fd68 75 .type Reset_Handler, %function
Kojto 158:b23ee177fd68 76 Reset_Handler:
Kojto 158:b23ee177fd68 77 ldr sp, =_estack /* Atollic update: set stack pointer */
Kojto 158:b23ee177fd68 78
Kojto 158:b23ee177fd68 79 /* Copy the data segment initializers from flash to SRAM */
Kojto 158:b23ee177fd68 80 movs r1, #0
Kojto 158:b23ee177fd68 81 b LoopCopyDataInit
Kojto 158:b23ee177fd68 82
Kojto 158:b23ee177fd68 83 CopyDataInit:
Kojto 158:b23ee177fd68 84 ldr r3, =_sidata
Kojto 158:b23ee177fd68 85 ldr r3, [r3, r1]
Kojto 158:b23ee177fd68 86 str r3, [r0, r1]
Kojto 158:b23ee177fd68 87 adds r1, r1, #4
Kojto 158:b23ee177fd68 88
Kojto 158:b23ee177fd68 89 LoopCopyDataInit:
Kojto 158:b23ee177fd68 90 ldr r0, =_sdata
Kojto 158:b23ee177fd68 91 ldr r3, =_edata
Kojto 158:b23ee177fd68 92 adds r2, r0, r1
Kojto 158:b23ee177fd68 93 cmp r2, r3
Kojto 158:b23ee177fd68 94 bcc CopyDataInit
Kojto 158:b23ee177fd68 95
Kojto 158:b23ee177fd68 96 /* Call the clock system intitialization function.*/
Kojto 158:b23ee177fd68 97 bl SystemInit
Kojto 158:b23ee177fd68 98 /* Call static constructors */
Kojto 158:b23ee177fd68 99 //bl __libc_init_array
Kojto 158:b23ee177fd68 100 /* Call the application's entry point.*/
Kojto 158:b23ee177fd68 101 //bl main
Kojto 158:b23ee177fd68 102 // Calling the crt0 'cold-start' entry point. There __libc_init_array is called
Kojto 158:b23ee177fd68 103 // and when existing hardware_init_hook() and software_init_hook() before
Kojto 158:b23ee177fd68 104 // starting main(). software_init_hook() is available and has to be called due
Kojto 158:b23ee177fd68 105 // to initializsation when using rtos.
Kojto 158:b23ee177fd68 106 bl _start
Kojto 158:b23ee177fd68 107 bx lr
Kojto 158:b23ee177fd68 108 .size Reset_Handler, .-Reset_Handler
Kojto 158:b23ee177fd68 109
Kojto 158:b23ee177fd68 110 /**
Kojto 158:b23ee177fd68 111 * @brief This is the code that gets called when the processor receives an
Kojto 158:b23ee177fd68 112 * unexpected interrupt. This simply enters an infinite loop, preserving
Kojto 158:b23ee177fd68 113 * the system state for examination by a debugger.
Kojto 158:b23ee177fd68 114 *
Kojto 158:b23ee177fd68 115 * @param None
Kojto 158:b23ee177fd68 116 * @retval : None
Kojto 158:b23ee177fd68 117 */
Kojto 158:b23ee177fd68 118 .section .text.Default_Handler,"ax",%progbits
Kojto 158:b23ee177fd68 119 Default_Handler:
Kojto 158:b23ee177fd68 120 Infinite_Loop:
Kojto 158:b23ee177fd68 121 b Infinite_Loop
Kojto 158:b23ee177fd68 122 .size Default_Handler, .-Default_Handler
Kojto 158:b23ee177fd68 123 /******************************************************************************
Kojto 158:b23ee177fd68 124 *
Kojto 158:b23ee177fd68 125 * The minimal vector table for a Cortex-M4. Note that the proper constructs
Kojto 158:b23ee177fd68 126 * must be placed on this to ensure that it ends up at physical address
Kojto 158:b23ee177fd68 127 * 0x0000.0000.
Kojto 158:b23ee177fd68 128 *
Kojto 158:b23ee177fd68 129 ******************************************************************************/
Kojto 158:b23ee177fd68 130 .section .isr_vector,"a",%progbits
Kojto 158:b23ee177fd68 131 .type g_pfnVectors, %object
Kojto 158:b23ee177fd68 132 .size g_pfnVectors, .-g_pfnVectors
Kojto 158:b23ee177fd68 133
Kojto 158:b23ee177fd68 134
Kojto 158:b23ee177fd68 135 g_pfnVectors:
Kojto 158:b23ee177fd68 136 .word _estack
Kojto 158:b23ee177fd68 137 .word Reset_Handler
Kojto 158:b23ee177fd68 138 .word NMI_Handler
Kojto 158:b23ee177fd68 139 .word HardFault_Handler
Kojto 158:b23ee177fd68 140 .word MemManage_Handler
Kojto 158:b23ee177fd68 141 .word BusFault_Handler
Kojto 158:b23ee177fd68 142 .word UsageFault_Handler
Kojto 158:b23ee177fd68 143 .word 0
Kojto 158:b23ee177fd68 144 .word 0
Kojto 158:b23ee177fd68 145 .word 0
Kojto 158:b23ee177fd68 146 .word 0
Kojto 158:b23ee177fd68 147 .word SVC_Handler
Kojto 158:b23ee177fd68 148 .word DebugMon_Handler
Kojto 158:b23ee177fd68 149 .word 0
Kojto 158:b23ee177fd68 150 .word PendSV_Handler
Kojto 158:b23ee177fd68 151 .word SysTick_Handler
Kojto 158:b23ee177fd68 152 .word WWDG_IRQHandler
Kojto 158:b23ee177fd68 153 .word PVD_PVM_IRQHandler
Kojto 158:b23ee177fd68 154 .word TAMP_STAMP_IRQHandler
Kojto 158:b23ee177fd68 155 .word RTC_WKUP_IRQHandler
Kojto 158:b23ee177fd68 156 .word FLASH_IRQHandler
Kojto 158:b23ee177fd68 157 .word RCC_IRQHandler
Kojto 158:b23ee177fd68 158 .word EXTI0_IRQHandler
Kojto 158:b23ee177fd68 159 .word EXTI1_IRQHandler
Kojto 158:b23ee177fd68 160 .word EXTI2_IRQHandler
Kojto 158:b23ee177fd68 161 .word EXTI3_IRQHandler
Kojto 158:b23ee177fd68 162 .word EXTI4_IRQHandler
Kojto 158:b23ee177fd68 163 .word DMA1_Channel1_IRQHandler
Kojto 158:b23ee177fd68 164 .word DMA1_Channel2_IRQHandler
Kojto 158:b23ee177fd68 165 .word DMA1_Channel3_IRQHandler
Kojto 158:b23ee177fd68 166 .word DMA1_Channel4_IRQHandler
Kojto 158:b23ee177fd68 167 .word DMA1_Channel5_IRQHandler
Kojto 158:b23ee177fd68 168 .word DMA1_Channel6_IRQHandler
Kojto 158:b23ee177fd68 169 .word DMA1_Channel7_IRQHandler
Kojto 158:b23ee177fd68 170 .word ADC1_2_IRQHandler
Kojto 158:b23ee177fd68 171 .word CAN1_TX_IRQHandler
Kojto 158:b23ee177fd68 172 .word CAN1_RX0_IRQHandler
Kojto 158:b23ee177fd68 173 .word CAN1_RX1_IRQHandler
Kojto 158:b23ee177fd68 174 .word CAN1_SCE_IRQHandler
Kojto 158:b23ee177fd68 175 .word EXTI9_5_IRQHandler
Kojto 158:b23ee177fd68 176 .word TIM1_BRK_TIM15_IRQHandler
Kojto 158:b23ee177fd68 177 .word TIM1_UP_TIM16_IRQHandler
Kojto 158:b23ee177fd68 178 .word TIM1_TRG_COM_TIM17_IRQHandler
Kojto 158:b23ee177fd68 179 .word TIM1_CC_IRQHandler
Kojto 158:b23ee177fd68 180 .word TIM2_IRQHandler
Kojto 158:b23ee177fd68 181 .word TIM3_IRQHandler
Kojto 158:b23ee177fd68 182 .word TIM4_IRQHandler
Kojto 158:b23ee177fd68 183 .word I2C1_EV_IRQHandler
Kojto 158:b23ee177fd68 184 .word I2C1_ER_IRQHandler
Kojto 158:b23ee177fd68 185 .word I2C2_EV_IRQHandler
Kojto 158:b23ee177fd68 186 .word I2C2_ER_IRQHandler
Kojto 158:b23ee177fd68 187 .word SPI1_IRQHandler
Kojto 158:b23ee177fd68 188 .word SPI2_IRQHandler
Kojto 158:b23ee177fd68 189 .word USART1_IRQHandler
Kojto 158:b23ee177fd68 190 .word USART2_IRQHandler
Kojto 158:b23ee177fd68 191 .word USART3_IRQHandler
Kojto 158:b23ee177fd68 192 .word EXTI15_10_IRQHandler
Kojto 158:b23ee177fd68 193 .word RTC_Alarm_IRQHandler
Kojto 158:b23ee177fd68 194 .word DFSDM1_FLT3_IRQHandler
Kojto 158:b23ee177fd68 195 .word TIM8_BRK_IRQHandler
Kojto 158:b23ee177fd68 196 .word TIM8_UP_IRQHandler
Kojto 158:b23ee177fd68 197 .word TIM8_TRG_COM_IRQHandler
Kojto 158:b23ee177fd68 198 .word TIM8_CC_IRQHandler
Kojto 158:b23ee177fd68 199 .word ADC3_IRQHandler
Kojto 158:b23ee177fd68 200 .word FMC_IRQHandler
Kojto 158:b23ee177fd68 201 .word SDMMC1_IRQHandler
Kojto 158:b23ee177fd68 202 .word TIM5_IRQHandler
Kojto 158:b23ee177fd68 203 .word SPI3_IRQHandler
Kojto 158:b23ee177fd68 204 .word UART4_IRQHandler
Kojto 158:b23ee177fd68 205 .word UART5_IRQHandler
Kojto 158:b23ee177fd68 206 .word TIM6_DAC_IRQHandler
Kojto 158:b23ee177fd68 207 .word TIM7_IRQHandler
Kojto 158:b23ee177fd68 208 .word DMA2_Channel1_IRQHandler
Kojto 158:b23ee177fd68 209 .word DMA2_Channel2_IRQHandler
Kojto 158:b23ee177fd68 210 .word DMA2_Channel3_IRQHandler
Kojto 158:b23ee177fd68 211 .word DMA2_Channel4_IRQHandler
Kojto 158:b23ee177fd68 212 .word DMA2_Channel5_IRQHandler
Kojto 158:b23ee177fd68 213 .word DFSDM1_FLT0_IRQHandler
Kojto 158:b23ee177fd68 214 .word DFSDM1_FLT1_IRQHandler
Kojto 158:b23ee177fd68 215 .word DFSDM1_FLT2_IRQHandler
Kojto 158:b23ee177fd68 216 .word COMP_IRQHandler
Kojto 158:b23ee177fd68 217 .word LPTIM1_IRQHandler
Kojto 158:b23ee177fd68 218 .word LPTIM2_IRQHandler
Kojto 158:b23ee177fd68 219 .word OTG_FS_IRQHandler
Kojto 158:b23ee177fd68 220 .word DMA2_Channel6_IRQHandler
Kojto 158:b23ee177fd68 221 .word DMA2_Channel7_IRQHandler
Kojto 158:b23ee177fd68 222 .word LPUART1_IRQHandler
Kojto 158:b23ee177fd68 223 .word QUADSPI_IRQHandler
Kojto 158:b23ee177fd68 224 .word I2C3_EV_IRQHandler
Kojto 158:b23ee177fd68 225 .word I2C3_ER_IRQHandler
Kojto 158:b23ee177fd68 226 .word SAI1_IRQHandler
Kojto 158:b23ee177fd68 227 .word SAI2_IRQHandler
Kojto 158:b23ee177fd68 228 .word SWPMI1_IRQHandler
Kojto 158:b23ee177fd68 229 .word TSC_IRQHandler
Kojto 158:b23ee177fd68 230 .word LCD_IRQHandler
Kojto 158:b23ee177fd68 231 .word AES_IRQHandler
Kojto 158:b23ee177fd68 232 .word RNG_IRQHandler
Kojto 158:b23ee177fd68 233 .word FPU_IRQHandler
Kojto 158:b23ee177fd68 234
Kojto 158:b23ee177fd68 235
Kojto 158:b23ee177fd68 236 /*******************************************************************************
Kojto 158:b23ee177fd68 237 *
Kojto 158:b23ee177fd68 238 * Provide weak aliases for each Exception handler to the Default_Handler.
Kojto 158:b23ee177fd68 239 * As they are weak aliases, any function with the same name will override
Kojto 158:b23ee177fd68 240 * this definition.
Kojto 158:b23ee177fd68 241 *
Kojto 158:b23ee177fd68 242 *******************************************************************************/
Kojto 158:b23ee177fd68 243
Kojto 158:b23ee177fd68 244 .weak NMI_Handler
Kojto 158:b23ee177fd68 245 .thumb_set NMI_Handler,Default_Handler
Kojto 158:b23ee177fd68 246
Kojto 158:b23ee177fd68 247 .weak HardFault_Handler
Kojto 158:b23ee177fd68 248 .thumb_set HardFault_Handler,Default_Handler
Kojto 158:b23ee177fd68 249
Kojto 158:b23ee177fd68 250 .weak MemManage_Handler
Kojto 158:b23ee177fd68 251 .thumb_set MemManage_Handler,Default_Handler
Kojto 158:b23ee177fd68 252
Kojto 158:b23ee177fd68 253 .weak BusFault_Handler
Kojto 158:b23ee177fd68 254 .thumb_set BusFault_Handler,Default_Handler
Kojto 158:b23ee177fd68 255
Kojto 158:b23ee177fd68 256 .weak UsageFault_Handler
Kojto 158:b23ee177fd68 257 .thumb_set UsageFault_Handler,Default_Handler
Kojto 158:b23ee177fd68 258
Kojto 158:b23ee177fd68 259 .weak SVC_Handler
Kojto 158:b23ee177fd68 260 .thumb_set SVC_Handler,Default_Handler
Kojto 158:b23ee177fd68 261
Kojto 158:b23ee177fd68 262 .weak DebugMon_Handler
Kojto 158:b23ee177fd68 263 .thumb_set DebugMon_Handler,Default_Handler
Kojto 158:b23ee177fd68 264
Kojto 158:b23ee177fd68 265 .weak PendSV_Handler
Kojto 158:b23ee177fd68 266 .thumb_set PendSV_Handler,Default_Handler
Kojto 158:b23ee177fd68 267
Kojto 158:b23ee177fd68 268 .weak SysTick_Handler
Kojto 158:b23ee177fd68 269 .thumb_set SysTick_Handler,Default_Handler
Kojto 158:b23ee177fd68 270
Kojto 158:b23ee177fd68 271 .weak WWDG_IRQHandler
Kojto 158:b23ee177fd68 272 .thumb_set WWDG_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 273
Kojto 158:b23ee177fd68 274 .weak PVD_PVM_IRQHandler
Kojto 158:b23ee177fd68 275 .thumb_set PVD_PVM_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 276
Kojto 158:b23ee177fd68 277 .weak TAMP_STAMP_IRQHandler
Kojto 158:b23ee177fd68 278 .thumb_set TAMP_STAMP_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 279
Kojto 158:b23ee177fd68 280 .weak RTC_WKUP_IRQHandler
Kojto 158:b23ee177fd68 281 .thumb_set RTC_WKUP_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 282
Kojto 158:b23ee177fd68 283 .weak FLASH_IRQHandler
Kojto 158:b23ee177fd68 284 .thumb_set FLASH_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 285
Kojto 158:b23ee177fd68 286 .weak RCC_IRQHandler
Kojto 158:b23ee177fd68 287 .thumb_set RCC_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 288
Kojto 158:b23ee177fd68 289 .weak EXTI0_IRQHandler
Kojto 158:b23ee177fd68 290 .thumb_set EXTI0_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 291
Kojto 158:b23ee177fd68 292 .weak EXTI1_IRQHandler
Kojto 158:b23ee177fd68 293 .thumb_set EXTI1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 294
Kojto 158:b23ee177fd68 295 .weak EXTI2_IRQHandler
Kojto 158:b23ee177fd68 296 .thumb_set EXTI2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 297
Kojto 158:b23ee177fd68 298 .weak EXTI3_IRQHandler
Kojto 158:b23ee177fd68 299 .thumb_set EXTI3_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 300
Kojto 158:b23ee177fd68 301 .weak EXTI4_IRQHandler
Kojto 158:b23ee177fd68 302 .thumb_set EXTI4_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 303
Kojto 158:b23ee177fd68 304 .weak DMA1_Channel1_IRQHandler
Kojto 158:b23ee177fd68 305 .thumb_set DMA1_Channel1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 306
Kojto 158:b23ee177fd68 307 .weak DMA1_Channel2_IRQHandler
Kojto 158:b23ee177fd68 308 .thumb_set DMA1_Channel2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 309
Kojto 158:b23ee177fd68 310 .weak DMA1_Channel3_IRQHandler
Kojto 158:b23ee177fd68 311 .thumb_set DMA1_Channel3_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 312
Kojto 158:b23ee177fd68 313 .weak DMA1_Channel4_IRQHandler
Kojto 158:b23ee177fd68 314 .thumb_set DMA1_Channel4_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 315
Kojto 158:b23ee177fd68 316 .weak DMA1_Channel5_IRQHandler
Kojto 158:b23ee177fd68 317 .thumb_set DMA1_Channel5_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 318
Kojto 158:b23ee177fd68 319 .weak DMA1_Channel6_IRQHandler
Kojto 158:b23ee177fd68 320 .thumb_set DMA1_Channel6_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 321
Kojto 158:b23ee177fd68 322 .weak DMA1_Channel7_IRQHandler
Kojto 158:b23ee177fd68 323 .thumb_set DMA1_Channel7_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 324
Kojto 158:b23ee177fd68 325 .weak ADC1_2_IRQHandler
Kojto 158:b23ee177fd68 326 .thumb_set ADC1_2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 327
Kojto 158:b23ee177fd68 328 .weak CAN1_TX_IRQHandler
Kojto 158:b23ee177fd68 329 .thumb_set CAN1_TX_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 330
Kojto 158:b23ee177fd68 331 .weak CAN1_RX0_IRQHandler
Kojto 158:b23ee177fd68 332 .thumb_set CAN1_RX0_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 333
Kojto 158:b23ee177fd68 334 .weak CAN1_RX1_IRQHandler
Kojto 158:b23ee177fd68 335 .thumb_set CAN1_RX1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 336
Kojto 158:b23ee177fd68 337 .weak CAN1_SCE_IRQHandler
Kojto 158:b23ee177fd68 338 .thumb_set CAN1_SCE_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 339
Kojto 158:b23ee177fd68 340 .weak EXTI9_5_IRQHandler
Kojto 158:b23ee177fd68 341 .thumb_set EXTI9_5_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 342
Kojto 158:b23ee177fd68 343 .weak TIM1_BRK_TIM15_IRQHandler
Kojto 158:b23ee177fd68 344 .thumb_set TIM1_BRK_TIM15_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 345
Kojto 158:b23ee177fd68 346 .weak TIM1_UP_TIM16_IRQHandler
Kojto 158:b23ee177fd68 347 .thumb_set TIM1_UP_TIM16_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 348
Kojto 158:b23ee177fd68 349 .weak TIM1_TRG_COM_TIM17_IRQHandler
Kojto 158:b23ee177fd68 350 .thumb_set TIM1_TRG_COM_TIM17_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 351
Kojto 158:b23ee177fd68 352 .weak TIM1_CC_IRQHandler
Kojto 158:b23ee177fd68 353 .thumb_set TIM1_CC_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 354
Kojto 158:b23ee177fd68 355 .weak TIM2_IRQHandler
Kojto 158:b23ee177fd68 356 .thumb_set TIM2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 357
Kojto 158:b23ee177fd68 358 .weak TIM3_IRQHandler
Kojto 158:b23ee177fd68 359 .thumb_set TIM3_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 360
Kojto 158:b23ee177fd68 361 .weak TIM4_IRQHandler
Kojto 158:b23ee177fd68 362 .thumb_set TIM4_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 363
Kojto 158:b23ee177fd68 364 .weak I2C1_EV_IRQHandler
Kojto 158:b23ee177fd68 365 .thumb_set I2C1_EV_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 366
Kojto 158:b23ee177fd68 367 .weak I2C1_ER_IRQHandler
Kojto 158:b23ee177fd68 368 .thumb_set I2C1_ER_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 369
Kojto 158:b23ee177fd68 370 .weak I2C2_EV_IRQHandler
Kojto 158:b23ee177fd68 371 .thumb_set I2C2_EV_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 372
Kojto 158:b23ee177fd68 373 .weak I2C2_ER_IRQHandler
Kojto 158:b23ee177fd68 374 .thumb_set I2C2_ER_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 375
Kojto 158:b23ee177fd68 376 .weak SPI1_IRQHandler
Kojto 158:b23ee177fd68 377 .thumb_set SPI1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 378
Kojto 158:b23ee177fd68 379 .weak SPI2_IRQHandler
Kojto 158:b23ee177fd68 380 .thumb_set SPI2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 381
Kojto 158:b23ee177fd68 382 .weak USART1_IRQHandler
Kojto 158:b23ee177fd68 383 .thumb_set USART1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 384
Kojto 158:b23ee177fd68 385 .weak USART2_IRQHandler
Kojto 158:b23ee177fd68 386 .thumb_set USART2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 387
Kojto 158:b23ee177fd68 388 .weak USART3_IRQHandler
Kojto 158:b23ee177fd68 389 .thumb_set USART3_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 390
Kojto 158:b23ee177fd68 391 .weak EXTI15_10_IRQHandler
Kojto 158:b23ee177fd68 392 .thumb_set EXTI15_10_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 393
Kojto 158:b23ee177fd68 394 .weak RTC_Alarm_IRQHandler
Kojto 158:b23ee177fd68 395 .thumb_set RTC_Alarm_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 396
Kojto 158:b23ee177fd68 397 .weak DFSDM1_FLT3_IRQHandler
Kojto 158:b23ee177fd68 398 .thumb_set DFSDM1_FLT3_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 399
Kojto 158:b23ee177fd68 400 .weak TIM8_BRK_IRQHandler
Kojto 158:b23ee177fd68 401 .thumb_set TIM8_BRK_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 402
Kojto 158:b23ee177fd68 403 .weak TIM8_UP_IRQHandler
Kojto 158:b23ee177fd68 404 .thumb_set TIM8_UP_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 405
Kojto 158:b23ee177fd68 406 .weak TIM8_TRG_COM_IRQHandler
Kojto 158:b23ee177fd68 407 .thumb_set TIM8_TRG_COM_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 408
Kojto 158:b23ee177fd68 409 .weak TIM8_CC_IRQHandler
Kojto 158:b23ee177fd68 410 .thumb_set TIM8_CC_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 411
Kojto 158:b23ee177fd68 412 .weak ADC3_IRQHandler
Kojto 158:b23ee177fd68 413 .thumb_set ADC3_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 414
Kojto 158:b23ee177fd68 415 .weak FMC_IRQHandler
Kojto 158:b23ee177fd68 416 .thumb_set FMC_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 417
Kojto 158:b23ee177fd68 418 .weak SDMMC1_IRQHandler
Kojto 158:b23ee177fd68 419 .thumb_set SDMMC1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 420
Kojto 158:b23ee177fd68 421 .weak TIM5_IRQHandler
Kojto 158:b23ee177fd68 422 .thumb_set TIM5_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 423
Kojto 158:b23ee177fd68 424 .weak SPI3_IRQHandler
Kojto 158:b23ee177fd68 425 .thumb_set SPI3_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 426
Kojto 158:b23ee177fd68 427 .weak UART4_IRQHandler
Kojto 158:b23ee177fd68 428 .thumb_set UART4_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 429
Kojto 158:b23ee177fd68 430 .weak UART5_IRQHandler
Kojto 158:b23ee177fd68 431 .thumb_set UART5_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 432
Kojto 158:b23ee177fd68 433 .weak TIM6_DAC_IRQHandler
Kojto 158:b23ee177fd68 434 .thumb_set TIM6_DAC_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 435
Kojto 158:b23ee177fd68 436 .weak TIM7_IRQHandler
Kojto 158:b23ee177fd68 437 .thumb_set TIM7_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 438
Kojto 158:b23ee177fd68 439 .weak DMA2_Channel1_IRQHandler
Kojto 158:b23ee177fd68 440 .thumb_set DMA2_Channel1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 441
Kojto 158:b23ee177fd68 442 .weak DMA2_Channel2_IRQHandler
Kojto 158:b23ee177fd68 443 .thumb_set DMA2_Channel2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 444
Kojto 158:b23ee177fd68 445 .weak DMA2_Channel3_IRQHandler
Kojto 158:b23ee177fd68 446 .thumb_set DMA2_Channel3_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 447
Kojto 158:b23ee177fd68 448 .weak DMA2_Channel4_IRQHandler
Kojto 158:b23ee177fd68 449 .thumb_set DMA2_Channel4_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 450
Kojto 158:b23ee177fd68 451 .weak DMA2_Channel5_IRQHandler
Kojto 158:b23ee177fd68 452 .thumb_set DMA2_Channel5_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 453
Kojto 158:b23ee177fd68 454 .weak DFSDM1_FLT0_IRQHandler
Kojto 158:b23ee177fd68 455 .thumb_set DFSDM1_FLT0_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 456
Kojto 158:b23ee177fd68 457 .weak DFSDM1_FLT1_IRQHandler
Kojto 158:b23ee177fd68 458 .thumb_set DFSDM1_FLT1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 459
Kojto 158:b23ee177fd68 460 .weak DFSDM1_FLT2_IRQHandler
Kojto 158:b23ee177fd68 461 .thumb_set DFSDM1_FLT2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 462
Kojto 158:b23ee177fd68 463 .weak COMP_IRQHandler
Kojto 158:b23ee177fd68 464 .thumb_set COMP_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 465
Kojto 158:b23ee177fd68 466 .weak LPTIM1_IRQHandler
Kojto 158:b23ee177fd68 467 .thumb_set LPTIM1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 468
Kojto 158:b23ee177fd68 469 .weak LPTIM2_IRQHandler
Kojto 158:b23ee177fd68 470 .thumb_set LPTIM2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 471
Kojto 158:b23ee177fd68 472 .weak OTG_FS_IRQHandler
Kojto 158:b23ee177fd68 473 .thumb_set OTG_FS_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 474
Kojto 158:b23ee177fd68 475 .weak DMA2_Channel6_IRQHandler
Kojto 158:b23ee177fd68 476 .thumb_set DMA2_Channel6_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 477
Kojto 158:b23ee177fd68 478 .weak DMA2_Channel7_IRQHandler
Kojto 158:b23ee177fd68 479 .thumb_set DMA2_Channel7_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 480
Kojto 158:b23ee177fd68 481 .weak LPUART1_IRQHandler
Kojto 158:b23ee177fd68 482 .thumb_set LPUART1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 483
Kojto 158:b23ee177fd68 484 .weak QUADSPI_IRQHandler
Kojto 158:b23ee177fd68 485 .thumb_set QUADSPI_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 486
Kojto 158:b23ee177fd68 487 .weak I2C3_EV_IRQHandler
Kojto 158:b23ee177fd68 488 .thumb_set I2C3_EV_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 489
Kojto 158:b23ee177fd68 490 .weak I2C3_ER_IRQHandler
Kojto 158:b23ee177fd68 491 .thumb_set I2C3_ER_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 492
Kojto 158:b23ee177fd68 493 .weak SAI1_IRQHandler
Kojto 158:b23ee177fd68 494 .thumb_set SAI1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 495
Kojto 158:b23ee177fd68 496 .weak SAI2_IRQHandler
Kojto 158:b23ee177fd68 497 .thumb_set SAI2_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 498
Kojto 158:b23ee177fd68 499 .weak SWPMI1_IRQHandler
Kojto 158:b23ee177fd68 500 .thumb_set SWPMI1_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 501
Kojto 158:b23ee177fd68 502 .weak TSC_IRQHandler
Kojto 158:b23ee177fd68 503 .thumb_set TSC_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 504
Kojto 158:b23ee177fd68 505 .weak LCD_IRQHandler
Kojto 158:b23ee177fd68 506 .thumb_set LCD_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 507
Kojto 158:b23ee177fd68 508 .weak AES_IRQHandler
Kojto 158:b23ee177fd68 509 .thumb_set AES_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 510
Kojto 158:b23ee177fd68 511 .weak RNG_IRQHandler
Kojto 158:b23ee177fd68 512 .thumb_set RNG_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 513
Kojto 158:b23ee177fd68 514 .weak FPU_IRQHandler
Kojto 158:b23ee177fd68 515 .thumb_set FPU_IRQHandler,Default_Handler
Kojto 158:b23ee177fd68 516 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/