aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-03-11 07:03:34 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-03-11 07:03:34 +0000
commit13e2f71f159ac2f72abc2f977b63858de9138f21 (patch)
tree3aaf4d5a5f8f5cbd2b07501f62aa8edcf432932c /LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.c
parentc8a438d66c40f444b5b5fa6a814492fef75886ed (diff)
downloadlufa-13e2f71f159ac2f72abc2f977b63858de9138f21.tar.gz
lufa-13e2f71f159ac2f72abc2f977b63858de9138f21.tar.bz2
lufa-13e2f71f159ac2f72abc2f977b63858de9138f21.zip
Simplify AVR32 UC3B software FIFO, as it will only ever be accessed a byte at a time to prevent data alignment issues.
Diffstat (limited to 'LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.c')
-rw-r--r--LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.c b/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.c
index 1775e9857..14f66d922 100644
--- a/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.c
+++ b/LUFA/Drivers/USB/Core/UC3B/Endpoint_UC3B.c
@@ -39,8 +39,8 @@
uint8_t USB_ControlEndpointSize = ENDPOINT_CONTROLEP_DEFAULT_SIZE;
#endif
-volatile uint8_t USB_SelectedEndpoint = ENDPOINT_CONTROLEP;
-volatile void* USB_EndpointFIFOPos[ENDPOINT_TOTAL_ENDPOINTS];
+volatile uint8_t USB_SelectedEndpoint = ENDPOINT_CONTROLEP;
+volatile uint8_t* USB_EndpointFIFOPos[ENDPOINT_TOTAL_ENDPOINTS];
bool Endpoint_ConfigureEndpoint_Prv(const uint8_t Number,
const uint32_t UECFG0Data)