27 lines
521 B
C
27 lines
521 B
C
|
/*******************************************************************************
|
||
|
**
|
||
|
**文 件 名:WDog.h
|
||
|
**创建日期:2015.10.15
|
||
|
**文件说明:
|
||
|
**修改记录:
|
||
|
**版 本:V1.0
|
||
|
**备 注:
|
||
|
*******************************************************************************/
|
||
|
#ifndef _DRV_WDOG_H_
|
||
|
#define _DRV_WDOG_H_
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
void drv_wdog_init(uint16_t idog_tick);
|
||
|
void drv_wdog_feed(void);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif
|