Files @ 9294a623e8e5
Branch filter:

Location: therm/system/interrupts.c - annotation

Ethan Zonca
Added support for both heaters and coolers as well as thermostatic control
#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();
}