mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
#217 Fixed order of parameters
This commit is contained in:
parent
a3b8e8d00b
commit
c1c955c225
1 changed files with 1 additions and 1 deletions
|
@ -399,7 +399,7 @@ uint8_t HIDComposite::Poll() {
|
|||
|
||||
Notify(PSTR("\r\n"), 0x80);
|
||||
#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));
|
||||
|
||||
|
|
Loading…
Reference in a new issue