// // Interrupts: handlers for any needed global interrupts // #include "stm32f3xx_hal.h" #include "stm32f3xx.h" #include "interrupts.h" // Systick interrupt void SysTick_Handler(void) { HAL_IncTick(); HAL_SYSTICK_IRQHandler(); }