aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-07-12 07:22:36 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-07-12 07:22:36 +0000
commitfdb82cd1e87b6521cea0c297107e9f03c7d50fa4 (patch)
tree73055e1e2812a4d304f9b30bbc9c603e60645e15 /LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c
parent04287b76c578b61fb16c90600af622d3e22e523b (diff)
downloadlufa-fdb82cd1e87b6521cea0c297107e9f03c7d50fa4.tar.gz
lufa-fdb82cd1e87b6521cea0c297107e9f03c7d50fa4.tar.bz2
lufa-fdb82cd1e87b6521cea0c297107e9f03c7d50fa4.zip
Fixed error in the pipe unordered allocation algorithm for the AVR8 devices breaking compatibility with some devices.
Diffstat (limited to 'LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c')
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c b/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c
index 6d4df036b..9f7cec15e 100644
--- a/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c
+++ b/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.c
@@ -78,7 +78,7 @@ bool Endpoint_ConfigureEndpoint_Prv(const uint8_t Number,
continue;
Endpoint_DisableEndpoint();
- UECFG1X &= (1 << ALLOC);
+ UECFG1X &= ~(1 << ALLOC);
Endpoint_EnableEndpoint();
UECFG0X = UECFG0XTemp;