mbed library sources

Dependents:   Encrypted my_mbed lklk CyaSSL_DTLS_Cellular ... more

Superseded

This library was superseded by mbed-dev - https://os.mbed.com/users/mbed_official/code/mbed-dev/.

Development branch of the mbed library sources. This library is kept in synch with the latest changes from the mbed SDK and it is not guaranteed to work.

If you are looking for a stable and tested release, please import one of the official mbed library releases:

Import librarymbed

The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Committer:
mbed_official
Date:
Wed Jul 01 08:15:11 2015 +0100
Revision:
577:15494b56c2f3
Parent:
targets/cmsis/TARGET_STM/TARGET_STM32F4/TARGET_MTS_DRAGONFLY_F411RE/TOOLCHAIN_GCC_ARM/startup_STM32F41x.s@441:d2c15dda23c1
Synchronized with git revision 7766e75dd858812cd79aedb3080349715f55dd56

Full URL: https://github.com/mbedmicro/mbed/commit/7766e75dd858812cd79aedb3080349715f55dd56/

GCC asm updates

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 441:d2c15dda23c1 1 /* File: startup_STM32F40x.S
mbed_official 441:d2c15dda23c1 2 * Purpose: startup file for Cortex-M4 devices. Should use with
mbed_official 441:d2c15dda23c1 3 * GCC for ARM Embedded Processors
mbed_official 441:d2c15dda23c1 4 * Version: V1.4
mbed_official 441:d2c15dda23c1 5 * Date: 09 July 2012
mbed_official 441:d2c15dda23c1 6 *
mbed_official 441:d2c15dda23c1 7 * Copyright (c) 2011, 2012, ARM Limited
mbed_official 441:d2c15dda23c1 8 * All rights reserved.
mbed_official 441:d2c15dda23c1 9 *
mbed_official 441:d2c15dda23c1 10 * Redistribution and use in source and binary forms, with or without
mbed_official 441:d2c15dda23c1 11 * modification, are permitted provided that the following conditions are met:
mbed_official 441:d2c15dda23c1 12 * Redistributions of source code must retain the above copyright
mbed_official 441:d2c15dda23c1 13 notice, this list of conditions and the following disclaimer.
mbed_official 441:d2c15dda23c1 14 * Redistributions in binary form must reproduce the above copyright
mbed_official 441:d2c15dda23c1 15 notice, this list of conditions and the following disclaimer in the
mbed_official 441:d2c15dda23c1 16 documentation and/or other materials provided with the distribution.
mbed_official 441:d2c15dda23c1 17 * Neither the name of the ARM Limited nor the
mbed_official 441:d2c15dda23c1 18 names of its contributors may be used to endorse or promote products
mbed_official 441:d2c15dda23c1 19 derived from this software without specific prior written permission.
mbed_official 441:d2c15dda23c1 20 *
mbed_official 441:d2c15dda23c1 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
mbed_official 441:d2c15dda23c1 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
mbed_official 441:d2c15dda23c1 23 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 441:d2c15dda23c1 24 * DISCLAIMED. IN NO EVENT SHALL ARM LIMITED BE LIABLE FOR ANY
mbed_official 441:d2c15dda23c1 25 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
mbed_official 441:d2c15dda23c1 26 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
mbed_official 441:d2c15dda23c1 27 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
mbed_official 441:d2c15dda23c1 28 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
mbed_official 441:d2c15dda23c1 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
mbed_official 441:d2c15dda23c1 30 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 441:d2c15dda23c1 31 */
mbed_official 441:d2c15dda23c1 32 .syntax unified
mbed_official 441:d2c15dda23c1 33 .arch armv7-m
mbed_official 441:d2c15dda23c1 34
mbed_official 441:d2c15dda23c1 35 .section .stack
mbed_official 441:d2c15dda23c1 36 .align 3
mbed_official 441:d2c15dda23c1 37 #ifdef __STACK_SIZE
mbed_official 441:d2c15dda23c1 38 .equ Stack_Size, __STACK_SIZE
mbed_official 441:d2c15dda23c1 39 #else
mbed_official 441:d2c15dda23c1 40 .equ Stack_Size, 0xc00
mbed_official 441:d2c15dda23c1 41 #endif
mbed_official 441:d2c15dda23c1 42 .globl __StackTop
mbed_official 441:d2c15dda23c1 43 .globl __StackLimit
mbed_official 441:d2c15dda23c1 44 __StackLimit:
mbed_official 441:d2c15dda23c1 45 .space Stack_Size
mbed_official 441:d2c15dda23c1 46 .size __StackLimit, . - __StackLimit
mbed_official 441:d2c15dda23c1 47 __StackTop:
mbed_official 441:d2c15dda23c1 48 .size __StackTop, . - __StackTop
mbed_official 441:d2c15dda23c1 49
mbed_official 441:d2c15dda23c1 50 .section .heap
mbed_official 441:d2c15dda23c1 51 .align 3
mbed_official 441:d2c15dda23c1 52 #ifdef __HEAP_SIZE
mbed_official 441:d2c15dda23c1 53 .equ Heap_Size, __HEAP_SIZE
mbed_official 441:d2c15dda23c1 54 #else
mbed_official 441:d2c15dda23c1 55 .equ Heap_Size, 0x400
mbed_official 441:d2c15dda23c1 56 #endif
mbed_official 441:d2c15dda23c1 57 .globl __HeapBase
mbed_official 441:d2c15dda23c1 58 .globl __HeapLimit
mbed_official 441:d2c15dda23c1 59 __HeapBase:
mbed_official 441:d2c15dda23c1 60 .if Heap_Size
mbed_official 441:d2c15dda23c1 61 .space Heap_Size
mbed_official 441:d2c15dda23c1 62 .endif
mbed_official 441:d2c15dda23c1 63 .size __HeapBase, . - __HeapBase
mbed_official 441:d2c15dda23c1 64 __HeapLimit:
mbed_official 441:d2c15dda23c1 65 .size __HeapLimit, . - __HeapLimit
mbed_official 441:d2c15dda23c1 66
mbed_official 441:d2c15dda23c1 67 .section .isr_vector
mbed_official 441:d2c15dda23c1 68 .align 2
mbed_official 441:d2c15dda23c1 69 .globl __isr_vector
mbed_official 441:d2c15dda23c1 70 __isr_vector:
mbed_official 441:d2c15dda23c1 71 .long __StackTop /* Top of Stack */
mbed_official 441:d2c15dda23c1 72 .long Reset_Handler /* Reset Handler */
mbed_official 441:d2c15dda23c1 73 .long NMI_Handler /* NMI Handler */
mbed_official 441:d2c15dda23c1 74 .long HardFault_Handler /* Hard Fault Handler */
mbed_official 441:d2c15dda23c1 75 .long MemManage_Handler /* MPU Fault Handler */
mbed_official 441:d2c15dda23c1 76 .long BusFault_Handler /* Bus Fault Handler */
mbed_official 441:d2c15dda23c1 77 .long UsageFault_Handler /* Usage Fault Handler */
mbed_official 441:d2c15dda23c1 78 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 79 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 80 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 81 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 82 .long SVC_Handler /* SVCall Handler */
mbed_official 441:d2c15dda23c1 83 .long DebugMon_Handler /* Debug Monitor Handler */
mbed_official 441:d2c15dda23c1 84 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 85 .long PendSV_Handler /* PendSV Handler */
mbed_official 441:d2c15dda23c1 86 .long SysTick_Handler /* SysTick Handler */
mbed_official 441:d2c15dda23c1 87
mbed_official 441:d2c15dda23c1 88 /* External interrupts */
mbed_official 441:d2c15dda23c1 89 .long WWDG_IRQHandler /* Window WatchDog */
mbed_official 441:d2c15dda23c1 90 .long PVD_IRQHandler /* PVD through EXTI Line detection */
mbed_official 441:d2c15dda23c1 91 .long TAMP_STAMP_IRQHandler /* Tamper and TimeStamps through the EXTI line */
mbed_official 441:d2c15dda23c1 92 .long RTC_WKUP_IRQHandler /* RTC Wakeup through the EXTI line */
mbed_official 441:d2c15dda23c1 93 .long FLASH_IRQHandler /* FLASH */
mbed_official 441:d2c15dda23c1 94 .long RCC_IRQHandler /* RCC */
mbed_official 441:d2c15dda23c1 95 .long EXTI0_IRQHandler /* EXTI Line0 */
mbed_official 441:d2c15dda23c1 96 .long EXTI1_IRQHandler /* EXTI Line1 */
mbed_official 441:d2c15dda23c1 97 .long EXTI2_IRQHandler /* EXTI Line2 */
mbed_official 441:d2c15dda23c1 98 .long EXTI3_IRQHandler /* EXTI Line3 */
mbed_official 441:d2c15dda23c1 99 .long EXTI4_IRQHandler /* EXTI Line4 */
mbed_official 441:d2c15dda23c1 100 .long DMA1_Stream0_IRQHandler /* DMA1 Stream 0 */
mbed_official 441:d2c15dda23c1 101 .long DMA1_Stream1_IRQHandler /* DMA1 Stream 1 */
mbed_official 441:d2c15dda23c1 102 .long DMA1_Stream2_IRQHandler /* DMA1 Stream 2 */
mbed_official 441:d2c15dda23c1 103 .long DMA1_Stream3_IRQHandler /* DMA1 Stream 3 */
mbed_official 441:d2c15dda23c1 104 .long DMA1_Stream4_IRQHandler /* DMA1 Stream 4 */
mbed_official 441:d2c15dda23c1 105 .long DMA1_Stream5_IRQHandler /* DMA1 Stream 5 */
mbed_official 441:d2c15dda23c1 106 .long DMA1_Stream6_IRQHandler /* DMA1 Stream 6 */
mbed_official 441:d2c15dda23c1 107 .long ADC_IRQHandler /* ADC1, ADC2 and ADC3s */
mbed_official 441:d2c15dda23c1 108 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 109 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 110 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 111 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 112 .long EXTI9_5_IRQHandler /* External Line[9:5]s */
mbed_official 441:d2c15dda23c1 113 .long TIM1_BRK_TIM9_IRQHandler /* TIM1 Break and TIM9 */
mbed_official 441:d2c15dda23c1 114 .long TIM1_UP_TIM10_IRQHandler /* TIM1 Update and TIM10 */
mbed_official 441:d2c15dda23c1 115 .long TIM1_TRG_COM_TIM11_IRQHandler /* TIM1 Trigger and Commutation and TIM11 */
mbed_official 441:d2c15dda23c1 116 .long TIM1_CC_IRQHandler /* TIM1 Capture Compare */
mbed_official 441:d2c15dda23c1 117 .long TIM2_IRQHandler /* TIM2 */
mbed_official 441:d2c15dda23c1 118 .long TIM3_IRQHandler /* TIM3 */
mbed_official 441:d2c15dda23c1 119 .long TIM4_IRQHandler /* TIM4 */
mbed_official 441:d2c15dda23c1 120 .long I2C1_EV_IRQHandler /* I2C1 Event */
mbed_official 441:d2c15dda23c1 121 .long I2C1_ER_IRQHandler /* I2C1 Error */
mbed_official 441:d2c15dda23c1 122 .long I2C2_EV_IRQHandler /* I2C2 Event */
mbed_official 441:d2c15dda23c1 123 .long I2C2_ER_IRQHandler /* I2C2 Error */
mbed_official 441:d2c15dda23c1 124 .long SPI1_IRQHandler /* SPI1 */
mbed_official 441:d2c15dda23c1 125 .long SPI2_IRQHandler /* SPI2 */
mbed_official 441:d2c15dda23c1 126 .long USART1_IRQHandler /* USART1 */
mbed_official 441:d2c15dda23c1 127 .long USART2_IRQHandler /* USART2 */
mbed_official 441:d2c15dda23c1 128 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 129 .long EXTI15_10_IRQHandler /* External Line[15:10]s */
mbed_official 441:d2c15dda23c1 130 .long RTC_Alarm_IRQHandler /* RTC Alarm (A and B) through EXTI Line */
mbed_official 441:d2c15dda23c1 131 .long OTG_FS_WKUP_IRQHandler /* USB OTG FS Wakeup through EXTI line */
mbed_official 441:d2c15dda23c1 132 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 133 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 134 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 135 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 136 .long DMA1_Stream7_IRQHandler /* DMA1 Stream7 */
mbed_official 441:d2c15dda23c1 137 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 138 .long SDIO_IRQHandler /* SDIO */
mbed_official 441:d2c15dda23c1 139 .long TIM5_IRQHandler /* TIM5 */
mbed_official 441:d2c15dda23c1 140 .long SPI3_IRQHandler /* SPI3 */
mbed_official 441:d2c15dda23c1 141 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 142 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 143 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 144 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 145 .long DMA2_Stream0_IRQHandler /* DMA2 Stream 0 */
mbed_official 441:d2c15dda23c1 146 .long DMA2_Stream1_IRQHandler /* DMA2 Stream 1 */
mbed_official 441:d2c15dda23c1 147 .long DMA2_Stream2_IRQHandler /* DMA2 Stream 2 */
mbed_official 441:d2c15dda23c1 148 .long DMA2_Stream3_IRQHandler /* DMA2 Stream 3 */
mbed_official 441:d2c15dda23c1 149 .long DMA2_Stream4_IRQHandler /* DMA2 Stream 4 */
mbed_official 441:d2c15dda23c1 150 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 151 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 152 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 153 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 154 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 155 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 156 .long OTG_FS_IRQHandler /* USB OTG FS */
mbed_official 441:d2c15dda23c1 157 .long DMA2_Stream5_IRQHandler /* DMA2 Stream 5 */
mbed_official 441:d2c15dda23c1 158 .long DMA2_Stream6_IRQHandler /* DMA2 Stream 6 */
mbed_official 441:d2c15dda23c1 159 .long DMA2_Stream7_IRQHandler /* DMA2 Stream 7 */
mbed_official 441:d2c15dda23c1 160 .long USART6_IRQHandler /* USART6 */
mbed_official 441:d2c15dda23c1 161 .long I2C3_EV_IRQHandler /* I2C3 event */
mbed_official 441:d2c15dda23c1 162 .long I2C3_ER_IRQHandler /* I2C3 error */
mbed_official 441:d2c15dda23c1 163 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 164 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 165 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 166 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 167 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 168 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 169 .long 0 /* Reserved */
mbed_official 441:d2c15dda23c1 170 .long FPU_IRQHandler /* FPU */
mbed_official 441:d2c15dda23c1 171 .long SPI4_IRQHandler /* SPI4 */
mbed_official 441:d2c15dda23c1 172 .long SPI5_IRQHandler /* SPI5 */
mbed_official 441:d2c15dda23c1 173
mbed_official 441:d2c15dda23c1 174 .size __isr_vector, . - __isr_vector
mbed_official 441:d2c15dda23c1 175
mbed_official 441:d2c15dda23c1 176 .text
mbed_official 441:d2c15dda23c1 177 .thumb
mbed_official 441:d2c15dda23c1 178 .thumb_func
mbed_official 441:d2c15dda23c1 179 .align 2
mbed_official 441:d2c15dda23c1 180 .globl Reset_Handler
mbed_official 441:d2c15dda23c1 181 .type Reset_Handler, %function
mbed_official 441:d2c15dda23c1 182 Reset_Handler:
mbed_official 441:d2c15dda23c1 183 /* Loop to copy data from read only memory to RAM. The ranges
mbed_official 441:d2c15dda23c1 184 * of copy from/to are specified by following symbols evaluated in
mbed_official 441:d2c15dda23c1 185 * linker script.
mbed_official 441:d2c15dda23c1 186 * __etext: End of code section, i.e., begin of data sections to copy from.
mbed_official 441:d2c15dda23c1 187 * __data_start__/__data_end__: RAM address range that data should be
mbed_official 441:d2c15dda23c1 188 * copied to. Both must be aligned to 4 bytes boundary. */
mbed_official 441:d2c15dda23c1 189
mbed_official 441:d2c15dda23c1 190 ldr r1, =__etext
mbed_official 441:d2c15dda23c1 191 ldr r2, =__data_start__
mbed_official 441:d2c15dda23c1 192 ldr r3, =__data_end__
mbed_official 441:d2c15dda23c1 193
mbed_official 441:d2c15dda23c1 194 .LC0:
mbed_official 441:d2c15dda23c1 195 cmp r2, r3
mbed_official 441:d2c15dda23c1 196 ittt lt
mbed_official 441:d2c15dda23c1 197 ldrlt r0, [r1], #4
mbed_official 441:d2c15dda23c1 198 strlt r0, [r2], #4
mbed_official 441:d2c15dda23c1 199 blt .LC0
mbed_official 441:d2c15dda23c1 200
mbed_official 441:d2c15dda23c1 201 ldr r0, =SystemInit
mbed_official 441:d2c15dda23c1 202 blx r0
mbed_official 441:d2c15dda23c1 203 ldr r0, =_start
mbed_official 441:d2c15dda23c1 204 bx r0
mbed_official 441:d2c15dda23c1 205 .pool
mbed_official 441:d2c15dda23c1 206 .size Reset_Handler, . - Reset_Handler
mbed_official 441:d2c15dda23c1 207
mbed_official 441:d2c15dda23c1 208 .text
mbed_official 441:d2c15dda23c1 209 /* Macro to define default handlers. Default handler
mbed_official 441:d2c15dda23c1 210 * will be weak symbol and just dead loops. They can be
mbed_official 441:d2c15dda23c1 211 * overwritten by other handlers */
mbed_official 441:d2c15dda23c1 212 .macro def_default_handler handler_name
mbed_official 441:d2c15dda23c1 213 .align 1
mbed_official 441:d2c15dda23c1 214 .thumb_func
mbed_official 441:d2c15dda23c1 215 .weak \handler_name
mbed_official 441:d2c15dda23c1 216 .type \handler_name, %function
mbed_official 441:d2c15dda23c1 217 \handler_name :
mbed_official 441:d2c15dda23c1 218 b .
mbed_official 441:d2c15dda23c1 219 .size \handler_name, . - \handler_name
mbed_official 441:d2c15dda23c1 220 .endm
mbed_official 441:d2c15dda23c1 221
mbed_official 441:d2c15dda23c1 222 def_default_handler NMI_Handler
mbed_official 441:d2c15dda23c1 223 def_default_handler HardFault_Handler
mbed_official 441:d2c15dda23c1 224 def_default_handler MemManage_Handler
mbed_official 441:d2c15dda23c1 225 def_default_handler BusFault_Handler
mbed_official 441:d2c15dda23c1 226 def_default_handler UsageFault_Handler
mbed_official 441:d2c15dda23c1 227 def_default_handler SVC_Handler
mbed_official 441:d2c15dda23c1 228 def_default_handler DebugMon_Handler
mbed_official 441:d2c15dda23c1 229 def_default_handler PendSV_Handler
mbed_official 441:d2c15dda23c1 230 def_default_handler SysTick_Handler
mbed_official 441:d2c15dda23c1 231 def_default_handler Default_Handler
mbed_official 441:d2c15dda23c1 232
mbed_official 441:d2c15dda23c1 233 .macro def_irq_default_handler handler_name
mbed_official 441:d2c15dda23c1 234 .weak \handler_name
mbed_official 441:d2c15dda23c1 235 .set \handler_name, Default_Handler
mbed_official 441:d2c15dda23c1 236 .endm
mbed_official 441:d2c15dda23c1 237
mbed_official 441:d2c15dda23c1 238 def_irq_default_handler WWDG_IRQHandler
mbed_official 441:d2c15dda23c1 239 def_irq_default_handler PVD_IRQHandler
mbed_official 441:d2c15dda23c1 240 def_irq_default_handler TAMP_STAMP_IRQHandler
mbed_official 441:d2c15dda23c1 241 def_irq_default_handler RTC_WKUP_IRQHandler
mbed_official 441:d2c15dda23c1 242 def_irq_default_handler FLASH_IRQHandler
mbed_official 441:d2c15dda23c1 243 def_irq_default_handler RCC_IRQHandler
mbed_official 441:d2c15dda23c1 244 def_irq_default_handler EXTI0_IRQHandler
mbed_official 441:d2c15dda23c1 245 def_irq_default_handler EXTI1_IRQHandler
mbed_official 441:d2c15dda23c1 246 def_irq_default_handler EXTI2_IRQHandler
mbed_official 441:d2c15dda23c1 247 def_irq_default_handler EXTI3_IRQHandler
mbed_official 441:d2c15dda23c1 248 def_irq_default_handler EXTI4_IRQHandler
mbed_official 441:d2c15dda23c1 249 def_irq_default_handler DMA1_Stream0_IRQHandler
mbed_official 441:d2c15dda23c1 250 def_irq_default_handler DMA1_Stream1_IRQHandler
mbed_official 441:d2c15dda23c1 251 def_irq_default_handler DMA1_Stream2_IRQHandler
mbed_official 441:d2c15dda23c1 252 def_irq_default_handler DMA1_Stream3_IRQHandler
mbed_official 441:d2c15dda23c1 253 def_irq_default_handler DMA1_Stream4_IRQHandler
mbed_official 441:d2c15dda23c1 254 def_irq_default_handler DMA1_Stream5_IRQHandler
mbed_official 441:d2c15dda23c1 255 def_irq_default_handler DMA1_Stream6_IRQHandler
mbed_official 441:d2c15dda23c1 256 def_irq_default_handler ADC_IRQHandler
mbed_official 441:d2c15dda23c1 257 def_irq_default_handler EXTI9_5_IRQHandler
mbed_official 441:d2c15dda23c1 258 def_irq_default_handler TIM1_BRK_TIM9_IRQHandler
mbed_official 441:d2c15dda23c1 259 def_irq_default_handler TIM1_UP_TIM10_IRQHandler
mbed_official 441:d2c15dda23c1 260 def_irq_default_handler TIM1_TRG_COM_TIM11_IRQHandler
mbed_official 441:d2c15dda23c1 261 def_irq_default_handler TIM1_CC_IRQHandler
mbed_official 441:d2c15dda23c1 262 def_irq_default_handler TIM2_IRQHandler
mbed_official 441:d2c15dda23c1 263 def_irq_default_handler TIM3_IRQHandler
mbed_official 441:d2c15dda23c1 264 def_irq_default_handler TIM4_IRQHandler
mbed_official 441:d2c15dda23c1 265 def_irq_default_handler I2C1_EV_IRQHandler
mbed_official 441:d2c15dda23c1 266 def_irq_default_handler I2C1_ER_IRQHandler
mbed_official 441:d2c15dda23c1 267 def_irq_default_handler I2C2_EV_IRQHandler
mbed_official 441:d2c15dda23c1 268 def_irq_default_handler I2C2_ER_IRQHandler
mbed_official 441:d2c15dda23c1 269 def_irq_default_handler SPI1_IRQHandler
mbed_official 441:d2c15dda23c1 270 def_irq_default_handler SPI2_IRQHandler
mbed_official 441:d2c15dda23c1 271 def_irq_default_handler USART1_IRQHandler
mbed_official 441:d2c15dda23c1 272 def_irq_default_handler USART2_IRQHandler
mbed_official 441:d2c15dda23c1 273 def_irq_default_handler EXTI15_10_IRQHandler
mbed_official 441:d2c15dda23c1 274 def_irq_default_handler RTC_Alarm_IRQHandler
mbed_official 441:d2c15dda23c1 275 def_irq_default_handler OTG_FS_WKUP_IRQHandler
mbed_official 441:d2c15dda23c1 276 def_irq_default_handler DMA1_Stream7_IRQHandler
mbed_official 441:d2c15dda23c1 277 def_irq_default_handler SDIO_IRQHandler
mbed_official 441:d2c15dda23c1 278 def_irq_default_handler TIM5_IRQHandler
mbed_official 441:d2c15dda23c1 279 def_irq_default_handler SPI3_IRQHandler
mbed_official 441:d2c15dda23c1 280 def_irq_default_handler DMA2_Stream0_IRQHandler
mbed_official 441:d2c15dda23c1 281 def_irq_default_handler DMA2_Stream1_IRQHandler
mbed_official 441:d2c15dda23c1 282 def_irq_default_handler DMA2_Stream2_IRQHandler
mbed_official 441:d2c15dda23c1 283 def_irq_default_handler DMA2_Stream3_IRQHandler
mbed_official 441:d2c15dda23c1 284 def_irq_default_handler DMA2_Stream4_IRQHandler
mbed_official 441:d2c15dda23c1 285 def_irq_default_handler OTG_FS_IRQHandler
mbed_official 441:d2c15dda23c1 286 def_irq_default_handler DMA2_Stream5_IRQHandler
mbed_official 441:d2c15dda23c1 287 def_irq_default_handler DMA2_Stream6_IRQHandler
mbed_official 441:d2c15dda23c1 288 def_irq_default_handler DMA2_Stream7_IRQHandler
mbed_official 441:d2c15dda23c1 289 def_irq_default_handler USART6_IRQHandler
mbed_official 441:d2c15dda23c1 290 def_irq_default_handler I2C3_EV_IRQHandler
mbed_official 441:d2c15dda23c1 291 def_irq_default_handler I2C3_ER_IRQHandler
mbed_official 441:d2c15dda23c1 292 def_irq_default_handler FPU_IRQHandler
mbed_official 441:d2c15dda23c1 293 def_irq_default_handler SPI4_IRQHandler
mbed_official 441:d2c15dda23c1 294 def_irq_default_handler SPI5_IRQHandler
mbed_official 441:d2c15dda23c1 295 def_irq_default_handler DEF_IRQHandler
mbed_official 441:d2c15dda23c1 296
mbed_official 441:d2c15dda23c1 297 .end