Fix incorrect string length in the USBtoSerial demo descriptors (thanks to Oliver Zander).

This commit is contained in:
Dean Camera 2012-08-28 20:10:11 +00:00
parent 44aea22949
commit 4b194592aa
1 changed files with 1 additions and 1 deletions

View File

@ -203,7 +203,7 @@ const USB_Descriptor_String_t PROGMEM ManufacturerString =
*/ */
const USB_Descriptor_String_t PROGMEM ProductString = const USB_Descriptor_String_t PROGMEM ProductString =
{ {
.Header = {.Size = USB_STRING_LEN(23), .Type = DTYPE_String}, .Header = {.Size = USB_STRING_LEN(22), .Type = DTYPE_String},
.UnicodeString = L"LUFA USB-RS232 Adapter" .UnicodeString = L"LUFA USB-RS232 Adapter"
}; };