1
0
该仓库已被归档。您可以查看文件和克隆它,但不能推送、创建工单或合并请求。
tmk_keyboard_custom/protocol/usb_hid/parser.h

13 行
195 B
C++

#ifndef PARSER_H
#define PARSER_H
#include "hid.h"
class KBDReportParser : public HIDReportParser
{
public:
virtual void Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf);
};
#endif