Stripped down arduino host shield library

This commit is contained in:
2019-12-30 12:33:48 -05:00
parent fa6d1a2af1
commit 1c9e62fa54
17 changed files with 11 additions and 1642 deletions

View File

@@ -243,12 +243,9 @@ uint8_t USB::inTransfer(uint8_t addr, uint8_t ep, uint16_t *nbytesptr, uint8_t*
uint8_t rcode = SetAddress(addr, ep, &pep, &nak_limit);
if(rcode) {
USBTRACE3("(USB::InTransfer) SetAddress Failed ", rcode, 0x81);
USBTRACE3("(USB::InTransfer) addr requested ", addr, 0x81);
USBTRACE3("(USB::InTransfer) ep requested ", ep, 0x81);
if(rcode)
return rcode;
}
return InTransfer(pep, nak_limit, nbytesptr, data, bInterval);
}