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_STM32F3/TARGET_NUCLEO_F334R8/TOOLCHAIN_IAR/startup_stm32f334x8.s@385:be64abf45658
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 378:be043393235b 1 ;/******************** (C) COPYRIGHT 2014 STMicroelectronics ********************
mbed_official 378:be043393235b 2 ;* File Name : startup_stm32f334x8.s
mbed_official 378:be043393235b 3 ;* Author : MCD Application Team
mbed_official 378:be043393235b 4 ;* Version : V2.1.0
mbed_official 378:be043393235b 5 ;* Date : 12-Sept-2014
mbed_official 378:be043393235b 6 ;* Description : STM32F334x4/STM32F334x6/STM32F334x8 devices vector table for EWARM toolchain.
mbed_official 378:be043393235b 7 ;* This module performs:
mbed_official 378:be043393235b 8 ;* - Set the initial SP
mbed_official 378:be043393235b 9 ;* - Set the initial PC == _iar_program_start,
mbed_official 378:be043393235b 10 ;* - Set the vector table entries with the exceptions ISR
mbed_official 378:be043393235b 11 ;* address.
mbed_official 378:be043393235b 12 ;* - Branches to main in the C library (which eventually
mbed_official 378:be043393235b 13 ;* calls main()).
mbed_official 378:be043393235b 14 ;* After Reset the Cortex-M4 processor is in Thread mode,
mbed_official 378:be043393235b 15 ;* priority is Privileged, and the Stack is set to Main.
mbed_official 378:be043393235b 16 ;********************************************************************************
mbed_official 378:be043393235b 17 ;*
mbed_official 378:be043393235b 18 ;* <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
mbed_official 378:be043393235b 19 ;*
mbed_official 378:be043393235b 20 ;* Redistribution and use in source and binary forms, with or without modification,
mbed_official 378:be043393235b 21 ;* are permitted provided that the following conditions are met:
mbed_official 378:be043393235b 22 ;* 1. Redistributions of source code must retain the above copyright notice,
mbed_official 378:be043393235b 23 ;* this list of conditions and the following disclaimer.
mbed_official 378:be043393235b 24 ;* 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 378:be043393235b 25 ;* this list of conditions and the following disclaimer in the documentation
mbed_official 378:be043393235b 26 ;* and/or other materials provided with the distribution.
mbed_official 378:be043393235b 27 ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 378:be043393235b 28 ;* may be used to endorse or promote products derived from this software
mbed_official 378:be043393235b 29 ;* without specific prior written permission.
mbed_official 378:be043393235b 30 ;*
mbed_official 378:be043393235b 31 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 378:be043393235b 32 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 378:be043393235b 33 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 378:be043393235b 34 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 378:be043393235b 35 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 378:be043393235b 36 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 378:be043393235b 37 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 378:be043393235b 38 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 378:be043393235b 39 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 378:be043393235b 40 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 378:be043393235b 41 ;*
mbed_official 378:be043393235b 42 ;*******************************************************************************
mbed_official 378:be043393235b 43 ;
mbed_official 378:be043393235b 44 ;
mbed_official 378:be043393235b 45 ; The modules in this file are included in the libraries, and may be replaced
mbed_official 378:be043393235b 46 ; by any user-defined modules that define the PUBLIC symbol _program_start or
mbed_official 378:be043393235b 47 ; a user defined start symbol.
mbed_official 378:be043393235b 48 ; To override the cstartup defined in the library, simply add your modified
mbed_official 378:be043393235b 49 ; version to the workbench project.
mbed_official 378:be043393235b 50 ;
mbed_official 378:be043393235b 51 ; The vector table is normally located at address 0.
mbed_official 378:be043393235b 52 ; When debugging in RAM, it can be located in RAM, aligned to at least 2^6.
mbed_official 378:be043393235b 53 ; The name "__vector_table" has special meaning for C-SPY:
mbed_official 378:be043393235b 54 ; it is where the SP start value is found, and the NVIC vector
mbed_official 378:be043393235b 55 ; table register (VTOR) is initialized to this address if != 0.
mbed_official 378:be043393235b 56 ;
mbed_official 378:be043393235b 57 ; Cortex-M version
mbed_official 378:be043393235b 58 ;
mbed_official 378:be043393235b 59
mbed_official 378:be043393235b 60 MODULE ?cstartup
mbed_official 378:be043393235b 61
mbed_official 378:be043393235b 62 ;; Forward declaration of sections.
mbed_official 378:be043393235b 63 SECTION CSTACK:DATA:NOROOT(3)
mbed_official 378:be043393235b 64
mbed_official 378:be043393235b 65 SECTION .intvec:CODE:NOROOT(2)
mbed_official 378:be043393235b 66
mbed_official 378:be043393235b 67 EXTERN __iar_program_start
mbed_official 378:be043393235b 68 EXTERN SystemInit
mbed_official 378:be043393235b 69 PUBLIC __vector_table
mbed_official 378:be043393235b 70
mbed_official 378:be043393235b 71 DATA
mbed_official 378:be043393235b 72 __vector_table
mbed_official 378:be043393235b 73 DCD sfe(CSTACK)
mbed_official 378:be043393235b 74 DCD Reset_Handler ; Reset Handler
mbed_official 378:be043393235b 75
mbed_official 378:be043393235b 76 DCD NMI_Handler ; NMI Handler
mbed_official 378:be043393235b 77 DCD HardFault_Handler ; Hard Fault Handler
mbed_official 378:be043393235b 78 DCD MemManage_Handler ; MPU Fault Handler
mbed_official 378:be043393235b 79 DCD BusFault_Handler ; Bus Fault Handler
mbed_official 378:be043393235b 80 DCD UsageFault_Handler ; Usage Fault Handler
mbed_official 378:be043393235b 81 DCD 0 ; Reserved
mbed_official 378:be043393235b 82 DCD 0 ; Reserved
mbed_official 378:be043393235b 83 DCD 0 ; Reserved
mbed_official 378:be043393235b 84 DCD 0 ; Reserved
mbed_official 378:be043393235b 85 DCD SVC_Handler ; SVCall Handler
mbed_official 378:be043393235b 86 DCD DebugMon_Handler ; Debug Monitor Handler
mbed_official 378:be043393235b 87 DCD 0 ; Reserved
mbed_official 378:be043393235b 88 DCD PendSV_Handler ; PendSV Handler
mbed_official 378:be043393235b 89 DCD SysTick_Handler ; SysTick Handler
mbed_official 378:be043393235b 90
mbed_official 378:be043393235b 91 ; External Interrupts
mbed_official 378:be043393235b 92 DCD WWDG_IRQHandler ; Window WatchDog
mbed_official 378:be043393235b 93 DCD PVD_IRQHandler ; PVD through EXTI Line detection
mbed_official 378:be043393235b 94 DCD TAMP_STAMP_IRQHandler ; Tamper and TimeStamps through the EXTI line
mbed_official 378:be043393235b 95 DCD RTC_WKUP_IRQHandler ; RTC Wakeup through the EXTI line
mbed_official 378:be043393235b 96 DCD FLASH_IRQHandler ; FLASH
mbed_official 378:be043393235b 97 DCD RCC_IRQHandler ; RCC
mbed_official 378:be043393235b 98 DCD EXTI0_IRQHandler ; EXTI Line0
mbed_official 378:be043393235b 99 DCD EXTI1_IRQHandler ; EXTI Line1
mbed_official 378:be043393235b 100 DCD EXTI2_TSC_IRQHandler ; EXTI Line2 and Touch Sense controller
mbed_official 378:be043393235b 101 DCD EXTI3_IRQHandler ; EXTI Line3
mbed_official 378:be043393235b 102 DCD EXTI4_IRQHandler ; EXTI Line4
mbed_official 378:be043393235b 103 DCD DMA1_Channel1_IRQHandler ; DMA1 Channel 1
mbed_official 378:be043393235b 104 DCD DMA1_Channel2_IRQHandler ; DMA1 Channel 2
mbed_official 378:be043393235b 105 DCD DMA1_Channel3_IRQHandler ; DMA1 Channel 3
mbed_official 378:be043393235b 106 DCD DMA1_Channel4_IRQHandler ; DMA1 Channel 4
mbed_official 378:be043393235b 107 DCD DMA1_Channel5_IRQHandler ; DMA1 Channel 5
mbed_official 378:be043393235b 108 DCD DMA1_Channel6_IRQHandler ; DMA1 Channel 6
mbed_official 378:be043393235b 109 DCD DMA1_Channel7_IRQHandler ; DMA1 Channel 7
mbed_official 378:be043393235b 110 DCD ADC1_2_IRQHandler ; ADC1 and ADC2
mbed_official 378:be043393235b 111 DCD CAN_TX_IRQHandler ; CAN TX
mbed_official 378:be043393235b 112 DCD CAN_RX0_IRQHandler ; CAN RX0
mbed_official 378:be043393235b 113 DCD CAN_RX1_IRQHandler ; CAN RX1
mbed_official 378:be043393235b 114 DCD CAN_SCE_IRQHandler ; CAN SCE
mbed_official 378:be043393235b 115 DCD EXTI9_5_IRQHandler ; External Line[9:5]s
mbed_official 378:be043393235b 116 DCD TIM1_BRK_TIM15_IRQHandler ; TIM1 Break and TIM15
mbed_official 378:be043393235b 117 DCD TIM1_UP_TIM16_IRQHandler ; TIM1 Update and TIM16
mbed_official 378:be043393235b 118 DCD TIM1_TRG_COM_TIM17_IRQHandler ; TIM1 Trigger and Commutation and TIM17
mbed_official 378:be043393235b 119 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
mbed_official 378:be043393235b 120 DCD TIM2_IRQHandler ; TIM2
mbed_official 378:be043393235b 121 DCD TIM3_IRQHandler ; TIM3
mbed_official 378:be043393235b 122 DCD 0 ; Reserved
mbed_official 378:be043393235b 123 DCD I2C1_EV_IRQHandler ; I2C1 Event
mbed_official 378:be043393235b 124 DCD I2C1_ER_IRQHandler ; I2C1 Error
mbed_official 378:be043393235b 125 DCD 0 ; Reserved
mbed_official 378:be043393235b 126 DCD 0 ; Reserved
mbed_official 378:be043393235b 127 DCD SPI1_IRQHandler ; SPI1
mbed_official 378:be043393235b 128 DCD 0 ; Reserved
mbed_official 378:be043393235b 129 DCD USART1_IRQHandler ; USART1
mbed_official 378:be043393235b 130 DCD USART2_IRQHandler ; USART2
mbed_official 378:be043393235b 131 DCD USART3_IRQHandler ; USART3
mbed_official 378:be043393235b 132 DCD EXTI15_10_IRQHandler ; External Line[15:10]s
mbed_official 378:be043393235b 133 DCD RTC_Alarm_IRQHandler ; RTC Alarm (A and B) through EXTI Line
mbed_official 378:be043393235b 134 DCD 0 ; Reserved
mbed_official 378:be043393235b 135 DCD 0 ; Reserved
mbed_official 378:be043393235b 136 DCD 0 ; Reserved
mbed_official 378:be043393235b 137 DCD 0 ; Reserved
mbed_official 378:be043393235b 138 DCD 0 ; Reserved
mbed_official 378:be043393235b 139 DCD 0 ; Reserved
mbed_official 378:be043393235b 140 DCD 0 ; Reserved
mbed_official 378:be043393235b 141 DCD 0 ; Reserved
mbed_official 378:be043393235b 142 DCD 0 ; Reserved
mbed_official 378:be043393235b 143 DCD 0 ; Reserved
mbed_official 378:be043393235b 144 DCD 0 ; Reserved
mbed_official 378:be043393235b 145 DCD 0 ; Reserved
mbed_official 378:be043393235b 146 DCD TIM6_DAC1_IRQHandler ; TIM6 and DAC1 underrun errors
mbed_official 378:be043393235b 147 DCD TIM7_DAC2_IRQHandler ; TIM7 and DAC2 underrun errors
mbed_official 378:be043393235b 148 DCD 0 ; Reserved
mbed_official 378:be043393235b 149 DCD 0 ; Reserved
mbed_official 378:be043393235b 150 DCD 0 ; Reserved
mbed_official 378:be043393235b 151 DCD 0 ; Reserved
mbed_official 378:be043393235b 152 DCD 0 ; Reserved
mbed_official 378:be043393235b 153 DCD 0 ; Reserved
mbed_official 378:be043393235b 154 DCD 0 ; Reserved
mbed_official 378:be043393235b 155 DCD 0 ; Reserved
mbed_official 378:be043393235b 156 DCD COMP2_IRQHandler ; COMP2
mbed_official 378:be043393235b 157 DCD COMP4_6_IRQHandler ; COMP4 and COMP6
mbed_official 378:be043393235b 158 DCD 0 ; Reserved
mbed_official 378:be043393235b 159 DCD HRTIM1_Master_IRQHandler ; HRTIM1 master timer
mbed_official 378:be043393235b 160 DCD HRTIM1_TIMA_IRQHandler ; HRTIM1 timer A
mbed_official 378:be043393235b 161 DCD HRTIM1_TIMB_IRQHandler ; HRTIM1 timer B
mbed_official 378:be043393235b 162 DCD HRTIM1_TIMC_IRQHandler ; HRTIM1 timer C
mbed_official 378:be043393235b 163 DCD HRTIM1_TIMD_IRQHandler ; HRTIM1 timer D
mbed_official 378:be043393235b 164 DCD HRTIM1_TIME_IRQHandler ; HRTIM1 timer E
mbed_official 378:be043393235b 165 DCD HRTIM1_FLT_IRQHandler ; HRTIM1 fault
mbed_official 378:be043393235b 166 DCD 0 ; Reserved
mbed_official 378:be043393235b 167 DCD 0 ; Reserved
mbed_official 378:be043393235b 168 DCD 0 ; Reserved
mbed_official 378:be043393235b 169 DCD 0 ; Reserved
mbed_official 378:be043393235b 170 DCD 0 ; Reserved
mbed_official 378:be043393235b 171 DCD 0 ; Reserved
mbed_official 378:be043393235b 172 DCD 0 ; Reserved
mbed_official 378:be043393235b 173 DCD FPU_IRQHandler ; FPU
mbed_official 378:be043393235b 174
mbed_official 378:be043393235b 175 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mbed_official 378:be043393235b 176 ;;
mbed_official 378:be043393235b 177 ;; Default interrupt handlers.
mbed_official 378:be043393235b 178 ;;
mbed_official 378:be043393235b 179 THUMB
mbed_official 378:be043393235b 180 PUBWEAK Reset_Handler
mbed_official 378:be043393235b 181 SECTION .text:CODE:NOROOT:REORDER(2)
mbed_official 378:be043393235b 182 Reset_Handler
mbed_official 378:be043393235b 183
mbed_official 378:be043393235b 184 LDR R0, =SystemInit
mbed_official 378:be043393235b 185 BLX R0
mbed_official 378:be043393235b 186 LDR R0, =__iar_program_start
mbed_official 378:be043393235b 187 BX R0
mbed_official 378:be043393235b 188
mbed_official 378:be043393235b 189 PUBWEAK NMI_Handler
mbed_official 378:be043393235b 190 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 191 NMI_Handler
mbed_official 378:be043393235b 192 B NMI_Handler
mbed_official 378:be043393235b 193
mbed_official 378:be043393235b 194 PUBWEAK HardFault_Handler
mbed_official 378:be043393235b 195 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 196 HardFault_Handler
mbed_official 378:be043393235b 197 B HardFault_Handler
mbed_official 378:be043393235b 198
mbed_official 378:be043393235b 199 PUBWEAK MemManage_Handler
mbed_official 378:be043393235b 200 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 201 MemManage_Handler
mbed_official 378:be043393235b 202 B MemManage_Handler
mbed_official 378:be043393235b 203
mbed_official 378:be043393235b 204 PUBWEAK BusFault_Handler
mbed_official 378:be043393235b 205 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 206 BusFault_Handler
mbed_official 378:be043393235b 207 B BusFault_Handler
mbed_official 378:be043393235b 208
mbed_official 378:be043393235b 209 PUBWEAK UsageFault_Handler
mbed_official 378:be043393235b 210 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 211 UsageFault_Handler
mbed_official 378:be043393235b 212 B UsageFault_Handler
mbed_official 378:be043393235b 213
mbed_official 378:be043393235b 214 PUBWEAK SVC_Handler
mbed_official 378:be043393235b 215 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 216 SVC_Handler
mbed_official 378:be043393235b 217 B SVC_Handler
mbed_official 378:be043393235b 218
mbed_official 378:be043393235b 219 PUBWEAK DebugMon_Handler
mbed_official 378:be043393235b 220 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 221 DebugMon_Handler
mbed_official 378:be043393235b 222 B DebugMon_Handler
mbed_official 378:be043393235b 223
mbed_official 378:be043393235b 224 PUBWEAK PendSV_Handler
mbed_official 378:be043393235b 225 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 226 PendSV_Handler
mbed_official 378:be043393235b 227 B PendSV_Handler
mbed_official 378:be043393235b 228
mbed_official 378:be043393235b 229 PUBWEAK SysTick_Handler
mbed_official 378:be043393235b 230 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 231 SysTick_Handler
mbed_official 378:be043393235b 232 B SysTick_Handler
mbed_official 378:be043393235b 233
mbed_official 378:be043393235b 234 PUBWEAK WWDG_IRQHandler
mbed_official 378:be043393235b 235 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 236 WWDG_IRQHandler
mbed_official 378:be043393235b 237 B WWDG_IRQHandler
mbed_official 378:be043393235b 238
mbed_official 378:be043393235b 239 PUBWEAK PVD_IRQHandler
mbed_official 378:be043393235b 240 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 241 PVD_IRQHandler
mbed_official 378:be043393235b 242 B PVD_IRQHandler
mbed_official 378:be043393235b 243
mbed_official 378:be043393235b 244 PUBWEAK TAMP_STAMP_IRQHandler
mbed_official 378:be043393235b 245 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 246 TAMP_STAMP_IRQHandler
mbed_official 378:be043393235b 247 B TAMP_STAMP_IRQHandler
mbed_official 378:be043393235b 248
mbed_official 378:be043393235b 249 PUBWEAK RTC_WKUP_IRQHandler
mbed_official 378:be043393235b 250 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 251 RTC_WKUP_IRQHandler
mbed_official 378:be043393235b 252 B RTC_WKUP_IRQHandler
mbed_official 378:be043393235b 253
mbed_official 378:be043393235b 254 PUBWEAK FLASH_IRQHandler
mbed_official 378:be043393235b 255 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 256 FLASH_IRQHandler
mbed_official 378:be043393235b 257 B FLASH_IRQHandler
mbed_official 378:be043393235b 258
mbed_official 378:be043393235b 259 PUBWEAK RCC_IRQHandler
mbed_official 378:be043393235b 260 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 261 RCC_IRQHandler
mbed_official 378:be043393235b 262 B RCC_IRQHandler
mbed_official 378:be043393235b 263
mbed_official 378:be043393235b 264 PUBWEAK EXTI0_IRQHandler
mbed_official 378:be043393235b 265 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 266 EXTI0_IRQHandler
mbed_official 378:be043393235b 267 B EXTI0_IRQHandler
mbed_official 378:be043393235b 268
mbed_official 378:be043393235b 269 PUBWEAK EXTI1_IRQHandler
mbed_official 378:be043393235b 270 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 271 EXTI1_IRQHandler
mbed_official 378:be043393235b 272 B EXTI1_IRQHandler
mbed_official 378:be043393235b 273
mbed_official 378:be043393235b 274 PUBWEAK EXTI2_TSC_IRQHandler
mbed_official 378:be043393235b 275 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 276 EXTI2_TSC_IRQHandler
mbed_official 378:be043393235b 277 B EXTI2_TSC_IRQHandler
mbed_official 378:be043393235b 278
mbed_official 378:be043393235b 279 PUBWEAK EXTI3_IRQHandler
mbed_official 378:be043393235b 280 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 281 EXTI3_IRQHandler
mbed_official 378:be043393235b 282 B EXTI3_IRQHandler
mbed_official 378:be043393235b 283
mbed_official 378:be043393235b 284 PUBWEAK EXTI4_IRQHandler
mbed_official 378:be043393235b 285 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 286 EXTI4_IRQHandler
mbed_official 378:be043393235b 287 B EXTI4_IRQHandler
mbed_official 378:be043393235b 288
mbed_official 378:be043393235b 289 PUBWEAK DMA1_Channel1_IRQHandler
mbed_official 378:be043393235b 290 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 291 DMA1_Channel1_IRQHandler
mbed_official 378:be043393235b 292 B DMA1_Channel1_IRQHandler
mbed_official 378:be043393235b 293
mbed_official 378:be043393235b 294 PUBWEAK DMA1_Channel2_IRQHandler
mbed_official 378:be043393235b 295 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 296 DMA1_Channel2_IRQHandler
mbed_official 378:be043393235b 297 B DMA1_Channel2_IRQHandler
mbed_official 378:be043393235b 298
mbed_official 378:be043393235b 299 PUBWEAK DMA1_Channel3_IRQHandler
mbed_official 378:be043393235b 300 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 301 DMA1_Channel3_IRQHandler
mbed_official 378:be043393235b 302 B DMA1_Channel3_IRQHandler
mbed_official 378:be043393235b 303
mbed_official 378:be043393235b 304 PUBWEAK DMA1_Channel4_IRQHandler
mbed_official 378:be043393235b 305 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 306 DMA1_Channel4_IRQHandler
mbed_official 378:be043393235b 307 B DMA1_Channel4_IRQHandler
mbed_official 378:be043393235b 308
mbed_official 378:be043393235b 309 PUBWEAK DMA1_Channel5_IRQHandler
mbed_official 378:be043393235b 310 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 311 DMA1_Channel5_IRQHandler
mbed_official 378:be043393235b 312 B DMA1_Channel5_IRQHandler
mbed_official 378:be043393235b 313
mbed_official 378:be043393235b 314 PUBWEAK DMA1_Channel6_IRQHandler
mbed_official 378:be043393235b 315 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 316 DMA1_Channel6_IRQHandler
mbed_official 378:be043393235b 317 B DMA1_Channel6_IRQHandler
mbed_official 378:be043393235b 318
mbed_official 378:be043393235b 319 PUBWEAK DMA1_Channel7_IRQHandler
mbed_official 378:be043393235b 320 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 321 DMA1_Channel7_IRQHandler
mbed_official 378:be043393235b 322 B DMA1_Channel7_IRQHandler
mbed_official 378:be043393235b 323
mbed_official 378:be043393235b 324 PUBWEAK ADC1_2_IRQHandler
mbed_official 378:be043393235b 325 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 326 ADC1_2_IRQHandler
mbed_official 378:be043393235b 327 B ADC1_2_IRQHandler
mbed_official 378:be043393235b 328
mbed_official 378:be043393235b 329 PUBWEAK CAN_TX_IRQHandler
mbed_official 378:be043393235b 330 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 331 CAN_TX_IRQHandler
mbed_official 378:be043393235b 332 B CAN_TX_IRQHandler
mbed_official 378:be043393235b 333
mbed_official 378:be043393235b 334 PUBWEAK CAN_RX0_IRQHandler
mbed_official 378:be043393235b 335 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 336 CAN_RX0_IRQHandler
mbed_official 378:be043393235b 337 B CAN_RX0_IRQHandler
mbed_official 378:be043393235b 338
mbed_official 378:be043393235b 339 PUBWEAK CAN_RX1_IRQHandler
mbed_official 378:be043393235b 340 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 341 CAN_RX1_IRQHandler
mbed_official 378:be043393235b 342 B CAN_RX1_IRQHandler
mbed_official 378:be043393235b 343
mbed_official 378:be043393235b 344 PUBWEAK CAN_SCE_IRQHandler
mbed_official 378:be043393235b 345 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 346 CAN_SCE_IRQHandler
mbed_official 378:be043393235b 347 B CAN_SCE_IRQHandler
mbed_official 378:be043393235b 348
mbed_official 378:be043393235b 349 PUBWEAK EXTI9_5_IRQHandler
mbed_official 378:be043393235b 350 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 351 EXTI9_5_IRQHandler
mbed_official 378:be043393235b 352 B EXTI9_5_IRQHandler
mbed_official 378:be043393235b 353
mbed_official 378:be043393235b 354 PUBWEAK TIM1_BRK_TIM15_IRQHandler
mbed_official 378:be043393235b 355 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 356 TIM1_BRK_TIM15_IRQHandler
mbed_official 378:be043393235b 357 B TIM1_BRK_TIM15_IRQHandler
mbed_official 378:be043393235b 358
mbed_official 378:be043393235b 359 PUBWEAK TIM1_UP_TIM16_IRQHandler
mbed_official 378:be043393235b 360 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 361 TIM1_UP_TIM16_IRQHandler
mbed_official 378:be043393235b 362 B TIM1_UP_TIM16_IRQHandler
mbed_official 378:be043393235b 363
mbed_official 378:be043393235b 364 PUBWEAK TIM1_TRG_COM_TIM17_IRQHandler
mbed_official 378:be043393235b 365 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 366 TIM1_TRG_COM_TIM17_IRQHandler
mbed_official 378:be043393235b 367 B TIM1_TRG_COM_TIM17_IRQHandler
mbed_official 378:be043393235b 368
mbed_official 378:be043393235b 369 PUBWEAK TIM1_CC_IRQHandler
mbed_official 378:be043393235b 370 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 371 TIM1_CC_IRQHandler
mbed_official 378:be043393235b 372 B TIM1_CC_IRQHandler
mbed_official 378:be043393235b 373
mbed_official 378:be043393235b 374 PUBWEAK TIM2_IRQHandler
mbed_official 378:be043393235b 375 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 376 TIM2_IRQHandler
mbed_official 378:be043393235b 377 B TIM2_IRQHandler
mbed_official 378:be043393235b 378
mbed_official 378:be043393235b 379 PUBWEAK TIM3_IRQHandler
mbed_official 378:be043393235b 380 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 381 TIM3_IRQHandler
mbed_official 378:be043393235b 382 B TIM3_IRQHandler
mbed_official 378:be043393235b 383
mbed_official 378:be043393235b 384 PUBWEAK I2C1_EV_IRQHandler
mbed_official 378:be043393235b 385 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 386 I2C1_EV_IRQHandler
mbed_official 378:be043393235b 387 B I2C1_EV_IRQHandler
mbed_official 378:be043393235b 388
mbed_official 378:be043393235b 389 PUBWEAK I2C1_ER_IRQHandler
mbed_official 378:be043393235b 390 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 391 I2C1_ER_IRQHandler
mbed_official 378:be043393235b 392 B I2C1_ER_IRQHandler
mbed_official 378:be043393235b 393
mbed_official 378:be043393235b 394 PUBWEAK SPI1_IRQHandler
mbed_official 378:be043393235b 395 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 396 SPI1_IRQHandler
mbed_official 378:be043393235b 397 B SPI1_IRQHandler
mbed_official 378:be043393235b 398
mbed_official 378:be043393235b 399 PUBWEAK USART1_IRQHandler
mbed_official 378:be043393235b 400 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 401 USART1_IRQHandler
mbed_official 378:be043393235b 402 B USART1_IRQHandler
mbed_official 378:be043393235b 403
mbed_official 378:be043393235b 404 PUBWEAK USART2_IRQHandler
mbed_official 378:be043393235b 405 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 406 USART2_IRQHandler
mbed_official 378:be043393235b 407 B USART2_IRQHandler
mbed_official 378:be043393235b 408
mbed_official 378:be043393235b 409 PUBWEAK USART3_IRQHandler
mbed_official 378:be043393235b 410 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 411 USART3_IRQHandler
mbed_official 378:be043393235b 412 B USART3_IRQHandler
mbed_official 378:be043393235b 413
mbed_official 378:be043393235b 414 PUBWEAK EXTI15_10_IRQHandler
mbed_official 378:be043393235b 415 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 416 EXTI15_10_IRQHandler
mbed_official 378:be043393235b 417 B EXTI15_10_IRQHandler
mbed_official 378:be043393235b 418
mbed_official 378:be043393235b 419 PUBWEAK RTC_Alarm_IRQHandler
mbed_official 378:be043393235b 420 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 421 RTC_Alarm_IRQHandler
mbed_official 378:be043393235b 422 B RTC_Alarm_IRQHandler
mbed_official 378:be043393235b 423
mbed_official 378:be043393235b 424 PUBWEAK TIM6_DAC1_IRQHandler
mbed_official 378:be043393235b 425 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 426 TIM6_DAC1_IRQHandler
mbed_official 378:be043393235b 427 B TIM6_DAC1_IRQHandler
mbed_official 378:be043393235b 428
mbed_official 378:be043393235b 429 PUBWEAK TIM7_DAC2_IRQHandler
mbed_official 378:be043393235b 430 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 431 TIM7_DAC2_IRQHandler
mbed_official 378:be043393235b 432 B TIM7_DAC2_IRQHandler
mbed_official 378:be043393235b 433
mbed_official 378:be043393235b 434 PUBWEAK COMP2_IRQHandler
mbed_official 378:be043393235b 435 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 436 COMP2_IRQHandler
mbed_official 378:be043393235b 437 B COMP2_IRQHandler
mbed_official 378:be043393235b 438
mbed_official 378:be043393235b 439 PUBWEAK COMP4_6_IRQHandler
mbed_official 378:be043393235b 440 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 441 COMP4_6_IRQHandler
mbed_official 378:be043393235b 442 B COMP4_6_IRQHandler
mbed_official 378:be043393235b 443
mbed_official 378:be043393235b 444 PUBWEAK HRTIM1_Master_IRQHandler
mbed_official 378:be043393235b 445 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 446 HRTIM1_Master_IRQHandler
mbed_official 378:be043393235b 447 B HRTIM1_Master_IRQHandler
mbed_official 378:be043393235b 448
mbed_official 378:be043393235b 449 PUBWEAK HRTIM1_TIMA_IRQHandler
mbed_official 378:be043393235b 450 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 451 HRTIM1_TIMA_IRQHandler
mbed_official 378:be043393235b 452 B HRTIM1_TIMA_IRQHandler
mbed_official 378:be043393235b 453
mbed_official 378:be043393235b 454 PUBWEAK HRTIM1_TIMB_IRQHandler
mbed_official 378:be043393235b 455 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 456 HRTIM1_TIMB_IRQHandler
mbed_official 378:be043393235b 457 B HRTIM1_TIMB_IRQHandler
mbed_official 378:be043393235b 458
mbed_official 378:be043393235b 459 PUBWEAK HRTIM1_TIMC_IRQHandler
mbed_official 378:be043393235b 460 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 461 HRTIM1_TIMC_IRQHandler
mbed_official 378:be043393235b 462 B HRTIM1_TIMC_IRQHandler
mbed_official 378:be043393235b 463
mbed_official 378:be043393235b 464 PUBWEAK HRTIM1_TIMD_IRQHandler
mbed_official 378:be043393235b 465 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 466 HRTIM1_TIMD_IRQHandler
mbed_official 378:be043393235b 467 B HRTIM1_TIMD_IRQHandler
mbed_official 378:be043393235b 468
mbed_official 378:be043393235b 469 PUBWEAK HRTIM1_TIME_IRQHandler
mbed_official 378:be043393235b 470 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 471 HRTIM1_TIME_IRQHandler
mbed_official 378:be043393235b 472 B HRTIM1_TIME_IRQHandler
mbed_official 378:be043393235b 473
mbed_official 378:be043393235b 474 PUBWEAK HRTIM1_FLT_IRQHandler
mbed_official 378:be043393235b 475 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 476 HRTIM1_FLT_IRQHandler
mbed_official 378:be043393235b 477 B HRTIM1_FLT_IRQHandler
mbed_official 378:be043393235b 478
mbed_official 378:be043393235b 479 PUBWEAK FPU_IRQHandler
mbed_official 378:be043393235b 480 SECTION .text:CODE:NOROOT:REORDER(1)
mbed_official 378:be043393235b 481 FPU_IRQHandler
mbed_official 378:be043393235b 482 B FPU_IRQHandler
mbed_official 378:be043393235b 483
mbed_official 378:be043393235b 484 END
mbed_official 378:be043393235b 485 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/