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
|
|
|