Fixed incorrect PIPE_EPNUM_MASK mask causing pipe failures on devices with endpoint addresses of 8 and above (thanks to John Andrews).
This commit is contained in:
parent
b243c2b80b
commit
9d2613d908
4 changed files with 8 additions and 6 deletions
|
@ -173,7 +173,7 @@
|
|||
/** Endpoint number mask, for masking against endpoint addresses to retrieve the endpoint's
|
||||
* numerical address in the attached device.
|
||||
*/
|
||||
#define PIPE_EPNUM_MASK 0x07
|
||||
#define PIPE_EPNUM_MASK 0x0F
|
||||
|
||||
/** Endpoint bank size mask, for masking against endpoint addresses to retrieve the endpoint's
|
||||
* bank size in the attached device.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue