diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-08-03 20:03:40 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-08-03 20:03:40 +0000 |
| commit | 7d80ebd3a38d8417b6ea43b5a4d07fd53a2c9e4c (patch) | |
| tree | 589d444d0aa4cf97614736ef911bbde6cd00aa83 /apps | |
| parent | e3ec22b607eca7bee39b6505905d5f548529c7f2 (diff) | |
| download | rockbox-7d80ebd3a38d8417b6ea43b5a4d07fd53a2c9e4c.zip rockbox-7d80ebd3a38d8417b6ea43b5a4d07fd53a2c9e4c.tar.gz rockbox-7d80ebd3a38d8417b6ea43b5a4d07fd53a2c9e4c.tar.bz2 rockbox-7d80ebd3a38d8417b6ea43b5a4d07fd53a2c9e4c.tar.xz | |
I supposed to show DEV_EN on PP502x....
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14167 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/debug_menu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c index e6e5424..d3cfb30 100644 --- a/apps/debug_menu.c +++ b/apps/debug_menu.c @@ -1194,6 +1194,8 @@ bool dbg_ports(void) lcd_puts(0, line++, buf); line++; + snprintf(buf, sizeof(buf), "DEV_EN: %08lx", DEV_EN); + lcd_puts(0, line++, buf); snprintf(buf, sizeof(buf), "CLOCK_SRC: %08lx", CLOCK_SOURCE); lcd_puts(0, line++, buf); snprintf(buf, sizeof(buf), "CLCD_CLK_SRC: %08lx", CLCD_CLOCK_SRC); @@ -1202,8 +1204,6 @@ bool dbg_ports(void) lcd_puts(0, line++, buf); snprintf(buf, sizeof(buf), "PLL_STATUS: %08lx", PLL_STATUS); lcd_puts(0, line++, buf); - snprintf(buf, sizeof(buf), "DEV_INIT: %08lx", DEV_INIT); - lcd_puts(0, line++, buf); snprintf(buf, sizeof(buf), "DEV_TIMING1: %08lx", DEV_TIMING1); lcd_puts(0, line++, buf); |