bs_bcu_app/drv/drv_wdog.h

27 lines
521 B
C
Raw Normal View History

2024-11-07 17:24:19 +08:00
/*******************************************************************************
**
** :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