Mega Man
Joined: 18 Jun 2005 Posts: 274
|
Posted: Mon Aug 03, 2009 7:56 am Post subject: [PS2] USB Hub Timeout |
|
|
While working at my DVB driver. I found some problems with USB. The timeout was too small. Maybe this is only a problem with USB 1.0 devices and not USB 1.1 devices.
Code: |
Index: iop/usb/usbd/src/hub.c
===================================================================
--- iop/usb/usbd/src/hub.c (Revision 1588)
+++ iop/usb/usbd/src/hub.c (Arbeitskopie)
@@ -492,7 +492,7 @@
ep->hcEd.hcArea |= dev->functionAddress & 0x7F;
dev->deviceStatus = DEVICE_READY;
- addTimerCallback(&dev->timer, (TimerCallback)hubPeekDeviceDescriptor, req, 4);
+ addTimerCallback(&dev->timer, (TimerCallback)hubPeekDeviceDescriptor, req, 10);
}
}
|
|
|