【修改】dlib newlib minilib 中的 gettimeofday() 函数实现
This commit is contained in:
parent
ec99faf022
commit
9f300de9cc
|
@ -16,19 +16,16 @@ int gettimeofday(struct timeval *tp, void *ignore)
|
||||||
rt_device_t device;
|
rt_device_t device;
|
||||||
|
|
||||||
device = rt_device_find("rtc");
|
device = rt_device_find("rtc");
|
||||||
if (device != RT_NULL)
|
RT_ASSERT(device != RT_NULL);
|
||||||
{
|
|
||||||
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
|
||||||
if (tp != RT_NULL)
|
|
||||||
{
|
|
||||||
tp->tv_sec = time;
|
|
||||||
tp->tv_usec = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return time;
|
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
||||||
|
if (tp != RT_NULL)
|
||||||
|
{
|
||||||
|
tp->tv_sec = time;
|
||||||
|
tp->tv_usec = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return time;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -211,19 +211,16 @@ int gettimeofday(struct timeval *tp, void *ignore)
|
||||||
rt_device_t device;
|
rt_device_t device;
|
||||||
|
|
||||||
device = rt_device_find("rtc");
|
device = rt_device_find("rtc");
|
||||||
if (device != RT_NULL)
|
RT_ASSERT(device != RT_NULL);
|
||||||
{
|
|
||||||
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
|
||||||
if (tp != RT_NULL)
|
|
||||||
{
|
|
||||||
tp->tv_sec = time;
|
|
||||||
tp->tv_usec = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return time;
|
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
||||||
}
|
if (tp != RT_NULL)
|
||||||
|
{
|
||||||
|
tp->tv_sec = time;
|
||||||
|
tp->tv_usec = 0;
|
||||||
|
}
|
||||||
|
|
||||||
return 0;
|
return time;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
|
@ -16,19 +16,16 @@ int gettimeofday(struct timeval *tp, void *ignore)
|
||||||
rt_device_t device;
|
rt_device_t device;
|
||||||
|
|
||||||
device = rt_device_find("rtc");
|
device = rt_device_find("rtc");
|
||||||
if (device != RT_NULL)
|
RT_ASSERT(device != RT_NULL);
|
||||||
{
|
|
||||||
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
|
||||||
if (tp != RT_NULL)
|
|
||||||
{
|
|
||||||
tp->tv_sec = time;
|
|
||||||
tp->tv_usec = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
return time;
|
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
||||||
|
if (tp != RT_NULL)
|
||||||
|
{
|
||||||
|
tp->tv_sec = time;
|
||||||
|
tp->tv_usec = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return time;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue