2015-04-09 12:32:04 -04:00
|
|
|
#ifndef PARSER_H
|
|
|
|
|
#define PARSER_H
|
|
|
|
|
|
2018-10-30 02:50:51 -04:00
|
|
|
#include "usbhid.h"
|
2016-06-21 00:49:06 -04:00
|
|
|
#include "report.h"
|
2015-04-09 12:32:04 -04:00
|
|
|
|
|
|
|
|
class KBDReportParser : public HIDReportParser
|
|
|
|
|
{
|
|
|
|
|
public:
|
2016-06-21 00:49:06 -04:00
|
|
|
report_keyboard_t report;
|
|
|
|
|
uint16_t time_stamp;
|
2018-10-30 02:50:51 -04:00
|
|
|
virtual void Parse(USBHID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
|
2015-04-09 12:32:04 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|