diff options
Diffstat (limited to 'apps')
-rw-r--r-- | apps/debug_menu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index 691e9f5070..0b39430d56 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1178,6 +1178,9 @@ bool dbg_ports(void) snprintf(buf, sizeof(buf), "SRCPND: %08x INTMOD: %08x", SRCPND, INTMOD); lcd_puts(0, line++, buf); snprintf(buf, sizeof(buf), "INTMSK: %08x INTPND: %08x", INTMSK, INTPND); lcd_puts(0, line++, buf); snprintf(buf, sizeof(buf), "CLKCON: %08x CLKSLOW: %08x", CLKCON, CLKSLOW); lcd_puts(0, line++, buf); + snprintf(buf, sizeof(buf), "MPLLCON: %08x UPLLCON: %08x", MPLLCON, UPLLCON); lcd_puts(0, line++, buf); + snprintf(buf, sizeof(buf), "CLKDIVN: %08x", CLKDIVN); lcd_puts(0, line++, buf); + lcd_update(); if (button_get_w_tmo(HZ/10) == (DEBUG_CANCEL|BUTTON_REL)) return false; |