1
0
Fork 0
forked from len0rd/rockbox

ipod nano 1g: show lcd type debug info, make more room for iap debug info

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30181 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Bertrik Sikken 2011-07-20 21:21:31 +00:00
parent 061ff42187
commit 1f72825444

View file

@ -130,7 +130,7 @@ bool dbg_ports(void)
#if defined(IPOD_ACCESSORY_PROTOCOL)
const unsigned char *serbuf = iap_get_serbuf();
lcd_putsf(0, line++, "IAP PACKET: %02x %02x %02x %02x %02x %02x %02x %02x",
lcd_putsf(0, line++, "IAP: %02x %02x %02x %02x %02x %02x %02x %02x",
serbuf[0], serbuf[1], serbuf[2], serbuf[3], serbuf[4], serbuf[5],
serbuf[6], serbuf[7]);
#endif
@ -212,7 +212,7 @@ bool dbg_hw_info(void)
lcd_putsf(0, line++, "HW rev: 0x%08lx", IPOD_HW_REVISION);
#endif
#ifdef IPOD_COLOR
#if defined(IPOD_COLOR) || defined(IPOD_NANO)
extern int lcd_type; /* Defined in lcd-colornano.c */
lcd_putsf(0, line++, "LCD type: %d", lcd_type);