mbed official / mbed-dev

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Wed Feb 20 22:31:08 2019 +0000
Revision:
189:f392fc9709a3
Parent:
158:b23ee177fd68
mbed library release version 165

Who changed what in which revision?

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