Skip to content

Commit

Permalink
usb_usb: Ignore error usage(0x01-03) report
Browse files Browse the repository at this point in the history
  • Loading branch information
tmk committed Jul 15, 2015
1 parent 6f5e8ce commit 1efdd86
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions tmk_core/protocol/usb_hid/parser.cpp
Expand Up @@ -10,15 +10,24 @@ uint16_t usb_hid_time_stamp;

void KBDReportParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)
{
::memcpy(&usb_hid_keyboard_report, buf, sizeof(report_keyboard_t));
usb_hid_time_stamp = millis();
bool is_error = false;
report_keyboard_t *report = (report_keyboard_t *)buf;

dprintf("KBDReport: %02X %02X", report->mods, report->reserved);
for (uint8_t i = 0; i < KEYBOARD_REPORT_KEYS; i++) {
if (IS_ERROR(report->keys[i])) {
is_error = true;
}
dprintf(" %02X", report->keys[i]);
}
dprint("\r\n");

debug("KBDReport: ");
debug_hex(usb_hid_keyboard_report.mods);
debug(" --");
for (uint8_t i = 0; i < 6; i++) {
debug(" ");
debug_hex(usb_hid_keyboard_report.keys[i]);
// ignore error and not send report to computer
if (is_error) {
dprint("Error usage! \r\n");
return;
}
debug("\r\n");

::memcpy(&usb_hid_keyboard_report, buf, sizeof(report_keyboard_t));
usb_hid_time_stamp = millis();
}

0 comments on commit 1efdd86

Please sign in to comment.