yc_it.h 617 B

1234567891011121314151617181920212223242526
  1. /*
  2. File Name : yc_it.h
  3. Author : Yichip
  4. Version : V1.0
  5. Date : 2018/03/27
  6. Description : Interrupt function encapsulation.
  7. */
  8. #ifndef __YC_IT_H__
  9. #define __YC_IT_H__
  10. #include "yc11xx.h"
  11. extern void NMI_Handler(void);
  12. extern void HardFault_Handler(void);
  13. extern void SVC_Handler(void);
  14. extern void PendSV_Handler(void);
  15. extern void SYSTICK_IRQHandler(void);
  16. extern void USB_IRQHandler(void);
  17. extern void IIC_IRQHandler(void);
  18. extern void QSPI_IRQHandler(void);
  19. extern void SPI0_IRQHandler(void);
  20. extern void UART_IRQHandler(void);
  21. extern void UARTB_IRQHandler(void);
  22. #endif /* __YC_IT_H__ */