Use the framework provided GlobalInterruptEnable() function instead of the AVR8/XMEGA...
[pub/USBasp.git] / Bootloaders / DFU / Descriptors.c
index 1d358a3..7e6043d 100644 (file)
@@ -130,7 +130,7 @@ const USB_Descriptor_String_t LanguageString =
  *  form, and is read out upon request by the host when the appropriate string ID is requested, listed in the Device
  *  Descriptor.
  */
-const USB_Descriptor_String_t PROGMEM ManufacturerString =
+const USB_Descriptor_String_t ManufacturerString =
 {
        .Header                 = {.Size = USB_STRING_LEN(11), .Type = DTYPE_String},
 
@@ -143,9 +143,9 @@ const USB_Descriptor_String_t PROGMEM 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"