1234567891011121314151617181920 |
- /*
- * Copyright (c) 2006-2023, 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_wdt_init(void);
- #endif /* __DRV_WDT_H__ */
|