summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/debug_menu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index e6e542431d..d3cfb30c76 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1194,6 +1194,8 @@ bool dbg_ports(void)
1194 lcd_puts(0, line++, buf); 1194 lcd_puts(0, line++, buf);
1195 line++; 1195 line++;
1196 1196
1197 snprintf(buf, sizeof(buf), "DEV_EN: %08lx", DEV_EN);
1198 lcd_puts(0, line++, buf);
1197 snprintf(buf, sizeof(buf), "CLOCK_SRC: %08lx", CLOCK_SOURCE); 1199 snprintf(buf, sizeof(buf), "CLOCK_SRC: %08lx", CLOCK_SOURCE);
1198 lcd_puts(0, line++, buf); 1200 lcd_puts(0, line++, buf);
1199 snprintf(buf, sizeof(buf), "CLCD_CLK_SRC: %08lx", CLCD_CLOCK_SRC); 1201 snprintf(buf, sizeof(buf), "CLCD_CLK_SRC: %08lx", CLCD_CLOCK_SRC);
@@ -1202,8 +1204,6 @@ bool dbg_ports(void)
1202 lcd_puts(0, line++, buf); 1204 lcd_puts(0, line++, buf);
1203 snprintf(buf, sizeof(buf), "PLL_STATUS: %08lx", PLL_STATUS); 1205 snprintf(buf, sizeof(buf), "PLL_STATUS: %08lx", PLL_STATUS);
1204 lcd_puts(0, line++, buf); 1206 lcd_puts(0, line++, buf);
1205 snprintf(buf, sizeof(buf), "DEV_INIT: %08lx", DEV_INIT);
1206 lcd_puts(0, line++, buf);
1207 snprintf(buf, sizeof(buf), "DEV_TIMING1: %08lx", DEV_TIMING1); 1207 snprintf(buf, sizeof(buf), "DEV_TIMING1: %08lx", DEV_TIMING1);
1208 lcd_puts(0, line++, buf); 1208 lcd_puts(0, line++, buf);
1209 1209