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 Sep 28 14:00:11 2015 +0100
Revision:
632:7687fb9c4f91
Synchronized with git revision f7ce4ed029cc611121464252ff28d5e8beb895b0

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

NUCLEO_F303K8 - add support of the STM32F303K8

Who changed what in which revision?

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