Files @ ad3725832a9d
Branch filter:

Location: protofuse-firmware/src/interrupts.c - annotation

NEO
Initial import
//
// 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();
}