This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2012-08-13 15:17:31 +00:00
|
|
|
#include "parser.h"
|
2012-08-25 06:49:08 +00:00
|
|
|
#include "leonardo_led.h"
|
|
|
|
#include "debug.h"
|
2012-08-13 15:17:31 +00:00
|
|
|
|
|
|
|
void KBDReportParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)
|
|
|
|
{
|
2012-08-25 06:49:08 +00:00
|
|
|
LED_TX_TOGGLE;
|
|
|
|
debug("KBDReport: ");
|
2012-08-13 15:17:31 +00:00
|
|
|
for (uint8_t i = 0; i < len; i++) {
|
2012-08-25 06:49:08 +00:00
|
|
|
debug_hex(buf[i]);
|
|
|
|
debug(" ");
|
2012-08-13 15:17:31 +00:00
|
|
|
}
|
2012-08-25 06:49:08 +00:00
|
|
|
debug("\r\n");
|
2012-08-13 15:17:31 +00:00
|
|
|
}
|