Only Recorders have RTC

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2864 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2002-11-20 00:26:55 +00:00
parent 6100dd099b
commit 4dd6654bb2

View file

@ -27,6 +27,7 @@ static struct tm tm;
struct tm *get_time(void) struct tm *get_time(void)
{ {
#ifdef HAVE_RTC
char rtcbuf[8]; char rtcbuf[8];
int i; int i;
@ -49,5 +50,16 @@ struct tm *get_time(void)
tm.tm_wday = rtcbuf[4] & 0x07; tm.tm_wday = rtcbuf[4] & 0x07;
tm.tm_yday = 0; /* Not implemented for now */ tm.tm_yday = 0; /* Not implemented for now */
tm.tm_isdst = -1; /* Not implemented for now */ tm.tm_isdst = -1; /* Not implemented for now */
#else
tm.tm_sec = 0;
tm.tm_min = 0;
tm.tm_hour = 0;
tm.tm_mday = 1;
tm.tm_mon = 1;
tm.tm_year = 1970;
tm.tm_wday = 1;
tm.tm_yday = 0; /* Not implemented for now */
tm.tm_isdst = -1; /* Not implemented for now */
#endif
return &tm; return &tm;
} }