4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-26 14:57:23 +08:00

28 lines
239 B
C
Raw Normal View History

2019-11-07 10:00:14 +08:00
#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();
}