12345678910111213141516171819202122232425262728 |
- #ifndef __IWDG_AS_H
- #define __IWDG_AS_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* 包含头文件-----------------------------------------------------------------*/
- #include "stm32f10x.h"
- /* 宏定义---------------------------------------------------------------------*/
- /* 重置独立看门狗 */
- #define IWDG_RELOAD do{ \
- IWDG_ReloadCounter(); \
- }while(0)
- /* 类型定义-------------------------------------------------------------------*/
- /* 全局变量-------------------------------------------------------------------*/
- /* 函数原型-------------------------------------------------------------------*/
- void iwdg_config(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* iwdg.h */
|