stm32f4xx_it.h
935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
*********************************************************************************************************
*
* 模块名称 : 中断服务程序
* 文件名称 : stm32f4xx_it.h
* 版 本 : V1.0
* 说 明 : 头文件
*
* Copyright (C), 2013-2014, 安富莱电子 www.armfly.com
*
*********************************************************************************************************
*/
#ifndef __STM32F4xx_IT_H
#define __STM32F4xx_IT_H
#ifdef __cplusplus
extern "C" {
#endif
#include "stm32f4xx.h"
void NMI_Handler(void);
void HardFault_Handler(void);
void MemManage_Handler(void);
void BusFault_Handler(void);
void UsageFault_Handler(void);
void SVC_Handler(void);
void DebugMon_Handler(void);
void PendSV_Handler(void);
//void SysTick_Handler(void); 这个ISR被移到 bsp_timer.c
#ifdef __cplusplus
}
#endif
#endif /* __STM32F4xx_IT_H */
/***************************** 安富莱电子 www.armfly.com (END OF FILE) *********************************/