aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-09-21 10:48:38 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-09-21 10:48:38 +0000
commit5faa79a7b55312f275435c5dacf8a89a6a3d26ae (patch)
tree122d7cb2659c536d03163f92bc2ad67b03da9c62 /LUFA/Drivers
parented7067e89f4adc1c5b9317caa0253d866ad2bf56 (diff)
downloadlufa-5faa79a7b55312f275435c5dacf8a89a6a3d26ae.tar.gz
lufa-5faa79a7b55312f275435c5dacf8a89a6a3d26ae.tar.bz2
lufa-5faa79a7b55312f275435c5dacf8a89a6a3d26ae.zip
Fixed USB_Host_ClearPipeStall() incorrectly attempting to determine the endpoint's direction from the currently selected pipe.
Diffstat (limited to 'LUFA/Drivers')
-rw-r--r--LUFA/Drivers/USB/LowLevel/Host.c3
-rw-r--r--LUFA/Drivers/USB/LowLevel/Host.h2
2 files changed, 1 insertions, 4 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Host.c b/LUFA/Drivers/USB/LowLevel/Host.c
index 6c66083a8..1d7faa197 100644
--- a/LUFA/Drivers/USB/LowLevel/Host.c
+++ b/LUFA/Drivers/USB/LowLevel/Host.c
@@ -338,9 +338,6 @@ uint8_t USB_Host_GetDeviceStringDescriptor(const uint8_t Index,
uint8_t USB_Host_ClearPipeStall(uint8_t EndpointNum)
{
- if (Pipe_GetPipeToken() == PIPE_TOKEN_IN)
- EndpointNum |= ENDPOINT_DESCRIPTOR_DIR_IN;
-
USB_ControlRequest = (USB_Request_Header_t)
{
.bmRequestType = (REQDIR_HOSTTODEVICE | REQTYPE_STANDARD | REQREC_ENDPOINT),
diff --git a/LUFA/Drivers/USB/LowLevel/Host.h b/LUFA/Drivers/USB/LowLevel/Host.h
index 40f630e84..3bfc44199 100644
--- a/LUFA/Drivers/USB/LowLevel/Host.h
+++ b/LUFA/Drivers/USB/LowLevel/Host.h
@@ -425,7 +425,7 @@
*
* \note After this routine returns, the control pipe will be selected.
*
- * \param[in] EndpointIndex Index of the endpoint to clear.
+ * \param[in] EndpointIndex Index of the endpoint to clear, including the endpoint's direction.
*
* \return A value from the \ref USB_Host_SendControlErrorCodes_t enum to indicate the result.
*/