diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-03 02:06:13 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-03 02:06:13 +0000 |
commit | 870591983c80053d05175cfe54bab603a8a945d9 (patch) | |
tree | d60678165a2343f126e622ae8813ffc65b0e17ac /LUFA/Drivers/USB/LowLevel/Host.c | |
parent | de8c9445d478dc31dab7e042c9c2943d0758bbb3 (diff) | |
download | lufa-870591983c80053d05175cfe54bab603a8a945d9.tar.gz lufa-870591983c80053d05175cfe54bab603a8a945d9.tar.bz2 lufa-870591983c80053d05175cfe54bab603a8a945d9.zip |
Add const attribute to class driver APIs.
Add new manual pages detailing the advantages of LUFA over the official Atmel USB AVR stack, and reasons why LUFA should be used over a built-from-scratch USB stack.
Diffstat (limited to 'LUFA/Drivers/USB/LowLevel/Host.c')
-rw-r--r-- | LUFA/Drivers/USB/LowLevel/Host.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/LowLevel/Host.c b/LUFA/Drivers/USB/LowLevel/Host.c index 2685f5f0b..9186f1c79 100644 --- a/LUFA/Drivers/USB/LowLevel/Host.c +++ b/LUFA/Drivers/USB/LowLevel/Host.c @@ -312,7 +312,7 @@ uint8_t USB_Host_GetDeviceDescriptor(void* const DeviceDescriptorPtr) uint8_t USB_Host_ClearPipeStall(uint8_t EndpointNum)
{
if (Pipe_GetPipeToken() == PIPE_TOKEN_IN)
- EndpointNum |= (1 << 7);
+ EndpointNum |= ENDPOINT_DESCRIPTOR_DIR_IN;
USB_ControlRequest = (USB_Request_Header_t)
{
|