• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 
16 #ifndef GD32F4XX_IT_H
17 #define GD32F4XX_IT_H
18 
19 #include "gd32f4xx.h"
20 
21 /* function declarations */
22 /* this function handles NMI exception */
23 void NMI_Handler(void);
24 /* this function handles HardFault exception */
25 void HardFault_Handler(void);
26 /* this function handles MemManage exception */
27 void MemManage_Handler(void);
28 /* this function handles BusFault exception */
29 void BusFault_Handler(void);
30 /* this function handles UsageFault exception */
31 void UsageFault_Handler(void);
32 /* this function handles SVC exception */
33 void SVC_Handler(void);
34 /* this function handles DebugMon exception */
35 void DebugMon_Handler(void);
36 /* this function handles PendSV exception */
37 void PendSV_Handler(void);
38 /* this function handles SysTick exception */
39 void GD32F450_SysTick_Handler(void);
40 
41 #endif /* GD32F4XX_IT_H */
42