summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2008-04-11 15:49:48 +0000
committerMichael Sevakis <jethead71@rockbox.org>2008-04-11 15:49:48 +0000
commit57742e0ef7736cbc5c568baf0f3adb0719e3ff7b (patch)
tree40d9c2a48d542d69c3ebb7a4968cf81cd00c71e5 /apps
parent97e61198a5f549db9dc882a01b2b272292bd2805 (diff)
downloadrockbox-57742e0ef7736cbc5c568baf0f3adb0719e3ff7b.zip
rockbox-57742e0ef7736cbc5c568baf0f3adb0719e3ff7b.tar.gz
rockbox-57742e0ef7736cbc5c568baf0f3adb0719e3ff7b.tar.bz2
rockbox-57742e0ef7736cbc5c568baf0f3adb0719e3ff7b.tar.xz
Add a "View I/O Ports" screen for imx31. Show all GPIO contents.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17072 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/debug_menu.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/debug_menu.c b/apps/debug_menu.c
index d2d30ab..e167b1f 100644
--- a/apps/debug_menu.c
+++ b/apps/debug_menu.c
@@ -94,7 +94,8 @@
#include "pcf50605.h"
#endif
-#if CONFIG_CPU == DM320 || CONFIG_CPU == S3C2440 || CONFIG_CPU == TCC7801
+#if CONFIG_CPU == DM320 || CONFIG_CPU == S3C2440 || CONFIG_CPU == TCC7801 \
+ || CONFIG_CPU == IMX31L
#include "debug-target.h"
#endif
@@ -2407,7 +2408,8 @@ static const struct the_menu_item menuitems[] = {
(defined(CPU_PP) && !(defined(SANSA_E200) || defined(SANSA_C200)))
{ "Dump ROM contents", dbg_save_roms },
#endif
-#if CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE) || defined(CPU_PP) || CONFIG_CPU == S3C2440
+#if CONFIG_CPU == SH7034 || defined(CPU_COLDFIRE) || defined(CPU_PP) \
+ || CONFIG_CPU == S3C2440 || CONFIG_CPU == IMX31L
{ "View I/O ports", dbg_ports },
#endif
#if (CONFIG_RTC == RTC_PCF50605) && !defined(SIMULATOR)