Update projects using FatFS and PetiteFatFS to the latest library versions.
[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++));
+}