gd32f3x0_it.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. /* function declarations */
  14. /* this function handles NMI exception */
  15. void NMI_Handler(void);
  16. /* this function handles HardFault exception */
  17. void HardFault_Handler(void);
  18. /* this function handles MemManage exception */
  19. void MemManage_Handler(void);
  20. /* this function handles BusFault exception */
  21. void BusFault_Handler(void);
  22. /* this function handles UsageFault exception */
  23. void UsageFault_Handler(void);
  24. /* this function handles SVC exception */
  25. void SVC_Handler(void);
  26. /* this function handles DebugMon exception */
  27. void DebugMon_Handler(void);
  28. /* this function handles PendSV exception */
  29. void PendSV_Handler(void);
  30. /* this function handles SysTick exception */
  31. void SysTick_Handler(void);
  32. /* ADC CMP handle function */
  33. void ADC_CMP_IRQHandler(void);
  34. #endif /* GD32F3X0_IT_H */