summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/debug_menu.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index d35f40229e..000dbdc4fc 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -796,6 +796,12 @@ static bool dbg_cpufreq(void)
796 lcd_putsf(0, line++, "Frequency: %ld.%ld MHz", temp, (FREQ-temp*1000000)/100000); 796 lcd_putsf(0, line++, "Frequency: %ld.%ld MHz", temp, (FREQ-temp*1000000)/100000);
797 lcd_putsf(0, line++, "boost_counter: %d", get_cpu_boost_counter()); 797 lcd_putsf(0, line++, "boost_counter: %d", get_cpu_boost_counter());
798 798
799#ifdef HAVE_ADJUSTABLE_CPU_VOLTAGE
800 extern int get_cpu_voltage_setting(void);
801 temp = get_cpu_voltage_setting();
802 lcd_putsf(0, line++, "CPU voltage: %d.%03dV", temp / 1000, temp % 1000);
803#endif
804
799 lcd_update(); 805 lcd_update();
800 button = get_action(CONTEXT_STD,HZ/10); 806 button = get_action(CONTEXT_STD,HZ/10);
801 807