mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 03:13:30 +08:00
[components/libc/compilers/dlib]
Add dlib/time.c to support gettimeofday API
This commit is contained in:
parent
ff6b7c4c23
commit
97f0f26535
23
components/libc/compilers/dlib/time.c
Normal file
23
components/libc/compilers/dlib/time.c
Normal 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;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user