diff options
| author | Robert Kukla <roolku@rockbox.org> | 2007-02-28 13:20:36 +0000 |
|---|---|---|
| committer | Robert Kukla <roolku@rockbox.org> | 2007-02-28 13:20:36 +0000 |
| commit | 50b5ee4781a44234b4ea5dccf3be6ae5ec9fd324 (patch) | |
| tree | d5197ea90c5dcfa574b84743ecbbd7fa2a754e55 /apps/misc.c | |
| parent | 343c428f2cf97c82540aecf07d154e43ff40e79a (diff) | |
| download | rockbox-50b5ee4781a44234b4ea5dccf3be6ae5ec9fd324.zip rockbox-50b5ee4781a44234b4ea5dccf3be6ae5ec9fd324.tar.gz rockbox-50b5ee4781a44234b4ea5dccf3be6ae5ec9fd324.tar.bz2 rockbox-50b5ee4781a44234b4ea5dccf3be6ae5ec9fd324.tar.xz | |
FS#6419 - driver for H1x0 series RTC Mod with runtime detection
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12520 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/misc.c')
| -rw-r--r-- | apps/misc.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/apps/misc.c b/apps/misc.c index 22f6fb5..339bc1d 100644 --- a/apps/misc.c +++ b/apps/misc.c @@ -60,6 +60,7 @@ #include "gui/gwps-common.h" #include "misc.h" +#include "rtc.h" /* Format a large-range value for output, using the appropriate unit so that * the displayed value is in the range 1 <= display < 1000 (1024 for "binary" @@ -414,6 +415,12 @@ void screen_dump(void) #endif #ifdef CONFIG_RTC +#if CONFIG_RTC == RTC_DS1339_DS3231 + if(!rtc_detected) + create_numbered_filename(filename, "", "dump_", ".bmp", 4 + IF_CNFN_NUM_(, NULL)); + else +#endif create_datetime_filename(filename, "", "dump ", ".bmp", false); #else create_numbered_filename(filename, "", "dump_", ".bmp", 4 |