diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-03-15 10:11:23 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-03-15 10:11:23 +0000 |
commit | 9ae9a18de9c9fb5379444162aa5f4d1395a323da (patch) | |
tree | cc7ed4b76484a1c8cf8fa0a84adc2843685fed92 /apps | |
parent | 373d56bd2de88095f49b68acad040e843abd1245 (diff) |
Make ports debug screen usable on M3
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16674 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/debug_menu.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index cf1e8dceb6..d865f12e65 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1082,22 +1082,22 @@ bool dbg_ports(void) gpio_enable = GPIO_ENABLE; gpio1_enable = GPIO1_ENABLE; - snprintf(buf, sizeof(buf), "GPIO_READ: %08x", gpio_read); + snprintf(buf, sizeof(buf), "GPIO_READ: %08x", gpio_read); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO_OUT: %08x", gpio_out); + snprintf(buf, sizeof(buf), "GPIO_OUT: %08x", gpio_out); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO_FUNCTION: %08x", gpio_function); + snprintf(buf, sizeof(buf), "GPIO_FUNC: %08x", gpio_function); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO_ENABLE: %08x", gpio_enable); + snprintf(buf, sizeof(buf), "GPIO_ENA: %08x", gpio_enable); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO1_READ: %08x", gpio1_read); + snprintf(buf, sizeof(buf), "GPIO1_READ: %08x", gpio1_read); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO1_OUT: %08x", gpio1_out); + snprintf(buf, sizeof(buf), "GPIO1_OUT: %08x", gpio1_out); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO1_FUNCTION: %08x", gpio1_function); + snprintf(buf, sizeof(buf), "GPIO1_FUNC: %08x", gpio1_function); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "GPIO1_ENABLE: %08x", gpio1_enable); + snprintf(buf, sizeof(buf), "GPIO1_ENA: %08x", gpio1_enable); lcd_puts(0, line++, buf); adc_buttons = adc_read(ADC_BUTTONS); |