FIX: USB Device descriptor issue, (@micolous, @megabug)

https://github.com/iceman1001/proxmark3/pull/243
1be25f9125
This commit is contained in:
Chris 2018-09-03 19:04:53 +02:00
commit ff16cbb4db

View file

@ -373,17 +373,15 @@ static const char StrManufacturer[] = {
}; };
static const char StrProduct[] = { static const char StrProduct[] = {
22, // Length 20, // Length
0x03, // Type is string 0x03, // Type is string
'P',0,'M',0,'3',0,' ',0,'D',0,'e',0,'v',0,'i',0,'c',0,'e',0 'p',0,'r',0,'o',0,'x',0,'m',0,'a',0,'r',0,'k',0,'3',0
}; };
static const char StrSerialNumber[] = { static const char StrSerialNumber[] = {
8, // Length 14, // Length
0x03, // Type is string 0x03, // Type is string
'8',0, 'i',0,'c',0,'e',0,'m',0,'a',0,'n',0
'8',0,
'8',0
}; };
// size includes their own field. // size includes their own field.