diff options
author | Kjell Ericson <kjell@haxx.se> | 2004-06-22 05:37:44 +0000 |
---|---|---|
committer | Kjell Ericson <kjell@haxx.se> | 2004-06-22 05:37:44 +0000 |
commit | 57e43cfb21d978bbac9a0644f9bc3fe8fb6e26a1 (patch) | |
tree | 5278cbf29d39895a3a196ad194ef5e06882b47a8 | |
parent | 051e017ab85ed4c29067074649a110349dad7dd9 (diff) |
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
-rw-r--r-- | apps/plugins/battery_test.c | 13 |
1 files changed, 13 insertions, 0 deletions
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 */ |