drv_rtc.h 785 B

12345678910111213141516171819202122
  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. * 2009-01-05 Bernard the first version
  9. * 2010-12-27 onelife Modification for EFM32
  10. */
  11. #ifndef __DRV_RTC_H__
  12. #define __DRV_RTC_H__
  13. #include <time.h>
  14. #include <string.h>
  15. /* Includes ------------------------------------------------------------------*/
  16. /* Exported types ------------------------------------------------------------*/
  17. /* Exported constants --------------------------------------------------------*/
  18. /* Exported macro ------------------------------------------------------------*/
  19. /* Exported functions ------------------------------------------------------- */
  20. int rt_hw_rtc_init(void);
  21. #endif /* __DRV_RTC_H__ */