forked from mfulz_github/qmk_firmware
Fix incorrect string length in the USBtoSerial demo descriptors (thanks to Oliver Zander).
This commit is contained in:
parent
44aea22949
commit
4b194592aa
|
@ -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"
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue