aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-02 19:34:10 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-02 19:34:10 +0000
commit0d888458e17a57473e2d41229302ab401a815545 (patch)
tree8220122bb6fe1444b85e92c193f34cd57695d8c0 /LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
parent85579e12e487c50fc813aec2894f29fa2c27d9d0 (diff)
downloadlufa-0d888458e17a57473e2d41229302ab401a815545.tar.gz
lufa-0d888458e17a57473e2d41229302ab401a815545.tar.bz2
lufa-0d888458e17a57473e2d41229302ab401a815545.zip
Fix incorrect bank mask in Endpoint_ConfigureEndpoint() for the UC3 devices.
Diffstat (limited to 'LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h')
-rw-r--r--LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
index a1b2a16f2..3bd9c559c 100644
--- a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
+++ b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h
@@ -210,9 +210,9 @@
{
return Endpoint_ConfigureEndpoint_Prv((Address & ENDPOINT_EPNUM_MASK),
(AVR32_USBB_ALLOC_MASK |
- ((uint32_t)Type << AVR32_USBB_EPTYPE_OFFSET) |
- ((uint32_t)(Address & ENDPOINT_DIR_IN) ? AVR32_USBB_UECFG0_EPDIR_MASK : 0) |
- ((uint32_t)Banks << AVR32_USBB_EPBK_OFFSET) |
+ ((uint32_t)Type << AVR32_USBB_EPTYPE_OFFSET) |
+ ((Address & ENDPOINT_DIR_IN) ? AVR32_USBB_UECFG0_EPDIR_MASK : 0) |
+ ((Banks > 1) ? AVR32_USBB_UECFG0_EPBK_SINGLE : AVR32_USBB_UECFG0_EPBK_DOUBLE) |
Endpoint_BytesToEPSizeMask(Size)));
}