Index: apps/debug_menu.c =================================================================== RCS file: /cvsroot/rockbox/apps/debug_menu.c,v retrieving revision 1.41 diff -u -r1.41 debug_menu.c --- apps/debug_menu.c 18 Dec 2002 18:55:49 -0000 1.41 +++ apps/debug_menu.c 22 Jan 2003 13:05:19 -0000 @@ -426,7 +426,9 @@ lcd_puts(0, 6, buf); snprintf(buf, 32, "ATA: %s, 0x%x", - ata_device?"slave":"master", ata_io_address); + ata_device?"slave":"master", ata_io_address); + snprintf(buf, 32, "BUTTON: 0x%04x", button); /* For FM Testing */ + lcd_puts(0, 7, buf); lcd_update(); Index: apps/main.c =================================================================== RCS file: /cvsroot/rockbox/apps/main.c,v retrieving revision 1.64 diff -u -r1.64 main.c --- apps/main.c 13 Jan 2003 12:54:58 -0000 1.64 +++ apps/main.c 22 Jan 2003 13:05:19 -0000 @@ -160,6 +160,8 @@ dbg_partitions(); } } + + dbg_ports(); /* For FM Testing */ settings_load();