Oops - fix incorrect variable name in the updated Pipe_Write_8() function.
authorDean Camera <dean@fourwalledcubicle.com>
Mon, 4 Apr 2011 15:25:30 +0000 (15:25 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Mon, 4 Apr 2011 15:25:30 +0000 (15:25 +0000)
LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h

index 74716a0..2e89f6d 100644 (file)
                        static inline void Pipe_Write_8(const uint8_t Data) ATTR_ALWAYS_INLINE;
                        static inline void Pipe_Write_8(const uint8_t Data)
                        {
-                               UPDATX = Byte;
+                               UPDATX = Data;
                        }
 
                        /** Discards one byte from the currently selected pipe's bank, for OUT direction pipes.