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:
Mon Jul 21 08:45:07 2014 +0100
Revision:
262:85569914dbe0
Parent:
145:cfacfb0a9e19
Synchronized with git revision f971aef91393bdb89fd26278bff585cc24ccc30a

Full URL: https://github.com/mbedmicro/mbed/commit/f971aef91393bdb89fd26278bff585cc24ccc30a/

[Nucleo, Discovery] Add default heap size( 1 KB) for Nucleo F401RE, DISCOVERY 407

Who changed what in which revision?

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