summaryrefslogtreecommitdiff
path: root/firmware/export
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2006-01-07 00:43:48 +0000
committerDave Chapman <dave@dchapman.com>2006-01-07 00:43:48 +0000
commitb82c441f290cda0faffbf467aaf4eb990c07dcc9 (patch)
tree894ad24dee14e64cd89ca8c135332d5578a4e906 /firmware/export
parentee927e6514d38fe29524aea39d1f0883d3005ad3 (diff)
downloadrockbox-b82c441f290cda0faffbf467aaf4eb990c07dcc9.tar.gz
rockbox-b82c441f290cda0faffbf467aaf4eb990c07dcc9.zip
iPod: Add USB detection. When inserting the USB cable, hold down MENU to charge via USB, otherwise Rockbox will reboot into the Disk Mode application stored in flash
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8303 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export')
-rw-r--r--firmware/export/config-ipodcolor.h3
-rw-r--r--firmware/export/config-ipodnano.h3
-rw-r--r--firmware/export/config-ipodvideo.h3
-rw-r--r--firmware/export/pp5020.h3
4 files changed, 12 insertions, 0 deletions
diff --git a/firmware/export/config-ipodcolor.h b/firmware/export/config-ipodcolor.h
index 778055f3d7..b88c9bc7a4 100644
--- a/firmware/export/config-ipodcolor.h
+++ b/firmware/export/config-ipodcolor.h
@@ -84,6 +84,9 @@
84 84
85#define USB_IPODSTYLE 85#define USB_IPODSTYLE
86 86
87/* define this if the unit can be powered or charged via USB */
88#define HAVE_USB_POWER
89
87/* Virtual LED (icon) */ 90/* Virtual LED (icon) */
88#define CONFIG_LED LED_VIRTUAL 91#define CONFIG_LED LED_VIRTUAL
89 92
diff --git a/firmware/export/config-ipodnano.h b/firmware/export/config-ipodnano.h
index 86cc279bb8..207aa18fa2 100644
--- a/firmware/export/config-ipodnano.h
+++ b/firmware/export/config-ipodnano.h
@@ -86,6 +86,9 @@
86 86
87#define USB_IPODSTYLE 87#define USB_IPODSTYLE
88 88
89/* define this if the unit can be powered or charged via USB */
90#define HAVE_USB_POWER
91
89/* Virtual LED (icon) */ 92/* Virtual LED (icon) */
90#define CONFIG_LED LED_VIRTUAL 93#define CONFIG_LED LED_VIRTUAL
91 94
diff --git a/firmware/export/config-ipodvideo.h b/firmware/export/config-ipodvideo.h
index e06e999e1c..d6d9bbc92f 100644
--- a/firmware/export/config-ipodvideo.h
+++ b/firmware/export/config-ipodvideo.h
@@ -86,6 +86,9 @@
86 86
87#define USB_IPODSTYLE 87#define USB_IPODSTYLE
88 88
89/* define this if the unit can be powered or charged via USB */
90#define HAVE_USB_POWER
91
89/* Virtual LED (icon) */ 92/* Virtual LED (icon) */
90#define CONFIG_LED LED_VIRTUAL 93#define CONFIG_LED LED_VIRTUAL
91 94
diff --git a/firmware/export/pp5020.h b/firmware/export/pp5020.h
index d2dbffc615..14dd2ba1c1 100644
--- a/firmware/export/pp5020.h
+++ b/firmware/export/pp5020.h
@@ -87,4 +87,7 @@
87#define PP5020_SER1_MASK (1 << (PP5020_SER1_IRQ-32)) 87#define PP5020_SER1_MASK (1 << (PP5020_SER1_IRQ-32))
88#define PP5020_I2C_MASK (1 << (PP5020_I2C_IRQ-32)) 88#define PP5020_I2C_MASK (1 << (PP5020_I2C_IRQ-32))
89 89
90#define USB2D_IDENT (*(volatile unsigned long*)(0xc5000000))
91#define USB_STATUS (*(volatile unsigned long*)(0xc50001a4))
92
90#endif 93#endif