mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
Kojto
Date:
Wed Jul 19 17:31:21 2017 +0100
Revision:
169:e3b6fe271b81
Child:
170:19eb464bc2be
This updates the lib to the mbed lib v 147

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Kojto 169:e3b6fe271b81 1 /**
Kojto 169:e3b6fe271b81 2 ******************************************************************************
Kojto 169:e3b6fe271b81 3 * @file startup_stm32f767xx.s
Kojto 169:e3b6fe271b81 4 * @author MCD Application Team
Kojto 169:e3b6fe271b81 5 * @version V1.2.0
Kojto 169:e3b6fe271b81 6 * @date 30-December-2016
Kojto 169:e3b6fe271b81 7 * @brief STM32F767xx Devices vector table for GCC based toolchain.
Kojto 169:e3b6fe271b81 8 * This module performs:
Kojto 169:e3b6fe271b81 9 * - Set the initial SP
Kojto 169:e3b6fe271b81 10 * - Set the initial PC == Reset_Handler,
Kojto 169:e3b6fe271b81 11 * - Set the vector table entries with the exceptions ISR address
Kojto 169:e3b6fe271b81 12 * - Branches to main in the C library (which eventually
Kojto 169:e3b6fe271b81 13 * calls main()).
Kojto 169:e3b6fe271b81 14 * After Reset the Cortex-M7 processor is in Thread mode,
Kojto 169:e3b6fe271b81 15 * priority is Privileged, and the Stack is set to Main.
Kojto 169:e3b6fe271b81 16 ******************************************************************************
Kojto 169:e3b6fe271b81 17 * @attention
Kojto 169:e3b6fe271b81 18 *
Kojto 169:e3b6fe271b81 19 * <h2><center>&copy; COPYRIGHT 2016 STMicroelectronics</center></h2>
Kojto 169:e3b6fe271b81 20 *
Kojto 169:e3b6fe271b81 21 * Redistribution and use in source and binary forms, with or without modification,
Kojto 169:e3b6fe271b81 22 * are permitted provided that the following conditions are met:
Kojto 169:e3b6fe271b81 23 * 1. Redistributions of source code must retain the above copyright notice,
Kojto 169:e3b6fe271b81 24 * this list of conditions and the following disclaimer.
Kojto 169:e3b6fe271b81 25 * 2. Redistributions in binary form must reproduce the above copyright notice,
Kojto 169:e3b6fe271b81 26 * this list of conditions and the following disclaimer in the documentation
Kojto 169:e3b6fe271b81 27 * and/or other materials provided with the distribution.
Kojto 169:e3b6fe271b81 28 * 3. Neither the name of STMicroelectronics nor the names of its contributors
Kojto 169:e3b6fe271b81 29 * may be used to endorse or promote products derived from this software
Kojto 169:e3b6fe271b81 30 * without specific prior written permission.
Kojto 169:e3b6fe271b81 31 *
Kojto 169:e3b6fe271b81 32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Kojto 169:e3b6fe271b81 33 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Kojto 169:e3b6fe271b81 34 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
Kojto 169:e3b6fe271b81 35 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
Kojto 169:e3b6fe271b81 36 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
Kojto 169:e3b6fe271b81 37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
Kojto 169:e3b6fe271b81 38 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
Kojto 169:e3b6fe271b81 39 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
Kojto 169:e3b6fe271b81 40 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
Kojto 169:e3b6fe271b81 41 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Kojto 169:e3b6fe271b81 42 *
Kojto 169:e3b6fe271b81 43 ******************************************************************************
Kojto 169:e3b6fe271b81 44 */
Kojto 169:e3b6fe271b81 45
Kojto 169:e3b6fe271b81 46 .syntax unified
Kojto 169:e3b6fe271b81 47 .cpu cortex-m7
Kojto 169:e3b6fe271b81 48 .fpu softvfp
Kojto 169:e3b6fe271b81 49 .thumb
Kojto 169:e3b6fe271b81 50
Kojto 169:e3b6fe271b81 51 .global g_pfnVectors
Kojto 169:e3b6fe271b81 52 .global Default_Handler
Kojto 169:e3b6fe271b81 53
Kojto 169:e3b6fe271b81 54 /* start address for the initialization values of the .data section.
Kojto 169:e3b6fe271b81 55 defined in linker script */
Kojto 169:e3b6fe271b81 56 .word _sidata
Kojto 169:e3b6fe271b81 57 /* start address for the .data section. defined in linker script */
Kojto 169:e3b6fe271b81 58 .word _sdata
Kojto 169:e3b6fe271b81 59 /* end address for the .data section. defined in linker script */
Kojto 169:e3b6fe271b81 60 .word _edata
Kojto 169:e3b6fe271b81 61 /* start address for the .bss section. defined in linker script */
Kojto 169:e3b6fe271b81 62 .word _sbss
Kojto 169:e3b6fe271b81 63 /* end address for the .bss section. defined in linker script */
Kojto 169:e3b6fe271b81 64 .word _ebss
Kojto 169:e3b6fe271b81 65 /* stack used for SystemInit_ExtMemCtl; always internal RAM used */
Kojto 169:e3b6fe271b81 66
Kojto 169:e3b6fe271b81 67 /**
Kojto 169:e3b6fe271b81 68 * @brief This is the code that gets called when the processor first
Kojto 169:e3b6fe271b81 69 * starts execution following a reset event. Only the absolutely
Kojto 169:e3b6fe271b81 70 * necessary set is performed, after which the application
Kojto 169:e3b6fe271b81 71 * supplied main() routine is called.
Kojto 169:e3b6fe271b81 72 * @param None
Kojto 169:e3b6fe271b81 73 * @retval : None
Kojto 169:e3b6fe271b81 74 */
Kojto 169:e3b6fe271b81 75
Kojto 169:e3b6fe271b81 76 .section .text.Reset_Handler
Kojto 169:e3b6fe271b81 77 .weak Reset_Handler
Kojto 169:e3b6fe271b81 78 .type Reset_Handler, %function
Kojto 169:e3b6fe271b81 79 Reset_Handler:
Kojto 169:e3b6fe271b81 80 ldr sp, =_estack /* set stack pointer */
Kojto 169:e3b6fe271b81 81
Kojto 169:e3b6fe271b81 82 /* Copy the data segment initializers from flash to SRAM */
Kojto 169:e3b6fe271b81 83 movs r1, #0
Kojto 169:e3b6fe271b81 84 b LoopCopyDataInit
Kojto 169:e3b6fe271b81 85
Kojto 169:e3b6fe271b81 86 CopyDataInit:
Kojto 169:e3b6fe271b81 87 ldr r3, =_sidata
Kojto 169:e3b6fe271b81 88 ldr r3, [r3, r1]
Kojto 169:e3b6fe271b81 89 str r3, [r0, r1]
Kojto 169:e3b6fe271b81 90 adds r1, r1, #4
Kojto 169:e3b6fe271b81 91
Kojto 169:e3b6fe271b81 92 LoopCopyDataInit:
Kojto 169:e3b6fe271b81 93 ldr r0, =_sdata
Kojto 169:e3b6fe271b81 94 ldr r3, =_edata
Kojto 169:e3b6fe271b81 95 adds r2, r0, r1
Kojto 169:e3b6fe271b81 96 cmp r2, r3
Kojto 169:e3b6fe271b81 97 bcc CopyDataInit
Kojto 169:e3b6fe271b81 98 ldr r2, =_sbss
Kojto 169:e3b6fe271b81 99 b LoopFillZerobss
Kojto 169:e3b6fe271b81 100 /* Zero fill the bss segment. */
Kojto 169:e3b6fe271b81 101 FillZerobss:
Kojto 169:e3b6fe271b81 102 movs r3, #0
Kojto 169:e3b6fe271b81 103 str r3, [r2], #4
Kojto 169:e3b6fe271b81 104
Kojto 169:e3b6fe271b81 105 LoopFillZerobss:
Kojto 169:e3b6fe271b81 106 ldr r3, = _ebss
Kojto 169:e3b6fe271b81 107 cmp r2, r3
Kojto 169:e3b6fe271b81 108 bcc FillZerobss
Kojto 169:e3b6fe271b81 109
Kojto 169:e3b6fe271b81 110 /* Call the clock system initialization function.*/
Kojto 169:e3b6fe271b81 111 bl SystemInit
Kojto 169:e3b6fe271b81 112 /* Call static constructors */
Kojto 169:e3b6fe271b81 113 bl __libc_init_array
Kojto 169:e3b6fe271b81 114 /* Call the application's entry point.*/
Kojto 169:e3b6fe271b81 115 bl main
Kojto 169:e3b6fe271b81 116 bx lr
Kojto 169:e3b6fe271b81 117 .size Reset_Handler, .-Reset_Handler
Kojto 169:e3b6fe271b81 118
Kojto 169:e3b6fe271b81 119 /**
Kojto 169:e3b6fe271b81 120 * @brief This is the code that gets called when the processor receives an
Kojto 169:e3b6fe271b81 121 * unexpected interrupt. This simply enters an infinite loop, preserving
Kojto 169:e3b6fe271b81 122 * the system state for examination by a debugger.
Kojto 169:e3b6fe271b81 123 * @param None
Kojto 169:e3b6fe271b81 124 * @retval None
Kojto 169:e3b6fe271b81 125 */
Kojto 169:e3b6fe271b81 126 .section .text.Default_Handler,"ax",%progbits
Kojto 169:e3b6fe271b81 127 Default_Handler:
Kojto 169:e3b6fe271b81 128 Infinite_Loop:
Kojto 169:e3b6fe271b81 129 b Infinite_Loop
Kojto 169:e3b6fe271b81 130 .size Default_Handler, .-Default_Handler
Kojto 169:e3b6fe271b81 131 /******************************************************************************
Kojto 169:e3b6fe271b81 132 *
Kojto 169:e3b6fe271b81 133 * The minimal vector table for a Cortex M7. Note that the proper constructs
Kojto 169:e3b6fe271b81 134 * must be placed on this to ensure that it ends up at physical address
Kojto 169:e3b6fe271b81 135 * 0x0000.0000.
Kojto 169:e3b6fe271b81 136 *
Kojto 169:e3b6fe271b81 137 *******************************************************************************/
Kojto 169:e3b6fe271b81 138 .section .isr_vector,"a",%progbits
Kojto 169:e3b6fe271b81 139 .type g_pfnVectors, %object
Kojto 169:e3b6fe271b81 140 .size g_pfnVectors, .-g_pfnVectors
Kojto 169:e3b6fe271b81 141
Kojto 169:e3b6fe271b81 142
Kojto 169:e3b6fe271b81 143 g_pfnVectors:
Kojto 169:e3b6fe271b81 144 .word _estack
Kojto 169:e3b6fe271b81 145 .word Reset_Handler
Kojto 169:e3b6fe271b81 146
Kojto 169:e3b6fe271b81 147 .word NMI_Handler
Kojto 169:e3b6fe271b81 148 .word HardFault_Handler
Kojto 169:e3b6fe271b81 149 .word MemManage_Handler
Kojto 169:e3b6fe271b81 150 .word BusFault_Handler
Kojto 169:e3b6fe271b81 151 .word UsageFault_Handler
Kojto 169:e3b6fe271b81 152 .word 0
Kojto 169:e3b6fe271b81 153 .word 0
Kojto 169:e3b6fe271b81 154 .word 0
Kojto 169:e3b6fe271b81 155 .word 0
Kojto 169:e3b6fe271b81 156 .word SVC_Handler
Kojto 169:e3b6fe271b81 157 .word DebugMon_Handler
Kojto 169:e3b6fe271b81 158 .word 0
Kojto 169:e3b6fe271b81 159 .word PendSV_Handler
Kojto 169:e3b6fe271b81 160 .word SysTick_Handler
Kojto 169:e3b6fe271b81 161
Kojto 169:e3b6fe271b81 162 /* External Interrupts */
Kojto 169:e3b6fe271b81 163 .word WWDG_IRQHandler /* Window WatchDog */
Kojto 169:e3b6fe271b81 164 .word PVD_IRQHandler /* PVD through EXTI Line detection */
Kojto 169:e3b6fe271b81 165 .word TAMP_STAMP_IRQHandler /* Tamper and TimeStamps through the EXTI line */
Kojto 169:e3b6fe271b81 166 .word RTC_WKUP_IRQHandler /* RTC Wakeup through the EXTI line */
Kojto 169:e3b6fe271b81 167 .word FLASH_IRQHandler /* FLASH */
Kojto 169:e3b6fe271b81 168 .word RCC_IRQHandler /* RCC */
Kojto 169:e3b6fe271b81 169 .word EXTI0_IRQHandler /* EXTI Line0 */
Kojto 169:e3b6fe271b81 170 .word EXTI1_IRQHandler /* EXTI Line1 */
Kojto 169:e3b6fe271b81 171 .word EXTI2_IRQHandler /* EXTI Line2 */
Kojto 169:e3b6fe271b81 172 .word EXTI3_IRQHandler /* EXTI Line3 */
Kojto 169:e3b6fe271b81 173 .word EXTI4_IRQHandler /* EXTI Line4 */
Kojto 169:e3b6fe271b81 174 .word DMA1_Stream0_IRQHandler /* DMA1 Stream 0 */
Kojto 169:e3b6fe271b81 175 .word DMA1_Stream1_IRQHandler /* DMA1 Stream 1 */
Kojto 169:e3b6fe271b81 176 .word DMA1_Stream2_IRQHandler /* DMA1 Stream 2 */
Kojto 169:e3b6fe271b81 177 .word DMA1_Stream3_IRQHandler /* DMA1 Stream 3 */
Kojto 169:e3b6fe271b81 178 .word DMA1_Stream4_IRQHandler /* DMA1 Stream 4 */
Kojto 169:e3b6fe271b81 179 .word DMA1_Stream5_IRQHandler /* DMA1 Stream 5 */
Kojto 169:e3b6fe271b81 180 .word DMA1_Stream6_IRQHandler /* DMA1 Stream 6 */
Kojto 169:e3b6fe271b81 181 .word ADC_IRQHandler /* ADC1, ADC2 and ADC3s */
Kojto 169:e3b6fe271b81 182 .word CAN1_TX_IRQHandler /* CAN1 TX */
Kojto 169:e3b6fe271b81 183 .word CAN1_RX0_IRQHandler /* CAN1 RX0 */
Kojto 169:e3b6fe271b81 184 .word CAN1_RX1_IRQHandler /* CAN1 RX1 */
Kojto 169:e3b6fe271b81 185 .word CAN1_SCE_IRQHandler /* CAN1 SCE */
Kojto 169:e3b6fe271b81 186 .word EXTI9_5_IRQHandler /* External Line[9:5]s */
Kojto 169:e3b6fe271b81 187 .word TIM1_BRK_TIM9_IRQHandler /* TIM1 Break and TIM9 */
Kojto 169:e3b6fe271b81 188 .word TIM1_UP_TIM10_IRQHandler /* TIM1 Update and TIM10 */
Kojto 169:e3b6fe271b81 189 .word TIM1_TRG_COM_TIM11_IRQHandler /* TIM1 Trigger and Commutation and TIM11 */
Kojto 169:e3b6fe271b81 190 .word TIM1_CC_IRQHandler /* TIM1 Capture Compare */
Kojto 169:e3b6fe271b81 191 .word TIM2_IRQHandler /* TIM2 */
Kojto 169:e3b6fe271b81 192 .word TIM3_IRQHandler /* TIM3 */
Kojto 169:e3b6fe271b81 193 .word TIM4_IRQHandler /* TIM4 */
Kojto 169:e3b6fe271b81 194 .word I2C1_EV_IRQHandler /* I2C1 Event */
Kojto 169:e3b6fe271b81 195 .word I2C1_ER_IRQHandler /* I2C1 Error */
Kojto 169:e3b6fe271b81 196 .word I2C2_EV_IRQHandler /* I2C2 Event */
Kojto 169:e3b6fe271b81 197 .word I2C2_ER_IRQHandler /* I2C2 Error */
Kojto 169:e3b6fe271b81 198 .word SPI1_IRQHandler /* SPI1 */
Kojto 169:e3b6fe271b81 199 .word SPI2_IRQHandler /* SPI2 */
Kojto 169:e3b6fe271b81 200 .word USART1_IRQHandler /* USART1 */
Kojto 169:e3b6fe271b81 201 .word USART2_IRQHandler /* USART2 */
Kojto 169:e3b6fe271b81 202 .word USART3_IRQHandler /* USART3 */
Kojto 169:e3b6fe271b81 203 .word EXTI15_10_IRQHandler /* External Line[15:10]s */
Kojto 169:e3b6fe271b81 204 .word RTC_Alarm_IRQHandler /* RTC Alarm (A and B) through EXTI Line */
Kojto 169:e3b6fe271b81 205 .word OTG_FS_WKUP_IRQHandler /* USB OTG FS Wakeup through EXTI line */
Kojto 169:e3b6fe271b81 206 .word TIM8_BRK_TIM12_IRQHandler /* TIM8 Break and TIM12 */
Kojto 169:e3b6fe271b81 207 .word TIM8_UP_TIM13_IRQHandler /* TIM8 Update and TIM13 */
Kojto 169:e3b6fe271b81 208 .word TIM8_TRG_COM_TIM14_IRQHandler /* TIM8 Trigger and Commutation and TIM14 */
Kojto 169:e3b6fe271b81 209 .word TIM8_CC_IRQHandler /* TIM8 Capture Compare */
Kojto 169:e3b6fe271b81 210 .word DMA1_Stream7_IRQHandler /* DMA1 Stream7 */
Kojto 169:e3b6fe271b81 211 .word FMC_IRQHandler /* FMC */
Kojto 169:e3b6fe271b81 212 .word SDMMC1_IRQHandler /* SDMMC1 */
Kojto 169:e3b6fe271b81 213 .word TIM5_IRQHandler /* TIM5 */
Kojto 169:e3b6fe271b81 214 .word SPI3_IRQHandler /* SPI3 */
Kojto 169:e3b6fe271b81 215 .word UART4_IRQHandler /* UART4 */
Kojto 169:e3b6fe271b81 216 .word UART5_IRQHandler /* UART5 */
Kojto 169:e3b6fe271b81 217 .word TIM6_DAC_IRQHandler /* TIM6 and DAC1&2 underrun errors */
Kojto 169:e3b6fe271b81 218 .word TIM7_IRQHandler /* TIM7 */
Kojto 169:e3b6fe271b81 219 .word DMA2_Stream0_IRQHandler /* DMA2 Stream 0 */
Kojto 169:e3b6fe271b81 220 .word DMA2_Stream1_IRQHandler /* DMA2 Stream 1 */
Kojto 169:e3b6fe271b81 221 .word DMA2_Stream2_IRQHandler /* DMA2 Stream 2 */
Kojto 169:e3b6fe271b81 222 .word DMA2_Stream3_IRQHandler /* DMA2 Stream 3 */
Kojto 169:e3b6fe271b81 223 .word DMA2_Stream4_IRQHandler /* DMA2 Stream 4 */
Kojto 169:e3b6fe271b81 224 .word ETH_IRQHandler /* Ethernet */
Kojto 169:e3b6fe271b81 225 .word ETH_WKUP_IRQHandler /* Ethernet Wakeup through EXTI line */
Kojto 169:e3b6fe271b81 226 .word CAN2_TX_IRQHandler /* CAN2 TX */
Kojto 169:e3b6fe271b81 227 .word CAN2_RX0_IRQHandler /* CAN2 RX0 */
Kojto 169:e3b6fe271b81 228 .word CAN2_RX1_IRQHandler /* CAN2 RX1 */
Kojto 169:e3b6fe271b81 229 .word CAN2_SCE_IRQHandler /* CAN2 SCE */
Kojto 169:e3b6fe271b81 230 .word OTG_FS_IRQHandler /* USB OTG FS */
Kojto 169:e3b6fe271b81 231 .word DMA2_Stream5_IRQHandler /* DMA2 Stream 5 */
Kojto 169:e3b6fe271b81 232 .word DMA2_Stream6_IRQHandler /* DMA2 Stream 6 */
Kojto 169:e3b6fe271b81 233 .word DMA2_Stream7_IRQHandler /* DMA2 Stream 7 */
Kojto 169:e3b6fe271b81 234 .word USART6_IRQHandler /* USART6 */
Kojto 169:e3b6fe271b81 235 .word I2C3_EV_IRQHandler /* I2C3 event */
Kojto 169:e3b6fe271b81 236 .word I2C3_ER_IRQHandler /* I2C3 error */
Kojto 169:e3b6fe271b81 237 .word OTG_HS_EP1_OUT_IRQHandler /* USB OTG HS End Point 1 Out */
Kojto 169:e3b6fe271b81 238 .word OTG_HS_EP1_IN_IRQHandler /* USB OTG HS End Point 1 In */
Kojto 169:e3b6fe271b81 239 .word OTG_HS_WKUP_IRQHandler /* USB OTG HS Wakeup through EXTI */
Kojto 169:e3b6fe271b81 240 .word OTG_HS_IRQHandler /* USB OTG HS */
Kojto 169:e3b6fe271b81 241 .word DCMI_IRQHandler /* DCMI */
Kojto 169:e3b6fe271b81 242 .word 0 /* Reserved */
Kojto 169:e3b6fe271b81 243 .word RNG_IRQHandler /* RNG */
Kojto 169:e3b6fe271b81 244 .word FPU_IRQHandler /* FPU */
Kojto 169:e3b6fe271b81 245 .word UART7_IRQHandler /* UART7 */
Kojto 169:e3b6fe271b81 246 .word UART8_IRQHandler /* UART8 */
Kojto 169:e3b6fe271b81 247 .word SPI4_IRQHandler /* SPI4 */
Kojto 169:e3b6fe271b81 248 .word SPI5_IRQHandler /* SPI5 */
Kojto 169:e3b6fe271b81 249 .word SPI6_IRQHandler /* SPI6 */
Kojto 169:e3b6fe271b81 250 .word SAI1_IRQHandler /* SAI1 */
Kojto 169:e3b6fe271b81 251 .word LTDC_IRQHandler /* LTDC */
Kojto 169:e3b6fe271b81 252 .word LTDC_ER_IRQHandler /* LTDC error */
Kojto 169:e3b6fe271b81 253 .word DMA2D_IRQHandler /* DMA2D */
Kojto 169:e3b6fe271b81 254 .word SAI2_IRQHandler /* SAI2 */
Kojto 169:e3b6fe271b81 255 .word QUADSPI_IRQHandler /* QUADSPI */
Kojto 169:e3b6fe271b81 256 .word LPTIM1_IRQHandler /* LPTIM1 */
Kojto 169:e3b6fe271b81 257 .word CEC_IRQHandler /* HDMI_CEC */
Kojto 169:e3b6fe271b81 258 .word I2C4_EV_IRQHandler /* I2C4 Event */
Kojto 169:e3b6fe271b81 259 .word I2C4_ER_IRQHandler /* I2C4 Error */
Kojto 169:e3b6fe271b81 260 .word SPDIF_RX_IRQHandler /* SPDIF_RX */
Kojto 169:e3b6fe271b81 261 .word 0 /* Reserved */
Kojto 169:e3b6fe271b81 262 .word DFSDM1_FLT0_IRQHandler /* DFSDM1 Filter 0 global Interrupt */
Kojto 169:e3b6fe271b81 263 .word DFSDM1_FLT1_IRQHandler /* DFSDM1 Filter 1 global Interrupt */
Kojto 169:e3b6fe271b81 264 .word DFSDM1_FLT2_IRQHandler /* DFSDM1 Filter 2 global Interrupt */
Kojto 169:e3b6fe271b81 265 .word DFSDM1_FLT3_IRQHandler /* DFSDM1 Filter 3 global Interrupt */
Kojto 169:e3b6fe271b81 266 .word SDMMC2_IRQHandler /* SDMMC2 */
Kojto 169:e3b6fe271b81 267 .word CAN3_TX_IRQHandler /* CAN3 TX */
Kojto 169:e3b6fe271b81 268 .word CAN3_RX0_IRQHandler /* CAN3 RX0 */
Kojto 169:e3b6fe271b81 269 .word CAN3_RX1_IRQHandler /* CAN3 RX1 */
Kojto 169:e3b6fe271b81 270 .word CAN3_SCE_IRQHandler /* CAN3 SCE */
Kojto 169:e3b6fe271b81 271 .word JPEG_IRQHandler /* JPEG */
Kojto 169:e3b6fe271b81 272 .word MDIOS_IRQHandler /* MDIOS */
Kojto 169:e3b6fe271b81 273
Kojto 169:e3b6fe271b81 274 /*******************************************************************************
Kojto 169:e3b6fe271b81 275 *
Kojto 169:e3b6fe271b81 276 * Provide weak aliases for each Exception handler to the Default_Handler.
Kojto 169:e3b6fe271b81 277 * As they are weak aliases, any function with the same name will override
Kojto 169:e3b6fe271b81 278 * this definition.
Kojto 169:e3b6fe271b81 279 *
Kojto 169:e3b6fe271b81 280 *******************************************************************************/
Kojto 169:e3b6fe271b81 281 .weak NMI_Handler
Kojto 169:e3b6fe271b81 282 .thumb_set NMI_Handler,Default_Handler
Kojto 169:e3b6fe271b81 283
Kojto 169:e3b6fe271b81 284 .weak HardFault_Handler
Kojto 169:e3b6fe271b81 285 .thumb_set HardFault_Handler,Default_Handler
Kojto 169:e3b6fe271b81 286
Kojto 169:e3b6fe271b81 287 .weak MemManage_Handler
Kojto 169:e3b6fe271b81 288 .thumb_set MemManage_Handler,Default_Handler
Kojto 169:e3b6fe271b81 289
Kojto 169:e3b6fe271b81 290 .weak BusFault_Handler
Kojto 169:e3b6fe271b81 291 .thumb_set BusFault_Handler,Default_Handler
Kojto 169:e3b6fe271b81 292
Kojto 169:e3b6fe271b81 293 .weak UsageFault_Handler
Kojto 169:e3b6fe271b81 294 .thumb_set UsageFault_Handler,Default_Handler
Kojto 169:e3b6fe271b81 295
Kojto 169:e3b6fe271b81 296 .weak SVC_Handler
Kojto 169:e3b6fe271b81 297 .thumb_set SVC_Handler,Default_Handler
Kojto 169:e3b6fe271b81 298
Kojto 169:e3b6fe271b81 299 .weak DebugMon_Handler
Kojto 169:e3b6fe271b81 300 .thumb_set DebugMon_Handler,Default_Handler
Kojto 169:e3b6fe271b81 301
Kojto 169:e3b6fe271b81 302 .weak PendSV_Handler
Kojto 169:e3b6fe271b81 303 .thumb_set PendSV_Handler,Default_Handler
Kojto 169:e3b6fe271b81 304
Kojto 169:e3b6fe271b81 305 .weak SysTick_Handler
Kojto 169:e3b6fe271b81 306 .thumb_set SysTick_Handler,Default_Handler
Kojto 169:e3b6fe271b81 307
Kojto 169:e3b6fe271b81 308 .weak WWDG_IRQHandler
Kojto 169:e3b6fe271b81 309 .thumb_set WWDG_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 310
Kojto 169:e3b6fe271b81 311 .weak PVD_IRQHandler
Kojto 169:e3b6fe271b81 312 .thumb_set PVD_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 313
Kojto 169:e3b6fe271b81 314 .weak TAMP_STAMP_IRQHandler
Kojto 169:e3b6fe271b81 315 .thumb_set TAMP_STAMP_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 316
Kojto 169:e3b6fe271b81 317 .weak RTC_WKUP_IRQHandler
Kojto 169:e3b6fe271b81 318 .thumb_set RTC_WKUP_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 319
Kojto 169:e3b6fe271b81 320 .weak FLASH_IRQHandler
Kojto 169:e3b6fe271b81 321 .thumb_set FLASH_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 322
Kojto 169:e3b6fe271b81 323 .weak RCC_IRQHandler
Kojto 169:e3b6fe271b81 324 .thumb_set RCC_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 325
Kojto 169:e3b6fe271b81 326 .weak EXTI0_IRQHandler
Kojto 169:e3b6fe271b81 327 .thumb_set EXTI0_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 328
Kojto 169:e3b6fe271b81 329 .weak EXTI1_IRQHandler
Kojto 169:e3b6fe271b81 330 .thumb_set EXTI1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 331
Kojto 169:e3b6fe271b81 332 .weak EXTI2_IRQHandler
Kojto 169:e3b6fe271b81 333 .thumb_set EXTI2_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 334
Kojto 169:e3b6fe271b81 335 .weak EXTI3_IRQHandler
Kojto 169:e3b6fe271b81 336 .thumb_set EXTI3_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 337
Kojto 169:e3b6fe271b81 338 .weak EXTI4_IRQHandler
Kojto 169:e3b6fe271b81 339 .thumb_set EXTI4_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 340
Kojto 169:e3b6fe271b81 341 .weak DMA1_Stream0_IRQHandler
Kojto 169:e3b6fe271b81 342 .thumb_set DMA1_Stream0_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 343
Kojto 169:e3b6fe271b81 344 .weak DMA1_Stream1_IRQHandler
Kojto 169:e3b6fe271b81 345 .thumb_set DMA1_Stream1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 346
Kojto 169:e3b6fe271b81 347 .weak DMA1_Stream2_IRQHandler
Kojto 169:e3b6fe271b81 348 .thumb_set DMA1_Stream2_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 349
Kojto 169:e3b6fe271b81 350 .weak DMA1_Stream3_IRQHandler
Kojto 169:e3b6fe271b81 351 .thumb_set DMA1_Stream3_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 352
Kojto 169:e3b6fe271b81 353 .weak DMA1_Stream4_IRQHandler
Kojto 169:e3b6fe271b81 354 .thumb_set DMA1_Stream4_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 355
Kojto 169:e3b6fe271b81 356 .weak DMA1_Stream5_IRQHandler
Kojto 169:e3b6fe271b81 357 .thumb_set DMA1_Stream5_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 358
Kojto 169:e3b6fe271b81 359 .weak DMA1_Stream6_IRQHandler
Kojto 169:e3b6fe271b81 360 .thumb_set DMA1_Stream6_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 361
Kojto 169:e3b6fe271b81 362 .weak ADC_IRQHandler
Kojto 169:e3b6fe271b81 363 .thumb_set ADC_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 364
Kojto 169:e3b6fe271b81 365 .weak CAN1_TX_IRQHandler
Kojto 169:e3b6fe271b81 366 .thumb_set CAN1_TX_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 367
Kojto 169:e3b6fe271b81 368 .weak CAN1_RX0_IRQHandler
Kojto 169:e3b6fe271b81 369 .thumb_set CAN1_RX0_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 370
Kojto 169:e3b6fe271b81 371 .weak CAN1_RX1_IRQHandler
Kojto 169:e3b6fe271b81 372 .thumb_set CAN1_RX1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 373
Kojto 169:e3b6fe271b81 374 .weak CAN1_SCE_IRQHandler
Kojto 169:e3b6fe271b81 375 .thumb_set CAN1_SCE_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 376
Kojto 169:e3b6fe271b81 377 .weak EXTI9_5_IRQHandler
Kojto 169:e3b6fe271b81 378 .thumb_set EXTI9_5_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 379
Kojto 169:e3b6fe271b81 380 .weak TIM1_BRK_TIM9_IRQHandler
Kojto 169:e3b6fe271b81 381 .thumb_set TIM1_BRK_TIM9_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 382
Kojto 169:e3b6fe271b81 383 .weak TIM1_UP_TIM10_IRQHandler
Kojto 169:e3b6fe271b81 384 .thumb_set TIM1_UP_TIM10_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 385
Kojto 169:e3b6fe271b81 386 .weak TIM1_TRG_COM_TIM11_IRQHandler
Kojto 169:e3b6fe271b81 387 .thumb_set TIM1_TRG_COM_TIM11_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 388
Kojto 169:e3b6fe271b81 389 .weak TIM1_CC_IRQHandler
Kojto 169:e3b6fe271b81 390 .thumb_set TIM1_CC_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 391
Kojto 169:e3b6fe271b81 392 .weak TIM2_IRQHandler
Kojto 169:e3b6fe271b81 393 .thumb_set TIM2_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 394
Kojto 169:e3b6fe271b81 395 .weak TIM3_IRQHandler
Kojto 169:e3b6fe271b81 396 .thumb_set TIM3_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 397
Kojto 169:e3b6fe271b81 398 .weak TIM4_IRQHandler
Kojto 169:e3b6fe271b81 399 .thumb_set TIM4_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 400
Kojto 169:e3b6fe271b81 401 .weak I2C1_EV_IRQHandler
Kojto 169:e3b6fe271b81 402 .thumb_set I2C1_EV_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 403
Kojto 169:e3b6fe271b81 404 .weak I2C1_ER_IRQHandler
Kojto 169:e3b6fe271b81 405 .thumb_set I2C1_ER_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 406
Kojto 169:e3b6fe271b81 407 .weak I2C2_EV_IRQHandler
Kojto 169:e3b6fe271b81 408 .thumb_set I2C2_EV_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 409
Kojto 169:e3b6fe271b81 410 .weak I2C2_ER_IRQHandler
Kojto 169:e3b6fe271b81 411 .thumb_set I2C2_ER_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 412
Kojto 169:e3b6fe271b81 413 .weak SPI1_IRQHandler
Kojto 169:e3b6fe271b81 414 .thumb_set SPI1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 415
Kojto 169:e3b6fe271b81 416 .weak SPI2_IRQHandler
Kojto 169:e3b6fe271b81 417 .thumb_set SPI2_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 418
Kojto 169:e3b6fe271b81 419 .weak USART1_IRQHandler
Kojto 169:e3b6fe271b81 420 .thumb_set USART1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 421
Kojto 169:e3b6fe271b81 422 .weak USART2_IRQHandler
Kojto 169:e3b6fe271b81 423 .thumb_set USART2_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 424
Kojto 169:e3b6fe271b81 425 .weak USART3_IRQHandler
Kojto 169:e3b6fe271b81 426 .thumb_set USART3_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 427
Kojto 169:e3b6fe271b81 428 .weak EXTI15_10_IRQHandler
Kojto 169:e3b6fe271b81 429 .thumb_set EXTI15_10_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 430
Kojto 169:e3b6fe271b81 431 .weak RTC_Alarm_IRQHandler
Kojto 169:e3b6fe271b81 432 .thumb_set RTC_Alarm_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 433
Kojto 169:e3b6fe271b81 434 .weak OTG_FS_WKUP_IRQHandler
Kojto 169:e3b6fe271b81 435 .thumb_set OTG_FS_WKUP_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 436
Kojto 169:e3b6fe271b81 437 .weak TIM8_BRK_TIM12_IRQHandler
Kojto 169:e3b6fe271b81 438 .thumb_set TIM8_BRK_TIM12_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 439
Kojto 169:e3b6fe271b81 440 .weak TIM8_UP_TIM13_IRQHandler
Kojto 169:e3b6fe271b81 441 .thumb_set TIM8_UP_TIM13_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 442
Kojto 169:e3b6fe271b81 443 .weak TIM8_TRG_COM_TIM14_IRQHandler
Kojto 169:e3b6fe271b81 444 .thumb_set TIM8_TRG_COM_TIM14_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 445
Kojto 169:e3b6fe271b81 446 .weak TIM8_CC_IRQHandler
Kojto 169:e3b6fe271b81 447 .thumb_set TIM8_CC_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 448
Kojto 169:e3b6fe271b81 449 .weak DMA1_Stream7_IRQHandler
Kojto 169:e3b6fe271b81 450 .thumb_set DMA1_Stream7_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 451
Kojto 169:e3b6fe271b81 452 .weak FMC_IRQHandler
Kojto 169:e3b6fe271b81 453 .thumb_set FMC_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 454
Kojto 169:e3b6fe271b81 455 .weak SDMMC1_IRQHandler
Kojto 169:e3b6fe271b81 456 .thumb_set SDMMC1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 457
Kojto 169:e3b6fe271b81 458 .weak TIM5_IRQHandler
Kojto 169:e3b6fe271b81 459 .thumb_set TIM5_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 460
Kojto 169:e3b6fe271b81 461 .weak SPI3_IRQHandler
Kojto 169:e3b6fe271b81 462 .thumb_set SPI3_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 463
Kojto 169:e3b6fe271b81 464 .weak UART4_IRQHandler
Kojto 169:e3b6fe271b81 465 .thumb_set UART4_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 466
Kojto 169:e3b6fe271b81 467 .weak UART5_IRQHandler
Kojto 169:e3b6fe271b81 468 .thumb_set UART5_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 469
Kojto 169:e3b6fe271b81 470 .weak TIM6_DAC_IRQHandler
Kojto 169:e3b6fe271b81 471 .thumb_set TIM6_DAC_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 472
Kojto 169:e3b6fe271b81 473 .weak TIM7_IRQHandler
Kojto 169:e3b6fe271b81 474 .thumb_set TIM7_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 475
Kojto 169:e3b6fe271b81 476 .weak DMA2_Stream0_IRQHandler
Kojto 169:e3b6fe271b81 477 .thumb_set DMA2_Stream0_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 478
Kojto 169:e3b6fe271b81 479 .weak DMA2_Stream1_IRQHandler
Kojto 169:e3b6fe271b81 480 .thumb_set DMA2_Stream1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 481
Kojto 169:e3b6fe271b81 482 .weak DMA2_Stream2_IRQHandler
Kojto 169:e3b6fe271b81 483 .thumb_set DMA2_Stream2_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 484
Kojto 169:e3b6fe271b81 485 .weak DMA2_Stream3_IRQHandler
Kojto 169:e3b6fe271b81 486 .thumb_set DMA2_Stream3_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 487
Kojto 169:e3b6fe271b81 488 .weak DMA2_Stream4_IRQHandler
Kojto 169:e3b6fe271b81 489 .thumb_set DMA2_Stream4_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 490
Kojto 169:e3b6fe271b81 491 .weak DMA2_Stream4_IRQHandler
Kojto 169:e3b6fe271b81 492 .thumb_set DMA2_Stream4_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 493
Kojto 169:e3b6fe271b81 494 .weak ETH_IRQHandler
Kojto 169:e3b6fe271b81 495 .thumb_set ETH_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 496
Kojto 169:e3b6fe271b81 497 .weak ETH_WKUP_IRQHandler
Kojto 169:e3b6fe271b81 498 .thumb_set ETH_WKUP_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 499
Kojto 169:e3b6fe271b81 500 .weak CAN2_TX_IRQHandler
Kojto 169:e3b6fe271b81 501 .thumb_set CAN2_TX_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 502
Kojto 169:e3b6fe271b81 503 .weak CAN2_RX0_IRQHandler
Kojto 169:e3b6fe271b81 504 .thumb_set CAN2_RX0_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 505
Kojto 169:e3b6fe271b81 506 .weak CAN2_RX1_IRQHandler
Kojto 169:e3b6fe271b81 507 .thumb_set CAN2_RX1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 508
Kojto 169:e3b6fe271b81 509 .weak CAN2_SCE_IRQHandler
Kojto 169:e3b6fe271b81 510 .thumb_set CAN2_SCE_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 511
Kojto 169:e3b6fe271b81 512 .weak OTG_FS_IRQHandler
Kojto 169:e3b6fe271b81 513 .thumb_set OTG_FS_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 514
Kojto 169:e3b6fe271b81 515 .weak DMA2_Stream5_IRQHandler
Kojto 169:e3b6fe271b81 516 .thumb_set DMA2_Stream5_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 517
Kojto 169:e3b6fe271b81 518 .weak DMA2_Stream6_IRQHandler
Kojto 169:e3b6fe271b81 519 .thumb_set DMA2_Stream6_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 520
Kojto 169:e3b6fe271b81 521 .weak DMA2_Stream7_IRQHandler
Kojto 169:e3b6fe271b81 522 .thumb_set DMA2_Stream7_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 523
Kojto 169:e3b6fe271b81 524 .weak USART6_IRQHandler
Kojto 169:e3b6fe271b81 525 .thumb_set USART6_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 526
Kojto 169:e3b6fe271b81 527 .weak I2C3_EV_IRQHandler
Kojto 169:e3b6fe271b81 528 .thumb_set I2C3_EV_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 529
Kojto 169:e3b6fe271b81 530 .weak I2C3_ER_IRQHandler
Kojto 169:e3b6fe271b81 531 .thumb_set I2C3_ER_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 532
Kojto 169:e3b6fe271b81 533 .weak OTG_HS_EP1_OUT_IRQHandler
Kojto 169:e3b6fe271b81 534 .thumb_set OTG_HS_EP1_OUT_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 535
Kojto 169:e3b6fe271b81 536 .weak OTG_HS_EP1_IN_IRQHandler
Kojto 169:e3b6fe271b81 537 .thumb_set OTG_HS_EP1_IN_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 538
Kojto 169:e3b6fe271b81 539 .weak OTG_HS_WKUP_IRQHandler
Kojto 169:e3b6fe271b81 540 .thumb_set OTG_HS_WKUP_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 541
Kojto 169:e3b6fe271b81 542 .weak OTG_HS_IRQHandler
Kojto 169:e3b6fe271b81 543 .thumb_set OTG_HS_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 544
Kojto 169:e3b6fe271b81 545 .weak DCMI_IRQHandler
Kojto 169:e3b6fe271b81 546 .thumb_set DCMI_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 547
Kojto 169:e3b6fe271b81 548 .weak RNG_IRQHandler
Kojto 169:e3b6fe271b81 549 .thumb_set RNG_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 550
Kojto 169:e3b6fe271b81 551 .weak FPU_IRQHandler
Kojto 169:e3b6fe271b81 552 .thumb_set FPU_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 553
Kojto 169:e3b6fe271b81 554 .weak UART7_IRQHandler
Kojto 169:e3b6fe271b81 555 .thumb_set UART7_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 556
Kojto 169:e3b6fe271b81 557 .weak UART8_IRQHandler
Kojto 169:e3b6fe271b81 558 .thumb_set UART8_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 559
Kojto 169:e3b6fe271b81 560 .weak SPI4_IRQHandler
Kojto 169:e3b6fe271b81 561 .thumb_set SPI4_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 562
Kojto 169:e3b6fe271b81 563 .weak SPI5_IRQHandler
Kojto 169:e3b6fe271b81 564 .thumb_set SPI5_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 565
Kojto 169:e3b6fe271b81 566 .weak SPI6_IRQHandler
Kojto 169:e3b6fe271b81 567 .thumb_set SPI6_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 568
Kojto 169:e3b6fe271b81 569 .weak SAI1_IRQHandler
Kojto 169:e3b6fe271b81 570 .thumb_set SAI1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 571
Kojto 169:e3b6fe271b81 572 .weak LTDC_IRQHandler
Kojto 169:e3b6fe271b81 573 .thumb_set LTDC_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 574
Kojto 169:e3b6fe271b81 575 .weak LTDC_ER_IRQHandler
Kojto 169:e3b6fe271b81 576 .thumb_set LTDC_ER_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 577
Kojto 169:e3b6fe271b81 578 .weak DMA2D_IRQHandler
Kojto 169:e3b6fe271b81 579 .thumb_set DMA2D_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 580
Kojto 169:e3b6fe271b81 581 .weak SAI2_IRQHandler
Kojto 169:e3b6fe271b81 582 .thumb_set SAI2_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 583
Kojto 169:e3b6fe271b81 584 .weak QUADSPI_IRQHandler
Kojto 169:e3b6fe271b81 585 .thumb_set QUADSPI_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 586
Kojto 169:e3b6fe271b81 587 .weak LPTIM1_IRQHandler
Kojto 169:e3b6fe271b81 588 .thumb_set LPTIM1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 589
Kojto 169:e3b6fe271b81 590 .weak CEC_IRQHandler
Kojto 169:e3b6fe271b81 591 .thumb_set CEC_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 592
Kojto 169:e3b6fe271b81 593 .weak I2C4_EV_IRQHandler
Kojto 169:e3b6fe271b81 594 .thumb_set I2C4_EV_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 595
Kojto 169:e3b6fe271b81 596 .weak I2C4_ER_IRQHandler
Kojto 169:e3b6fe271b81 597 .thumb_set I2C4_ER_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 598
Kojto 169:e3b6fe271b81 599 .weak SPDIF_RX_IRQHandler
Kojto 169:e3b6fe271b81 600 .thumb_set SPDIF_RX_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 601
Kojto 169:e3b6fe271b81 602 .weak DFSDM1_FLT0_IRQHandler
Kojto 169:e3b6fe271b81 603 .thumb_set DFSDM1_FLT0_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 604
Kojto 169:e3b6fe271b81 605 .weak DFSDM1_FLT1_IRQHandler
Kojto 169:e3b6fe271b81 606 .thumb_set DFSDM1_FLT1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 607
Kojto 169:e3b6fe271b81 608 .weak DFSDM1_FLT2_IRQHandler
Kojto 169:e3b6fe271b81 609 .thumb_set DFSDM1_FLT2_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 610
Kojto 169:e3b6fe271b81 611 .weak DFSDM1_FLT3_IRQHandler
Kojto 169:e3b6fe271b81 612 .thumb_set DFSDM1_FLT3_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 613
Kojto 169:e3b6fe271b81 614 .weak SDMMC2_IRQHandler
Kojto 169:e3b6fe271b81 615 .thumb_set SDMMC2_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 616
Kojto 169:e3b6fe271b81 617 .weak CAN3_TX_IRQHandler
Kojto 169:e3b6fe271b81 618 .thumb_set CAN3_TX_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 619
Kojto 169:e3b6fe271b81 620 .weak CAN3_RX0_IRQHandler
Kojto 169:e3b6fe271b81 621 .thumb_set CAN3_RX0_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 622
Kojto 169:e3b6fe271b81 623 .weak CAN3_RX1_IRQHandler
Kojto 169:e3b6fe271b81 624 .thumb_set CAN3_RX1_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 625
Kojto 169:e3b6fe271b81 626 .weak CAN3_SCE_IRQHandler
Kojto 169:e3b6fe271b81 627 .thumb_set CAN3_SCE_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 628
Kojto 169:e3b6fe271b81 629 .weak JPEG_IRQHandler
Kojto 169:e3b6fe271b81 630 .thumb_set JPEG_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 631
Kojto 169:e3b6fe271b81 632 .weak MDIOS_IRQHandler
Kojto 169:e3b6fe271b81 633 .thumb_set MDIOS_IRQHandler,Default_Handler
Kojto 169:e3b6fe271b81 634
Kojto 169:e3b6fe271b81 635 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
Kojto 169:e3b6fe271b81 636