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:
Thu Aug 20 10:45:13 2015 +0100
Revision:
613:bc40b8d2aec4
Synchronized with git revision 92ca8c7b60a283b6bb60eb65b183dac1599f0ade

Full URL: https://github.com/mbedmicro/mbed/commit/92ca8c7b60a283b6bb60eb65b183dac1599f0ade/

Nordic: update application start address in GCC linker script

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 613:bc40b8d2aec4 1 ;******************** (C) COPYRIGHT 2015 STMicroelectronics ********************
mbed_official 613:bc40b8d2aec4 2 ;* File Name : startup_stm32f446xx.s
mbed_official 613:bc40b8d2aec4 3 ;* Author : MCD Application Team
mbed_official 613:bc40b8d2aec4 4 ;* Version : V2.3.2
mbed_official 613:bc40b8d2aec4 5 ;* Date : 26-June-2015
mbed_official 613:bc40b8d2aec4 6 ;* Description : STM32F446x devices vector table for MDK-ARM_STD toolchain.
mbed_official 613:bc40b8d2aec4 7 ;* This module performs:
mbed_official 613:bc40b8d2aec4 8 ;* - Set the initial SP
mbed_official 613:bc40b8d2aec4 9 ;* - Set the initial PC == Reset_Handler
mbed_official 613:bc40b8d2aec4 10 ;* - Set the vector table entries with the exceptions ISR address
mbed_official 613:bc40b8d2aec4 11 ;* After Reset the CortexM4 processor is in Thread mode,
mbed_official 613:bc40b8d2aec4 12 ;* priority is Privileged, and the Stack is set to Main.
mbed_official 613:bc40b8d2aec4 13 ;* <<< Use Configuration Wizard in Context Menu >>>
mbed_official 613:bc40b8d2aec4 14 ;*******************************************************************************
mbed_official 613:bc40b8d2aec4 15 ;
mbed_official 613:bc40b8d2aec4 16 ;* Redistribution and use in source and binary forms, with or without modification,
mbed_official 613:bc40b8d2aec4 17 ;* are permitted provided that the following conditions are met:
mbed_official 613:bc40b8d2aec4 18 ;* 1. Redistributions of source code must retain the above copyright notice,
mbed_official 613:bc40b8d2aec4 19 ;* this list of conditions and the following disclaimer.
mbed_official 613:bc40b8d2aec4 20 ;* 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 613:bc40b8d2aec4 21 ;* this list of conditions and the following disclaimer in the documentation
mbed_official 613:bc40b8d2aec4 22 ;* and/or other materials provided with the distribution.
mbed_official 613:bc40b8d2aec4 23 ;* 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 613:bc40b8d2aec4 24 ;* may be used to endorse or promote products derived from this software
mbed_official 613:bc40b8d2aec4 25 ;* without specific prior written permission.
mbed_official 613:bc40b8d2aec4 26 ;*
mbed_official 613:bc40b8d2aec4 27 ;* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 613:bc40b8d2aec4 28 ;* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 613:bc40b8d2aec4 29 ;* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 613:bc40b8d2aec4 30 ;* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 613:bc40b8d2aec4 31 ;* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 613:bc40b8d2aec4 32 ;* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 613:bc40b8d2aec4 33 ;* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 613:bc40b8d2aec4 34 ;* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 613:bc40b8d2aec4 35 ;* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 613:bc40b8d2aec4 36 ;* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 613:bc40b8d2aec4 37 ;
mbed_official 613:bc40b8d2aec4 38 ;*******************************************************************************
mbed_official 613:bc40b8d2aec4 39
mbed_official 613:bc40b8d2aec4 40 __initial_sp EQU 0x20020000 ; Top of RAM
mbed_official 613:bc40b8d2aec4 41
mbed_official 613:bc40b8d2aec4 42 PRESERVE8
mbed_official 613:bc40b8d2aec4 43 THUMB
mbed_official 613:bc40b8d2aec4 44
mbed_official 613:bc40b8d2aec4 45
mbed_official 613:bc40b8d2aec4 46 ; Vector Table Mapped to Address 0 at Reset
mbed_official 613:bc40b8d2aec4 47 AREA RESET, DATA, READONLY
mbed_official 613:bc40b8d2aec4 48 EXPORT __Vectors
mbed_official 613:bc40b8d2aec4 49 EXPORT __Vectors_End
mbed_official 613:bc40b8d2aec4 50 EXPORT __Vectors_Size
mbed_official 613:bc40b8d2aec4 51
mbed_official 613:bc40b8d2aec4 52 __Vectors DCD __initial_sp ; Top of Stack
mbed_official 613:bc40b8d2aec4 53 DCD Reset_Handler ; Reset Handler
mbed_official 613:bc40b8d2aec4 54 DCD NMI_Handler ; NMI Handler
mbed_official 613:bc40b8d2aec4 55 DCD HardFault_Handler ; Hard Fault Handler
mbed_official 613:bc40b8d2aec4 56 DCD MemManage_Handler ; MPU Fault Handler
mbed_official 613:bc40b8d2aec4 57 DCD BusFault_Handler ; Bus Fault Handler
mbed_official 613:bc40b8d2aec4 58 DCD UsageFault_Handler ; Usage Fault Handler
mbed_official 613:bc40b8d2aec4 59 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 60 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 61 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 62 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 63 DCD SVC_Handler ; SVCall Handler
mbed_official 613:bc40b8d2aec4 64 DCD DebugMon_Handler ; Debug Monitor Handler
mbed_official 613:bc40b8d2aec4 65 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 66 DCD PendSV_Handler ; PendSV Handler
mbed_official 613:bc40b8d2aec4 67 DCD SysTick_Handler ; SysTick Handler
mbed_official 613:bc40b8d2aec4 68
mbed_official 613:bc40b8d2aec4 69 ; External Interrupts
mbed_official 613:bc40b8d2aec4 70 DCD WWDG_IRQHandler ; Window WatchDog
mbed_official 613:bc40b8d2aec4 71 DCD PVD_IRQHandler ; PVD through EXTI Line detection
mbed_official 613:bc40b8d2aec4 72 DCD TAMP_STAMP_IRQHandler ; Tamper and TimeStamps through the EXTI line
mbed_official 613:bc40b8d2aec4 73 DCD RTC_WKUP_IRQHandler ; RTC Wakeup through the EXTI line
mbed_official 613:bc40b8d2aec4 74 DCD FLASH_IRQHandler ; FLASH
mbed_official 613:bc40b8d2aec4 75 DCD RCC_IRQHandler ; RCC
mbed_official 613:bc40b8d2aec4 76 DCD EXTI0_IRQHandler ; EXTI Line0
mbed_official 613:bc40b8d2aec4 77 DCD EXTI1_IRQHandler ; EXTI Line1
mbed_official 613:bc40b8d2aec4 78 DCD EXTI2_IRQHandler ; EXTI Line2
mbed_official 613:bc40b8d2aec4 79 DCD EXTI3_IRQHandler ; EXTI Line3
mbed_official 613:bc40b8d2aec4 80 DCD EXTI4_IRQHandler ; EXTI Line4
mbed_official 613:bc40b8d2aec4 81 DCD DMA1_Stream0_IRQHandler ; DMA1 Stream 0
mbed_official 613:bc40b8d2aec4 82 DCD DMA1_Stream1_IRQHandler ; DMA1 Stream 1
mbed_official 613:bc40b8d2aec4 83 DCD DMA1_Stream2_IRQHandler ; DMA1 Stream 2
mbed_official 613:bc40b8d2aec4 84 DCD DMA1_Stream3_IRQHandler ; DMA1 Stream 3
mbed_official 613:bc40b8d2aec4 85 DCD DMA1_Stream4_IRQHandler ; DMA1 Stream 4
mbed_official 613:bc40b8d2aec4 86 DCD DMA1_Stream5_IRQHandler ; DMA1 Stream 5
mbed_official 613:bc40b8d2aec4 87 DCD DMA1_Stream6_IRQHandler ; DMA1 Stream 6
mbed_official 613:bc40b8d2aec4 88 DCD ADC_IRQHandler ; ADC1, ADC2 and ADC3s
mbed_official 613:bc40b8d2aec4 89 DCD CAN1_TX_IRQHandler ; CAN1 TX
mbed_official 613:bc40b8d2aec4 90 DCD CAN1_RX0_IRQHandler ; CAN1 RX0
mbed_official 613:bc40b8d2aec4 91 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
mbed_official 613:bc40b8d2aec4 92 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
mbed_official 613:bc40b8d2aec4 93 DCD EXTI9_5_IRQHandler ; External Line[9:5]s
mbed_official 613:bc40b8d2aec4 94 DCD TIM1_BRK_TIM9_IRQHandler ; TIM1 Break and TIM9
mbed_official 613:bc40b8d2aec4 95 DCD TIM1_UP_TIM10_IRQHandler ; TIM1 Update and TIM10
mbed_official 613:bc40b8d2aec4 96 DCD TIM1_TRG_COM_TIM11_IRQHandler ; TIM1 Trigger and Commutation and TIM11
mbed_official 613:bc40b8d2aec4 97 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
mbed_official 613:bc40b8d2aec4 98 DCD TIM2_IRQHandler ; TIM2
mbed_official 613:bc40b8d2aec4 99 DCD TIM3_IRQHandler ; TIM3
mbed_official 613:bc40b8d2aec4 100 DCD TIM4_IRQHandler ; TIM4
mbed_official 613:bc40b8d2aec4 101 DCD I2C1_EV_IRQHandler ; I2C1 Event
mbed_official 613:bc40b8d2aec4 102 DCD I2C1_ER_IRQHandler ; I2C1 Error
mbed_official 613:bc40b8d2aec4 103 DCD I2C2_EV_IRQHandler ; I2C2 Event
mbed_official 613:bc40b8d2aec4 104 DCD I2C2_ER_IRQHandler ; I2C2 Error
mbed_official 613:bc40b8d2aec4 105 DCD SPI1_IRQHandler ; SPI1
mbed_official 613:bc40b8d2aec4 106 DCD SPI2_IRQHandler ; SPI2
mbed_official 613:bc40b8d2aec4 107 DCD USART1_IRQHandler ; USART1
mbed_official 613:bc40b8d2aec4 108 DCD USART2_IRQHandler ; USART2
mbed_official 613:bc40b8d2aec4 109 DCD USART3_IRQHandler ; USART3
mbed_official 613:bc40b8d2aec4 110 DCD EXTI15_10_IRQHandler ; External Line[15:10]s
mbed_official 613:bc40b8d2aec4 111 DCD RTC_Alarm_IRQHandler ; RTC Alarm (A and B) through EXTI Line
mbed_official 613:bc40b8d2aec4 112 DCD OTG_FS_WKUP_IRQHandler ; USB OTG FS Wakeup through EXTI line
mbed_official 613:bc40b8d2aec4 113 DCD TIM8_BRK_TIM12_IRQHandler ; TIM8 Break and TIM12
mbed_official 613:bc40b8d2aec4 114 DCD TIM8_UP_TIM13_IRQHandler ; TIM8 Update and TIM13
mbed_official 613:bc40b8d2aec4 115 DCD TIM8_TRG_COM_TIM14_IRQHandler ; TIM8 Trigger and Commutation and TIM14
mbed_official 613:bc40b8d2aec4 116 DCD TIM8_CC_IRQHandler ; TIM8 Capture Compare
mbed_official 613:bc40b8d2aec4 117 DCD DMA1_Stream7_IRQHandler ; DMA1 Stream7
mbed_official 613:bc40b8d2aec4 118 DCD FMC_IRQHandler ; FMC
mbed_official 613:bc40b8d2aec4 119 DCD SDIO_IRQHandler ; SDIO
mbed_official 613:bc40b8d2aec4 120 DCD TIM5_IRQHandler ; TIM5
mbed_official 613:bc40b8d2aec4 121 DCD SPI3_IRQHandler ; SPI3
mbed_official 613:bc40b8d2aec4 122 DCD UART4_IRQHandler ; UART4
mbed_official 613:bc40b8d2aec4 123 DCD UART5_IRQHandler ; UART5
mbed_official 613:bc40b8d2aec4 124 DCD TIM6_DAC_IRQHandler ; TIM6 and DAC1&2 underrun errors
mbed_official 613:bc40b8d2aec4 125 DCD TIM7_IRQHandler ; TIM7
mbed_official 613:bc40b8d2aec4 126 DCD DMA2_Stream0_IRQHandler ; DMA2 Stream 0
mbed_official 613:bc40b8d2aec4 127 DCD DMA2_Stream1_IRQHandler ; DMA2 Stream 1
mbed_official 613:bc40b8d2aec4 128 DCD DMA2_Stream2_IRQHandler ; DMA2 Stream 2
mbed_official 613:bc40b8d2aec4 129 DCD DMA2_Stream3_IRQHandler ; DMA2 Stream 3
mbed_official 613:bc40b8d2aec4 130 DCD DMA2_Stream4_IRQHandler ; DMA2 Stream 4
mbed_official 613:bc40b8d2aec4 131 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 132 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 133 DCD CAN2_TX_IRQHandler ; CAN2 TX
mbed_official 613:bc40b8d2aec4 134 DCD CAN2_RX0_IRQHandler ; CAN2 RX0
mbed_official 613:bc40b8d2aec4 135 DCD CAN2_RX1_IRQHandler ; CAN2 RX1
mbed_official 613:bc40b8d2aec4 136 DCD CAN2_SCE_IRQHandler ; CAN2 SCE
mbed_official 613:bc40b8d2aec4 137 DCD OTG_FS_IRQHandler ; USB OTG FS
mbed_official 613:bc40b8d2aec4 138 DCD DMA2_Stream5_IRQHandler ; DMA2 Stream 5
mbed_official 613:bc40b8d2aec4 139 DCD DMA2_Stream6_IRQHandler ; DMA2 Stream 6
mbed_official 613:bc40b8d2aec4 140 DCD DMA2_Stream7_IRQHandler ; DMA2 Stream 7
mbed_official 613:bc40b8d2aec4 141 DCD USART6_IRQHandler ; USART6
mbed_official 613:bc40b8d2aec4 142 DCD I2C3_EV_IRQHandler ; I2C3 event
mbed_official 613:bc40b8d2aec4 143 DCD I2C3_ER_IRQHandler ; I2C3 error
mbed_official 613:bc40b8d2aec4 144 DCD OTG_HS_EP1_OUT_IRQHandler ; USB OTG HS End Point 1 Out
mbed_official 613:bc40b8d2aec4 145 DCD OTG_HS_EP1_IN_IRQHandler ; USB OTG HS End Point 1 In
mbed_official 613:bc40b8d2aec4 146 DCD OTG_HS_WKUP_IRQHandler ; USB OTG HS Wakeup through EXTI
mbed_official 613:bc40b8d2aec4 147 DCD OTG_HS_IRQHandler ; USB OTG HS
mbed_official 613:bc40b8d2aec4 148 DCD DCMI_IRQHandler ; DCMI
mbed_official 613:bc40b8d2aec4 149 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 150 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 151 DCD FPU_IRQHandler ; FPU
mbed_official 613:bc40b8d2aec4 152 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 153 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 154 DCD SPI4_IRQHandler ; SPI4
mbed_official 613:bc40b8d2aec4 155 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 156 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 157 DCD SAI1_IRQHandler ; SAI1
mbed_official 613:bc40b8d2aec4 158 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 159 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 160 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 161 DCD SAI2_IRQHandler ; SAI2
mbed_official 613:bc40b8d2aec4 162 DCD QuadSPI_IRQHandler ; QuadSPI
mbed_official 613:bc40b8d2aec4 163 DCD CEC_IRQHandler ; CEC
mbed_official 613:bc40b8d2aec4 164 DCD SPDIF_RX_IRQHandler ; SPDIF RX
mbed_official 613:bc40b8d2aec4 165 DCD I2C4_Event_IRQHandler ; I2C 4 Event
mbed_official 613:bc40b8d2aec4 166 DCD I2C4_Error_IRQHandler ; I2C 4 Error
mbed_official 613:bc40b8d2aec4 167 __Vectors_End
mbed_official 613:bc40b8d2aec4 168
mbed_official 613:bc40b8d2aec4 169 __Vectors_Size EQU __Vectors_End - __Vectors
mbed_official 613:bc40b8d2aec4 170
mbed_official 613:bc40b8d2aec4 171 AREA |.text|, CODE, READONLY
mbed_official 613:bc40b8d2aec4 172
mbed_official 613:bc40b8d2aec4 173 ; Reset handler
mbed_official 613:bc40b8d2aec4 174 Reset_Handler PROC
mbed_official 613:bc40b8d2aec4 175 EXPORT Reset_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 176 IMPORT SystemInit
mbed_official 613:bc40b8d2aec4 177 IMPORT __main
mbed_official 613:bc40b8d2aec4 178
mbed_official 613:bc40b8d2aec4 179 LDR R0, =SystemInit
mbed_official 613:bc40b8d2aec4 180 BLX R0
mbed_official 613:bc40b8d2aec4 181 LDR R0, =__main
mbed_official 613:bc40b8d2aec4 182 BX R0
mbed_official 613:bc40b8d2aec4 183 ENDP
mbed_official 613:bc40b8d2aec4 184
mbed_official 613:bc40b8d2aec4 185 ; Dummy Exception Handlers (infinite loops which can be modified)
mbed_official 613:bc40b8d2aec4 186
mbed_official 613:bc40b8d2aec4 187 NMI_Handler PROC
mbed_official 613:bc40b8d2aec4 188 EXPORT NMI_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 189 B .
mbed_official 613:bc40b8d2aec4 190 ENDP
mbed_official 613:bc40b8d2aec4 191 HardFault_Handler\
mbed_official 613:bc40b8d2aec4 192 PROC
mbed_official 613:bc40b8d2aec4 193 EXPORT HardFault_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 194 B .
mbed_official 613:bc40b8d2aec4 195 ENDP
mbed_official 613:bc40b8d2aec4 196 MemManage_Handler\
mbed_official 613:bc40b8d2aec4 197 PROC
mbed_official 613:bc40b8d2aec4 198 EXPORT MemManage_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 199 B .
mbed_official 613:bc40b8d2aec4 200 ENDP
mbed_official 613:bc40b8d2aec4 201 BusFault_Handler\
mbed_official 613:bc40b8d2aec4 202 PROC
mbed_official 613:bc40b8d2aec4 203 EXPORT BusFault_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 204 B .
mbed_official 613:bc40b8d2aec4 205 ENDP
mbed_official 613:bc40b8d2aec4 206 UsageFault_Handler\
mbed_official 613:bc40b8d2aec4 207 PROC
mbed_official 613:bc40b8d2aec4 208 EXPORT UsageFault_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 209 B .
mbed_official 613:bc40b8d2aec4 210 ENDP
mbed_official 613:bc40b8d2aec4 211 SVC_Handler PROC
mbed_official 613:bc40b8d2aec4 212 EXPORT SVC_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 213 B .
mbed_official 613:bc40b8d2aec4 214 ENDP
mbed_official 613:bc40b8d2aec4 215 DebugMon_Handler\
mbed_official 613:bc40b8d2aec4 216 PROC
mbed_official 613:bc40b8d2aec4 217 EXPORT DebugMon_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 218 B .
mbed_official 613:bc40b8d2aec4 219 ENDP
mbed_official 613:bc40b8d2aec4 220 PendSV_Handler PROC
mbed_official 613:bc40b8d2aec4 221 EXPORT PendSV_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 222 B .
mbed_official 613:bc40b8d2aec4 223 ENDP
mbed_official 613:bc40b8d2aec4 224 SysTick_Handler PROC
mbed_official 613:bc40b8d2aec4 225 EXPORT SysTick_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 226 B .
mbed_official 613:bc40b8d2aec4 227 ENDP
mbed_official 613:bc40b8d2aec4 228
mbed_official 613:bc40b8d2aec4 229 Default_Handler PROC
mbed_official 613:bc40b8d2aec4 230
mbed_official 613:bc40b8d2aec4 231 EXPORT WWDG_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 232 EXPORT PVD_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 233 EXPORT TAMP_STAMP_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 234 EXPORT RTC_WKUP_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 235 EXPORT FLASH_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 236 EXPORT RCC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 237 EXPORT EXTI0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 238 EXPORT EXTI1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 239 EXPORT EXTI2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 240 EXPORT EXTI3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 241 EXPORT EXTI4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 242 EXPORT DMA1_Stream0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 243 EXPORT DMA1_Stream1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 244 EXPORT DMA1_Stream2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 245 EXPORT DMA1_Stream3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 246 EXPORT DMA1_Stream4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 247 EXPORT DMA1_Stream5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 248 EXPORT DMA1_Stream6_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 249 EXPORT ADC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 250 EXPORT CAN1_TX_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 251 EXPORT CAN1_RX0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 252 EXPORT CAN1_RX1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 253 EXPORT CAN1_SCE_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 254 EXPORT EXTI9_5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 255 EXPORT TIM1_BRK_TIM9_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 256 EXPORT TIM1_UP_TIM10_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 257 EXPORT TIM1_TRG_COM_TIM11_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 258 EXPORT TIM1_CC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 259 EXPORT TIM2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 260 EXPORT TIM3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 261 EXPORT TIM4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 262 EXPORT I2C1_EV_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 263 EXPORT I2C1_ER_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 264 EXPORT I2C2_EV_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 265 EXPORT I2C2_ER_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 266 EXPORT SPI1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 267 EXPORT SPI2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 268 EXPORT USART1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 269 EXPORT USART2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 270 EXPORT USART3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 271 EXPORT EXTI15_10_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 272 EXPORT RTC_Alarm_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 273 EXPORT OTG_FS_WKUP_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 274 EXPORT TIM8_BRK_TIM12_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 275 EXPORT TIM8_UP_TIM13_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 276 EXPORT TIM8_TRG_COM_TIM14_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 277 EXPORT TIM8_CC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 278 EXPORT DMA1_Stream7_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 279 EXPORT FMC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 280 EXPORT SDIO_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 281 EXPORT TIM5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 282 EXPORT SPI3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 283 EXPORT UART4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 284 EXPORT UART5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 285 EXPORT TIM6_DAC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 286 EXPORT TIM7_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 287 EXPORT DMA2_Stream0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 288 EXPORT DMA2_Stream1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 289 EXPORT DMA2_Stream2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 290 EXPORT DMA2_Stream3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 291 EXPORT DMA2_Stream4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 292 EXPORT CAN2_TX_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 293 EXPORT CAN2_RX0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 294 EXPORT CAN2_RX1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 295 EXPORT CAN2_SCE_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 296 EXPORT OTG_FS_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 297 EXPORT DMA2_Stream5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 298 EXPORT DMA2_Stream6_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 299 EXPORT DMA2_Stream7_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 300 EXPORT USART6_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 301 EXPORT I2C3_EV_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 302 EXPORT I2C3_ER_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 303 EXPORT OTG_HS_EP1_OUT_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 304 EXPORT OTG_HS_EP1_IN_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 305 EXPORT OTG_HS_WKUP_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 306 EXPORT OTG_HS_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 307 EXPORT DCMI_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 308 EXPORT FPU_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 309 EXPORT SPI4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 310 EXPORT SAI1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 311 EXPORT SPI4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 312 EXPORT SAI1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 313 EXPORT SAI2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 314 EXPORT QuadSPI_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 315 EXPORT CEC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 316 EXPORT SPDIF_RX_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 317 EXPORT I2C4_Event_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 318 EXPORT I2C4_Error_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 319
mbed_official 613:bc40b8d2aec4 320 WWDG_IRQHandler
mbed_official 613:bc40b8d2aec4 321 PVD_IRQHandler
mbed_official 613:bc40b8d2aec4 322 TAMP_STAMP_IRQHandler
mbed_official 613:bc40b8d2aec4 323 RTC_WKUP_IRQHandler
mbed_official 613:bc40b8d2aec4 324 FLASH_IRQHandler
mbed_official 613:bc40b8d2aec4 325 RCC_IRQHandler
mbed_official 613:bc40b8d2aec4 326 EXTI0_IRQHandler
mbed_official 613:bc40b8d2aec4 327 EXTI1_IRQHandler
mbed_official 613:bc40b8d2aec4 328 EXTI2_IRQHandler
mbed_official 613:bc40b8d2aec4 329 EXTI3_IRQHandler
mbed_official 613:bc40b8d2aec4 330 EXTI4_IRQHandler
mbed_official 613:bc40b8d2aec4 331 DMA1_Stream0_IRQHandler
mbed_official 613:bc40b8d2aec4 332 DMA1_Stream1_IRQHandler
mbed_official 613:bc40b8d2aec4 333 DMA1_Stream2_IRQHandler
mbed_official 613:bc40b8d2aec4 334 DMA1_Stream3_IRQHandler
mbed_official 613:bc40b8d2aec4 335 DMA1_Stream4_IRQHandler
mbed_official 613:bc40b8d2aec4 336 DMA1_Stream5_IRQHandler
mbed_official 613:bc40b8d2aec4 337 DMA1_Stream6_IRQHandler
mbed_official 613:bc40b8d2aec4 338 ADC_IRQHandler
mbed_official 613:bc40b8d2aec4 339 CAN1_TX_IRQHandler
mbed_official 613:bc40b8d2aec4 340 CAN1_RX0_IRQHandler
mbed_official 613:bc40b8d2aec4 341 CAN1_RX1_IRQHandler
mbed_official 613:bc40b8d2aec4 342 CAN1_SCE_IRQHandler
mbed_official 613:bc40b8d2aec4 343 EXTI9_5_IRQHandler
mbed_official 613:bc40b8d2aec4 344 TIM1_BRK_TIM9_IRQHandler
mbed_official 613:bc40b8d2aec4 345 TIM1_UP_TIM10_IRQHandler
mbed_official 613:bc40b8d2aec4 346 TIM1_TRG_COM_TIM11_IRQHandler
mbed_official 613:bc40b8d2aec4 347 TIM1_CC_IRQHandler
mbed_official 613:bc40b8d2aec4 348 TIM2_IRQHandler
mbed_official 613:bc40b8d2aec4 349 TIM3_IRQHandler
mbed_official 613:bc40b8d2aec4 350 TIM4_IRQHandler
mbed_official 613:bc40b8d2aec4 351 I2C1_EV_IRQHandler
mbed_official 613:bc40b8d2aec4 352 I2C1_ER_IRQHandler
mbed_official 613:bc40b8d2aec4 353 I2C2_EV_IRQHandler
mbed_official 613:bc40b8d2aec4 354 I2C2_ER_IRQHandler
mbed_official 613:bc40b8d2aec4 355 SPI1_IRQHandler
mbed_official 613:bc40b8d2aec4 356 SPI2_IRQHandler
mbed_official 613:bc40b8d2aec4 357 USART1_IRQHandler
mbed_official 613:bc40b8d2aec4 358 USART2_IRQHandler
mbed_official 613:bc40b8d2aec4 359 USART3_IRQHandler
mbed_official 613:bc40b8d2aec4 360 EXTI15_10_IRQHandler
mbed_official 613:bc40b8d2aec4 361 RTC_Alarm_IRQHandler
mbed_official 613:bc40b8d2aec4 362 OTG_FS_WKUP_IRQHandler
mbed_official 613:bc40b8d2aec4 363 TIM8_BRK_TIM12_IRQHandler
mbed_official 613:bc40b8d2aec4 364 TIM8_UP_TIM13_IRQHandler
mbed_official 613:bc40b8d2aec4 365 TIM8_TRG_COM_TIM14_IRQHandler
mbed_official 613:bc40b8d2aec4 366 TIM8_CC_IRQHandler
mbed_official 613:bc40b8d2aec4 367 DMA1_Stream7_IRQHandler
mbed_official 613:bc40b8d2aec4 368 FMC_IRQHandler
mbed_official 613:bc40b8d2aec4 369 SDIO_IRQHandler
mbed_official 613:bc40b8d2aec4 370 TIM5_IRQHandler
mbed_official 613:bc40b8d2aec4 371 SPI3_IRQHandler
mbed_official 613:bc40b8d2aec4 372 UART4_IRQHandler
mbed_official 613:bc40b8d2aec4 373 UART5_IRQHandler
mbed_official 613:bc40b8d2aec4 374 TIM6_DAC_IRQHandler
mbed_official 613:bc40b8d2aec4 375 TIM7_IRQHandler
mbed_official 613:bc40b8d2aec4 376 DMA2_Stream0_IRQHandler
mbed_official 613:bc40b8d2aec4 377 DMA2_Stream1_IRQHandler
mbed_official 613:bc40b8d2aec4 378 DMA2_Stream2_IRQHandler
mbed_official 613:bc40b8d2aec4 379 DMA2_Stream3_IRQHandler
mbed_official 613:bc40b8d2aec4 380 DMA2_Stream4_IRQHandler
mbed_official 613:bc40b8d2aec4 381 CAN2_TX_IRQHandler
mbed_official 613:bc40b8d2aec4 382 CAN2_RX0_IRQHandler
mbed_official 613:bc40b8d2aec4 383 CAN2_RX1_IRQHandler
mbed_official 613:bc40b8d2aec4 384 CAN2_SCE_IRQHandler
mbed_official 613:bc40b8d2aec4 385 OTG_FS_IRQHandler
mbed_official 613:bc40b8d2aec4 386 DMA2_Stream5_IRQHandler
mbed_official 613:bc40b8d2aec4 387 DMA2_Stream6_IRQHandler
mbed_official 613:bc40b8d2aec4 388 DMA2_Stream7_IRQHandler
mbed_official 613:bc40b8d2aec4 389 USART6_IRQHandler
mbed_official 613:bc40b8d2aec4 390 I2C3_EV_IRQHandler
mbed_official 613:bc40b8d2aec4 391 I2C3_ER_IRQHandler
mbed_official 613:bc40b8d2aec4 392 OTG_HS_EP1_OUT_IRQHandler
mbed_official 613:bc40b8d2aec4 393 OTG_HS_EP1_IN_IRQHandler
mbed_official 613:bc40b8d2aec4 394 OTG_HS_WKUP_IRQHandler
mbed_official 613:bc40b8d2aec4 395 OTG_HS_IRQHandler
mbed_official 613:bc40b8d2aec4 396 DCMI_IRQHandler
mbed_official 613:bc40b8d2aec4 397 FPU_IRQHandler
mbed_official 613:bc40b8d2aec4 398 SPI4_IRQHandler
mbed_official 613:bc40b8d2aec4 399 SAI1_IRQHandler
mbed_official 613:bc40b8d2aec4 400 SAI2_IRQHandler
mbed_official 613:bc40b8d2aec4 401 QuadSPI_IRQHandler
mbed_official 613:bc40b8d2aec4 402 CEC_IRQHandler
mbed_official 613:bc40b8d2aec4 403 SPDIF_RX_IRQHandler
mbed_official 613:bc40b8d2aec4 404 I2C4_Event_IRQHandler
mbed_official 613:bc40b8d2aec4 405 I2C4_Error_IRQHandler
mbed_official 613:bc40b8d2aec4 406 B .
mbed_official 613:bc40b8d2aec4 407
mbed_official 613:bc40b8d2aec4 408 ENDP
mbed_official 613:bc40b8d2aec4 409
mbed_official 613:bc40b8d2aec4 410 ALIGN
mbed_official 613:bc40b8d2aec4 411 END
mbed_official 613:bc40b8d2aec4 412
mbed_official 613:bc40b8d2aec4 413 ;************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE*****