1) Presents a time for us without RTC.

2) Escaping the percent-sign correct for the splash screen.
3) Removed the newline for the splash screen.


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4785 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Kjell Ericson 2004-06-22 05:37:44 +00:00
parent 051e017ab8
commit 57e43cfb21

View file

@ -69,12 +69,25 @@ void loop(void)
rb->splash(HZ, true, "Failed creating /battery.log");
break;
}
#ifdef HAVE_RTC
t = rb->get_time();
#else
{
static struct tm temp;
long t2 = *rb->current_tick/HZ;
temp.tm_hour=t2/3600;
temp.tm_min=(t2/60)%60;
temp.tm_sec=t2%60;
t=&temp;
}
#endif
rb->snprintf(buf, sizeof buf, "%02d:%02d:%02d Battery %d%%\n",
t->tm_hour, t->tm_min, t->tm_sec, batt);
rb->write(f, buf, rb->strlen(buf));
rb->close(f);
rb->snprintf(buf, sizeof buf, "%02d:%02d:%02d Battery %d%%%%",
t->tm_hour, t->tm_min, t->tm_sec, batt);
rb->splash(0, true, buf);
/* simulate 128kbit/s (16kbyte/s) playback duration */