未验证 提交 3ceadbe7 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #1169 from zhaojuntao/gettimeofday

[libc] Add gettimeofday support to dlib
#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;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册