#217 Fixed order of parameters

This commit is contained in:
Hakan Lindestaf 2016-03-11 16:29:58 -08:00
parent a3b8e8d00b
commit c1c955c225

View file

@ -399,7 +399,7 @@ uint8_t HIDComposite::Poll() {
Notify(PSTR("\r\n"), 0x80); Notify(PSTR("\r\n"), 0x80);
#endif #endif
ParseHIDData(this, bHasReportId, epInfo[index].epAddr, (uint8_t)read, buf); ParseHIDData(this, epInfo[index].epAddr, bHasReportId, (uint8_t)read, buf);
HIDReportParser *prs = GetReportParser(((bHasReportId) ? *buf : 0)); HIDReportParser *prs = GetReportParser(((bHasReportId) ? *buf : 0));