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_STM32F1/TARGET_NUCLEO_F103RB/TOOLCHAIN_ARM_MICRO/startup_stm32f103xb.s@489:119543c9f674
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 489:119543c9f674 1 ;******************** (C) COPYRIGHT 2014 STMicroelectronics ********************
mbed_official 489:119543c9f674 2 ;* File Name : startup_stm32f103xb.s
mbed_official 489:119543c9f674 3 ;* Author : MCD Application Team
mbed_official 489:119543c9f674 4 ;* Version : V4.0.0
mbed_official 489:119543c9f674 5 ;* Date : 16-December-2014
mbed_official 489:119543c9f674 6 ;* Description : STM32F103xB Devices vector table for MDK-ARM toolchain.
mbed_official 489:119543c9f674 7 ;* This module performs:
mbed_official 489:119543c9f674 8 ;* - Set the initial SP
mbed_official 489:119543c9f674 9 ;* - Set the initial PC == Reset_Handler
mbed_official 489:119543c9f674 10 ;* - Set the vector table entries with the exceptions ISR address
mbed_official 489:119543c9f674 11 ;* - Configure the clock system
mbed_official 489:119543c9f674 12 ;* - Branches to __main in the C library (which eventually
mbed_official 489:119543c9f674 13 ;* calls main()).
mbed_official 489:119543c9f674 14 ;* After Reset the Cortex-M3 processor is in Thread mode,
mbed_official 489:119543c9f674 15 ;* priority is Privileged, and the Stack is set to Main.
mbed_official 489:119543c9f674 16 ;********************************************************************************
mbed_official 489:119543c9f674 17 ;*
mbed_official 489:119543c9f674 18 ;* COPYRIGHT(c) 2014 STMicroelectronics
mbed_official 489:119543c9f674 19 ;*
mbed_official 489:119543c9f674 20 ;* Redistribution and use in source and binary forms, with or without modification,
mbed_official 489:119543c9f674 21 ;* are permitted provided that the following conditions are met:
mbed_official 489:119543c9f674 22 ;* 1. Redistributions of source code must retain the above copyright notice,
mbed_official 489:119543c9f674 23 ;* this list of conditions and the following disclaimer.
mbed_official 489:119543c9f674 24 ;* 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 489:119543c9f674 25 ;* this list of conditions and the following disclaimer in the documentation
mbed_official 489:119543c9f674 26 ;* and/or other materials provided with the distribution.
mbed_official 489:119543c9f674 27 ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 489:119543c9f674 28 ;* may be used to endorse or promote products derived from this software
mbed_official 489:119543c9f674 29 ;* without specific prior written permission.
mbed_official 489:119543c9f674 30 ;*
mbed_official 489:119543c9f674 31 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 489:119543c9f674 32 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 489:119543c9f674 33 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 489:119543c9f674 34 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 489:119543c9f674 35 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 489:119543c9f674 36 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 489:119543c9f674 37 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 489:119543c9f674 38 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 489:119543c9f674 39 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 489:119543c9f674 40 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 489:119543c9f674 41 ;
mbed_official 489:119543c9f674 42 ;*******************************************************************************
mbed_official 489:119543c9f674 43
mbed_official 489:119543c9f674 44 ; Amount of memory (in bytes) allocated for Stack
mbed_official 489:119543c9f674 45 ; Tailor this value to your application needs
mbed_official 489:119543c9f674 46 ; <h> Stack Configuration
mbed_official 489:119543c9f674 47 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
mbed_official 489:119543c9f674 48 ; </h>
mbed_official 489:119543c9f674 49
mbed_official 489:119543c9f674 50 Stack_Size EQU 0x00000400
mbed_official 489:119543c9f674 51
mbed_official 489:119543c9f674 52 AREA STACK, NOINIT, READWRITE, ALIGN=3
mbed_official 489:119543c9f674 53 EXPORT __initial_sp
mbed_official 489:119543c9f674 54
mbed_official 489:119543c9f674 55 Stack_Mem SPACE Stack_Size
mbed_official 489:119543c9f674 56 __initial_sp EQU 0x20005000 ; Top of RAM
mbed_official 489:119543c9f674 57
mbed_official 489:119543c9f674 58
mbed_official 489:119543c9f674 59 ; <h> Heap Configuration
mbed_official 489:119543c9f674 60 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
mbed_official 489:119543c9f674 61 ; </h>
mbed_official 489:119543c9f674 62
mbed_official 489:119543c9f674 63 Heap_Size EQU 0x00000400
mbed_official 489:119543c9f674 64
mbed_official 489:119543c9f674 65 AREA HEAP, NOINIT, READWRITE, ALIGN=3
mbed_official 489:119543c9f674 66 EXPORT __heap_base
mbed_official 489:119543c9f674 67 EXPORT __heap_limit
mbed_official 489:119543c9f674 68
mbed_official 489:119543c9f674 69 __heap_base
mbed_official 489:119543c9f674 70 Heap_Mem SPACE Heap_Size
mbed_official 489:119543c9f674 71 __heap_limit EQU (__initial_sp - Stack_Size)
mbed_official 489:119543c9f674 72
mbed_official 489:119543c9f674 73 PRESERVE8
mbed_official 489:119543c9f674 74 THUMB
mbed_official 489:119543c9f674 75
mbed_official 489:119543c9f674 76
mbed_official 489:119543c9f674 77 ; Vector Table Mapped to Address 0 at Reset
mbed_official 489:119543c9f674 78 AREA RESET, DATA, READONLY
mbed_official 489:119543c9f674 79 EXPORT __Vectors
mbed_official 489:119543c9f674 80 EXPORT __Vectors_End
mbed_official 489:119543c9f674 81 EXPORT __Vectors_Size
mbed_official 489:119543c9f674 82
mbed_official 489:119543c9f674 83 __Vectors DCD __initial_sp ; Top of Stack
mbed_official 489:119543c9f674 84 DCD Reset_Handler ; Reset Handler
mbed_official 489:119543c9f674 85 DCD NMI_Handler ; NMI Handler
mbed_official 489:119543c9f674 86 DCD HardFault_Handler ; Hard Fault Handler
mbed_official 489:119543c9f674 87 DCD MemManage_Handler ; MPU Fault Handler
mbed_official 489:119543c9f674 88 DCD BusFault_Handler ; Bus Fault Handler
mbed_official 489:119543c9f674 89 DCD UsageFault_Handler ; Usage Fault Handler
mbed_official 489:119543c9f674 90 DCD 0 ; Reserved
mbed_official 489:119543c9f674 91 DCD 0 ; Reserved
mbed_official 489:119543c9f674 92 DCD 0 ; Reserved
mbed_official 489:119543c9f674 93 DCD 0 ; Reserved
mbed_official 489:119543c9f674 94 DCD SVC_Handler ; SVCall Handler
mbed_official 489:119543c9f674 95 DCD DebugMon_Handler ; Debug Monitor Handler
mbed_official 489:119543c9f674 96 DCD 0 ; Reserved
mbed_official 489:119543c9f674 97 DCD PendSV_Handler ; PendSV Handler
mbed_official 489:119543c9f674 98 DCD SysTick_Handler ; SysTick Handler
mbed_official 489:119543c9f674 99
mbed_official 489:119543c9f674 100 ; External Interrupts
mbed_official 489:119543c9f674 101 DCD WWDG_IRQHandler ; Window Watchdog
mbed_official 489:119543c9f674 102 DCD PVD_IRQHandler ; PVD through EXTI Line detect
mbed_official 489:119543c9f674 103 DCD TAMPER_IRQHandler ; Tamper
mbed_official 489:119543c9f674 104 DCD RTC_IRQHandler ; RTC
mbed_official 489:119543c9f674 105 DCD FLASH_IRQHandler ; Flash
mbed_official 489:119543c9f674 106 DCD RCC_IRQHandler ; RCC
mbed_official 489:119543c9f674 107 DCD EXTI0_IRQHandler ; EXTI Line 0
mbed_official 489:119543c9f674 108 DCD EXTI1_IRQHandler ; EXTI Line 1
mbed_official 489:119543c9f674 109 DCD EXTI2_IRQHandler ; EXTI Line 2
mbed_official 489:119543c9f674 110 DCD EXTI3_IRQHandler ; EXTI Line 3
mbed_official 489:119543c9f674 111 DCD EXTI4_IRQHandler ; EXTI Line 4
mbed_official 489:119543c9f674 112 DCD DMA1_Channel1_IRQHandler ; DMA1 Channel 1
mbed_official 489:119543c9f674 113 DCD DMA1_Channel2_IRQHandler ; DMA1 Channel 2
mbed_official 489:119543c9f674 114 DCD DMA1_Channel3_IRQHandler ; DMA1 Channel 3
mbed_official 489:119543c9f674 115 DCD DMA1_Channel4_IRQHandler ; DMA1 Channel 4
mbed_official 489:119543c9f674 116 DCD DMA1_Channel5_IRQHandler ; DMA1 Channel 5
mbed_official 489:119543c9f674 117 DCD DMA1_Channel6_IRQHandler ; DMA1 Channel 6
mbed_official 489:119543c9f674 118 DCD DMA1_Channel7_IRQHandler ; DMA1 Channel 7
mbed_official 489:119543c9f674 119 DCD ADC1_2_IRQHandler ; ADC1_2
mbed_official 489:119543c9f674 120 DCD USB_HP_CAN1_TX_IRQHandler ; USB High Priority or CAN1 TX
mbed_official 489:119543c9f674 121 DCD USB_LP_CAN1_RX0_IRQHandler ; USB Low Priority or CAN1 RX0
mbed_official 489:119543c9f674 122 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
mbed_official 489:119543c9f674 123 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
mbed_official 489:119543c9f674 124 DCD EXTI9_5_IRQHandler ; EXTI Line 9..5
mbed_official 489:119543c9f674 125 DCD TIM1_BRK_IRQHandler ; TIM1 Break
mbed_official 489:119543c9f674 126 DCD TIM1_UP_IRQHandler ; TIM1 Update
mbed_official 489:119543c9f674 127 DCD TIM1_TRG_COM_IRQHandler ; TIM1 Trigger and Commutation
mbed_official 489:119543c9f674 128 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
mbed_official 489:119543c9f674 129 DCD TIM2_IRQHandler ; TIM2
mbed_official 489:119543c9f674 130 DCD TIM3_IRQHandler ; TIM3
mbed_official 489:119543c9f674 131 DCD TIM4_IRQHandler ; TIM4
mbed_official 489:119543c9f674 132 DCD I2C1_EV_IRQHandler ; I2C1 Event
mbed_official 489:119543c9f674 133 DCD I2C1_ER_IRQHandler ; I2C1 Error
mbed_official 489:119543c9f674 134 DCD I2C2_EV_IRQHandler ; I2C2 Event
mbed_official 489:119543c9f674 135 DCD I2C2_ER_IRQHandler ; I2C2 Error
mbed_official 489:119543c9f674 136 DCD SPI1_IRQHandler ; SPI1
mbed_official 489:119543c9f674 137 DCD SPI2_IRQHandler ; SPI2
mbed_official 489:119543c9f674 138 DCD USART1_IRQHandler ; USART1
mbed_official 489:119543c9f674 139 DCD USART2_IRQHandler ; USART2
mbed_official 489:119543c9f674 140 DCD USART3_IRQHandler ; USART3
mbed_official 489:119543c9f674 141 DCD EXTI15_10_IRQHandler ; EXTI Line 15..10
mbed_official 489:119543c9f674 142 DCD RTC_Alarm_IRQHandler ; RTC Alarm through EXTI Line
mbed_official 489:119543c9f674 143 DCD USBWakeUp_IRQHandler ; USB Wakeup from suspend
mbed_official 489:119543c9f674 144 __Vectors_End
mbed_official 489:119543c9f674 145
mbed_official 489:119543c9f674 146 __Vectors_Size EQU __Vectors_End - __Vectors
mbed_official 489:119543c9f674 147
mbed_official 489:119543c9f674 148 AREA |.text|, CODE, READONLY
mbed_official 489:119543c9f674 149
mbed_official 489:119543c9f674 150 ; Reset handler
mbed_official 489:119543c9f674 151 Reset_Handler PROC
mbed_official 489:119543c9f674 152 EXPORT Reset_Handler [WEAK]
mbed_official 489:119543c9f674 153 IMPORT __main
mbed_official 489:119543c9f674 154 IMPORT SystemInit
mbed_official 489:119543c9f674 155 LDR R0, =SystemInit
mbed_official 489:119543c9f674 156 BLX R0
mbed_official 489:119543c9f674 157 LDR R0, =__main
mbed_official 489:119543c9f674 158 BX R0
mbed_official 489:119543c9f674 159 ENDP
mbed_official 489:119543c9f674 160
mbed_official 489:119543c9f674 161 ; Dummy Exception Handlers (infinite loops which can be modified)
mbed_official 489:119543c9f674 162
mbed_official 489:119543c9f674 163 NMI_Handler PROC
mbed_official 489:119543c9f674 164 EXPORT NMI_Handler [WEAK]
mbed_official 489:119543c9f674 165 B .
mbed_official 489:119543c9f674 166 ENDP
mbed_official 489:119543c9f674 167 HardFault_Handler\
mbed_official 489:119543c9f674 168 PROC
mbed_official 489:119543c9f674 169 EXPORT HardFault_Handler [WEAK]
mbed_official 489:119543c9f674 170 B .
mbed_official 489:119543c9f674 171 ENDP
mbed_official 489:119543c9f674 172 MemManage_Handler\
mbed_official 489:119543c9f674 173 PROC
mbed_official 489:119543c9f674 174 EXPORT MemManage_Handler [WEAK]
mbed_official 489:119543c9f674 175 B .
mbed_official 489:119543c9f674 176 ENDP
mbed_official 489:119543c9f674 177 BusFault_Handler\
mbed_official 489:119543c9f674 178 PROC
mbed_official 489:119543c9f674 179 EXPORT BusFault_Handler [WEAK]
mbed_official 489:119543c9f674 180 B .
mbed_official 489:119543c9f674 181 ENDP
mbed_official 489:119543c9f674 182 UsageFault_Handler\
mbed_official 489:119543c9f674 183 PROC
mbed_official 489:119543c9f674 184 EXPORT UsageFault_Handler [WEAK]
mbed_official 489:119543c9f674 185 B .
mbed_official 489:119543c9f674 186 ENDP
mbed_official 489:119543c9f674 187 SVC_Handler PROC
mbed_official 489:119543c9f674 188 EXPORT SVC_Handler [WEAK]
mbed_official 489:119543c9f674 189 B .
mbed_official 489:119543c9f674 190 ENDP
mbed_official 489:119543c9f674 191 DebugMon_Handler\
mbed_official 489:119543c9f674 192 PROC
mbed_official 489:119543c9f674 193 EXPORT DebugMon_Handler [WEAK]
mbed_official 489:119543c9f674 194 B .
mbed_official 489:119543c9f674 195 ENDP
mbed_official 489:119543c9f674 196 PendSV_Handler PROC
mbed_official 489:119543c9f674 197 EXPORT PendSV_Handler [WEAK]
mbed_official 489:119543c9f674 198 B .
mbed_official 489:119543c9f674 199 ENDP
mbed_official 489:119543c9f674 200 SysTick_Handler PROC
mbed_official 489:119543c9f674 201 EXPORT SysTick_Handler [WEAK]
mbed_official 489:119543c9f674 202 B .
mbed_official 489:119543c9f674 203 ENDP
mbed_official 489:119543c9f674 204
mbed_official 489:119543c9f674 205 Default_Handler PROC
mbed_official 489:119543c9f674 206
mbed_official 489:119543c9f674 207 EXPORT WWDG_IRQHandler [WEAK]
mbed_official 489:119543c9f674 208 EXPORT PVD_IRQHandler [WEAK]
mbed_official 489:119543c9f674 209 EXPORT TAMPER_IRQHandler [WEAK]
mbed_official 489:119543c9f674 210 EXPORT RTC_IRQHandler [WEAK]
mbed_official 489:119543c9f674 211 EXPORT FLASH_IRQHandler [WEAK]
mbed_official 489:119543c9f674 212 EXPORT RCC_IRQHandler [WEAK]
mbed_official 489:119543c9f674 213 EXPORT EXTI0_IRQHandler [WEAK]
mbed_official 489:119543c9f674 214 EXPORT EXTI1_IRQHandler [WEAK]
mbed_official 489:119543c9f674 215 EXPORT EXTI2_IRQHandler [WEAK]
mbed_official 489:119543c9f674 216 EXPORT EXTI3_IRQHandler [WEAK]
mbed_official 489:119543c9f674 217 EXPORT EXTI4_IRQHandler [WEAK]
mbed_official 489:119543c9f674 218 EXPORT DMA1_Channel1_IRQHandler [WEAK]
mbed_official 489:119543c9f674 219 EXPORT DMA1_Channel2_IRQHandler [WEAK]
mbed_official 489:119543c9f674 220 EXPORT DMA1_Channel3_IRQHandler [WEAK]
mbed_official 489:119543c9f674 221 EXPORT DMA1_Channel4_IRQHandler [WEAK]
mbed_official 489:119543c9f674 222 EXPORT DMA1_Channel5_IRQHandler [WEAK]
mbed_official 489:119543c9f674 223 EXPORT DMA1_Channel6_IRQHandler [WEAK]
mbed_official 489:119543c9f674 224 EXPORT DMA1_Channel7_IRQHandler [WEAK]
mbed_official 489:119543c9f674 225 EXPORT ADC1_2_IRQHandler [WEAK]
mbed_official 489:119543c9f674 226 EXPORT USB_HP_CAN1_TX_IRQHandler [WEAK]
mbed_official 489:119543c9f674 227 EXPORT USB_LP_CAN1_RX0_IRQHandler [WEAK]
mbed_official 489:119543c9f674 228 EXPORT CAN1_RX1_IRQHandler [WEAK]
mbed_official 489:119543c9f674 229 EXPORT CAN1_SCE_IRQHandler [WEAK]
mbed_official 489:119543c9f674 230 EXPORT EXTI9_5_IRQHandler [WEAK]
mbed_official 489:119543c9f674 231 EXPORT TIM1_BRK_IRQHandler [WEAK]
mbed_official 489:119543c9f674 232 EXPORT TIM1_UP_IRQHandler [WEAK]
mbed_official 489:119543c9f674 233 EXPORT TIM1_TRG_COM_IRQHandler [WEAK]
mbed_official 489:119543c9f674 234 EXPORT TIM1_CC_IRQHandler [WEAK]
mbed_official 489:119543c9f674 235 EXPORT TIM2_IRQHandler [WEAK]
mbed_official 489:119543c9f674 236 EXPORT TIM3_IRQHandler [WEAK]
mbed_official 489:119543c9f674 237 EXPORT TIM4_IRQHandler [WEAK]
mbed_official 489:119543c9f674 238 EXPORT I2C1_EV_IRQHandler [WEAK]
mbed_official 489:119543c9f674 239 EXPORT I2C1_ER_IRQHandler [WEAK]
mbed_official 489:119543c9f674 240 EXPORT I2C2_EV_IRQHandler [WEAK]
mbed_official 489:119543c9f674 241 EXPORT I2C2_ER_IRQHandler [WEAK]
mbed_official 489:119543c9f674 242 EXPORT SPI1_IRQHandler [WEAK]
mbed_official 489:119543c9f674 243 EXPORT SPI2_IRQHandler [WEAK]
mbed_official 489:119543c9f674 244 EXPORT USART1_IRQHandler [WEAK]
mbed_official 489:119543c9f674 245 EXPORT USART2_IRQHandler [WEAK]
mbed_official 489:119543c9f674 246 EXPORT USART3_IRQHandler [WEAK]
mbed_official 489:119543c9f674 247 EXPORT EXTI15_10_IRQHandler [WEAK]
mbed_official 489:119543c9f674 248 EXPORT RTC_Alarm_IRQHandler [WEAK]
mbed_official 489:119543c9f674 249 EXPORT USBWakeUp_IRQHandler [WEAK]
mbed_official 489:119543c9f674 250
mbed_official 489:119543c9f674 251 WWDG_IRQHandler
mbed_official 489:119543c9f674 252 PVD_IRQHandler
mbed_official 489:119543c9f674 253 TAMPER_IRQHandler
mbed_official 489:119543c9f674 254 RTC_IRQHandler
mbed_official 489:119543c9f674 255 FLASH_IRQHandler
mbed_official 489:119543c9f674 256 RCC_IRQHandler
mbed_official 489:119543c9f674 257 EXTI0_IRQHandler
mbed_official 489:119543c9f674 258 EXTI1_IRQHandler
mbed_official 489:119543c9f674 259 EXTI2_IRQHandler
mbed_official 489:119543c9f674 260 EXTI3_IRQHandler
mbed_official 489:119543c9f674 261 EXTI4_IRQHandler
mbed_official 489:119543c9f674 262 DMA1_Channel1_IRQHandler
mbed_official 489:119543c9f674 263 DMA1_Channel2_IRQHandler
mbed_official 489:119543c9f674 264 DMA1_Channel3_IRQHandler
mbed_official 489:119543c9f674 265 DMA1_Channel4_IRQHandler
mbed_official 489:119543c9f674 266 DMA1_Channel5_IRQHandler
mbed_official 489:119543c9f674 267 DMA1_Channel6_IRQHandler
mbed_official 489:119543c9f674 268 DMA1_Channel7_IRQHandler
mbed_official 489:119543c9f674 269 ADC1_2_IRQHandler
mbed_official 489:119543c9f674 270 USB_HP_CAN1_TX_IRQHandler
mbed_official 489:119543c9f674 271 USB_LP_CAN1_RX0_IRQHandler
mbed_official 489:119543c9f674 272 CAN1_RX1_IRQHandler
mbed_official 489:119543c9f674 273 CAN1_SCE_IRQHandler
mbed_official 489:119543c9f674 274 EXTI9_5_IRQHandler
mbed_official 489:119543c9f674 275 TIM1_BRK_IRQHandler
mbed_official 489:119543c9f674 276 TIM1_UP_IRQHandler
mbed_official 489:119543c9f674 277 TIM1_TRG_COM_IRQHandler
mbed_official 489:119543c9f674 278 TIM1_CC_IRQHandler
mbed_official 489:119543c9f674 279 TIM2_IRQHandler
mbed_official 489:119543c9f674 280 TIM3_IRQHandler
mbed_official 489:119543c9f674 281 TIM4_IRQHandler
mbed_official 489:119543c9f674 282 I2C1_EV_IRQHandler
mbed_official 489:119543c9f674 283 I2C1_ER_IRQHandler
mbed_official 489:119543c9f674 284 I2C2_EV_IRQHandler
mbed_official 489:119543c9f674 285 I2C2_ER_IRQHandler
mbed_official 489:119543c9f674 286 SPI1_IRQHandler
mbed_official 489:119543c9f674 287 SPI2_IRQHandler
mbed_official 489:119543c9f674 288 USART1_IRQHandler
mbed_official 489:119543c9f674 289 USART2_IRQHandler
mbed_official 489:119543c9f674 290 USART3_IRQHandler
mbed_official 489:119543c9f674 291 EXTI15_10_IRQHandler
mbed_official 489:119543c9f674 292 RTC_Alarm_IRQHandler
mbed_official 489:119543c9f674 293 USBWakeUp_IRQHandler
mbed_official 489:119543c9f674 294
mbed_official 489:119543c9f674 295 B .
mbed_official 489:119543c9f674 296
mbed_official 489:119543c9f674 297 ENDP
mbed_official 489:119543c9f674 298
mbed_official 489:119543c9f674 299 ALIGN
mbed_official 489:119543c9f674 300 END