]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
usb_usb: Add Cheery 0101010101010101 bug fix
authortmk <hasu@tmk-kbd.com>
Sat, 14 Jul 2018 02:55:58 +0000 (11:55 +0900)
committertmk <hasu@tmk-kbd.com>
Wed, 1 Aug 2018 13:34:22 +0000 (22:34 +0900)
https://geekhack.org/index.php?topic=69169.msg2638223#msg2638223

tmk_core/protocol/usb_hid/parser.cpp

index 94e747ca4b8313f9e17a3a523c531b103151aef7..730a20d792dc741aedf172a0497a5e5152caf481 100644 (file)
@@ -6,12 +6,19 @@
 
 void KBDReportParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)
 {
-    ::memcpy(&report, buf, sizeof(report_keyboard_t));
-    time_stamp = millis();
-
-    dprintf("input %d:  %02X %02X", hid->GetAddress(), report.mods, report.reserved);
-    for (uint8_t i = 0; i < KEYBOARD_REPORT_KEYS; i++) {
-        dprintf(" %02X", report.keys[i]);
+    dprintf("input %d:", hid->GetAddress());
+    for (uint8_t i = 0; i < len; i++) {
+        dprintf(" %02X", buf[i]);
     }
     dprint("\r\n");
+
+    // ignore Cherry 0101010101010101 bug report
+    // https://geekhack.org/index.php?topic=69169.msg2638223#msg2638223
+    if (buf[1] == 0x01) {
+       dprint("Cherry bug: ignored\r\n");
+       return;
+    }
+
+    ::memcpy(&report, buf, sizeof(report_keyboard_t));
+    time_stamp = millis();
 }