mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-25 08:18:51 +08:00
28 lines
239 B
C
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();
|
|
}
|