summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-04-06 23:53:19 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-04-06 23:53:19 +0000
commit43bf39edb718aa510188b3594e583c905dea5a54 (patch)
tree0b548d7425f68214a64528cb7eae08e4f24a8fe3 /apps/debug_menu.c
parent09e55a921883ab7e71bce19c49adc07705b827f5 (diff)
downloadrockbox-43bf39edb718aa510188b3594e583c905dea5a54.tar.gz
rockbox-43bf39edb718aa510188b3594e583c905dea5a54.zip
First lame attempt to show correct battery level on the iRiver
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6258 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 2ab2194199..3969972ea8 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -825,6 +825,8 @@ bool dbg_ports(void)
825 char buf[128]; 825 char buf[128];
826 int button; 826 int button;
827 int line; 827 int line;
828 int battery_voltage;
829 int batt_int, batt_frac;
828 830
829#ifdef HAVE_LCD_BITMAP 831#ifdef HAVE_LCD_BITMAP
830 lcd_setmargins(0, 0); 832 lcd_setmargins(0, 0);
@@ -873,6 +875,14 @@ bool dbg_ports(void)
873 snprintf(buf, sizeof(buf), "ADC_BATTERY: %02x", adc_battery); 875 snprintf(buf, sizeof(buf), "ADC_BATTERY: %02x", adc_battery);
874 lcd_puts(0, line++, buf); 876 lcd_puts(0, line++, buf);
875 877
878 battery_voltage = (adc_battery * BATTERY_SCALE_FACTOR) / 10000;
879 batt_int = battery_voltage / 100;
880 batt_frac = battery_voltage % 100;
881
882 snprintf(buf, 32, "Batt: %d.%02dV %d%% ", batt_int, batt_frac,
883 battery_level());
884 lcd_puts(0, line++, buf);
885
876 lcd_update(); 886 lcd_update();
877 button = button_get_w_tmo(HZ/10); 887 button = button_get_w_tmo(HZ/10);
878 888