diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2008-05-25 01:38:08 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2008-05-25 01:38:08 +0000 |
| commit | d892214d88ed00344516a9b2f1a127c033d4618f (patch) | |
| tree | 6558e0e53d770a5984f7b775945a09ff948c1c7d /apps/debug_menu.c | |
| parent | 11a667b6ca68e9e9e1025319cd5bdffd02e3a841 (diff) | |
| download | rockbox-d892214d88ed00344516a9b2f1a127c033d4618f.zip rockbox-d892214d88ed00344516a9b2f1a127c033d4618f.tar.gz rockbox-d892214d88ed00344516a9b2f1a127c033d4618f.tar.bz2 rockbox-d892214d88ed00344516a9b2f1a127c033d4618f.tar.xz | |
Gigabeat S: Add charge current and battery temp readout in power management and display in the battery screen. Thermistor data was obtained experimentally from one pulled off a dead board and appears basically correct when read back on a working device (which requires letting it settle to ambient temperature - a long wait so not easy to do). Sending me more thermistors would help improve accuracy *fingers crossed that it's close enough*. :-) This commit does NOT add charging but is a step towards implementing it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17626 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 313a2aa..22b1777 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -18,6 +18,7 @@ ****************************************************************************/ #include "config.h" +#include <stdlib.h> #include <stdio.h> #include <stdbool.h> #include <string.h> @@ -1649,7 +1650,18 @@ static bool view_battery(void) snprintf(buf, 30, "Charger: %s", charger_inserted() ? "present" : "absent"); lcd_puts(0, 3, buf); -#endif +#if defined TOSHIBA_GIGABEAT_S + y = battery_adc_charge_current(); + x = y < 0 ? '-' : ' '; + y = abs(y); + snprintf(buf, 30, "I Charge:%c%d.%03d A", (char)x, y / 1000, y % 1000); + lcd_puts(0, 4, buf); + + y = battery_adc_temp(); + snprintf(buf, 30, "T Battery: %dC (%dF)", y, (9*y + 160) / 5); + lcd_puts(0, 5, buf); +#endif /* defined TOSHIBA_GIGABEAT_S */ +#endif /* defined IPOD_NANO || defined IPOD_VIDEO */ #endif /* CONFIG_CHARGING != CHARGING_CONTROL */ #endif /* CONFIG_CHARGING */ break; |