mirror of
https://github.com/arduino/Arduino.git
synced 2025-02-20 14:54:31 +01:00
Revert "Subtract one from USB_EP_SIZE in USB_SendSpace"
This reverts commit 817d700a7503b269f986075cad637ce56c657e37.
This commit is contained in:
parent
14b3f9b1d6
commit
a707f0ba4d
@ -256,9 +256,7 @@ u8 USB_SendSpace(u8 ep)
|
||||
LockEP lock(ep);
|
||||
if (!ReadWriteAllowed())
|
||||
return 0;
|
||||
// subtract 1 from the EP size to never send a full packet,
|
||||
// this avoids dealing with ZLP's in USB_Send
|
||||
return USB_EP_SIZE - 1 - FifoByteCount();
|
||||
return USB_EP_SIZE - FifoByteCount();
|
||||
}
|
||||
|
||||
// Blocking Send of data to an endpoint
|
||||
|
Loading…
x
Reference in New Issue
Block a user