Added Serial USART peripheral driver for the XMEGA platform.
[pub/lufa.git] / LUFA / Drivers / Peripheral / AVR8 / Serial_AVR8.c
index 3317d0d..4c2f1ae 100644 (file)
@@ -82,7 +82,8 @@ void Serial_SendString(const char* StringPtr)
        }
 }
 
-void Serial_SendData(const uint8_t* Buffer, uint16_t Length)
+void Serial_SendData(const uint8_t* Buffer,
+                     uint16_t Length)
 {
        while (Length--)
          Serial_SendByte(*(Buffer++));