2019-10-24 17:56:09 +08:00
|
|
|
/*
|
2021-03-17 02:26:35 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2019-10-24 17:56:09 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2019-04-20 Lee the first version.
|
|
|
|
* 2019-07-15 Magicoe The first version for LPC55S6x
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DRV_WDT_H__
|
|
|
|
#define DRV_WDT_H__
|
|
|
|
|
|
|
|
#include <rtdevice.h>
|
|
|
|
|
|
|
|
int rt_hw_hwtimer_init(void);
|
|
|
|
|
|
|
|
#endif /* __DRV_WDT_H__ */
|
|
|
|
|