This fork of the MBED Library allows you to use counters on the external counter pins (15/16 for Timer 3, 29/30 for Timer 2) by switching internal timing functions in MBED to utilize Timer 0

Fork of mbed-src by mbed official

Committer:
mbed_official
Date:
Thu Sep 11 16:45:08 2014 +0100
Revision:
319:b6f57f64aae2
Parent:
289:bade01f4d529
Synchronized with git revision f9b22381c717a810c98424b4db23ea4d5d71ec7b

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

Changed "Cortex-M4" to "Cortex-M4F"

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 76:aeb1df146756 1 ; STM32L1xx Ultra Low Power High-density Devices vector table for MDK ARM_MICRO toolchain
mbed_official 76:aeb1df146756 2 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mbed_official 76:aeb1df146756 3 ; Copyright (c) 2014, STMicroelectronics
mbed_official 76:aeb1df146756 4 ; All rights reserved.
mbed_official 76:aeb1df146756 5 ;
mbed_official 76:aeb1df146756 6 ; Redistribution and use in source and binary forms, with or without
mbed_official 76:aeb1df146756 7 ; modification, are permitted provided that the following conditions are met:
mbed_official 76:aeb1df146756 8 ;
mbed_official 76:aeb1df146756 9 ; 1. Redistributions of source code must retain the above copyright notice,
mbed_official 76:aeb1df146756 10 ; this list of conditions and the following disclaimer.
mbed_official 76:aeb1df146756 11 ; 2. Redistributions in binary form must reproduce the above copyright notice,
mbed_official 76:aeb1df146756 12 ; this list of conditions and the following disclaimer in the documentation
mbed_official 76:aeb1df146756 13 ; and/or other materials provided with the distribution.
mbed_official 76:aeb1df146756 14 ; 3. Neither the name of STMicroelectronics nor the names of its contributors
mbed_official 76:aeb1df146756 15 ; may be used to endorse or promote products derived from this software
mbed_official 76:aeb1df146756 16 ; without specific prior written permission.
mbed_official 76:aeb1df146756 17 ;
mbed_official 76:aeb1df146756 18 ; THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
mbed_official 76:aeb1df146756 19 ; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
mbed_official 76:aeb1df146756 20 ; IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
mbed_official 76:aeb1df146756 21 ; DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
mbed_official 76:aeb1df146756 22 ; FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
mbed_official 76:aeb1df146756 23 ; DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
mbed_official 76:aeb1df146756 24 ; SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
mbed_official 76:aeb1df146756 25 ; CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
mbed_official 76:aeb1df146756 26 ; OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
mbed_official 76:aeb1df146756 27 ; OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
mbed_official 76:aeb1df146756 28 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
mbed_official 76:aeb1df146756 29
mbed_official 76:aeb1df146756 30 ; Amount of memory (in bytes) allocated for Stack
mbed_official 76:aeb1df146756 31 ; Tailor this value to your application needs
mbed_official 76:aeb1df146756 32 ; <h> Stack Configuration
mbed_official 76:aeb1df146756 33 ; <o> Stack Size (in Bytes) <0x0-0xFFFFFFFF:8>
mbed_official 76:aeb1df146756 34 ; </h>
mbed_official 76:aeb1df146756 35
mbed_official 76:aeb1df146756 36 Stack_Size EQU 0x00000400
mbed_official 76:aeb1df146756 37
mbed_official 76:aeb1df146756 38 AREA STACK, NOINIT, READWRITE, ALIGN=3
mbed_official 76:aeb1df146756 39 EXPORT __initial_sp
mbed_official 76:aeb1df146756 40
mbed_official 76:aeb1df146756 41 Stack_Mem SPACE Stack_Size
mbed_official 76:aeb1df146756 42 __initial_sp EQU 0x20014000 ; Top of RAM (80 KB for STM32L152RE)
mbed_official 76:aeb1df146756 43
mbed_official 76:aeb1df146756 44
mbed_official 76:aeb1df146756 45 ; <h> Heap Configuration
mbed_official 76:aeb1df146756 46 ; <o> Heap Size (in Bytes) <0x0-0xFFFFFFFF:8>
mbed_official 76:aeb1df146756 47 ; </h>
mbed_official 76:aeb1df146756 48
mbed_official 289:bade01f4d529 49 Heap_Size EQU 0x00000400
mbed_official 76:aeb1df146756 50
mbed_official 76:aeb1df146756 51 AREA HEAP, NOINIT, READWRITE, ALIGN=3
mbed_official 76:aeb1df146756 52 EXPORT __heap_base
mbed_official 76:aeb1df146756 53 EXPORT __heap_limit
mbed_official 76:aeb1df146756 54
mbed_official 76:aeb1df146756 55 __heap_base
mbed_official 76:aeb1df146756 56 Heap_Mem SPACE Heap_Size
mbed_official 319:b6f57f64aae2 57 __heap_limit EQU (__initial_sp - Stack_Size)
mbed_official 76:aeb1df146756 58
mbed_official 76:aeb1df146756 59 PRESERVE8
mbed_official 76:aeb1df146756 60 THUMB
mbed_official 76:aeb1df146756 61
mbed_official 76:aeb1df146756 62
mbed_official 76:aeb1df146756 63 ; Vector Table Mapped to Address 0 at Reset
mbed_official 76:aeb1df146756 64 AREA RESET, DATA, READONLY
mbed_official 76:aeb1df146756 65 EXPORT __Vectors
mbed_official 76:aeb1df146756 66 EXPORT __Vectors_End
mbed_official 76:aeb1df146756 67 EXPORT __Vectors_Size
mbed_official 76:aeb1df146756 68
mbed_official 76:aeb1df146756 69 __Vectors DCD __initial_sp ; Top of Stack
mbed_official 76:aeb1df146756 70 DCD Reset_Handler ; Reset Handler
mbed_official 76:aeb1df146756 71 DCD NMI_Handler ; NMI Handler
mbed_official 76:aeb1df146756 72 DCD HardFault_Handler ; Hard Fault Handler
mbed_official 76:aeb1df146756 73 DCD MemManage_Handler ; MPU Fault Handler
mbed_official 76:aeb1df146756 74 DCD BusFault_Handler ; Bus Fault Handler
mbed_official 76:aeb1df146756 75 DCD UsageFault_Handler ; Usage Fault Handler
mbed_official 76:aeb1df146756 76 DCD 0 ; Reserved
mbed_official 76:aeb1df146756 77 DCD 0 ; Reserved
mbed_official 76:aeb1df146756 78 DCD 0 ; Reserved
mbed_official 76:aeb1df146756 79 DCD 0 ; Reserved
mbed_official 76:aeb1df146756 80 DCD SVC_Handler ; SVCall Handler
mbed_official 76:aeb1df146756 81 DCD DebugMon_Handler ; Debug Monitor Handler
mbed_official 76:aeb1df146756 82 DCD 0 ; Reserved
mbed_official 76:aeb1df146756 83 DCD PendSV_Handler ; PendSV Handler
mbed_official 76:aeb1df146756 84 DCD SysTick_Handler ; SysTick Handler
mbed_official 76:aeb1df146756 85
mbed_official 76:aeb1df146756 86 ; External Interrupts
mbed_official 76:aeb1df146756 87 DCD WWDG_IRQHandler ; Window Watchdog
mbed_official 76:aeb1df146756 88 DCD PVD_IRQHandler ; PVD through EXTI Line detect
mbed_official 76:aeb1df146756 89 DCD TAMPER_STAMP_IRQHandler ; Tamper and Time Stamp
mbed_official 76:aeb1df146756 90 DCD RTC_WKUP_IRQHandler ; RTC Wakeup
mbed_official 76:aeb1df146756 91 DCD FLASH_IRQHandler ; FLASH
mbed_official 76:aeb1df146756 92 DCD RCC_IRQHandler ; RCC
mbed_official 76:aeb1df146756 93 DCD EXTI0_IRQHandler ; EXTI Line 0
mbed_official 76:aeb1df146756 94 DCD EXTI1_IRQHandler ; EXTI Line 1
mbed_official 76:aeb1df146756 95 DCD EXTI2_IRQHandler ; EXTI Line 2
mbed_official 76:aeb1df146756 96 DCD EXTI3_IRQHandler ; EXTI Line 3
mbed_official 76:aeb1df146756 97 DCD EXTI4_IRQHandler ; EXTI Line 4
mbed_official 76:aeb1df146756 98 DCD DMA1_Channel1_IRQHandler ; DMA1 Channel 1
mbed_official 76:aeb1df146756 99 DCD DMA1_Channel2_IRQHandler ; DMA1 Channel 2
mbed_official 76:aeb1df146756 100 DCD DMA1_Channel3_IRQHandler ; DMA1 Channel 3
mbed_official 76:aeb1df146756 101 DCD DMA1_Channel4_IRQHandler ; DMA1 Channel 4
mbed_official 76:aeb1df146756 102 DCD DMA1_Channel5_IRQHandler ; DMA1 Channel 5
mbed_official 76:aeb1df146756 103 DCD DMA1_Channel6_IRQHandler ; DMA1 Channel 6
mbed_official 76:aeb1df146756 104 DCD DMA1_Channel7_IRQHandler ; DMA1 Channel 7
mbed_official 76:aeb1df146756 105 DCD ADC1_IRQHandler ; ADC1
mbed_official 76:aeb1df146756 106 DCD USB_HP_IRQHandler ; USB High Priority
mbed_official 76:aeb1df146756 107 DCD USB_LP_IRQHandler ; USB Low Priority
mbed_official 76:aeb1df146756 108 DCD DAC_IRQHandler ; DAC
mbed_official 76:aeb1df146756 109 DCD COMP_IRQHandler ; COMP through EXTI Line
mbed_official 76:aeb1df146756 110 DCD EXTI9_5_IRQHandler ; EXTI Line 9..5
mbed_official 76:aeb1df146756 111 DCD LCD_IRQHandler ; LCD
mbed_official 76:aeb1df146756 112 DCD TIM9_IRQHandler ; TIM9
mbed_official 76:aeb1df146756 113 DCD TIM10_IRQHandler ; TIM10
mbed_official 76:aeb1df146756 114 DCD TIM11_IRQHandler ; TIM11
mbed_official 76:aeb1df146756 115 DCD TIM2_IRQHandler ; TIM2
mbed_official 76:aeb1df146756 116 DCD TIM3_IRQHandler ; TIM3
mbed_official 76:aeb1df146756 117 DCD TIM4_IRQHandler ; TIM4
mbed_official 76:aeb1df146756 118 DCD I2C1_EV_IRQHandler ; I2C1 Event
mbed_official 76:aeb1df146756 119 DCD I2C1_ER_IRQHandler ; I2C1 Error
mbed_official 76:aeb1df146756 120 DCD I2C2_EV_IRQHandler ; I2C2 Event
mbed_official 76:aeb1df146756 121 DCD I2C2_ER_IRQHandler ; I2C2 Error
mbed_official 76:aeb1df146756 122 DCD SPI1_IRQHandler ; SPI1
mbed_official 76:aeb1df146756 123 DCD SPI2_IRQHandler ; SPI2
mbed_official 76:aeb1df146756 124 DCD USART1_IRQHandler ; USART1
mbed_official 76:aeb1df146756 125 DCD USART2_IRQHandler ; USART2
mbed_official 76:aeb1df146756 126 DCD USART3_IRQHandler ; USART3
mbed_official 76:aeb1df146756 127 DCD EXTI15_10_IRQHandler ; EXTI Line 15..10
mbed_official 76:aeb1df146756 128 DCD RTC_Alarm_IRQHandler ; RTC Alarm through EXTI Line
mbed_official 76:aeb1df146756 129 DCD USB_FS_WKUP_IRQHandler ; USB FS Wakeup from suspend
mbed_official 76:aeb1df146756 130 DCD TIM6_IRQHandler ; TIM6
mbed_official 76:aeb1df146756 131 DCD TIM7_IRQHandler ; TIM7
mbed_official 76:aeb1df146756 132 DCD SDIO_IRQHandler ; SDIO
mbed_official 76:aeb1df146756 133 DCD TIM5_IRQHandler ; TIM5
mbed_official 76:aeb1df146756 134 DCD SPI3_IRQHandler ; SPI3
mbed_official 76:aeb1df146756 135 DCD UART4_IRQHandler ; UART4
mbed_official 76:aeb1df146756 136 DCD UART5_IRQHandler ; UART5
mbed_official 76:aeb1df146756 137 DCD DMA2_Channel1_IRQHandler ; DMA2 Channel 1
mbed_official 76:aeb1df146756 138 DCD DMA2_Channel2_IRQHandler ; DMA2 Channel 2
mbed_official 76:aeb1df146756 139 DCD DMA2_Channel3_IRQHandler ; DMA2 Channel 3
mbed_official 76:aeb1df146756 140 DCD DMA2_Channel4_IRQHandler ; DMA2 Channel 4
mbed_official 76:aeb1df146756 141 DCD DMA2_Channel5_IRQHandler ; DMA2 Channel 5
mbed_official 76:aeb1df146756 142 DCD AES_IRQHandler ; AES
mbed_official 76:aeb1df146756 143 DCD COMP_ACQ_IRQHandler ; Comparator Channel Acquisition
mbed_official 76:aeb1df146756 144
mbed_official 76:aeb1df146756 145 __Vectors_End
mbed_official 76:aeb1df146756 146
mbed_official 76:aeb1df146756 147 __Vectors_Size EQU __Vectors_End - __Vectors
mbed_official 76:aeb1df146756 148
mbed_official 76:aeb1df146756 149 AREA |.text|, CODE, READONLY
mbed_official 76:aeb1df146756 150
mbed_official 76:aeb1df146756 151 ; Reset handler
mbed_official 76:aeb1df146756 152 Reset_Handler PROC
mbed_official 76:aeb1df146756 153 EXPORT Reset_Handler [WEAK]
mbed_official 76:aeb1df146756 154 IMPORT __main
mbed_official 76:aeb1df146756 155 IMPORT SystemInit
mbed_official 76:aeb1df146756 156 LDR R0, =SystemInit
mbed_official 76:aeb1df146756 157 BLX R0
mbed_official 76:aeb1df146756 158 LDR R0, =__main
mbed_official 76:aeb1df146756 159 BX R0
mbed_official 76:aeb1df146756 160 ENDP
mbed_official 76:aeb1df146756 161
mbed_official 76:aeb1df146756 162 ; Dummy Exception Handlers (infinite loops which can be modified)
mbed_official 76:aeb1df146756 163
mbed_official 76:aeb1df146756 164 NMI_Handler PROC
mbed_official 76:aeb1df146756 165 EXPORT NMI_Handler [WEAK]
mbed_official 76:aeb1df146756 166 B .
mbed_official 76:aeb1df146756 167 ENDP
mbed_official 76:aeb1df146756 168 HardFault_Handler\
mbed_official 76:aeb1df146756 169 PROC
mbed_official 76:aeb1df146756 170 EXPORT HardFault_Handler [WEAK]
mbed_official 76:aeb1df146756 171 B .
mbed_official 76:aeb1df146756 172 ENDP
mbed_official 76:aeb1df146756 173 MemManage_Handler\
mbed_official 76:aeb1df146756 174 PROC
mbed_official 76:aeb1df146756 175 EXPORT MemManage_Handler [WEAK]
mbed_official 76:aeb1df146756 176 B .
mbed_official 76:aeb1df146756 177 ENDP
mbed_official 76:aeb1df146756 178 BusFault_Handler\
mbed_official 76:aeb1df146756 179 PROC
mbed_official 76:aeb1df146756 180 EXPORT BusFault_Handler [WEAK]
mbed_official 76:aeb1df146756 181 B .
mbed_official 76:aeb1df146756 182 ENDP
mbed_official 76:aeb1df146756 183 UsageFault_Handler\
mbed_official 76:aeb1df146756 184 PROC
mbed_official 76:aeb1df146756 185 EXPORT UsageFault_Handler [WEAK]
mbed_official 76:aeb1df146756 186 B .
mbed_official 76:aeb1df146756 187 ENDP
mbed_official 76:aeb1df146756 188 SVC_Handler PROC
mbed_official 76:aeb1df146756 189 EXPORT SVC_Handler [WEAK]
mbed_official 76:aeb1df146756 190 B .
mbed_official 76:aeb1df146756 191 ENDP
mbed_official 76:aeb1df146756 192 DebugMon_Handler\
mbed_official 76:aeb1df146756 193 PROC
mbed_official 76:aeb1df146756 194 EXPORT DebugMon_Handler [WEAK]
mbed_official 76:aeb1df146756 195 B .
mbed_official 76:aeb1df146756 196 ENDP
mbed_official 76:aeb1df146756 197 PendSV_Handler PROC
mbed_official 76:aeb1df146756 198 EXPORT PendSV_Handler [WEAK]
mbed_official 76:aeb1df146756 199 B .
mbed_official 76:aeb1df146756 200 ENDP
mbed_official 76:aeb1df146756 201 SysTick_Handler PROC
mbed_official 76:aeb1df146756 202 EXPORT SysTick_Handler [WEAK]
mbed_official 76:aeb1df146756 203 B .
mbed_official 76:aeb1df146756 204 ENDP
mbed_official 76:aeb1df146756 205
mbed_official 76:aeb1df146756 206 Default_Handler PROC
mbed_official 76:aeb1df146756 207
mbed_official 76:aeb1df146756 208 EXPORT WWDG_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 209 EXPORT PVD_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 210 EXPORT TAMPER_STAMP_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 211 EXPORT RTC_WKUP_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 212 EXPORT FLASH_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 213 EXPORT RCC_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 214 EXPORT EXTI0_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 215 EXPORT EXTI1_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 216 EXPORT EXTI2_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 217 EXPORT EXTI3_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 218 EXPORT EXTI4_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 219 EXPORT DMA1_Channel1_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 220 EXPORT DMA1_Channel2_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 221 EXPORT DMA1_Channel3_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 222 EXPORT DMA1_Channel4_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 223 EXPORT DMA1_Channel5_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 224 EXPORT DMA1_Channel6_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 225 EXPORT DMA1_Channel7_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 226 EXPORT ADC1_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 227 EXPORT USB_HP_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 228 EXPORT USB_LP_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 229 EXPORT DAC_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 230 EXPORT COMP_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 231 EXPORT EXTI9_5_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 232 EXPORT LCD_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 233 EXPORT TIM9_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 234 EXPORT TIM10_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 235 EXPORT TIM11_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 236 EXPORT TIM2_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 237 EXPORT TIM3_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 238 EXPORT TIM4_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 239 EXPORT I2C1_EV_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 240 EXPORT I2C1_ER_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 241 EXPORT I2C2_EV_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 242 EXPORT I2C2_ER_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 243 EXPORT SPI1_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 244 EXPORT SPI2_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 245 EXPORT USART1_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 246 EXPORT USART2_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 247 EXPORT USART3_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 248 EXPORT EXTI15_10_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 249 EXPORT RTC_Alarm_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 250 EXPORT USB_FS_WKUP_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 251 EXPORT TIM6_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 252 EXPORT TIM7_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 253 EXPORT SDIO_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 254 EXPORT TIM5_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 255 EXPORT SPI3_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 256 EXPORT UART4_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 257 EXPORT UART5_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 258 EXPORT DMA2_Channel1_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 259 EXPORT DMA2_Channel2_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 260 EXPORT DMA2_Channel3_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 261 EXPORT DMA2_Channel4_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 262 EXPORT DMA2_Channel5_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 263 EXPORT AES_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 264 EXPORT COMP_ACQ_IRQHandler [WEAK]
mbed_official 76:aeb1df146756 265
mbed_official 76:aeb1df146756 266 WWDG_IRQHandler
mbed_official 76:aeb1df146756 267 PVD_IRQHandler
mbed_official 76:aeb1df146756 268 TAMPER_STAMP_IRQHandler
mbed_official 76:aeb1df146756 269 RTC_WKUP_IRQHandler
mbed_official 76:aeb1df146756 270 FLASH_IRQHandler
mbed_official 76:aeb1df146756 271 RCC_IRQHandler
mbed_official 76:aeb1df146756 272 EXTI0_IRQHandler
mbed_official 76:aeb1df146756 273 EXTI1_IRQHandler
mbed_official 76:aeb1df146756 274 EXTI2_IRQHandler
mbed_official 76:aeb1df146756 275 EXTI3_IRQHandler
mbed_official 76:aeb1df146756 276 EXTI4_IRQHandler
mbed_official 76:aeb1df146756 277 DMA1_Channel1_IRQHandler
mbed_official 76:aeb1df146756 278 DMA1_Channel2_IRQHandler
mbed_official 76:aeb1df146756 279 DMA1_Channel3_IRQHandler
mbed_official 76:aeb1df146756 280 DMA1_Channel4_IRQHandler
mbed_official 76:aeb1df146756 281 DMA1_Channel5_IRQHandler
mbed_official 76:aeb1df146756 282 DMA1_Channel6_IRQHandler
mbed_official 76:aeb1df146756 283 DMA1_Channel7_IRQHandler
mbed_official 76:aeb1df146756 284 ADC1_IRQHandler
mbed_official 76:aeb1df146756 285 USB_HP_IRQHandler
mbed_official 76:aeb1df146756 286 USB_LP_IRQHandler
mbed_official 76:aeb1df146756 287 DAC_IRQHandler
mbed_official 76:aeb1df146756 288 COMP_IRQHandler
mbed_official 76:aeb1df146756 289 EXTI9_5_IRQHandler
mbed_official 76:aeb1df146756 290 LCD_IRQHandler
mbed_official 76:aeb1df146756 291 TIM9_IRQHandler
mbed_official 76:aeb1df146756 292 TIM10_IRQHandler
mbed_official 76:aeb1df146756 293 TIM11_IRQHandler
mbed_official 76:aeb1df146756 294 TIM2_IRQHandler
mbed_official 76:aeb1df146756 295 TIM3_IRQHandler
mbed_official 76:aeb1df146756 296 TIM4_IRQHandler
mbed_official 76:aeb1df146756 297 I2C1_EV_IRQHandler
mbed_official 76:aeb1df146756 298 I2C1_ER_IRQHandler
mbed_official 76:aeb1df146756 299 I2C2_EV_IRQHandler
mbed_official 76:aeb1df146756 300 I2C2_ER_IRQHandler
mbed_official 76:aeb1df146756 301 SPI1_IRQHandler
mbed_official 76:aeb1df146756 302 SPI2_IRQHandler
mbed_official 76:aeb1df146756 303 USART1_IRQHandler
mbed_official 76:aeb1df146756 304 USART2_IRQHandler
mbed_official 76:aeb1df146756 305 USART3_IRQHandler
mbed_official 76:aeb1df146756 306 EXTI15_10_IRQHandler
mbed_official 76:aeb1df146756 307 RTC_Alarm_IRQHandler
mbed_official 76:aeb1df146756 308 USB_FS_WKUP_IRQHandler
mbed_official 76:aeb1df146756 309 TIM6_IRQHandler
mbed_official 76:aeb1df146756 310 TIM7_IRQHandler
mbed_official 76:aeb1df146756 311 SDIO_IRQHandler
mbed_official 76:aeb1df146756 312 TIM5_IRQHandler
mbed_official 76:aeb1df146756 313 SPI3_IRQHandler
mbed_official 76:aeb1df146756 314 UART4_IRQHandler
mbed_official 76:aeb1df146756 315 UART5_IRQHandler
mbed_official 76:aeb1df146756 316 DMA2_Channel1_IRQHandler
mbed_official 76:aeb1df146756 317 DMA2_Channel2_IRQHandler
mbed_official 76:aeb1df146756 318 DMA2_Channel3_IRQHandler
mbed_official 76:aeb1df146756 319 DMA2_Channel4_IRQHandler
mbed_official 76:aeb1df146756 320 DMA2_Channel5_IRQHandler
mbed_official 76:aeb1df146756 321 AES_IRQHandler
mbed_official 76:aeb1df146756 322 COMP_ACQ_IRQHandler
mbed_official 76:aeb1df146756 323
mbed_official 76:aeb1df146756 324 B .
mbed_official 76:aeb1df146756 325
mbed_official 76:aeb1df146756 326 ENDP
mbed_official 76:aeb1df146756 327
mbed_official 76:aeb1df146756 328 ALIGN
mbed_official 76:aeb1df146756 329 END