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.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index 3cb2dc5057..a2535d7f54 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1345,9 +1345,10 @@ static bool dbg_disk_info(void)
1345 case 9: 1345 case 9:
1346 timing_info_present = identify_info[53] & (1<<1); 1346 timing_info_present = identify_info[53] & (1<<1);
1347 if(timing_info_present) { 1347 if(timing_info_present) {
1348 snprintf(buf, 128, "Min time: %dns", identify_info[67]); 1348 lcd_puts(0, y++, "Cycle times");
1349 lcd_puts(0, y++, buf); 1349 snprintf(buf, 128, "%dns/%dns",
1350 snprintf(buf, 128, "Min IORDY: %dns", identify_info[68]); 1350 identify_info[67],
1351 identify_info[68]);
1351 lcd_puts(0, y++, buf); 1352 lcd_puts(0, y++, buf);
1352 } else { 1353 } else {
1353 lcd_puts(0, y++, "No timing info"); 1354 lcd_puts(0, y++, "No timing info");