rtc.h 479 B

1234567891011121314151617181920
  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. #ifndef __RTC_H__
  11. #define __RTC_H__
  12. rt_err_t set_date(rt_uint32_t year, rt_uint32_t month, rt_uint32_t day);
  13. rt_err_t set_time(rt_uint32_t hour, rt_uint32_t minute, rt_uint32_t second);
  14. int rt_soft_rtc_init(void);
  15. int rt_rtc_ntp_sync_init(void);
  16. #endif /* __RTC_H__ */