Переглянути джерело

Do not let HID parser claim boot protocol keyboards

main
PaulStoffregen 7 роки тому
джерело
коміт
1e6d0db268
1 змінених файлів з 2 додано та 0 видалено
  1. +2
    -0
      hid.cpp

+ 2
- 0
hid.cpp Переглянути файл

@@ -54,6 +54,8 @@ bool USBHIDParser::claim(Device_t *dev, int type, const uint8_t *descriptors, ui
println(" bInterfaceClass = ", descriptors[5]);
println(" bInterfaceSubClass = ", descriptors[6]);
println(" bInterfaceProtocol = ", descriptors[7]);
// do not claim boot protocol keyboards
if (descriptors[6] == 1 && descriptors[7] == 1) return false;

// hid interface descriptor
uint32_t hidlen = descriptors[9];

Завантаження…
Відмінити
Зберегти