diff options
| author | Uwe Freese <thebreaker@rockbox.org> | 2003-02-12 22:21:07 +0000 |
|---|---|---|
| committer | Uwe Freese <thebreaker@rockbox.org> | 2003-02-12 22:21:07 +0000 |
| commit | 5e44a56b65da8fc02174a8397ba395a989dc063e (patch) | |
| tree | 475651b6d682d3887993a58f6f56e9fd3cce8d7b /apps/debug_menu.c | |
| parent | faec49f9a801f4d50fab69826ff81d3eb34404b8 (diff) | |
| download | rockbox-5e44a56b65da8fc02174a8397ba395a989dc063e.zip rockbox-5e44a56b65da8fc02174a8397ba395a989dc063e.tar.gz rockbox-5e44a56b65da8fc02174a8397ba395a989dc063e.tar.bz2 rockbox-5e44a56b65da8fc02174a8397ba395a989dc063e.tar.xz | |
disable charge control for FM
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3239 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/debug_menu.c')
| -rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 12f5e05..aa232f9 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -801,6 +801,7 @@ bool view_battery(void) case 3: /* remeining time estimation: */ lcd_clear_display(); +#ifdef HAVE_CHARGE_CTRL snprintf(buf, 30, "charge_state: %d", charge_state); lcd_puts(0, 0, buf); @@ -809,6 +810,7 @@ bool view_battery(void) snprintf(buf, 30, "Lev.at cycle start: %d%%", powermgmt_last_cycle_level); lcd_puts(0, 2, buf); +#endif snprintf(buf, 30, "Last PwrHist val: %d.%02d V", power_history[POWER_HISTORY_LEN-1] / 100, @@ -821,9 +823,9 @@ bool view_battery(void) snprintf(buf, 30, "Est. remaining: %d m", battery_time()); lcd_puts(0, 6, buf); +#ifdef HAVE_CHARGE_CTRL snprintf(buf, 30, "Trickle sec: %d/60", trickle_sec); lcd_puts(0, 7, buf); -#ifdef HAVE_CHARGE_CTRL #endif break; } |