diff options
author | Barry Wardell <rockbox@barrywardell.net> | 2006-09-29 12:20:04 +0000 |
---|---|---|
committer | Barry Wardell <rockbox@barrywardell.net> | 2006-09-29 12:20:04 +0000 |
commit | d9fe5a77b0ad3fb03e5381501e76c7f9a97ab944 (patch) | |
tree | 0251ddc3d829485c29d8f1a9831014bddd3c0ecf /apps/debug_menu.c | |
parent | d2015eb578e58babb1beac69890e5283a4f99ebb (diff) |
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
Diffstat (limited to 'apps/debug_menu.c')
-rw-r--r-- | apps/debug_menu.c | 12 |
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) gpio_i = GPIOI_INPUT_VAL; line = 0; - snprintf(buf, sizeof(buf), "GPIO_A: %02x GPIO_G: %02x", gpio_a, gpio_g); + snprintf(buf, sizeof(buf), "GPIO_A: %02x GPIO_G: %02x", gpio_a, gpio_g); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO_B: %02x GPIO_H: %02x", gpio_b, gpio_h); + snprintf(buf, sizeof(buf), "GPIO_B: %02x GPIO_H: %02x", gpio_b, gpio_h); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO_C: %02x GPIO_I: %02x", gpio_c, gpio_i); + snprintf(buf, sizeof(buf), "GPIO_C: %02x GPIO_I: %02x", gpio_c, gpio_i); lcd_puts(0, line++, buf); line++; @@ -1117,11 +1117,11 @@ bool dbg_ports(void) gpio_k = GPIOK_INPUT_VAL; gpio_l = GPIOL_INPUT_VAL; - snprintf(buf, sizeof(buf), "GPIO_D: %02x GPIO_J: %02x", gpio_d, gpio_j); + snprintf(buf, sizeof(buf), "GPIO_D: %02x GPIO_J: %02x", gpio_d, gpio_j); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO_E: %02x GPIO_K: %02x", gpio_e, gpio_k); + snprintf(buf, sizeof(buf), "GPIO_E: %02x GPIO_K: %02x", gpio_e, gpio_k); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO_F: %02x GPIO_L: %02x", gpio_f, gpio_l); + snprintf(buf, sizeof(buf), "GPIO_F: %02x GPIO_L: %02x", gpio_f, gpio_l); lcd_puts(0, line++, buf); #if defined(IRIVER_H10) || defined(IRIVER_H10_5GB) line++; |