aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-02-24 15:46:58 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-02-24 15:46:58 +0000
commitcfa48f5987ee00f1ef44959cedc6e5248f2bdfb9 (patch)
tree66a72828750019b8e6f392ccae8f1b984f3e5469 /LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c
parent2b4658de2c1012a465035a8015c13762334088ac (diff)
downloadlufa-cfa48f5987ee00f1ef44959cedc6e5248f2bdfb9.tar.gz
lufa-cfa48f5987ee00f1ef44959cedc6e5248f2bdfb9.tar.bz2
lufa-cfa48f5987ee00f1ef44959cedc6e5248f2bdfb9.zip
Changed all *_SendByte() function prototypes to accept a void pointer for the input buffer (thanks to Simon Küppers) instead of a uint8_t pointer.
Diffstat (limited to 'LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c')
-rw-r--r--LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c b/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c
index 658697afd..e77eb90cd 100644
--- a/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c
+++ b/LUFA/Drivers/Peripheral/AVR8/Serial_AVR8.c
@@ -85,11 +85,11 @@ void Serial_SendString(const char* StringPtr)
}
}
-void Serial_SendData(const uint8_t* Buffer,
+void Serial_SendData(const void* Buffer,
uint16_t Length)
{
while (Length--)
- Serial_SendByte(*(Buffer++));
+ Serial_SendByte(*((uint8_t*)Buffer++));
}
void Serial_CreateStream(FILE* Stream)