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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 12f5e059e0..aa232f9331 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -801,6 +801,7 @@ bool view_battery(void)
801 case 3: /* remeining time estimation: */ 801 case 3: /* remeining time estimation: */
802 lcd_clear_display(); 802 lcd_clear_display();
803 803
804#ifdef HAVE_CHARGE_CTRL
804 snprintf(buf, 30, "charge_state: %d", charge_state); 805 snprintf(buf, 30, "charge_state: %d", charge_state);
805 lcd_puts(0, 0, buf); 806 lcd_puts(0, 0, buf);
806 807
@@ -809,6 +810,7 @@ bool view_battery(void)
809 810
810 snprintf(buf, 30, "Lev.at cycle start: %d%%", powermgmt_last_cycle_level); 811 snprintf(buf, 30, "Lev.at cycle start: %d%%", powermgmt_last_cycle_level);
811 lcd_puts(0, 2, buf); 812 lcd_puts(0, 2, buf);
813#endif
812 814
813 snprintf(buf, 30, "Last PwrHist val: %d.%02d V", 815 snprintf(buf, 30, "Last PwrHist val: %d.%02d V",
814 power_history[POWER_HISTORY_LEN-1] / 100, 816 power_history[POWER_HISTORY_LEN-1] / 100,
@@ -821,9 +823,9 @@ bool view_battery(void)
821 snprintf(buf, 30, "Est. remaining: %d m", battery_time()); 823 snprintf(buf, 30, "Est. remaining: %d m", battery_time());
822 lcd_puts(0, 6, buf); 824 lcd_puts(0, 6, buf);
823 825
826#ifdef HAVE_CHARGE_CTRL
824 snprintf(buf, 30, "Trickle sec: %d/60", trickle_sec); 827 snprintf(buf, 30, "Trickle sec: %d/60", trickle_sec);
825 lcd_puts(0, 7, buf); 828 lcd_puts(0, 7, buf);
826#ifdef HAVE_CHARGE_CTRL
827#endif 829#endif
828 break; 830 break;
829 } 831 }