@@ -42,10 +42,6 @@ static const uint8_t _hidReportDescriptor[] PROGMEM = {
42
42
0x09 , 0xFE , // USAGE (iProduct)
43
43
0x79 , IPRODUCT, // STRING INDEX (2)
44
44
0xB1 , 0x23 , // FEATURE (Constant, Variable, Absolute, No Wrap, Linear, No Preferred, No Null Position, Nonvolatile, Bitfield)
45
- 0x85 , HID_PD_SERIAL, // REPORT_ID (2)
46
- 0x09 , 0xFF , // USAGE (iSerialNumber)
47
- 0x79 , ISERIAL, // STRING INDEX (3)
48
- 0xB1 , 0x23 , // FEATURE (Constant, Variable, Absolute, No Wrap, Linear, No Preferred, No Null Position, Nonvolatile, Bitfield)
49
45
0x85 , HID_PD_MANUFACTURER, // REPORT_ID (3)
50
46
0x09 , 0xFD , // USAGE (iManufacturer)
51
47
0x79 , IMANUFACTURER, // STRING INDEX (1)
@@ -121,7 +117,6 @@ HIDPowerDevice_::HIDPowerDevice_(void) {
121
117
122
118
// set string ID here
123
119
HID ().SetFeature (HID_PD_IPRODUCT, &bProduct, sizeof (bProduct));
124
- HID ().SetFeature (HID_PD_SERIAL, &bSerial, sizeof (bSerial));
125
120
HID ().SetFeature (HID_PD_MANUFACTURER, &bManufacturer, sizeof (bManufacturer));
126
121
}
127
122
0 commit comments