From 57e43cfb21d978bbac9a0644f9bc3fe8fb6e26a1 Mon Sep 17 00:00:00 2001 From: Kjell Ericson Date: Tue, 22 Jun 2004 05:37:44 +0000 Subject: 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 --- apps/plugins/battery_test.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'apps') diff --git a/apps/plugins/battery_test.c b/apps/plugins/battery_test.c index 01a075f72b..843c03ea7b 100644 --- a/apps/plugins/battery_test.c +++ b/apps/plugins/battery_test.c @@ -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 */ -- cgit v1.2.3