]> git.donarmstrong.com Git - qmk_firmware.git/blobdiff - tmk_core/protocol/usb_hid/parser.h
Extended the hint of the programmer to link to the relevant README part instead of...
[qmk_firmware.git] / tmk_core / protocol / usb_hid / parser.h
index 703eb1ed4ce6f4499b7dc1ae680d03089bb5a74e..036281fa661342b43fa89a6fe1a7440072a7f8e4 100644 (file)
@@ -2,11 +2,14 @@
 #define PARSER_H
 
 #include "hid.h"
+#include "report.h"
 
 class KBDReportParser : public HIDReportParser
 {
 public:
-       virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
+    report_keyboard_t report;
+    uint16_t time_stamp;
+    virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
 };
 
 #endif