Files @ 47fdd16b7231
Branch filter:

Location: protofuse-firmware/src/interrupts.c

NEO
Ethan got the screen working. OMG YAY!
//
// 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();
}