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