gd32f3x0_it.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*!
  2. \file gd32f3x0_it.h
  3. \brief the header file of the ISR
  4. */
  5. /*
  6. Copyright (C) 2017 GigaDevice
  7. 2017-06-06, V1.0.0, firmware for GD32F3x0
  8. */
  9. #ifndef GD32F3X0_IT_H
  10. #define GD32F3X0_IT_H
  11. #include "gd32f3x0.h"
  12. #include "gd32f3x0_eval.h"
  13. #include "main.h"
  14. /* function declarations */
  15. /* this function handles NMI exception */
  16. void NMI_Handler(void);
  17. /* this function handles HardFault exception */
  18. void HardFault_Handler(void);
  19. /* this function handles MemManage exception */
  20. void MemManage_Handler(void);
  21. /* this function handles BusFault exception */
  22. void BusFault_Handler(void);
  23. /* this function handles UsageFault exception */
  24. void UsageFault_Handler(void);
  25. /* this function handles SVC exception */
  26. void SVC_Handler(void);
  27. /* this function handles DebugMon exception */
  28. void DebugMon_Handler(void);
  29. /* this function handles PendSV exception */
  30. void PendSV_Handler(void);
  31. /* this function handles SysTick exception */
  32. void SysTick_Handler(void);
  33. /* ADC CMP handle function */
  34. void ADC_CMP_IRQHandler(void);
  35. #endif /* GD32F3X0_IT_H */