You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
314 B
15 lines
314 B
#ifndef __IRQHANDLER_H__
|
|
#define __IRQHANDLER_H__
|
|
|
|
#include "ES8P5066.h"
|
|
//#include "light.h"
|
|
//#include "gpio.h"
|
|
|
|
/************中断函数声明***********/
|
|
void NMI_IRQHandler(void);
|
|
void HardFault_IRQHandler(void);
|
|
void SVC_IRQHandler(void);
|
|
void PendSV_IRQHandler(void);
|
|
void SysTick_IRQHandler(void);
|
|
|
|
#endif
|