1 /* 2 * Copyright (c) 2006-2018, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2012-10-10 aozima first version. 9 */ 10 11 #ifndef __RTC_H__ 12 #define __RTC_H__ 13 14 rt_err_t set_date(rt_uint32_t year, rt_uint32_t month, rt_uint32_t day); 15 rt_err_t set_time(rt_uint32_t hour, rt_uint32_t minute, rt_uint32_t second); 16 17 int rt_soft_rtc_init(void); 18 int rt_rtc_ntp_sync_init(void); 19 20 #endif /* __RTC_H__ */ 21