Fixed endianess issues in the RNDIS host class driver for UC3 devices (thanks to Andrew Chu). Fix broken build for UC3 devices when ORDERED_EP_CONFIG compile time option is set.
This commit is contained in:
parent
8e1328dc6a
commit
badbca5791
3 changed files with 4 additions and 3 deletions
|
|
@ -87,7 +87,7 @@ bool Pipe_ConfigurePipe(const uint8_t Address,
|
|||
((uint32_t)Token << AVR32_USBB_PTOKEN_OFFSET) |
|
||||
((Banks > 1) ? AVR32_USBB_PBK_MASK : 0) |
|
||||
Pipe_BytesToEPSizeMask(Size) |
|
||||
((EndpointNumber & PIPE_EPNUM_MASK) << AVR32_USBB_PEPNUM_OFFSET));
|
||||
((uint32_t)Number << AVR32_USBB_PEPNUM_OFFSET));
|
||||
|
||||
Pipe_SetInfiniteINRequests();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue