Mouse code for the MacroRat

Dependencies:   ITG3200 QEI

Committer:
sahilmgandhi
Date:
Sat Jun 03 00:22:44 2017 +0000
Revision:
46:b156ef445742
Parent:
18:6a4db94011d3
Final code for internal battlebot competition.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
sahilmgandhi 18:6a4db94011d3 1 /**
sahilmgandhi 18:6a4db94011d3 2 ******************************************************************************
sahilmgandhi 18:6a4db94011d3 3 * @file startup_stm32f412zx.s
sahilmgandhi 18:6a4db94011d3 4 * @author MCD Application Team
sahilmgandhi 18:6a4db94011d3 5 * @version V2.5.1
sahilmgandhi 18:6a4db94011d3 6 * @date 28-June-2016
sahilmgandhi 18:6a4db94011d3 7 * @brief STM32F412Zx Devices vector table for GCC based toolchains.
sahilmgandhi 18:6a4db94011d3 8 * This module performs:
sahilmgandhi 18:6a4db94011d3 9 * - Set the initial SP
sahilmgandhi 18:6a4db94011d3 10 * - Set the initial PC == Reset_Handler,
sahilmgandhi 18:6a4db94011d3 11 * - Set the vector table entries with the exceptions ISR address
sahilmgandhi 18:6a4db94011d3 12 * - Branches to main in the C library (which eventually
sahilmgandhi 18:6a4db94011d3 13 * calls main()).
sahilmgandhi 18:6a4db94011d3 14 * After Reset the Cortex-M4 processor is in Thread mode,
sahilmgandhi 18:6a4db94011d3 15 * priority is Privileged, and the Stack is set to Main.
sahilmgandhi 18:6a4db94011d3 16 ******************************************************************************
sahilmgandhi 18:6a4db94011d3 17 * @attention
sahilmgandhi 18:6a4db94011d3 18 *
sahilmgandhi 18:6a4db94011d3 19 * <h2><center>&copy; COPYRIGHT 2016 STMicroelectronics</center></h2>
sahilmgandhi 18:6a4db94011d3 20 *
sahilmgandhi 18:6a4db94011d3 21 * Redistribution and use in source and binary forms, with or without modification,
sahilmgandhi 18:6a4db94011d3 22 * are permitted provided that the following conditions are met:
sahilmgandhi 18:6a4db94011d3 23 * 1. Redistributions of source code must retain the above copyright notice,
sahilmgandhi 18:6a4db94011d3 24 * this list of conditions and the following disclaimer.
sahilmgandhi 18:6a4db94011d3 25 * 2. Redistributions in binary form must reproduce the above copyright notice,
sahilmgandhi 18:6a4db94011d3 26 * this list of conditions and the following disclaimer in the documentation
sahilmgandhi 18:6a4db94011d3 27 * and/or other materials provided with the distribution.
sahilmgandhi 18:6a4db94011d3 28 * 3. Neither the name of STMicroelectronics nor the names of its contributors
sahilmgandhi 18:6a4db94011d3 29 * may be used to endorse or promote products derived from this software
sahilmgandhi 18:6a4db94011d3 30 * without specific prior written permission.
sahilmgandhi 18:6a4db94011d3 31 *
sahilmgandhi 18:6a4db94011d3 32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
sahilmgandhi 18:6a4db94011d3 33 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
sahilmgandhi 18:6a4db94011d3 34 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
sahilmgandhi 18:6a4db94011d3 35 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
sahilmgandhi 18:6a4db94011d3 36 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
sahilmgandhi 18:6a4db94011d3 37 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
sahilmgandhi 18:6a4db94011d3 38 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
sahilmgandhi 18:6a4db94011d3 39 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
sahilmgandhi 18:6a4db94011d3 40 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
sahilmgandhi 18:6a4db94011d3 41 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
sahilmgandhi 18:6a4db94011d3 42 *
sahilmgandhi 18:6a4db94011d3 43 ******************************************************************************
sahilmgandhi 18:6a4db94011d3 44 */
sahilmgandhi 18:6a4db94011d3 45
sahilmgandhi 18:6a4db94011d3 46 .syntax unified
sahilmgandhi 18:6a4db94011d3 47 .cpu cortex-m4
sahilmgandhi 18:6a4db94011d3 48 .fpu softvfp
sahilmgandhi 18:6a4db94011d3 49 .thumb
sahilmgandhi 18:6a4db94011d3 50
sahilmgandhi 18:6a4db94011d3 51 .global g_pfnVectors
sahilmgandhi 18:6a4db94011d3 52 .global Default_Handler
sahilmgandhi 18:6a4db94011d3 53
sahilmgandhi 18:6a4db94011d3 54 /* start address for the initialization values of the .data section.
sahilmgandhi 18:6a4db94011d3 55 defined in linker script */
sahilmgandhi 18:6a4db94011d3 56 .word _sidata
sahilmgandhi 18:6a4db94011d3 57 /* start address for the .data section. defined in linker script */
sahilmgandhi 18:6a4db94011d3 58 .word _sdata
sahilmgandhi 18:6a4db94011d3 59 /* end address for the .data section. defined in linker script */
sahilmgandhi 18:6a4db94011d3 60 .word _edata
sahilmgandhi 18:6a4db94011d3 61 /* start address for the .bss section. defined in linker script */
sahilmgandhi 18:6a4db94011d3 62 .word _sbss
sahilmgandhi 18:6a4db94011d3 63 /* end address for the .bss section. defined in linker script */
sahilmgandhi 18:6a4db94011d3 64 .word _ebss
sahilmgandhi 18:6a4db94011d3 65 /* stack used for SystemInit_ExtMemCtl; always internal RAM used */
sahilmgandhi 18:6a4db94011d3 66
sahilmgandhi 18:6a4db94011d3 67 /**
sahilmgandhi 18:6a4db94011d3 68 * @brief This is the code that gets called when the processor first
sahilmgandhi 18:6a4db94011d3 69 * starts execution following a reset event. Only the absolutely
sahilmgandhi 18:6a4db94011d3 70 * necessary set is performed, after which the application
sahilmgandhi 18:6a4db94011d3 71 * supplied main() routine is called.
sahilmgandhi 18:6a4db94011d3 72 * @param None
sahilmgandhi 18:6a4db94011d3 73 * @retval : None
sahilmgandhi 18:6a4db94011d3 74 */
sahilmgandhi 18:6a4db94011d3 75
sahilmgandhi 18:6a4db94011d3 76 .section .text.Reset_Handler
sahilmgandhi 18:6a4db94011d3 77 .weak Reset_Handler
sahilmgandhi 18:6a4db94011d3 78 .type Reset_Handler, %function
sahilmgandhi 18:6a4db94011d3 79 Reset_Handler:
sahilmgandhi 18:6a4db94011d3 80 ldr sp, =_estack /* set stack pointer */
sahilmgandhi 18:6a4db94011d3 81
sahilmgandhi 18:6a4db94011d3 82 /* Copy the data segment initializers from flash to SRAM */
sahilmgandhi 18:6a4db94011d3 83 movs r1, #0
sahilmgandhi 18:6a4db94011d3 84 b LoopCopyDataInit
sahilmgandhi 18:6a4db94011d3 85
sahilmgandhi 18:6a4db94011d3 86 CopyDataInit:
sahilmgandhi 18:6a4db94011d3 87 ldr r3, =_sidata
sahilmgandhi 18:6a4db94011d3 88 ldr r3, [r3, r1]
sahilmgandhi 18:6a4db94011d3 89 str r3, [r0, r1]
sahilmgandhi 18:6a4db94011d3 90 adds r1, r1, #4
sahilmgandhi 18:6a4db94011d3 91
sahilmgandhi 18:6a4db94011d3 92 LoopCopyDataInit:
sahilmgandhi 18:6a4db94011d3 93 ldr r0, =_sdata
sahilmgandhi 18:6a4db94011d3 94 ldr r3, =_edata
sahilmgandhi 18:6a4db94011d3 95 adds r2, r0, r1
sahilmgandhi 18:6a4db94011d3 96 cmp r2, r3
sahilmgandhi 18:6a4db94011d3 97 bcc CopyDataInit
sahilmgandhi 18:6a4db94011d3 98 ldr r2, =_sbss
sahilmgandhi 18:6a4db94011d3 99 b LoopFillZerobss
sahilmgandhi 18:6a4db94011d3 100 /* Zero fill the bss segment. */
sahilmgandhi 18:6a4db94011d3 101 FillZerobss:
sahilmgandhi 18:6a4db94011d3 102 movs r3, #0
sahilmgandhi 18:6a4db94011d3 103 str r3, [r2], #4
sahilmgandhi 18:6a4db94011d3 104
sahilmgandhi 18:6a4db94011d3 105 LoopFillZerobss:
sahilmgandhi 18:6a4db94011d3 106 ldr r3, = _ebss
sahilmgandhi 18:6a4db94011d3 107 cmp r2, r3
sahilmgandhi 18:6a4db94011d3 108 bcc FillZerobss
sahilmgandhi 18:6a4db94011d3 109
sahilmgandhi 18:6a4db94011d3 110 /* Call the clock system intitialization function.*/
sahilmgandhi 18:6a4db94011d3 111 bl SystemInit
sahilmgandhi 18:6a4db94011d3 112 /* Call static constructors */
sahilmgandhi 18:6a4db94011d3 113 //bl __libc_init_array
sahilmgandhi 18:6a4db94011d3 114 /* Call the application's entry point.*/
sahilmgandhi 18:6a4db94011d3 115 //bl main
sahilmgandhi 18:6a4db94011d3 116 // Calling the crt0 'cold-start' entry point. There __libc_init_array is called
sahilmgandhi 18:6a4db94011d3 117 // and when existing hardware_init_hook() and software_init_hook() before
sahilmgandhi 18:6a4db94011d3 118 // starting main(). software_init_hook() is available and has to be called due
sahilmgandhi 18:6a4db94011d3 119 // to initializsation when using rtos.
sahilmgandhi 18:6a4db94011d3 120 bl _start
sahilmgandhi 18:6a4db94011d3 121 bx lr
sahilmgandhi 18:6a4db94011d3 122 .size Reset_Handler, .-Reset_Handler
sahilmgandhi 18:6a4db94011d3 123
sahilmgandhi 18:6a4db94011d3 124 /**
sahilmgandhi 18:6a4db94011d3 125 * @brief This is the code that gets called when the processor receives an
sahilmgandhi 18:6a4db94011d3 126 * unexpected interrupt. This simply enters an infinite loop, preserving
sahilmgandhi 18:6a4db94011d3 127 * the system state for examination by a debugger.
sahilmgandhi 18:6a4db94011d3 128 * @param None
sahilmgandhi 18:6a4db94011d3 129 * @retval None
sahilmgandhi 18:6a4db94011d3 130 */
sahilmgandhi 18:6a4db94011d3 131 .section .text.Default_Handler,"ax",%progbits
sahilmgandhi 18:6a4db94011d3 132 Default_Handler:
sahilmgandhi 18:6a4db94011d3 133 Infinite_Loop:
sahilmgandhi 18:6a4db94011d3 134 b Infinite_Loop
sahilmgandhi 18:6a4db94011d3 135 .size Default_Handler, .-Default_Handler
sahilmgandhi 18:6a4db94011d3 136 /******************************************************************************
sahilmgandhi 18:6a4db94011d3 137 *
sahilmgandhi 18:6a4db94011d3 138 * The minimal vector table for a Cortex M3. Note that the proper constructs
sahilmgandhi 18:6a4db94011d3 139 * must be placed on this to ensure that it ends up at physical address
sahilmgandhi 18:6a4db94011d3 140 * 0x0000.0000.
sahilmgandhi 18:6a4db94011d3 141 *
sahilmgandhi 18:6a4db94011d3 142 *******************************************************************************/
sahilmgandhi 18:6a4db94011d3 143 .section .isr_vector,"a",%progbits
sahilmgandhi 18:6a4db94011d3 144 .type g_pfnVectors, %object
sahilmgandhi 18:6a4db94011d3 145 .size g_pfnVectors, .-g_pfnVectors
sahilmgandhi 18:6a4db94011d3 146
sahilmgandhi 18:6a4db94011d3 147 g_pfnVectors:
sahilmgandhi 18:6a4db94011d3 148 .word _estack
sahilmgandhi 18:6a4db94011d3 149 .word Reset_Handler
sahilmgandhi 18:6a4db94011d3 150 .word NMI_Handler
sahilmgandhi 18:6a4db94011d3 151 .word HardFault_Handler
sahilmgandhi 18:6a4db94011d3 152 .word MemManage_Handler
sahilmgandhi 18:6a4db94011d3 153 .word BusFault_Handler
sahilmgandhi 18:6a4db94011d3 154 .word UsageFault_Handler
sahilmgandhi 18:6a4db94011d3 155 .word 0
sahilmgandhi 18:6a4db94011d3 156 .word 0
sahilmgandhi 18:6a4db94011d3 157 .word 0
sahilmgandhi 18:6a4db94011d3 158 .word 0
sahilmgandhi 18:6a4db94011d3 159 .word SVC_Handler
sahilmgandhi 18:6a4db94011d3 160 .word DebugMon_Handler
sahilmgandhi 18:6a4db94011d3 161 .word 0
sahilmgandhi 18:6a4db94011d3 162 .word PendSV_Handler
sahilmgandhi 18:6a4db94011d3 163 .word SysTick_Handler
sahilmgandhi 18:6a4db94011d3 164
sahilmgandhi 18:6a4db94011d3 165 /* External Interrupts */
sahilmgandhi 18:6a4db94011d3 166 .word WWDG_IRQHandler /* Window WatchDog */
sahilmgandhi 18:6a4db94011d3 167 .word PVD_IRQHandler /* PVD through EXTI Line detection */
sahilmgandhi 18:6a4db94011d3 168 .word TAMP_STAMP_IRQHandler /* Tamper and TimeStamps through the EXTI line */
sahilmgandhi 18:6a4db94011d3 169 .word RTC_WKUP_IRQHandler /* RTC Wakeup through the EXTI line */
sahilmgandhi 18:6a4db94011d3 170 .word FLASH_IRQHandler /* FLASH */
sahilmgandhi 18:6a4db94011d3 171 .word RCC_IRQHandler /* RCC */
sahilmgandhi 18:6a4db94011d3 172 .word EXTI0_IRQHandler /* EXTI Line0 */
sahilmgandhi 18:6a4db94011d3 173 .word EXTI1_IRQHandler /* EXTI Line1 */
sahilmgandhi 18:6a4db94011d3 174 .word EXTI2_IRQHandler /* EXTI Line2 */
sahilmgandhi 18:6a4db94011d3 175 .word EXTI3_IRQHandler /* EXTI Line3 */
sahilmgandhi 18:6a4db94011d3 176 .word EXTI4_IRQHandler /* EXTI Line4 */
sahilmgandhi 18:6a4db94011d3 177 .word DMA1_Stream0_IRQHandler /* DMA1 Stream 0 */
sahilmgandhi 18:6a4db94011d3 178 .word DMA1_Stream1_IRQHandler /* DMA1 Stream 1 */
sahilmgandhi 18:6a4db94011d3 179 .word DMA1_Stream2_IRQHandler /* DMA1 Stream 2 */
sahilmgandhi 18:6a4db94011d3 180 .word DMA1_Stream3_IRQHandler /* DMA1 Stream 3 */
sahilmgandhi 18:6a4db94011d3 181 .word DMA1_Stream4_IRQHandler /* DMA1 Stream 4 */
sahilmgandhi 18:6a4db94011d3 182 .word DMA1_Stream5_IRQHandler /* DMA1 Stream 5 */
sahilmgandhi 18:6a4db94011d3 183 .word DMA1_Stream6_IRQHandler /* DMA1 Stream 6 */
sahilmgandhi 18:6a4db94011d3 184 .word ADC_IRQHandler /* ADC1, ADC2 and ADC3s */
sahilmgandhi 18:6a4db94011d3 185 .word CAN1_TX_IRQHandler /* CAN1 TX */
sahilmgandhi 18:6a4db94011d3 186 .word CAN1_RX0_IRQHandler /* CAN1 RX0 */
sahilmgandhi 18:6a4db94011d3 187 .word CAN1_RX1_IRQHandler /* CAN1 RX1 */
sahilmgandhi 18:6a4db94011d3 188 .word CAN1_SCE_IRQHandler /* CAN1 SCE */
sahilmgandhi 18:6a4db94011d3 189 .word EXTI9_5_IRQHandler /* External Line[9:5]s */
sahilmgandhi 18:6a4db94011d3 190 .word TIM1_BRK_TIM9_IRQHandler /* TIM1 Break and TIM9 */
sahilmgandhi 18:6a4db94011d3 191 .word TIM1_UP_TIM10_IRQHandler /* TIM1 Update and TIM10 */
sahilmgandhi 18:6a4db94011d3 192 .word TIM1_TRG_COM_TIM11_IRQHandler /* TIM1 Trigger and Commutation and TIM11 */
sahilmgandhi 18:6a4db94011d3 193 .word TIM1_CC_IRQHandler /* TIM1 Capture Compare */
sahilmgandhi 18:6a4db94011d3 194 .word TIM2_IRQHandler /* TIM2 */
sahilmgandhi 18:6a4db94011d3 195 .word TIM3_IRQHandler /* TIM3 */
sahilmgandhi 18:6a4db94011d3 196 .word TIM4_IRQHandler /* TIM4 */
sahilmgandhi 18:6a4db94011d3 197 .word I2C1_EV_IRQHandler /* I2C1 Event */
sahilmgandhi 18:6a4db94011d3 198 .word I2C1_ER_IRQHandler /* I2C1 Error */
sahilmgandhi 18:6a4db94011d3 199 .word I2C2_EV_IRQHandler /* I2C2 Event */
sahilmgandhi 18:6a4db94011d3 200 .word I2C2_ER_IRQHandler /* I2C2 Error */
sahilmgandhi 18:6a4db94011d3 201 .word SPI1_IRQHandler /* SPI1 */
sahilmgandhi 18:6a4db94011d3 202 .word SPI2_IRQHandler /* SPI2 */
sahilmgandhi 18:6a4db94011d3 203 .word USART1_IRQHandler /* USART1 */
sahilmgandhi 18:6a4db94011d3 204 .word USART2_IRQHandler /* USART2 */
sahilmgandhi 18:6a4db94011d3 205 .word USART3_IRQHandler /* USART3 */
sahilmgandhi 18:6a4db94011d3 206 .word EXTI15_10_IRQHandler /* External Line[15:10]s */
sahilmgandhi 18:6a4db94011d3 207 .word RTC_Alarm_IRQHandler /* RTC Alarm (A and B) through EXTI Line */
sahilmgandhi 18:6a4db94011d3 208 .word OTG_FS_WKUP_IRQHandler /* USB OTG FS Wakeup through EXTI line */
sahilmgandhi 18:6a4db94011d3 209 .word TIM8_BRK_TIM12_IRQHandler /* TIM8 Break and TIM12 */
sahilmgandhi 18:6a4db94011d3 210 .word TIM8_UP_TIM13_IRQHandler /* TIM8 Update and TIM13 */
sahilmgandhi 18:6a4db94011d3 211 .word TIM8_TRG_COM_TIM14_IRQHandler /* TIM8 Trigger and Commutation and TIM14 */
sahilmgandhi 18:6a4db94011d3 212 .word TIM8_CC_IRQHandler /* TIM8 Capture Compare */
sahilmgandhi 18:6a4db94011d3 213 .word DMA1_Stream7_IRQHandler /* DMA1 Stream7 */
sahilmgandhi 18:6a4db94011d3 214 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 215 .word SDIO_IRQHandler /* SDIO */
sahilmgandhi 18:6a4db94011d3 216 .word TIM5_IRQHandler /* TIM5 */
sahilmgandhi 18:6a4db94011d3 217 .word SPI3_IRQHandler /* SPI3 */
sahilmgandhi 18:6a4db94011d3 218 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 219 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 220 .word TIM6_IRQHandler /* TIM6 */
sahilmgandhi 18:6a4db94011d3 221 .word TIM7_IRQHandler /* TIM7 */
sahilmgandhi 18:6a4db94011d3 222 .word DMA2_Stream0_IRQHandler /* DMA2 Stream 0 */
sahilmgandhi 18:6a4db94011d3 223 .word DMA2_Stream1_IRQHandler /* DMA2 Stream 1 */
sahilmgandhi 18:6a4db94011d3 224 .word DMA2_Stream2_IRQHandler /* DMA2 Stream 2 */
sahilmgandhi 18:6a4db94011d3 225 .word DMA2_Stream3_IRQHandler /* DMA2 Stream 3 */
sahilmgandhi 18:6a4db94011d3 226 .word DMA2_Stream4_IRQHandler /* DMA2 Stream 4 */
sahilmgandhi 18:6a4db94011d3 227 .word DFSDM1_FLT0_IRQHandler /* DFSDM1 Filter0 */
sahilmgandhi 18:6a4db94011d3 228 .word DFSDM1_FLT1_IRQHandler /* DFSDM1 Filter1 */
sahilmgandhi 18:6a4db94011d3 229 .word CAN2_TX_IRQHandler /* CAN2 TX */
sahilmgandhi 18:6a4db94011d3 230 .word CAN2_RX0_IRQHandler /* CAN2 RX0 */
sahilmgandhi 18:6a4db94011d3 231 .word CAN2_RX1_IRQHandler /* CAN2 RX1 */
sahilmgandhi 18:6a4db94011d3 232 .word CAN2_SCE_IRQHandler /* CAN2 SCE */
sahilmgandhi 18:6a4db94011d3 233 .word OTG_FS_IRQHandler /* USB OTG FS */
sahilmgandhi 18:6a4db94011d3 234 .word DMA2_Stream5_IRQHandler /* DMA2 Stream 5 */
sahilmgandhi 18:6a4db94011d3 235 .word DMA2_Stream6_IRQHandler /* DMA2 Stream 6 */
sahilmgandhi 18:6a4db94011d3 236 .word DMA2_Stream7_IRQHandler /* DMA2 Stream 7 */
sahilmgandhi 18:6a4db94011d3 237 .word USART6_IRQHandler /* USART6 */
sahilmgandhi 18:6a4db94011d3 238 .word I2C3_EV_IRQHandler /* I2C3 event */
sahilmgandhi 18:6a4db94011d3 239 .word I2C3_ER_IRQHandler /* I2C3 error */
sahilmgandhi 18:6a4db94011d3 240 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 241 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 242 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 243 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 244 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 245 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 246 .word RNG_IRQHandler /* RNG */
sahilmgandhi 18:6a4db94011d3 247 .word FPU_IRQHandler /* FPU */
sahilmgandhi 18:6a4db94011d3 248 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 249 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 250 .word SPI4_IRQHandler /* SPI4 */
sahilmgandhi 18:6a4db94011d3 251 .word SPI5_IRQHandler /* SPI5 */
sahilmgandhi 18:6a4db94011d3 252 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 253 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 254 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 255 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 256 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 257 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 258 .word QUADSPI_IRQHandler /* QuadSPI */
sahilmgandhi 18:6a4db94011d3 259 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 260 .word 0 /* Reserved */
sahilmgandhi 18:6a4db94011d3 261 .word FMPI2C1_EV_IRQHandler /* FMPI2C1 Event */
sahilmgandhi 18:6a4db94011d3 262 .word FMPI2C1_ER_IRQHandler /* FMPI2C1 Error */
sahilmgandhi 18:6a4db94011d3 263
sahilmgandhi 18:6a4db94011d3 264 /*******************************************************************************
sahilmgandhi 18:6a4db94011d3 265 *
sahilmgandhi 18:6a4db94011d3 266 * Provide weak aliases for each Exception handler to the Default_Handler.
sahilmgandhi 18:6a4db94011d3 267 * As they are weak aliases, any function with the same name will override
sahilmgandhi 18:6a4db94011d3 268 * this definition.
sahilmgandhi 18:6a4db94011d3 269 *
sahilmgandhi 18:6a4db94011d3 270 *******************************************************************************/
sahilmgandhi 18:6a4db94011d3 271 .weak NMI_Handler
sahilmgandhi 18:6a4db94011d3 272 .thumb_set NMI_Handler,Default_Handler
sahilmgandhi 18:6a4db94011d3 273
sahilmgandhi 18:6a4db94011d3 274 .weak HardFault_Handler
sahilmgandhi 18:6a4db94011d3 275 .thumb_set HardFault_Handler,Default_Handler
sahilmgandhi 18:6a4db94011d3 276
sahilmgandhi 18:6a4db94011d3 277 .weak MemManage_Handler
sahilmgandhi 18:6a4db94011d3 278 .thumb_set MemManage_Handler,Default_Handler
sahilmgandhi 18:6a4db94011d3 279
sahilmgandhi 18:6a4db94011d3 280 .weak BusFault_Handler
sahilmgandhi 18:6a4db94011d3 281 .thumb_set BusFault_Handler,Default_Handler
sahilmgandhi 18:6a4db94011d3 282
sahilmgandhi 18:6a4db94011d3 283 .weak UsageFault_Handler
sahilmgandhi 18:6a4db94011d3 284 .thumb_set UsageFault_Handler,Default_Handler
sahilmgandhi 18:6a4db94011d3 285
sahilmgandhi 18:6a4db94011d3 286 .weak SVC_Handler
sahilmgandhi 18:6a4db94011d3 287 .thumb_set SVC_Handler,Default_Handler
sahilmgandhi 18:6a4db94011d3 288
sahilmgandhi 18:6a4db94011d3 289 .weak DebugMon_Handler
sahilmgandhi 18:6a4db94011d3 290 .thumb_set DebugMon_Handler,Default_Handler
sahilmgandhi 18:6a4db94011d3 291
sahilmgandhi 18:6a4db94011d3 292 .weak PendSV_Handler
sahilmgandhi 18:6a4db94011d3 293 .thumb_set PendSV_Handler,Default_Handler
sahilmgandhi 18:6a4db94011d3 294
sahilmgandhi 18:6a4db94011d3 295 .weak SysTick_Handler
sahilmgandhi 18:6a4db94011d3 296 .thumb_set SysTick_Handler,Default_Handler
sahilmgandhi 18:6a4db94011d3 297
sahilmgandhi 18:6a4db94011d3 298 .weak WWDG_IRQHandler
sahilmgandhi 18:6a4db94011d3 299 .thumb_set WWDG_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 300
sahilmgandhi 18:6a4db94011d3 301 .weak PVD_IRQHandler
sahilmgandhi 18:6a4db94011d3 302 .thumb_set PVD_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 303
sahilmgandhi 18:6a4db94011d3 304 .weak TAMP_STAMP_IRQHandler
sahilmgandhi 18:6a4db94011d3 305 .thumb_set TAMP_STAMP_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 306
sahilmgandhi 18:6a4db94011d3 307 .weak RTC_WKUP_IRQHandler
sahilmgandhi 18:6a4db94011d3 308 .thumb_set RTC_WKUP_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 309
sahilmgandhi 18:6a4db94011d3 310 .weak FLASH_IRQHandler
sahilmgandhi 18:6a4db94011d3 311 .thumb_set FLASH_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 312
sahilmgandhi 18:6a4db94011d3 313 .weak RCC_IRQHandler
sahilmgandhi 18:6a4db94011d3 314 .thumb_set RCC_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 315
sahilmgandhi 18:6a4db94011d3 316 .weak EXTI0_IRQHandler
sahilmgandhi 18:6a4db94011d3 317 .thumb_set EXTI0_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 318
sahilmgandhi 18:6a4db94011d3 319 .weak EXTI1_IRQHandler
sahilmgandhi 18:6a4db94011d3 320 .thumb_set EXTI1_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 321
sahilmgandhi 18:6a4db94011d3 322 .weak EXTI2_IRQHandler
sahilmgandhi 18:6a4db94011d3 323 .thumb_set EXTI2_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 324
sahilmgandhi 18:6a4db94011d3 325 .weak EXTI3_IRQHandler
sahilmgandhi 18:6a4db94011d3 326 .thumb_set EXTI3_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 327
sahilmgandhi 18:6a4db94011d3 328 .weak EXTI4_IRQHandler
sahilmgandhi 18:6a4db94011d3 329 .thumb_set EXTI4_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 330
sahilmgandhi 18:6a4db94011d3 331 .weak DMA1_Stream0_IRQHandler
sahilmgandhi 18:6a4db94011d3 332 .thumb_set DMA1_Stream0_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 333
sahilmgandhi 18:6a4db94011d3 334 .weak DMA1_Stream1_IRQHandler
sahilmgandhi 18:6a4db94011d3 335 .thumb_set DMA1_Stream1_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 336
sahilmgandhi 18:6a4db94011d3 337 .weak DMA1_Stream2_IRQHandler
sahilmgandhi 18:6a4db94011d3 338 .thumb_set DMA1_Stream2_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 339
sahilmgandhi 18:6a4db94011d3 340 .weak DMA1_Stream3_IRQHandler
sahilmgandhi 18:6a4db94011d3 341 .thumb_set DMA1_Stream3_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 342
sahilmgandhi 18:6a4db94011d3 343 .weak DMA1_Stream4_IRQHandler
sahilmgandhi 18:6a4db94011d3 344 .thumb_set DMA1_Stream4_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 345
sahilmgandhi 18:6a4db94011d3 346 .weak DMA1_Stream5_IRQHandler
sahilmgandhi 18:6a4db94011d3 347 .thumb_set DMA1_Stream5_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 348
sahilmgandhi 18:6a4db94011d3 349 .weak DMA1_Stream6_IRQHandler
sahilmgandhi 18:6a4db94011d3 350 .thumb_set DMA1_Stream6_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 351
sahilmgandhi 18:6a4db94011d3 352 .weak ADC_IRQHandler
sahilmgandhi 18:6a4db94011d3 353 .thumb_set ADC_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 354
sahilmgandhi 18:6a4db94011d3 355 .weak CAN1_TX_IRQHandler
sahilmgandhi 18:6a4db94011d3 356 .thumb_set CAN1_TX_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 357
sahilmgandhi 18:6a4db94011d3 358 .weak CAN1_RX0_IRQHandler
sahilmgandhi 18:6a4db94011d3 359 .thumb_set CAN1_RX0_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 360
sahilmgandhi 18:6a4db94011d3 361 .weak CAN1_RX1_IRQHandler
sahilmgandhi 18:6a4db94011d3 362 .thumb_set CAN1_RX1_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 363
sahilmgandhi 18:6a4db94011d3 364 .weak CAN1_SCE_IRQHandler
sahilmgandhi 18:6a4db94011d3 365 .thumb_set CAN1_SCE_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 366
sahilmgandhi 18:6a4db94011d3 367 .weak EXTI9_5_IRQHandler
sahilmgandhi 18:6a4db94011d3 368 .thumb_set EXTI9_5_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 369
sahilmgandhi 18:6a4db94011d3 370 .weak TIM1_BRK_TIM9_IRQHandler
sahilmgandhi 18:6a4db94011d3 371 .thumb_set TIM1_BRK_TIM9_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 372
sahilmgandhi 18:6a4db94011d3 373 .weak TIM1_UP_TIM10_IRQHandler
sahilmgandhi 18:6a4db94011d3 374 .thumb_set TIM1_UP_TIM10_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 375
sahilmgandhi 18:6a4db94011d3 376 .weak TIM1_TRG_COM_TIM11_IRQHandler
sahilmgandhi 18:6a4db94011d3 377 .thumb_set TIM1_TRG_COM_TIM11_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 378
sahilmgandhi 18:6a4db94011d3 379 .weak TIM1_CC_IRQHandler
sahilmgandhi 18:6a4db94011d3 380 .thumb_set TIM1_CC_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 381
sahilmgandhi 18:6a4db94011d3 382 .weak TIM2_IRQHandler
sahilmgandhi 18:6a4db94011d3 383 .thumb_set TIM2_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 384
sahilmgandhi 18:6a4db94011d3 385 .weak TIM3_IRQHandler
sahilmgandhi 18:6a4db94011d3 386 .thumb_set TIM3_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 387
sahilmgandhi 18:6a4db94011d3 388 .weak TIM4_IRQHandler
sahilmgandhi 18:6a4db94011d3 389 .thumb_set TIM4_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 390
sahilmgandhi 18:6a4db94011d3 391 .weak I2C1_EV_IRQHandler
sahilmgandhi 18:6a4db94011d3 392 .thumb_set I2C1_EV_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 393
sahilmgandhi 18:6a4db94011d3 394 .weak I2C1_ER_IRQHandler
sahilmgandhi 18:6a4db94011d3 395 .thumb_set I2C1_ER_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 396
sahilmgandhi 18:6a4db94011d3 397 .weak I2C2_EV_IRQHandler
sahilmgandhi 18:6a4db94011d3 398 .thumb_set I2C2_EV_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 399
sahilmgandhi 18:6a4db94011d3 400 .weak I2C2_ER_IRQHandler
sahilmgandhi 18:6a4db94011d3 401 .thumb_set I2C2_ER_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 402
sahilmgandhi 18:6a4db94011d3 403 .weak SPI1_IRQHandler
sahilmgandhi 18:6a4db94011d3 404 .thumb_set SPI1_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 405
sahilmgandhi 18:6a4db94011d3 406 .weak SPI2_IRQHandler
sahilmgandhi 18:6a4db94011d3 407 .thumb_set SPI2_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 408
sahilmgandhi 18:6a4db94011d3 409 .weak USART1_IRQHandler
sahilmgandhi 18:6a4db94011d3 410 .thumb_set USART1_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 411
sahilmgandhi 18:6a4db94011d3 412 .weak USART2_IRQHandler
sahilmgandhi 18:6a4db94011d3 413 .thumb_set USART2_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 414
sahilmgandhi 18:6a4db94011d3 415 .weak USART3_IRQHandler
sahilmgandhi 18:6a4db94011d3 416 .thumb_set USART3_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 417
sahilmgandhi 18:6a4db94011d3 418 .weak EXTI15_10_IRQHandler
sahilmgandhi 18:6a4db94011d3 419 .thumb_set EXTI15_10_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 420
sahilmgandhi 18:6a4db94011d3 421 .weak RTC_Alarm_IRQHandler
sahilmgandhi 18:6a4db94011d3 422 .thumb_set RTC_Alarm_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 423
sahilmgandhi 18:6a4db94011d3 424 .weak OTG_FS_WKUP_IRQHandler
sahilmgandhi 18:6a4db94011d3 425 .thumb_set OTG_FS_WKUP_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 426
sahilmgandhi 18:6a4db94011d3 427 .weak TIM8_BRK_TIM12_IRQHandler
sahilmgandhi 18:6a4db94011d3 428 .thumb_set TIM8_BRK_TIM12_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 429
sahilmgandhi 18:6a4db94011d3 430 .weak TIM8_UP_TIM13_IRQHandler
sahilmgandhi 18:6a4db94011d3 431 .thumb_set TIM8_UP_TIM13_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 432
sahilmgandhi 18:6a4db94011d3 433 .weak TIM8_TRG_COM_TIM14_IRQHandler
sahilmgandhi 18:6a4db94011d3 434 .thumb_set TIM8_TRG_COM_TIM14_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 435
sahilmgandhi 18:6a4db94011d3 436 .weak TIM8_CC_IRQHandler
sahilmgandhi 18:6a4db94011d3 437 .thumb_set TIM8_CC_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 438
sahilmgandhi 18:6a4db94011d3 439 .weak DMA1_Stream7_IRQHandler
sahilmgandhi 18:6a4db94011d3 440 .thumb_set DMA1_Stream7_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 441
sahilmgandhi 18:6a4db94011d3 442 .weak SDIO_IRQHandler
sahilmgandhi 18:6a4db94011d3 443 .thumb_set SDIO_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 444
sahilmgandhi 18:6a4db94011d3 445 .weak TIM5_IRQHandler
sahilmgandhi 18:6a4db94011d3 446 .thumb_set TIM5_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 447
sahilmgandhi 18:6a4db94011d3 448 .weak SPI3_IRQHandler
sahilmgandhi 18:6a4db94011d3 449 .thumb_set SPI3_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 450
sahilmgandhi 18:6a4db94011d3 451 .weak TIM6_IRQHandler
sahilmgandhi 18:6a4db94011d3 452 .thumb_set TIM6_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 453
sahilmgandhi 18:6a4db94011d3 454 .weak TIM7_IRQHandler
sahilmgandhi 18:6a4db94011d3 455 .thumb_set TIM7_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 456
sahilmgandhi 18:6a4db94011d3 457 .weak DMA2_Stream0_IRQHandler
sahilmgandhi 18:6a4db94011d3 458 .thumb_set DMA2_Stream0_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 459
sahilmgandhi 18:6a4db94011d3 460 .weak DMA2_Stream1_IRQHandler
sahilmgandhi 18:6a4db94011d3 461 .thumb_set DMA2_Stream1_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 462
sahilmgandhi 18:6a4db94011d3 463 .weak DMA2_Stream2_IRQHandler
sahilmgandhi 18:6a4db94011d3 464 .thumb_set DMA2_Stream2_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 465
sahilmgandhi 18:6a4db94011d3 466 .weak DMA2_Stream3_IRQHandler
sahilmgandhi 18:6a4db94011d3 467 .thumb_set DMA2_Stream3_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 468
sahilmgandhi 18:6a4db94011d3 469 .weak DMA2_Stream4_IRQHandler
sahilmgandhi 18:6a4db94011d3 470 .thumb_set DMA2_Stream4_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 471
sahilmgandhi 18:6a4db94011d3 472 .weak DFSDM1_FLT0_IRQHandler
sahilmgandhi 18:6a4db94011d3 473 .thumb_set DFSDM1_FLT0_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 474
sahilmgandhi 18:6a4db94011d3 475 .weak DFSDM1_FLT1_IRQHandler
sahilmgandhi 18:6a4db94011d3 476 .thumb_set DFSDM1_FLT1_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 477
sahilmgandhi 18:6a4db94011d3 478 .weak CAN2_TX_IRQHandler
sahilmgandhi 18:6a4db94011d3 479 .thumb_set CAN2_TX_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 480
sahilmgandhi 18:6a4db94011d3 481 .weak CAN2_RX0_IRQHandler
sahilmgandhi 18:6a4db94011d3 482 .thumb_set CAN2_RX0_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 483
sahilmgandhi 18:6a4db94011d3 484 .weak CAN2_RX1_IRQHandler
sahilmgandhi 18:6a4db94011d3 485 .thumb_set CAN2_RX1_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 486
sahilmgandhi 18:6a4db94011d3 487 .weak CAN2_SCE_IRQHandler
sahilmgandhi 18:6a4db94011d3 488 .thumb_set CAN2_SCE_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 489
sahilmgandhi 18:6a4db94011d3 490 .weak OTG_FS_IRQHandler
sahilmgandhi 18:6a4db94011d3 491 .thumb_set OTG_FS_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 492
sahilmgandhi 18:6a4db94011d3 493 .weak DMA2_Stream5_IRQHandler
sahilmgandhi 18:6a4db94011d3 494 .thumb_set DMA2_Stream5_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 495
sahilmgandhi 18:6a4db94011d3 496 .weak DMA2_Stream6_IRQHandler
sahilmgandhi 18:6a4db94011d3 497 .thumb_set DMA2_Stream6_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 498
sahilmgandhi 18:6a4db94011d3 499 .weak DMA2_Stream7_IRQHandler
sahilmgandhi 18:6a4db94011d3 500 .thumb_set DMA2_Stream7_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 501
sahilmgandhi 18:6a4db94011d3 502 .weak USART6_IRQHandler
sahilmgandhi 18:6a4db94011d3 503 .thumb_set USART6_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 504
sahilmgandhi 18:6a4db94011d3 505 .weak I2C3_EV_IRQHandler
sahilmgandhi 18:6a4db94011d3 506 .thumb_set I2C3_EV_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 507
sahilmgandhi 18:6a4db94011d3 508 .weak I2C3_ER_IRQHandler
sahilmgandhi 18:6a4db94011d3 509 .thumb_set I2C3_ER_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 510
sahilmgandhi 18:6a4db94011d3 511 .weak RNG_IRQHandler
sahilmgandhi 18:6a4db94011d3 512 .thumb_set RNG_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 513
sahilmgandhi 18:6a4db94011d3 514 .weak FPU_IRQHandler
sahilmgandhi 18:6a4db94011d3 515 .thumb_set FPU_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 516
sahilmgandhi 18:6a4db94011d3 517 .weak SPI4_IRQHandler
sahilmgandhi 18:6a4db94011d3 518 .thumb_set SPI4_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 519
sahilmgandhi 18:6a4db94011d3 520 .weak SPI5_IRQHandler
sahilmgandhi 18:6a4db94011d3 521 .thumb_set SPI5_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 522
sahilmgandhi 18:6a4db94011d3 523 .weak QUADSPI_IRQHandler
sahilmgandhi 18:6a4db94011d3 524 .thumb_set QUADSPI_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 525
sahilmgandhi 18:6a4db94011d3 526 .weak FMPI2C1_EV_IRQHandler
sahilmgandhi 18:6a4db94011d3 527 .thumb_set FMPI2C1_EV_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 528
sahilmgandhi 18:6a4db94011d3 529 .weak FMPI2C1_ER_IRQHandler
sahilmgandhi 18:6a4db94011d3 530 .thumb_set FMPI2C1_ER_IRQHandler,Default_Handler
sahilmgandhi 18:6a4db94011d3 531 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/