diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-08-28 20:10:11 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-08-28 20:10:11 +0000 |
commit | 4b194592aa34e2f77302fbf3621332af16716ea0 (patch) | |
tree | 92599a02e528b540abe9af2210d1cfb5b3edb083 /Projects/USBtoSerial | |
parent | 44aea22949c40e76b8be6cb56acbd2b155043e6b (diff) | |
download | lufa-4b194592aa34e2f77302fbf3621332af16716ea0.tar.gz lufa-4b194592aa34e2f77302fbf3621332af16716ea0.tar.bz2 lufa-4b194592aa34e2f77302fbf3621332af16716ea0.zip |
Fix incorrect string length in the USBtoSerial demo descriptors (thanks to Oliver Zander).
Diffstat (limited to 'Projects/USBtoSerial')
-rw-r--r-- | Projects/USBtoSerial/Descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Projects/USBtoSerial/Descriptors.c b/Projects/USBtoSerial/Descriptors.c index 2b4bb4ceb..1ae11b445 100644 --- a/Projects/USBtoSerial/Descriptors.c +++ b/Projects/USBtoSerial/Descriptors.c @@ -203,7 +203,7 @@ const USB_Descriptor_String_t PROGMEM ManufacturerString = */ 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" }; |