]> git.friedersdorff.com Git - max/tmk_keyboard.git/blobdiff - tmk_core/protocol/usb_hid/parser.cpp
V-USB remote wakeup
[max/tmk_keyboard.git] / tmk_core / protocol / usb_hid / parser.cpp
index 28151f9d59369e5192129f249bc892db62c3a8f1..94e747ca4b8313f9e17a3a523c531b103151aef7 100644 (file)
@@ -4,21 +4,14 @@
 #include "debug.h"
 
 
-report_keyboard_t usb_hid_keyboard_report;
-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();
+    ::memcpy(&report, buf, sizeof(report_keyboard_t));
+    time_stamp = millis();
 
-    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]);
+    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]);
     }
-    debug("\r\n");
+    dprint("\r\n");
 }