]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - tmk_core/protocol/usb_hid/parser.h
usb_usb: usb_hid: Change for USB_Host_Shield_2.0
[max/tmk_keyboard.git] / tmk_core / protocol / usb_hid / parser.h
1 #ifndef PARSER_H
2 #define PARSER_H
3
4 #include "usbhid.h"
5 #include "report.h"
6
7 class KBDReportParser : public HIDReportParser
8 {
9 public:
10     report_keyboard_t report;
11     uint16_t time_stamp;
12     virtual void Parse(USBHID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
13 };
14
15 #endif