Files @ 45ee045c249f
Branch filter:

Location: therm/system/interrupts.c - annotation

matthewreed
Added checksum to flash write and restore functions and load default settings
#include "stm32f0xx_hal.h"
#include "stm32f0xx.h"
#include "interrupts.h"

extern PCD_HandleTypeDef hpcd_USB_FS;

void USB_IRQHandler(void)
{
  HAL_PCD_IRQHandler(&hpcd_USB_FS);
}

void SysTick_Handler(void)
{
  HAL_IncTick();
  HAL_SYSTICK_IRQHandler();
}