【修改】dlib newlib minilib 中的 gettimeofday() 函数实现

This commit is contained in:
SummerGift 2019-05-16 08:47:04 +08:00
parent ec99faf022
commit 9f300de9cc
3 changed files with 22 additions and 31 deletions

View File

@ -16,8 +16,8 @@ int gettimeofday(struct timeval *tp, void *ignore)
rt_device_t device;
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)
{
@ -27,9 +27,6 @@ int gettimeofday(struct timeval *tp, void *ignore)
return time;
}
return 0;
}
#endif
/**

View File

@ -211,8 +211,8 @@ int gettimeofday(struct timeval *tp, void *ignore)
rt_device_t device;
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)
{
@ -222,9 +222,6 @@ int gettimeofday(struct timeval *tp, void *ignore)
return time;
}
return 0;
}
#endif
#ifndef _gettimeofday

View File

@ -16,8 +16,8 @@ int gettimeofday(struct timeval *tp, void *ignore)
rt_device_t device;
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)
{
@ -27,9 +27,6 @@ int gettimeofday(struct timeval *tp, void *ignore)
return time;
}
return 0;
}
#endif
/**