diff options
| author | Robert Kukla <roolku@rockbox.org> | 2008-03-02 13:07:11 +0000 |
|---|---|---|
| committer | Robert Kukla <roolku@rockbox.org> | 2008-03-02 13:07:11 +0000 |
| commit | ea92e4c2d7993565afa4284088bb8387fe092017 (patch) | |
| tree | 0b16f8afdd76a9be0fd299963fc22382f5326504 | |
| parent | c3485867e13ae9e185e494bf509ea0ce302f0157 (diff) | |
| download | rockbox-ea92e4c2d7993565afa4284088bb8387fe092017.zip rockbox-ea92e4c2d7993565afa4284088bb8387fe092017.tar.gz rockbox-ea92e4c2d7993565afa4284088bb8387fe092017.tar.bz2 rockbox-ea92e4c2d7993565afa4284088bb8387fe092017.tar.xz | |
m:robe 100: add USB detection
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16480 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/target/arm/usb-fw-pp502x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/target/arm/usb-fw-pp502x.c b/firmware/target/arm/usb-fw-pp502x.c index 8d3237c..008d42d 100644 --- a/firmware/target/arm/usb-fw-pp502x.c +++ b/firmware/target/arm/usb-fw-pp502x.c @@ -106,7 +106,7 @@ static bool usb_pin_detect(void) if (GPIOB_INPUT_VAL & 0x10) retval = true; -#elif defined(IRIVER_H10) || defined(IRIVER_H10_5GB) +#elif defined(IRIVER_H10) || defined(IRIVER_H10_5GB) || defined(MROBE_100) /* GPIO L bit 2 is usb detect */ if (GPIOL_INPUT_VAL & 0x4) retval = true; |