forked from gary/BCU
2
0
Fork 0
BCU/app/stm32fxxx_boot/drivers/drv_wdog.h

27 lines
517 B
C
Raw Permalink Normal View History

2025-02-09 10:31:22 +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 drvInitWdog(uint16_t idog_tick);
void drvFeedWdog(void);
#ifdef __cplusplus
}
#endif
#endif