[DeviceDriver][RTC] Add soft RTC and NTP auto sync time config to Kconfig.

This commit is contained in:
armink
2018-02-16 13:06:15 +08:00
parent 59be76af25
commit cd23728070
2 changed files with 26 additions and 9 deletions

View File

@@ -22,15 +22,13 @@
* 2012-10-10 aozima first version.
*/
#ifndef RTC_H_INCLUDED
#define RTC_H_INCLUDED
#ifndef __RTC_H__
#define __RTC_H__
extern rt_err_t set_date(rt_uint32_t year,
rt_uint32_t month,
rt_uint32_t day);
rt_err_t set_date(rt_uint32_t year, rt_uint32_t month, rt_uint32_t day);
rt_err_t set_time(rt_uint32_t hour, rt_uint32_t minute, rt_uint32_t second);
extern rt_err_t set_time(rt_uint32_t hour,
rt_uint32_t minute,
rt_uint32_t second);
int rt_soft_rtc_init(void);
int rt_rtc_ntp_sync_init(void);
#endif // RTC_H_INCLUDED
#endif /* __RTC_H__ */