1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// // 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(); }