aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/LowLevel/Endpoint.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-01-10 18:56:34 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-01-10 18:56:34 +0000
commit154f934b227dd665cd4a6393453601c5c400d78c (patch)
treecd40b901c2efd71ef767fb7bdd9b0477f9dc6eb1 /LUFA/Drivers/USB/LowLevel/Endpoint.c
parentf555ad7ced743a19eb1eefaf5eaf536fcbe58d80 (diff)
downloadlufa-154f934b227dd665cd4a6393453601c5c400d78c.tar.gz
lufa-154f934b227dd665cd4a6393453601c5c400d78c.tar.bz2
lufa-154f934b227dd665cd4a6393453601c5c400d78c.zip
Call USB_USBTask() in the Endpoint stream functions between packets if INTERRUPT_CONTROL_ENDPOINT is not set. Remove calls to USB_USBTask in the Mass Storage class driver stream read/write continuation checks, since this is now done inside the stream function.
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel/Endpoint.c')
-rw-r--r--LUFA/Drivers/USB/LowLevel/Endpoint.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Endpoint.c b/LUFA/Drivers/USB/LowLevel/Endpoint.c
index df1e86aa7..33f5ec924 100644
--- a/LUFA/Drivers/USB/LowLevel/Endpoint.c
+++ b/LUFA/Drivers/USB/LowLevel/Endpoint.c
@@ -155,10 +155,6 @@ uint8_t Endpoint_WaitUntilReady(void)
if (Endpoint_IsOUTReceived())
return ENDPOINT_READYWAIT_NoError;
}
-
- #if !defined(INTERRUPT_CONTROL_ENDPOINT)
- USB_USBTask();
- #endif
uint8_t USB_DeviceState_LCL = USB_DeviceState;