1 /* 2 * Copyright (c) 2006-2022, 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 12 #ifndef __DRV_RTC_H__ 13 #define __DRV_RTC_H__ 14 15 /* Includes ------------------------------------------------------------------*/ 16 /* Exported types ------------------------------------------------------------*/ 17 /* Exported constants --------------------------------------------------------*/ 18 /* Exported macro ------------------------------------------------------------*/ 19 /* Exported functions ------------------------------------------------------- */ 20 void rt_hw_rtc_init(void); 21 22 #endif /* __DRV_RTC_H__ */ 23