From 6876cb6f7361fd6bc754a1dc15ced54c770f005d Mon Sep 17 00:00:00 2001 From: wycwyhwyq <5f20.6d9b@gmail.com> Date: Fri, 6 Dec 2024 20:13:03 +0800 Subject: [PATCH] [components] When rtc is not enabled, use other clock sources instead (#9747) When rtc is not enabled, use other clock sources instead Signed-off-by: wycwyhwyq <5f20.6d9b@gmail.com> --- components/libc/compilers/common/ctime.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/components/libc/compilers/common/ctime.c b/components/libc/compilers/common/ctime.c index 7c236f3da8e..7910356704e 100644 --- a/components/libc/compilers/common/ctime.c +++ b/components/libc/compilers/common/ctime.c @@ -602,9 +602,9 @@ int clock_getres(clockid_t clockid, struct timespec *res) switch (clockid) { -#ifdef RT_USING_RTC case CLOCK_REALTIME: // use RTC case CLOCK_REALTIME_COARSE: +#ifdef RT_USING_RTC return _control_rtc(RT_DEVICE_CTRL_RTC_GET_TIMERES, res); #endif /* RT_USING_RTC */ @@ -635,9 +635,9 @@ int clock_gettime(clockid_t clockid, struct timespec *tp) switch (clockid) { -#ifdef RT_USING_RTC case CLOCK_REALTIME: // use RTC case CLOCK_REALTIME_COARSE: +#ifdef RT_USING_RTC return _control_rtc(RT_DEVICE_CTRL_RTC_GET_TIMESPEC, tp); #endif /* RT_USING_RTC */ @@ -679,8 +679,8 @@ int clock_nanosleep(clockid_t clockid, int flags, const struct timespec *rqtp, s switch (clockid) { -#ifdef RT_USING_RTC case CLOCK_REALTIME: // use RTC +#ifdef RT_USING_RTC if (flags & TIMER_ABSTIME) err = _control_rtc(RT_DEVICE_CTRL_RTC_GET_TIMESPEC, &ts); break;