From 96a2da1813ac4a0bdd1b0641c67e5af2dd792e73 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Mon, 4 Apr 2011 15:25:30 +0000 Subject: [PATCH] Oops - fix incorrect variable name in the updated Pipe_Write_8() function. --- LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h b/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h index 74716a013b..2e89f6de40 100644 --- a/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h +++ b/LUFA/Drivers/USB/Core/AVR8/Pipe_AVR8.h @@ -598,7 +598,7 @@ 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.