浏览代码

[drivers][rtc] Adjust ops function input parameters

tyx 3 年之前
父节点
当前提交
0ef4560030
共有 1 个文件被更改,包括 15 次插入6 次删除
  1. 15 6
      components/drivers/include/drivers/rtc.h

+ 15 - 6
components/drivers/include/drivers/rtc.h

@@ -14,6 +14,11 @@
 #define __RTC_H__
 #define __RTC_H__
 
 
 #include <rtdef.h>
 #include <rtdef.h>
+#include <sys/time.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 
 #define RT_DEVICE_CTRL_RTC_GET_TIME     0x20            /**< get second time */
 #define RT_DEVICE_CTRL_RTC_GET_TIME     0x20            /**< get second time */
 #define RT_DEVICE_CTRL_RTC_SET_TIME     0x21            /**< set second time */
 #define RT_DEVICE_CTRL_RTC_SET_TIME     0x21            /**< set second time */
@@ -25,12 +30,12 @@
 struct rt_rtc_ops
 struct rt_rtc_ops
 {
 {
     rt_err_t (*init)(void);
     rt_err_t (*init)(void);
-    rt_err_t (*get_secs)(void *arg);
-    rt_err_t (*set_secs)(void *arg);
-    rt_err_t (*get_alarm)(void *arg);
-    rt_err_t (*set_alarm)(void *arg);
-    rt_err_t (*get_timeval)(void *arg);
-    rt_err_t (*set_timeval)(void *arg);
+    rt_err_t (*get_secs)(time_t *sec);
+    rt_err_t (*set_secs)(time_t *sec);
+    rt_err_t (*get_alarm)(struct rt_rtc_wkalarm *alarm);
+    rt_err_t (*set_alarm)(struct rt_rtc_wkalarm *alarm);
+    rt_err_t (*get_timeval)(struct timeval *tv);
+    rt_err_t (*set_timeval)(struct timeval *tv);
 };
 };
 
 
 typedef struct rt_rtc_device
 typedef struct rt_rtc_device
@@ -47,4 +52,8 @@ rt_err_t rt_hw_rtc_register(rt_rtc_dev_t  *rtc,
 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);
 rt_err_t set_time(rt_uint32_t hour, rt_uint32_t minute, rt_uint32_t second);
 
 
+#ifdef __cplusplus
+}
+#endif
+
 #endif /* __RTC_H__ */
 #endif /* __RTC_H__ */