1
0
Fork 0

Add USB HID(host) protocol.(not finished)

This commit is contained in:
tmk 2012-08-14 00:17:31 +09:00
parent 7350b7c6aa
commit 895cd4dfa2
7 changed files with 300 additions and 0 deletions

View file

@ -0,0 +1,15 @@
#include "parser.h"
void KBDReportParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf)
{
PORTB ^= (1<<0);
/*
Serial.print("KBDReport: ");
for (uint8_t i = 0; i < len; i++) {
PrintHex<uint8_t>(buf[i]);
Serial.print(" ");
}
Serial.print("\r\n");
*/
//PORTC &= ~(1<<7);
}