stm32g0xx/Core/Src/stm32g0xx_it.c
Thomas Klaehn d38bd4ae27 Initial commit
Signed-off-by: Thomas Klaehn <thomas.klaehn@perinet.io>
2020-12-14 16:21:17 +01:00

28 lines
273 B
C

#include "main.h"
#include "stm32g0xx_it.h"
void NMI_Handler(void)
{
while (1) {
}
}
void HardFault_Handler(void)
{
while (1) {
}
}
void SVC_Handler(void)
{
}
void PendSV_Handler(void)
{
}
void SysTick_Handler(void)
{
HAL_IncTick();
}