Renamed the PRNT_Host_SendString(), CDC_Host_SendString() and CDC_Device_SendString...
[pub/USBasp.git] / LUFA / Drivers / Peripheral / Serial.c
index d9d946e..99af200 100644 (file)
@@ -81,3 +81,8 @@ void Serial_SendString(const char* StringPtr)
        }
 }
 
+void Serial_SendData(const uint8_t* Buffer, uint16_t Length)
+{
+       while (Length--)
+         Serial_SendByte(*(Buffer++));
+}