1234567891011121314151617181920212223242526 |
- #ifndef __NVIC_AS_H
- #define __NVIC_AS_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* 包含头文件-----------------------------------------------------------------*/
- #include "stm32f10x.h"
- /* 宏定义---------------------------------------------------------------------*/
- /* 类型定义-------------------------------------------------------------------*/
- /* 全局变量-------------------------------------------------------------------*/
- /* 函数原型-------------------------------------------------------------------*/
- void nvic_config(void);
- void nvic_mcu_reboot(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* nvic.h */
|