Skip to content
Snippets Groups Projects
Commit fc2cbe07 authored by Dean Camera's avatar Dean Camera
Browse files

Shorten the product string descriptors in the CDC and DFU bootloaders to...

Shorten the product string descriptors in the CDC and DFU bootloaders to ensure that differences in the toolchain version don't push it over a binary size boundary.
parent c8f7cf76
No related branches found
No related tags found
No related merge requests found
......@@ -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"
......
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment