21 lines
397 B
C
21 lines
397 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.
|
|
* 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__ */
|
|
|