summaryrefslogtreecommitdiff
path: root/apps/debug_menu.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r--apps/debug_menu.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 313a2aacac..22b1777a68 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -18,6 +18,7 @@
18 ****************************************************************************/ 18 ****************************************************************************/
19 19
20#include "config.h" 20#include "config.h"
21#include <stdlib.h>
21#include <stdio.h> 22#include <stdio.h>
22#include <stdbool.h> 23#include <stdbool.h>
23#include <string.h> 24#include <string.h>
@@ -1649,7 +1650,18 @@ static bool view_battery(void)
1649 snprintf(buf, 30, "Charger: %s", 1650 snprintf(buf, 30, "Charger: %s",
1650 charger_inserted() ? "present" : "absent"); 1651 charger_inserted() ? "present" : "absent");
1651 lcd_puts(0, 3, buf); 1652 lcd_puts(0, 3, buf);
1652#endif 1653#if defined TOSHIBA_GIGABEAT_S
1654 y = battery_adc_charge_current();
1655 x = y < 0 ? '-' : ' ';
1656 y = abs(y);
1657 snprintf(buf, 30, "I Charge:%c%d.%03d A", (char)x, y / 1000, y % 1000);
1658 lcd_puts(0, 4, buf);
1659
1660 y = battery_adc_temp();
1661 snprintf(buf, 30, "T Battery: %dC (%dF)", y, (9*y + 160) / 5);
1662 lcd_puts(0, 5, buf);
1663#endif /* defined TOSHIBA_GIGABEAT_S */
1664#endif /* defined IPOD_NANO || defined IPOD_VIDEO */
1653#endif /* CONFIG_CHARGING != CHARGING_CONTROL */ 1665#endif /* CONFIG_CHARGING != CHARGING_CONTROL */
1654#endif /* CONFIG_CHARGING */ 1666#endif /* CONFIG_CHARGING */
1655 break; 1667 break;