We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When reading USB packets with USBHost::intransfer, packet sizes of 512 bytes would read 0 bytes.
USBHost::intransfer
In UHD_Pipe_Read, nb_byte_received is declared uint8_t, whereas it needs to be at least uint16_t.
UHD_Pipe_Read
nb_byte_received
uint8_t
uint16_t
Recompiling the system library using this, everything works as expected.
Not sure where to report this, but hopefully I'll be set straight if this is not the right place.
The text was updated successfully, but these errors were encountered:
Posted this as "Update uotghs_host.c #66" But no reaction. Who maintains this library?
Sorry, something went wrong.
cmaglie
No branches or pull requests
When reading USB packets with
USBHost::intransfer
, packet sizes of 512 bytes would read 0 bytes.In
UHD_Pipe_Read
,nb_byte_received
is declareduint8_t
, whereas it needs to be at leastuint16_t
.Recompiling the system library using this, everything works as expected.
Not sure where to report this, but hopefully I'll be set straight if this is not the right place.
The text was updated successfully, but these errors were encountered: