summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBarry Wardell <rockbox@barrywardell.net>2006-09-29 12:20:04 +0000
committerBarry Wardell <rockbox@barrywardell.net>2006-09-29 12:20:04 +0000
commitd9fe5a77b0ad3fb03e5381501e76c7f9a97ab944 (patch)
tree0251ddc3d829485c29d8f1a9831014bddd3c0ecf
parentd2015eb578e58babb1beac69890e5283a4f99ebb (diff)
downloadrockbox-d9fe5a77b0ad3fb03e5381501e76c7f9a97ab944.tar.gz
rockbox-d9fe5a77b0ad3fb03e5381501e76c7f9a97ab944.zip
Adjust PP5020 I/O Ports debug menu so that it will fit on the H10 5GB screen.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11092 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/debug_menu.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index af1b81208a..d0b9373d24 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -1101,11 +1101,11 @@ bool dbg_ports(void)
1101 gpio_i = GPIOI_INPUT_VAL; 1101 gpio_i = GPIOI_INPUT_VAL;
1102 1102
1103 line = 0; 1103 line = 0;
1104 snprintf(buf, sizeof(buf), "GPIO_A: %02x GPIO_G: %02x", gpio_a, gpio_g); 1104 snprintf(buf, sizeof(buf), "GPIO_A: %02x GPIO_G: %02x", gpio_a, gpio_g);
1105 lcd_puts(0, line++, buf); 1105 lcd_puts(0, line++, buf);
1106 snprintf(buf, sizeof(buf), "GPIO_B: %02x GPIO_H: %02x", gpio_b, gpio_h); 1106 snprintf(buf, sizeof(buf), "GPIO_B: %02x GPIO_H: %02x", gpio_b, gpio_h);
1107 lcd_puts(0, line++, buf); 1107 lcd_puts(0, line++, buf);
1108 snprintf(buf, sizeof(buf), "GPIO_C: %02x GPIO_I: %02x", gpio_c, gpio_i); 1108 snprintf(buf, sizeof(buf), "GPIO_C: %02x GPIO_I: %02x", gpio_c, gpio_i);
1109 lcd_puts(0, line++, buf); 1109 lcd_puts(0, line++, buf);
1110 line++; 1110 line++;
1111 1111
@@ -1117,11 +1117,11 @@ bool dbg_ports(void)
1117 gpio_k = GPIOK_INPUT_VAL; 1117 gpio_k = GPIOK_INPUT_VAL;
1118 gpio_l = GPIOL_INPUT_VAL; 1118 gpio_l = GPIOL_INPUT_VAL;
1119 1119
1120 snprintf(buf, sizeof(buf), "GPIO_D: %02x GPIO_J: %02x", gpio_d, gpio_j); 1120 snprintf(buf, sizeof(buf), "GPIO_D: %02x GPIO_J: %02x", gpio_d, gpio_j);
1121 lcd_puts(0, line++, buf); 1121 lcd_puts(0, line++, buf);
1122 snprintf(buf, sizeof(buf), "GPIO_E: %02x GPIO_K: %02x", gpio_e, gpio_k); 1122 snprintf(buf, sizeof(buf), "GPIO_E: %02x GPIO_K: %02x", gpio_e, gpio_k);
1123 lcd_puts(0, line++, buf); 1123 lcd_puts(0, line++, buf);
1124 snprintf(buf, sizeof(buf), "GPIO_F: %02x GPIO_L: %02x", gpio_f, gpio_l); 1124 snprintf(buf, sizeof(buf), "GPIO_F: %02x GPIO_L: %02x", gpio_f, gpio_l);
1125 lcd_puts(0, line++, buf); 1125 lcd_puts(0, line++, buf);
1126#if defined(IRIVER_H10) || defined(IRIVER_H10_5GB) 1126#if defined(IRIVER_H10) || defined(IRIVER_H10_5GB)
1127 line++; 1127 line++;