I changed one line of code in the file with path name: USBDeviceHT/targets/TARGET_Maxim

Fork of USBDeviceHT by Helmut Tschemernjak

Revision:
5:fb690c44c0b1
Parent:
2:195554780c9b
--- a/USBDevice/USBDevice.cpp	Fri Feb 23 12:48:37 2018 +0000
+++ b/USBDevice/USBDevice.cpp	Tue Mar 06 16:57:29 2018 +0100
@@ -949,9 +949,9 @@
 
 const uint8_t * USBDevice::stringImanufacturerDesc() {
     static const uint8_t stringImanufacturerDescriptor[] = {
-        0x12,                                            /*bLength*/
+        0x14,                                            /*bLength*/
         STRING_DESCRIPTOR,                               /*bDescriptorType 0x03*/
-        'm',0,'b',0,'e',0,'d',0,'.',0,'o',0,'r',0,'g',0, /*bString iManufacturer - mbed.org*/
+        'h',0,'e',0,'l',0,'i',0,'o',0,'s',0,'.',0,'d',0,'e',0,/*bString iManufacturer - helios.de */
     };
     return stringImanufacturerDescriptor;
 }