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_MICRO 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 ; Amount of memory (in bytes) allocated for Stack
mbed_official 613:bc40b8d2aec4 41 ; Tailor this value to your application needs
mbed_official 613:bc40b8d2aec4 42 ; <h> Stack Configuration
mbed_official 613:bc40b8d2aec4 43 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
mbed_official 613:bc40b8d2aec4 44 ; </h>
mbed_official 613:bc40b8d2aec4 45
mbed_official 613:bc40b8d2aec4 46 Stack_Size EQU 0x00000400
mbed_official 613:bc40b8d2aec4 47
mbed_official 613:bc40b8d2aec4 48 AREA STACK, NOINIT, READWRITE, ALIGN=3
mbed_official 613:bc40b8d2aec4 49 EXPORT __initial_sp
mbed_official 613:bc40b8d2aec4 50
mbed_official 613:bc40b8d2aec4 51 Stack_Mem SPACE Stack_Size
mbed_official 613:bc40b8d2aec4 52 __initial_sp EQU 0x20020000 ; Top of RAM
mbed_official 613:bc40b8d2aec4 53
mbed_official 613:bc40b8d2aec4 54
mbed_official 613:bc40b8d2aec4 55 ; <h> Heap Configuration
mbed_official 613:bc40b8d2aec4 56 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
mbed_official 613:bc40b8d2aec4 57 ; </h>
mbed_official 613:bc40b8d2aec4 58
mbed_official 613:bc40b8d2aec4 59 Heap_Size EQU 0x00000400
mbed_official 613:bc40b8d2aec4 60
mbed_official 613:bc40b8d2aec4 61 AREA HEAP, NOINIT, READWRITE, ALIGN=3
mbed_official 613:bc40b8d2aec4 62 EXPORT __heap_base
mbed_official 613:bc40b8d2aec4 63 EXPORT __heap_limit
mbed_official 613:bc40b8d2aec4 64
mbed_official 613:bc40b8d2aec4 65 __heap_base
mbed_official 613:bc40b8d2aec4 66 Heap_Mem SPACE Heap_Size
mbed_official 613:bc40b8d2aec4 67 __heap_limit EQU (__initial_sp - Stack_Size)
mbed_official 613:bc40b8d2aec4 68
mbed_official 613:bc40b8d2aec4 69 PRESERVE8
mbed_official 613:bc40b8d2aec4 70 THUMB
mbed_official 613:bc40b8d2aec4 71
mbed_official 613:bc40b8d2aec4 72
mbed_official 613:bc40b8d2aec4 73 ; Vector Table Mapped to Address 0 at Reset
mbed_official 613:bc40b8d2aec4 74 AREA RESET, DATA, READONLY
mbed_official 613:bc40b8d2aec4 75 EXPORT __Vectors
mbed_official 613:bc40b8d2aec4 76 EXPORT __Vectors_End
mbed_official 613:bc40b8d2aec4 77 EXPORT __Vectors_Size
mbed_official 613:bc40b8d2aec4 78
mbed_official 613:bc40b8d2aec4 79 __Vectors DCD __initial_sp ; Top of Stack
mbed_official 613:bc40b8d2aec4 80 DCD Reset_Handler ; Reset Handler
mbed_official 613:bc40b8d2aec4 81 DCD NMI_Handler ; NMI Handler
mbed_official 613:bc40b8d2aec4 82 DCD HardFault_Handler ; Hard Fault Handler
mbed_official 613:bc40b8d2aec4 83 DCD MemManage_Handler ; MPU Fault Handler
mbed_official 613:bc40b8d2aec4 84 DCD BusFault_Handler ; Bus Fault Handler
mbed_official 613:bc40b8d2aec4 85 DCD UsageFault_Handler ; Usage Fault Handler
mbed_official 613:bc40b8d2aec4 86 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 87 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 88 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 89 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 90 DCD SVC_Handler ; SVCall Handler
mbed_official 613:bc40b8d2aec4 91 DCD DebugMon_Handler ; Debug Monitor Handler
mbed_official 613:bc40b8d2aec4 92 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 93 DCD PendSV_Handler ; PendSV Handler
mbed_official 613:bc40b8d2aec4 94 DCD SysTick_Handler ; SysTick Handler
mbed_official 613:bc40b8d2aec4 95
mbed_official 613:bc40b8d2aec4 96 ; External Interrupts
mbed_official 613:bc40b8d2aec4 97 DCD WWDG_IRQHandler ; Window WatchDog
mbed_official 613:bc40b8d2aec4 98 DCD PVD_IRQHandler ; PVD through EXTI Line detection
mbed_official 613:bc40b8d2aec4 99 DCD TAMP_STAMP_IRQHandler ; Tamper and TimeStamps through the EXTI line
mbed_official 613:bc40b8d2aec4 100 DCD RTC_WKUP_IRQHandler ; RTC Wakeup through the EXTI line
mbed_official 613:bc40b8d2aec4 101 DCD FLASH_IRQHandler ; FLASH
mbed_official 613:bc40b8d2aec4 102 DCD RCC_IRQHandler ; RCC
mbed_official 613:bc40b8d2aec4 103 DCD EXTI0_IRQHandler ; EXTI Line0
mbed_official 613:bc40b8d2aec4 104 DCD EXTI1_IRQHandler ; EXTI Line1
mbed_official 613:bc40b8d2aec4 105 DCD EXTI2_IRQHandler ; EXTI Line2
mbed_official 613:bc40b8d2aec4 106 DCD EXTI3_IRQHandler ; EXTI Line3
mbed_official 613:bc40b8d2aec4 107 DCD EXTI4_IRQHandler ; EXTI Line4
mbed_official 613:bc40b8d2aec4 108 DCD DMA1_Stream0_IRQHandler ; DMA1 Stream 0
mbed_official 613:bc40b8d2aec4 109 DCD DMA1_Stream1_IRQHandler ; DMA1 Stream 1
mbed_official 613:bc40b8d2aec4 110 DCD DMA1_Stream2_IRQHandler ; DMA1 Stream 2
mbed_official 613:bc40b8d2aec4 111 DCD DMA1_Stream3_IRQHandler ; DMA1 Stream 3
mbed_official 613:bc40b8d2aec4 112 DCD DMA1_Stream4_IRQHandler ; DMA1 Stream 4
mbed_official 613:bc40b8d2aec4 113 DCD DMA1_Stream5_IRQHandler ; DMA1 Stream 5
mbed_official 613:bc40b8d2aec4 114 DCD DMA1_Stream6_IRQHandler ; DMA1 Stream 6
mbed_official 613:bc40b8d2aec4 115 DCD ADC_IRQHandler ; ADC1, ADC2 and ADC3s
mbed_official 613:bc40b8d2aec4 116 DCD CAN1_TX_IRQHandler ; CAN1 TX
mbed_official 613:bc40b8d2aec4 117 DCD CAN1_RX0_IRQHandler ; CAN1 RX0
mbed_official 613:bc40b8d2aec4 118 DCD CAN1_RX1_IRQHandler ; CAN1 RX1
mbed_official 613:bc40b8d2aec4 119 DCD CAN1_SCE_IRQHandler ; CAN1 SCE
mbed_official 613:bc40b8d2aec4 120 DCD EXTI9_5_IRQHandler ; External Line[9:5]s
mbed_official 613:bc40b8d2aec4 121 DCD TIM1_BRK_TIM9_IRQHandler ; TIM1 Break and TIM9
mbed_official 613:bc40b8d2aec4 122 DCD TIM1_UP_TIM10_IRQHandler ; TIM1 Update and TIM10
mbed_official 613:bc40b8d2aec4 123 DCD TIM1_TRG_COM_TIM11_IRQHandler ; TIM1 Trigger and Commutation and TIM11
mbed_official 613:bc40b8d2aec4 124 DCD TIM1_CC_IRQHandler ; TIM1 Capture Compare
mbed_official 613:bc40b8d2aec4 125 DCD TIM2_IRQHandler ; TIM2
mbed_official 613:bc40b8d2aec4 126 DCD TIM3_IRQHandler ; TIM3
mbed_official 613:bc40b8d2aec4 127 DCD TIM4_IRQHandler ; TIM4
mbed_official 613:bc40b8d2aec4 128 DCD I2C1_EV_IRQHandler ; I2C1 Event
mbed_official 613:bc40b8d2aec4 129 DCD I2C1_ER_IRQHandler ; I2C1 Error
mbed_official 613:bc40b8d2aec4 130 DCD I2C2_EV_IRQHandler ; I2C2 Event
mbed_official 613:bc40b8d2aec4 131 DCD I2C2_ER_IRQHandler ; I2C2 Error
mbed_official 613:bc40b8d2aec4 132 DCD SPI1_IRQHandler ; SPI1
mbed_official 613:bc40b8d2aec4 133 DCD SPI2_IRQHandler ; SPI2
mbed_official 613:bc40b8d2aec4 134 DCD USART1_IRQHandler ; USART1
mbed_official 613:bc40b8d2aec4 135 DCD USART2_IRQHandler ; USART2
mbed_official 613:bc40b8d2aec4 136 DCD USART3_IRQHandler ; USART3
mbed_official 613:bc40b8d2aec4 137 DCD EXTI15_10_IRQHandler ; External Line[15:10]s
mbed_official 613:bc40b8d2aec4 138 DCD RTC_Alarm_IRQHandler ; RTC Alarm (A and B) through EXTI Line
mbed_official 613:bc40b8d2aec4 139 DCD OTG_FS_WKUP_IRQHandler ; USB OTG FS Wakeup through EXTI line
mbed_official 613:bc40b8d2aec4 140 DCD TIM8_BRK_TIM12_IRQHandler ; TIM8 Break and TIM12
mbed_official 613:bc40b8d2aec4 141 DCD TIM8_UP_TIM13_IRQHandler ; TIM8 Update and TIM13
mbed_official 613:bc40b8d2aec4 142 DCD TIM8_TRG_COM_TIM14_IRQHandler ; TIM8 Trigger and Commutation and TIM14
mbed_official 613:bc40b8d2aec4 143 DCD TIM8_CC_IRQHandler ; TIM8 Capture Compare
mbed_official 613:bc40b8d2aec4 144 DCD DMA1_Stream7_IRQHandler ; DMA1 Stream7
mbed_official 613:bc40b8d2aec4 145 DCD FMC_IRQHandler ; FMC
mbed_official 613:bc40b8d2aec4 146 DCD SDIO_IRQHandler ; SDIO
mbed_official 613:bc40b8d2aec4 147 DCD TIM5_IRQHandler ; TIM5
mbed_official 613:bc40b8d2aec4 148 DCD SPI3_IRQHandler ; SPI3
mbed_official 613:bc40b8d2aec4 149 DCD UART4_IRQHandler ; UART4
mbed_official 613:bc40b8d2aec4 150 DCD UART5_IRQHandler ; UART5
mbed_official 613:bc40b8d2aec4 151 DCD TIM6_DAC_IRQHandler ; TIM6 and DAC1&2 underrun errors
mbed_official 613:bc40b8d2aec4 152 DCD TIM7_IRQHandler ; TIM7
mbed_official 613:bc40b8d2aec4 153 DCD DMA2_Stream0_IRQHandler ; DMA2 Stream 0
mbed_official 613:bc40b8d2aec4 154 DCD DMA2_Stream1_IRQHandler ; DMA2 Stream 1
mbed_official 613:bc40b8d2aec4 155 DCD DMA2_Stream2_IRQHandler ; DMA2 Stream 2
mbed_official 613:bc40b8d2aec4 156 DCD DMA2_Stream3_IRQHandler ; DMA2 Stream 3
mbed_official 613:bc40b8d2aec4 157 DCD DMA2_Stream4_IRQHandler ; DMA2 Stream 4
mbed_official 613:bc40b8d2aec4 158 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 159 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 160 DCD CAN2_TX_IRQHandler ; CAN2 TX
mbed_official 613:bc40b8d2aec4 161 DCD CAN2_RX0_IRQHandler ; CAN2 RX0
mbed_official 613:bc40b8d2aec4 162 DCD CAN2_RX1_IRQHandler ; CAN2 RX1
mbed_official 613:bc40b8d2aec4 163 DCD CAN2_SCE_IRQHandler ; CAN2 SCE
mbed_official 613:bc40b8d2aec4 164 DCD OTG_FS_IRQHandler ; USB OTG FS
mbed_official 613:bc40b8d2aec4 165 DCD DMA2_Stream5_IRQHandler ; DMA2 Stream 5
mbed_official 613:bc40b8d2aec4 166 DCD DMA2_Stream6_IRQHandler ; DMA2 Stream 6
mbed_official 613:bc40b8d2aec4 167 DCD DMA2_Stream7_IRQHandler ; DMA2 Stream 7
mbed_official 613:bc40b8d2aec4 168 DCD USART6_IRQHandler ; USART6
mbed_official 613:bc40b8d2aec4 169 DCD I2C3_EV_IRQHandler ; I2C3 event
mbed_official 613:bc40b8d2aec4 170 DCD I2C3_ER_IRQHandler ; I2C3 error
mbed_official 613:bc40b8d2aec4 171 DCD OTG_HS_EP1_OUT_IRQHandler ; USB OTG HS End Point 1 Out
mbed_official 613:bc40b8d2aec4 172 DCD OTG_HS_EP1_IN_IRQHandler ; USB OTG HS End Point 1 In
mbed_official 613:bc40b8d2aec4 173 DCD OTG_HS_WKUP_IRQHandler ; USB OTG HS Wakeup through EXTI
mbed_official 613:bc40b8d2aec4 174 DCD OTG_HS_IRQHandler ; USB OTG HS
mbed_official 613:bc40b8d2aec4 175 DCD DCMI_IRQHandler ; DCMI
mbed_official 613:bc40b8d2aec4 176 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 177 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 178 DCD FPU_IRQHandler ; FPU
mbed_official 613:bc40b8d2aec4 179 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 180 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 181 DCD SPI4_IRQHandler ; SPI4
mbed_official 613:bc40b8d2aec4 182 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 183 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 184 DCD SAI1_IRQHandler ; SAI1
mbed_official 613:bc40b8d2aec4 185 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 186 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 187 DCD 0 ; Reserved
mbed_official 613:bc40b8d2aec4 188 DCD SAI2_IRQHandler ; SAI2
mbed_official 613:bc40b8d2aec4 189 DCD QuadSPI_IRQHandler ; QuadSPI
mbed_official 613:bc40b8d2aec4 190 DCD CEC_IRQHandler ; CEC
mbed_official 613:bc40b8d2aec4 191 DCD SPDIF_RX_IRQHandler ; SPDIF RX
mbed_official 613:bc40b8d2aec4 192 DCD I2C4_Event_IRQHandler ; I2C 4 Event
mbed_official 613:bc40b8d2aec4 193 DCD I2C4_Error_IRQHandler ; I2C 4 Error
mbed_official 613:bc40b8d2aec4 194 __Vectors_End
mbed_official 613:bc40b8d2aec4 195
mbed_official 613:bc40b8d2aec4 196 __Vectors_Size EQU __Vectors_End - __Vectors
mbed_official 613:bc40b8d2aec4 197
mbed_official 613:bc40b8d2aec4 198 AREA |.text|, CODE, READONLY
mbed_official 613:bc40b8d2aec4 199
mbed_official 613:bc40b8d2aec4 200 ; Reset handler
mbed_official 613:bc40b8d2aec4 201 Reset_Handler PROC
mbed_official 613:bc40b8d2aec4 202 EXPORT Reset_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 203 IMPORT SystemInit
mbed_official 613:bc40b8d2aec4 204 IMPORT __main
mbed_official 613:bc40b8d2aec4 205
mbed_official 613:bc40b8d2aec4 206 LDR R0, =SystemInit
mbed_official 613:bc40b8d2aec4 207 BLX R0
mbed_official 613:bc40b8d2aec4 208 LDR R0, =__main
mbed_official 613:bc40b8d2aec4 209 BX R0
mbed_official 613:bc40b8d2aec4 210 ENDP
mbed_official 613:bc40b8d2aec4 211
mbed_official 613:bc40b8d2aec4 212 ; Dummy Exception Handlers (infinite loops which can be modified)
mbed_official 613:bc40b8d2aec4 213
mbed_official 613:bc40b8d2aec4 214 NMI_Handler PROC
mbed_official 613:bc40b8d2aec4 215 EXPORT NMI_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 216 B .
mbed_official 613:bc40b8d2aec4 217 ENDP
mbed_official 613:bc40b8d2aec4 218 HardFault_Handler\
mbed_official 613:bc40b8d2aec4 219 PROC
mbed_official 613:bc40b8d2aec4 220 EXPORT HardFault_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 221 B .
mbed_official 613:bc40b8d2aec4 222 ENDP
mbed_official 613:bc40b8d2aec4 223 MemManage_Handler\
mbed_official 613:bc40b8d2aec4 224 PROC
mbed_official 613:bc40b8d2aec4 225 EXPORT MemManage_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 226 B .
mbed_official 613:bc40b8d2aec4 227 ENDP
mbed_official 613:bc40b8d2aec4 228 BusFault_Handler\
mbed_official 613:bc40b8d2aec4 229 PROC
mbed_official 613:bc40b8d2aec4 230 EXPORT BusFault_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 231 B .
mbed_official 613:bc40b8d2aec4 232 ENDP
mbed_official 613:bc40b8d2aec4 233 UsageFault_Handler\
mbed_official 613:bc40b8d2aec4 234 PROC
mbed_official 613:bc40b8d2aec4 235 EXPORT UsageFault_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 236 B .
mbed_official 613:bc40b8d2aec4 237 ENDP
mbed_official 613:bc40b8d2aec4 238 SVC_Handler PROC
mbed_official 613:bc40b8d2aec4 239 EXPORT SVC_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 240 B .
mbed_official 613:bc40b8d2aec4 241 ENDP
mbed_official 613:bc40b8d2aec4 242 DebugMon_Handler\
mbed_official 613:bc40b8d2aec4 243 PROC
mbed_official 613:bc40b8d2aec4 244 EXPORT DebugMon_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 245 B .
mbed_official 613:bc40b8d2aec4 246 ENDP
mbed_official 613:bc40b8d2aec4 247 PendSV_Handler PROC
mbed_official 613:bc40b8d2aec4 248 EXPORT PendSV_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 249 B .
mbed_official 613:bc40b8d2aec4 250 ENDP
mbed_official 613:bc40b8d2aec4 251 SysTick_Handler PROC
mbed_official 613:bc40b8d2aec4 252 EXPORT SysTick_Handler [WEAK]
mbed_official 613:bc40b8d2aec4 253 B .
mbed_official 613:bc40b8d2aec4 254 ENDP
mbed_official 613:bc40b8d2aec4 255
mbed_official 613:bc40b8d2aec4 256 Default_Handler PROC
mbed_official 613:bc40b8d2aec4 257
mbed_official 613:bc40b8d2aec4 258 EXPORT WWDG_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 259 EXPORT PVD_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 260 EXPORT TAMP_STAMP_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 261 EXPORT RTC_WKUP_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 262 EXPORT FLASH_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 263 EXPORT RCC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 264 EXPORT EXTI0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 265 EXPORT EXTI1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 266 EXPORT EXTI2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 267 EXPORT EXTI3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 268 EXPORT EXTI4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 269 EXPORT DMA1_Stream0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 270 EXPORT DMA1_Stream1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 271 EXPORT DMA1_Stream2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 272 EXPORT DMA1_Stream3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 273 EXPORT DMA1_Stream4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 274 EXPORT DMA1_Stream5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 275 EXPORT DMA1_Stream6_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 276 EXPORT ADC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 277 EXPORT CAN1_TX_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 278 EXPORT CAN1_RX0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 279 EXPORT CAN1_RX1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 280 EXPORT CAN1_SCE_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 281 EXPORT EXTI9_5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 282 EXPORT TIM1_BRK_TIM9_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 283 EXPORT TIM1_UP_TIM10_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 284 EXPORT TIM1_TRG_COM_TIM11_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 285 EXPORT TIM1_CC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 286 EXPORT TIM2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 287 EXPORT TIM3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 288 EXPORT TIM4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 289 EXPORT I2C1_EV_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 290 EXPORT I2C1_ER_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 291 EXPORT I2C2_EV_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 292 EXPORT I2C2_ER_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 293 EXPORT SPI1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 294 EXPORT SPI2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 295 EXPORT USART1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 296 EXPORT USART2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 297 EXPORT USART3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 298 EXPORT EXTI15_10_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 299 EXPORT RTC_Alarm_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 300 EXPORT OTG_FS_WKUP_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 301 EXPORT TIM8_BRK_TIM12_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 302 EXPORT TIM8_UP_TIM13_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 303 EXPORT TIM8_TRG_COM_TIM14_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 304 EXPORT TIM8_CC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 305 EXPORT DMA1_Stream7_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 306 EXPORT FMC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 307 EXPORT SDIO_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 308 EXPORT TIM5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 309 EXPORT SPI3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 310 EXPORT UART4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 311 EXPORT UART5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 312 EXPORT TIM6_DAC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 313 EXPORT TIM7_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 314 EXPORT DMA2_Stream0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 315 EXPORT DMA2_Stream1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 316 EXPORT DMA2_Stream2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 317 EXPORT DMA2_Stream3_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 318 EXPORT DMA2_Stream4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 319 EXPORT CAN2_TX_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 320 EXPORT CAN2_RX0_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 321 EXPORT CAN2_RX1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 322 EXPORT CAN2_SCE_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 323 EXPORT OTG_FS_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 324 EXPORT DMA2_Stream5_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 325 EXPORT DMA2_Stream6_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 326 EXPORT DMA2_Stream7_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 327 EXPORT USART6_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 328 EXPORT I2C3_EV_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 329 EXPORT I2C3_ER_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 330 EXPORT OTG_HS_EP1_OUT_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 331 EXPORT OTG_HS_EP1_IN_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 332 EXPORT OTG_HS_WKUP_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 333 EXPORT OTG_HS_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 334 EXPORT DCMI_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 335 EXPORT FPU_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 336 EXPORT SPI4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 337 EXPORT SAI1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 338 EXPORT SPI4_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 339 EXPORT SAI1_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 340 EXPORT SAI2_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 341 EXPORT QuadSPI_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 342 EXPORT CEC_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 343 EXPORT SPDIF_RX_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 344 EXPORT I2C4_Event_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 345 EXPORT I2C4_Error_IRQHandler [WEAK]
mbed_official 613:bc40b8d2aec4 346
mbed_official 613:bc40b8d2aec4 347 WWDG_IRQHandler
mbed_official 613:bc40b8d2aec4 348 PVD_IRQHandler
mbed_official 613:bc40b8d2aec4 349 TAMP_STAMP_IRQHandler
mbed_official 613:bc40b8d2aec4 350 RTC_WKUP_IRQHandler
mbed_official 613:bc40b8d2aec4 351 FLASH_IRQHandler
mbed_official 613:bc40b8d2aec4 352 RCC_IRQHandler
mbed_official 613:bc40b8d2aec4 353 EXTI0_IRQHandler
mbed_official 613:bc40b8d2aec4 354 EXTI1_IRQHandler
mbed_official 613:bc40b8d2aec4 355 EXTI2_IRQHandler
mbed_official 613:bc40b8d2aec4 356 EXTI3_IRQHandler
mbed_official 613:bc40b8d2aec4 357 EXTI4_IRQHandler
mbed_official 613:bc40b8d2aec4 358 DMA1_Stream0_IRQHandler
mbed_official 613:bc40b8d2aec4 359 DMA1_Stream1_IRQHandler
mbed_official 613:bc40b8d2aec4 360 DMA1_Stream2_IRQHandler
mbed_official 613:bc40b8d2aec4 361 DMA1_Stream3_IRQHandler
mbed_official 613:bc40b8d2aec4 362 DMA1_Stream4_IRQHandler
mbed_official 613:bc40b8d2aec4 363 DMA1_Stream5_IRQHandler
mbed_official 613:bc40b8d2aec4 364 DMA1_Stream6_IRQHandler
mbed_official 613:bc40b8d2aec4 365 ADC_IRQHandler
mbed_official 613:bc40b8d2aec4 366 CAN1_TX_IRQHandler
mbed_official 613:bc40b8d2aec4 367 CAN1_RX0_IRQHandler
mbed_official 613:bc40b8d2aec4 368 CAN1_RX1_IRQHandler
mbed_official 613:bc40b8d2aec4 369 CAN1_SCE_IRQHandler
mbed_official 613:bc40b8d2aec4 370 EXTI9_5_IRQHandler
mbed_official 613:bc40b8d2aec4 371 TIM1_BRK_TIM9_IRQHandler
mbed_official 613:bc40b8d2aec4 372 TIM1_UP_TIM10_IRQHandler
mbed_official 613:bc40b8d2aec4 373 TIM1_TRG_COM_TIM11_IRQHandler
mbed_official 613:bc40b8d2aec4 374 TIM1_CC_IRQHandler
mbed_official 613:bc40b8d2aec4 375 TIM2_IRQHandler
mbed_official 613:bc40b8d2aec4 376 TIM3_IRQHandler
mbed_official 613:bc40b8d2aec4 377 TIM4_IRQHandler
mbed_official 613:bc40b8d2aec4 378 I2C1_EV_IRQHandler
mbed_official 613:bc40b8d2aec4 379 I2C1_ER_IRQHandler
mbed_official 613:bc40b8d2aec4 380 I2C2_EV_IRQHandler
mbed_official 613:bc40b8d2aec4 381 I2C2_ER_IRQHandler
mbed_official 613:bc40b8d2aec4 382 SPI1_IRQHandler
mbed_official 613:bc40b8d2aec4 383 SPI2_IRQHandler
mbed_official 613:bc40b8d2aec4 384 USART1_IRQHandler
mbed_official 613:bc40b8d2aec4 385 USART2_IRQHandler
mbed_official 613:bc40b8d2aec4 386 USART3_IRQHandler
mbed_official 613:bc40b8d2aec4 387 EXTI15_10_IRQHandler
mbed_official 613:bc40b8d2aec4 388 RTC_Alarm_IRQHandler
mbed_official 613:bc40b8d2aec4 389 OTG_FS_WKUP_IRQHandler
mbed_official 613:bc40b8d2aec4 390 TIM8_BRK_TIM12_IRQHandler
mbed_official 613:bc40b8d2aec4 391 TIM8_UP_TIM13_IRQHandler
mbed_official 613:bc40b8d2aec4 392 TIM8_TRG_COM_TIM14_IRQHandler
mbed_official 613:bc40b8d2aec4 393 TIM8_CC_IRQHandler
mbed_official 613:bc40b8d2aec4 394 DMA1_Stream7_IRQHandler
mbed_official 613:bc40b8d2aec4 395 FMC_IRQHandler
mbed_official 613:bc40b8d2aec4 396 SDIO_IRQHandler
mbed_official 613:bc40b8d2aec4 397 TIM5_IRQHandler
mbed_official 613:bc40b8d2aec4 398 SPI3_IRQHandler
mbed_official 613:bc40b8d2aec4 399 UART4_IRQHandler
mbed_official 613:bc40b8d2aec4 400 UART5_IRQHandler
mbed_official 613:bc40b8d2aec4 401 TIM6_DAC_IRQHandler
mbed_official 613:bc40b8d2aec4 402 TIM7_IRQHandler
mbed_official 613:bc40b8d2aec4 403 DMA2_Stream0_IRQHandler
mbed_official 613:bc40b8d2aec4 404 DMA2_Stream1_IRQHandler
mbed_official 613:bc40b8d2aec4 405 DMA2_Stream2_IRQHandler
mbed_official 613:bc40b8d2aec4 406 DMA2_Stream3_IRQHandler
mbed_official 613:bc40b8d2aec4 407 DMA2_Stream4_IRQHandler
mbed_official 613:bc40b8d2aec4 408 CAN2_TX_IRQHandler
mbed_official 613:bc40b8d2aec4 409 CAN2_RX0_IRQHandler
mbed_official 613:bc40b8d2aec4 410 CAN2_RX1_IRQHandler
mbed_official 613:bc40b8d2aec4 411 CAN2_SCE_IRQHandler
mbed_official 613:bc40b8d2aec4 412 OTG_FS_IRQHandler
mbed_official 613:bc40b8d2aec4 413 DMA2_Stream5_IRQHandler
mbed_official 613:bc40b8d2aec4 414 DMA2_Stream6_IRQHandler
mbed_official 613:bc40b8d2aec4 415 DMA2_Stream7_IRQHandler
mbed_official 613:bc40b8d2aec4 416 USART6_IRQHandler
mbed_official 613:bc40b8d2aec4 417 I2C3_EV_IRQHandler
mbed_official 613:bc40b8d2aec4 418 I2C3_ER_IRQHandler
mbed_official 613:bc40b8d2aec4 419 OTG_HS_EP1_OUT_IRQHandler
mbed_official 613:bc40b8d2aec4 420 OTG_HS_EP1_IN_IRQHandler
mbed_official 613:bc40b8d2aec4 421 OTG_HS_WKUP_IRQHandler
mbed_official 613:bc40b8d2aec4 422 OTG_HS_IRQHandler
mbed_official 613:bc40b8d2aec4 423 DCMI_IRQHandler
mbed_official 613:bc40b8d2aec4 424 FPU_IRQHandler
mbed_official 613:bc40b8d2aec4 425 SPI4_IRQHandler
mbed_official 613:bc40b8d2aec4 426 SAI1_IRQHandler
mbed_official 613:bc40b8d2aec4 427 SAI2_IRQHandler
mbed_official 613:bc40b8d2aec4 428 QuadSPI_IRQHandler
mbed_official 613:bc40b8d2aec4 429 CEC_IRQHandler
mbed_official 613:bc40b8d2aec4 430 SPDIF_RX_IRQHandler
mbed_official 613:bc40b8d2aec4 431 I2C4_Event_IRQHandler
mbed_official 613:bc40b8d2aec4 432 I2C4_Error_IRQHandler
mbed_official 613:bc40b8d2aec4 433 B .
mbed_official 613:bc40b8d2aec4 434
mbed_official 613:bc40b8d2aec4 435 ENDP
mbed_official 613:bc40b8d2aec4 436
mbed_official 613:bc40b8d2aec4 437 ALIGN
mbed_official 613:bc40b8d2aec4 438 END
mbed_official 613:bc40b8d2aec4 439
mbed_official 613:bc40b8d2aec4 440 ;************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE*****