nvic.h 636 B

1234567891011121314151617181920212223242526
  1. #ifndef __NVIC_AS_H
  2. #define __NVIC_AS_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. /* 包含头文件-----------------------------------------------------------------*/
  7. #include "stm32f10x.h"
  8. /* 宏定义---------------------------------------------------------------------*/
  9. /* 类型定义-------------------------------------------------------------------*/
  10. /* 全局变量-------------------------------------------------------------------*/
  11. /* 函数原型-------------------------------------------------------------------*/
  12. void nvic_config(void);
  13. void nvic_mcu_reboot(void);
  14. #ifdef __cplusplus
  15. }
  16. #endif
  17. #endif /* nvic.h */