diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-10-14 21:58:33 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-10-14 21:58:33 +0000 |
| commit | 64a17574e3c8df30a4814a060d1b2c0a9d89f9dd (patch) | |
| tree | 0fd7a8c2fc7b3283b5b6d67cfe165827f0665223 | |
| parent | 6239cdd898ed3c6661cf879436ebcbb9528288af (diff) | |
| download | rockbox-64a17574e3c8df30a4814a060d1b2c0a9d89f9dd.zip rockbox-64a17574e3c8df30a4814a060d1b2c0a9d89f9dd.tar.gz rockbox-64a17574e3c8df30a4814a060d1b2c0a9d89f9dd.tar.bz2 rockbox-64a17574e3c8df30a4814a060d1b2c0a9d89f9dd.tar.xz | |
Fix: Doing the port function setting first in usb_enable() fixes the instability with cold-started rockbox on Ondio (PA5 was high after the first usb_enable(false); with the old init order
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5276 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/usb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/usb.c b/firmware/usb.c index 65069c4..5584d91 100644 --- a/firmware/usb.c +++ b/firmware/usb.c @@ -83,6 +83,7 @@ static bool usb_monitor_enabled; static void usb_enable(bool on) { #ifdef USB_ENABLE_ONDIOSTYLE + PACR2 &= ~0x04C0; /* use PA3, PA5 as GPIO */ if(on) { #ifdef HAVE_MMC @@ -96,7 +97,6 @@ static void usb_enable(bool on) and_b(~0x20, &PADRL); /* disable USB */ or_b(0x08, &PADRL); /* deassert card detect */ } - PACR2 &= ~0x04C0; /* use PA3, PA5 as GPIO */ or_b(0x28, &PAIORL); /* output for USB enable and card detect */ #else /* standard HD Jukebox */ #ifdef HAVE_LCD_BITMAP @@ -362,7 +362,7 @@ void usb_init(void) /* We assume that the USB cable is extracted */ last_usb_status = false; - + queue_init(&usb_queue); create_thread(usb_thread, usb_stack, sizeof(usb_stack), usb_thread_name); |