43 lines
1.1 KiB
C
43 lines
1.1 KiB
C
/*!
|
|
\file gd32f1x0_it.h
|
|
\brief the header file of the ISR
|
|
*/
|
|
|
|
/*
|
|
Copyright (C) 2017 GigaDevice
|
|
|
|
2014-12-26, V1.0.0, platform GD32F1x0(x=3,5)
|
|
2016-01-15, V2.0.0, platform GD32F1x0(x=3,5,7,9)
|
|
2016-04-30, V3.0.0, firmware update for GD32F1x0(x=3,5,7,9)
|
|
2017-06-19, V3.1.0, firmware update for GD32F1x0(x=3,5,7,9)
|
|
*/
|
|
|
|
#ifndef GD32F1X0_IT_H
|
|
#define GD32F1X0_IT_H
|
|
|
|
#include "gd32f1x0.h"
|
|
|
|
/* function declarations */
|
|
/* this function handles NMI exception */
|
|
void NMI_Handler(void);
|
|
/* this function handles HardFault exception */
|
|
void HardFault_Handler(void);
|
|
/* this function handles MemManage exception */
|
|
void MemManage_Handler(void);
|
|
/* this function handles BusFault exception */
|
|
void BusFault_Handler(void);
|
|
/* this function handles UsageFault exception */
|
|
void UsageFault_Handler(void);
|
|
/* this function handles SVC exception */
|
|
void SVC_Handler(void);
|
|
/* this function handles DebugMon exception */
|
|
void DebugMon_Handler(void);
|
|
/* this function handles PendSV exception */
|
|
void PendSV_Handler(void);
|
|
/* this function handles SysTick exception */
|
|
void SysTick_Handler(void);
|
|
|
|
#endif /* GD32F1X0_IT_H */
|
|
|
|
|