Merge pull request #1169 from zhaojuntao/gettimeofday

[libc] Add gettimeofday support to dlib
This commit is contained in:
Bernard Xiong 2018-01-17 15:26:28 +08:00 committed by GitHub
commit 3ceadbe7ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#include <sys/time.h>
int gettimeofday(struct timeval *tp, void *ignore)
{
time_t time;
rt_device_t device;
device = rt_device_find("rtc");
if (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;
}
return 0;
}