Shorten the product string descriptors in the CDC and DFU bootloaders to ensure that...
authorDean Camera <dean@fourwalledcubicle.com>
Sat, 15 Sep 2012 22:13:51 +0000 (22:13 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Sat, 15 Sep 2012 22:13:51 +0000 (22:13 +0000)
Bootloaders/CDC/Descriptors.c
Bootloaders/DFU/Descriptors.c

index 6bddcf4..0bc1f4e 100644 (file)
@@ -202,9 +202,9 @@ const USB_Descriptor_String_t ManufacturerString =
  */
 const USB_Descriptor_String_t ProductString =
 {
-       .Header                 = {.Size = USB_STRING_LEN(19), .Type = DTYPE_String},
+       .Header                 = {.Size = USB_STRING_LEN(8), .Type = DTYPE_String},
 
-       .UnicodeString          = L"LUFA CDC Bootloader"
+       .UnicodeString          = L"LUFA CDC"
 };
 
 /** This function is called by the library when in device mode, and must be overridden (see LUFA library "USB Descriptors"
index 95534bd..7e6043d 100644 (file)
@@ -143,9 +143,9 @@ const USB_Descriptor_String_t ManufacturerString =
  */
 const USB_Descriptor_String_t ProductString =
 {
-       .Header                 = {.Size = USB_STRING_LEN(19), .Type = DTYPE_String},
+       .Header                 = {.Size = USB_STRING_LEN(8), .Type = DTYPE_String},
 
-       .UnicodeString          = L"LUFA DFU Bootloader"
+       .UnicodeString          = L"LUFA DFU"
 };
 
 /** This function is called by the library when in device mode, and must be overridden (see library "USB Descriptors"