1234567891011121314151617181920212223242526 |
- /*
- File Name : yc_it.h
- Author : Yichip
- Version : V1.0
- Date : 2018/03/27
- Description : Interrupt function encapsulation.
- */
- #ifndef __YC_IT_H__
- #define __YC_IT_H__
- #include "yc11xx.h"
- extern void NMI_Handler(void);
- extern void HardFault_Handler(void);
- extern void SVC_Handler(void);
- extern void PendSV_Handler(void);
- extern void SYSTICK_IRQHandler(void);
- extern void USB_IRQHandler(void);
- extern void IIC_IRQHandler(void);
- extern void QSPI_IRQHandler(void);
- extern void SPI0_IRQHandler(void);
- extern void UART_IRQHandler(void);
- extern void UARTB_IRQHandler(void);
- #endif /* __YC_IT_H__ */
|