mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-22 01:55:24 +08:00
[Components/libc] Fix time.c code style in armlibc and dlib.
This commit is contained in:
parent
5dd0539293
commit
2d9798ac3d
@ -1,23 +1,25 @@
|
|||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
#include <rtdevice.h>
|
||||||
|
|
||||||
|
#if defined(RT_USING_DEVICE) && defined(RT_USING_RTC)
|
||||||
int gettimeofday(struct timeval *tp, void *ignore)
|
int gettimeofday(struct timeval *tp, void *ignore)
|
||||||
{
|
{
|
||||||
time_t time;
|
time_t time;
|
||||||
rt_device_t device;
|
rt_device_t device;
|
||||||
|
|
||||||
device = rt_device_find("rtc");
|
device = rt_device_find("rtc");
|
||||||
if (device != RT_NULL)
|
if (device != RT_NULL)
|
||||||
{
|
{
|
||||||
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
||||||
if (tp != RT_NULL)
|
if (tp != RT_NULL)
|
||||||
{
|
{
|
||||||
tp->tv_sec = time;
|
tp->tv_sec = time;
|
||||||
tp->tv_usec = 0;
|
tp->tv_usec = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return time;
|
return time;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
@ -1,23 +1,25 @@
|
|||||||
#include <sys/time.h>
|
#include <sys/time.h>
|
||||||
|
#include <rtdevice.h>
|
||||||
|
|
||||||
|
#if defined(RT_USING_DEVICE) && defined(RT_USING_RTC)
|
||||||
int gettimeofday(struct timeval *tp, void *ignore)
|
int gettimeofday(struct timeval *tp, void *ignore)
|
||||||
{
|
{
|
||||||
time_t time;
|
time_t time;
|
||||||
rt_device_t device;
|
rt_device_t device;
|
||||||
|
|
||||||
device = rt_device_find("rtc");
|
device = rt_device_find("rtc");
|
||||||
if (device != RT_NULL)
|
if (device != RT_NULL)
|
||||||
{
|
{
|
||||||
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);
|
||||||
if (tp != RT_NULL)
|
if (tp != RT_NULL)
|
||||||
{
|
{
|
||||||
tp->tv_sec = time;
|
tp->tv_sec = time;
|
||||||
tp->tv_usec = 0;
|
tp->tv_usec = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
return time;
|
return time;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user