4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-25 08:18:51 +08:00
2019-11-20 10:30:45 +08:00

28 lines
239 B
C

#include "irqhandler.h"
void NMI_IRQHandler(void)
{
}
void HardFault_IRQHandler(void)
{
while(1)
{
}
}
void SVC_IRQHandler(void)
{
}
void PendSV_IRQHandler(void)
{
}
void SysTick_Handler(void)
{
systick_irq_cbk();
}