20 lines
330 B
C
20 lines
330 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2019-04-20 Lee the first version.
|
|
*/
|
|
|
|
#ifndef DRV_WDT_H__
|
|
#define DRV_WDT_H__
|
|
|
|
#include <rtdevice.h>
|
|
|
|
int rt_hw_wdt_init(void);
|
|
|
|
#endif /* __DRV_WDT_H__ */
|
|
|