mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-04 03:54:35 +08:00
18 lines
306 B
C
18 lines
306 B
C
|
|
#ifndef __IRQHANDLER_H__
|
|
#define __IRQHANDLER_H__
|
|
|
|
#include "ES8P508x.h"
|
|
|
|
extern void systick_irq_cbk(void);
|
|
|
|
/************中断函数声明***********/
|
|
void NMI_IRQHandler(void);
|
|
void HardFault_IRQHandler(void);
|
|
void SVC_IRQHandler(void);
|
|
void PendSV_IRQHandler(void);
|
|
void SysTick_IRQHandler(void);
|
|
|
|
#endif
|
|
|