2018-12-24 18:49:00 +08:00
|
|
|
/*
|
2022-06-22 13:41:06 +08:00
|
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
2018-12-24 18:49:00 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
2022-06-22 13:41:06 +08:00
|
|
|
* Date Author Notes
|
2018-12-24 18:49:00 +08:00
|
|
|
* 2018-05-05 sundm75 first version
|
|
|
|
*/
|
2022-06-22 13:41:06 +08:00
|
|
|
|
2018-12-24 18:49:00 +08:00
|
|
|
#ifndef __DRV_RTC_H__
|
|
|
|
#define __DRV_RTC_H__
|
|
|
|
|
2022-06-22 13:41:06 +08:00
|
|
|
#include <rtthread.h>
|
|
|
|
#include <rtdevice.h>
|
2018-12-24 18:49:00 +08:00
|
|
|
|
|
|
|
int rt_hw_rtc_init(void);
|
|
|
|
|
|
|
|
#endif
|