From fbd0c5199209502e058bb6b255d01c71b0234787 Mon Sep 17 00:00:00 2001 From: PaulStoffregen Date: Mon, 11 Sep 2017 11:02:02 -0700 Subject: [PATCH] Opps, don't try to use null pipe in hid parser --- hid.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hid.cpp b/hid.cpp index 09ec1e1..28ce4c9 100644 --- a/hid.cpp +++ b/hid.cpp @@ -132,7 +132,7 @@ bool USBHIDParser::claim(Device_t *dev, int type, const uint8_t *descriptors, ui } else { return false; } - out_pipe->callback_function = out_callback; + //out_pipe->callback_function = out_callback; } in_pipe->callback_function = in_callback; for (uint32_t i=0; i < TOPUSAGE_LIST_LEN; i++) {