X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=protocol%2Fusb_hid%2Fparser.cpp;h=66e949518e04cbcbf4c39bcb068ab8b53d2521d2;hb=9dfc611ae1903390a41b85da1cba2c6d67c7a8dd;hp=4077444b7514f3e0ce67508338bfa3d8c8ac0286;hpb=e7c030375ac76907206db7f09cf9208b0c7c6e66;p=max%2Ftmk_keyboard.git diff --git a/protocol/usb_hid/parser.cpp b/protocol/usb_hid/parser.cpp index 4077444b..66e94951 100644 --- a/protocol/usb_hid/parser.cpp +++ b/protocol/usb_hid/parser.cpp @@ -3,7 +3,6 @@ #include "parser.h" #include "usb_hid.h" -#include "leonardo_led.h" #include "debug.h" @@ -16,9 +15,9 @@ void KBDReportParser::Parse(HID *hid, bool is_rpt_id, uint8_t len, uint8_t *buf) ::memcpy(&usb_hid_keyboard_report, buf, sizeof(report_keyboard_t)); usb_hid_time_stamp = millis(); - LED_TX_TOGGLE; debug("KBDReport: "); debug_hex(usb_hid_keyboard_report.mods); + debug(" --"); for (uint8_t i = 0; i < 6; i++) { debug(" "); debug_hex(usb_hid_keyboard_report.keys[i]);