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.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index d4e28ab2e2..ed13facf89 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -800,8 +800,10 @@ bool view_battery(void)
800 800
801 case 3: /* remeining time estimation: */ 801 case 3: /* remeining time estimation: */
802 lcd_clear_display(); 802 lcd_clear_display();
803 lcd_puts(0, 0, "Remaining time:"); 803
804 804 snprintf(buf, 30, "charge_state: %d", charge_state);
805 lcd_puts(0, 0, buf);
806
805 snprintf(buf, 30, "Cycle time: %d m", powermgmt_last_cycle_startstop_min); 807 snprintf(buf, 30, "Cycle time: %d m", powermgmt_last_cycle_startstop_min);
806 lcd_puts(0, 1, buf); 808 lcd_puts(0, 1, buf);
807 809