mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Set interrupt endpoint nak limit to USB_NAK_NOWAIT
This commit is contained in:
parent
2f04cc56ac
commit
1073f33cea
1 changed files with 3 additions and 3 deletions
6
BTD.cpp
6
BTD.cpp
|
@ -272,10 +272,10 @@ void BTD::EndpointXtract(uint8_t conf, uint8_t iface, uint8_t alt, uint8_t proto
|
||||||
bConfNum = conf;
|
bConfNum = conf;
|
||||||
uint8_t index;
|
uint8_t index;
|
||||||
|
|
||||||
if ((pep->bmAttributes & 0x03) == 3 && (pep->bEndpointAddress & 0x80) == 0x80) // Interrupt In endpoint found
|
if ((pep->bmAttributes & 0x03) == 3 && (pep->bEndpointAddress & 0x80) == 0x80) { // Interrupt In endpoint found
|
||||||
index = BTD_EVENT_PIPE;
|
index = BTD_EVENT_PIPE;
|
||||||
|
epInfo[index].bmNakPower = USB_NAK_NOWAIT;
|
||||||
else {
|
} else {
|
||||||
if ((pep->bmAttributes & 0x02) == 2) // Bulk endpoint found
|
if ((pep->bmAttributes & 0x02) == 2) // Bulk endpoint found
|
||||||
index = ((pep->bEndpointAddress & 0x80) == 0x80) ? BTD_DATAIN_PIPE : BTD_DATAOUT_PIPE;
|
index = ((pep->bEndpointAddress & 0x80) == 0x80) ? BTD_DATAIN_PIPE : BTD_DATAOUT_PIPE;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue