diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-23 08:03:09 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-06-23 08:03:09 +0000 |
commit | a3a04aa6719a891a1350179d5ac451c3e18c3bf2 (patch) | |
tree | d3d73e56fe2f3aef176106780e875940c0c8b35d /LUFA/Drivers/USB/LowLevel/Host.c | |
parent | 7f81803aaa312d589f79a77d1426150dcceb29f7 (diff) | |
download | lufa-a3a04aa6719a891a1350179d5ac451c3e18c3bf2.tar.gz lufa-a3a04aa6719a891a1350179d5ac451c3e18c3bf2.tar.bz2 lufa-a3a04aa6719a891a1350179d5ac451c3e18c3bf2.zip |
Pipe_ConfigurePipe() now automatically defaults IN pipes to accepting infinite IN requests, this can still be changed by calling the existing \ref Pipe_SetFiniteINRequests() function.
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel/Host.c')
-rw-r--r-- | LUFA/Drivers/USB/LowLevel/Host.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Host.c b/LUFA/Drivers/USB/LowLevel/Host.c index 1932b645c..037e6d80a 100644 --- a/LUFA/Drivers/USB/LowLevel/Host.c +++ b/LUFA/Drivers/USB/LowLevel/Host.c @@ -162,8 +162,6 @@ void USB_Host_ProcessNextHostState(void) break;
}
- Pipe_SetInfiniteINRequests();
-
USB_ControlRequest = (USB_Request_Header_t)
{
.bmRequestType = (REQDIR_HOSTTODEVICE | REQTYPE_STANDARD | REQREC_DEVICE),
|