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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 2b9702299b..6676a84d4b 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -792,7 +792,8 @@ static bool dbg_cpufreq(void)
792 { 792 {
793 line = 0; 793 line = 0;
794 794
795 lcd_putsf(0, line++, "Frequency: %ld", FREQ); 795 int temp = FREQ/1000000;
796 lcd_putsf(0, line++, "Frequency: %ld.%ld MHz", temp, (FREQ-temp*1000000)/100000);
796 lcd_putsf(0, line++, "boost_counter: %d", get_cpu_boost_counter()); 797 lcd_putsf(0, line++, "boost_counter: %d", get_cpu_boost_counter());
797 798
798 lcd_update(); 799 lcd_update();