1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 15:03:53 +01:00

native/rtc: avoid dealing with DST

This commit is contained in:
Karl Fessel 2021-03-31 23:51:48 +02:00
parent febfa5bc62
commit 72213ec99a

View File

@ -154,6 +154,9 @@ int rtc_get_time(struct tm *ttime)
}
_native_syscall_leave();
/* riot does not handle dst */
ttime->tm_isdst=0;
return 0;
}