From 9ae9a18de9c9fb5379444162aa5f4d1395a323da Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Sat, 15 Mar 2008 10:11:23 +0000 Subject: Make ports debug screen usable on M3 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16674 a1c6a512-1295-4272-9138-f99709370657 --- apps/debug_menu.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'apps') 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); -- cgit v1.2.3