forked from gary/BCU
2
0
Fork 0
BCU/library/drv_stm32f4xx/drv_wdog.h

27 lines
521 B
C
Raw Permalink Normal View History

2024-11-26 15:52:49 +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