stm32g0xx/Core/Src/stm32g0xx_it.c

28 lines
273 B
C
Raw Normal View History

#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();
}