1 Mar 2004 10:42
cvs: apps debug_menu.c,1.62,1.63
Linus Nielsen Feltzing <linusnielsen <at> users.sourceforge.net>
2004-03-01 09:42:49 GMT
2004-03-01 09:42:49 GMT
Update of /cvsroot/rockbox/apps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28684/apps
Modified Files:
debug_menu.c
Log Message:
Squeezed the disk timing info to fit the Player LCD
Index: debug_menu.c
===================================================================
RCS file: /cvsroot/rockbox/apps/debug_menu.c,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -b -r1.62 -r1.63
--- debug_menu.c 16 Feb 2004 12:21:07 -0000 1.62
+++ debug_menu.c 1 Mar 2004 09:42:47 -0000 1.63
<at> <at> -1345,9 +1345,10 <at> <at>
case 9:
timing_info_present = identify_info[53] & (1<<1);
if(timing_info_present) {
- snprintf(buf, 128, "Min time: %dns", identify_info[67]);
- lcd_puts(0, y++, buf);
- snprintf(buf, 128, "Min IORDY: %dns", identify_info[68]);
+ lcd_puts(0, y++, "Cycle times");
+ snprintf(buf, 128, "%dns/%dns",
+ identify_info[67],
+ identify_info[68]);
lcd_puts(0, y++, buf);
} else {
lcd_puts(0, y++, "No timing info");
(Continue reading)
RSS Feed