aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2011-03-05 12:13:35 +0000
committerDean Camera <dean@fourwalledcubicle.com>2011-03-05 12:13:35 +0000
commit1e3d892b6a7eb6770c4abf3191399c8a68aa7eaf (patch)
tree4796cd26e03073d6c02f7379ccbddbd98f73c0b0 /LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h
parentb763c3f33e8596afe2dd21746890fa9641362c5e (diff)
downloadlufa-1e3d892b6a7eb6770c4abf3191399c8a68aa7eaf.tar.gz
lufa-1e3d892b6a7eb6770c4abf3191399c8a68aa7eaf.tar.bz2
lufa-1e3d892b6a7eb6770c4abf3191399c8a68aa7eaf.zip
Add software FIFOs to the UC3B pipe control interfaces, to match the endpoint control interfaces. Fix incorrect endianness for the Endpoint/Pipe read and write routines.
Diffstat (limited to 'LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h')
-rw-r--r--LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h
index 30979aff9..6933a8939 100644
--- a/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h
+++ b/LUFA/Drivers/USB/Core/AVR8/Endpoint_AVR8.h
@@ -349,8 +349,8 @@
*
* \param[in] EndpointNumber Endpoint number whose FIFO buffers are to be reset.
*/
- static inline void Endpoint_ResetFIFO(const uint8_t EndpointNumber) ATTR_ALWAYS_INLINE;
- static inline void Endpoint_ResetFIFO(const uint8_t EndpointNumber)
+ static inline void Endpoint_ResetEndpoint(const uint8_t EndpointNumber) ATTR_ALWAYS_INLINE;
+ static inline void Endpoint_ResetEndpoint(const uint8_t EndpointNumber)
{
UERST = (1 << EndpointNumber);
UERST = 0;