Oops - fix incorrect variable name in the updated Pipe_Write_8() function.

This commit is contained in:
Dean Camera 2011-04-04 15:25:30 +00:00
parent 899df7d331
commit 96a2da1813
1 changed files with 1 additions and 1 deletions

View File

@ -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.