Explorar el Código

Merge pull request #30 from WMXZ-EU/master

Correct queue_Data_Transfer
main
Paul Stoffregen hace 5 años
padre
commit
68d262eca1
Ninguna cuenta vinculada a la dirección de correo electrónico del committer
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      ehci.cpp

+ 1
- 1
ehci.cpp Ver fichero

@@ -745,7 +745,7 @@ bool USBHost::queue_Data_Transfer(Pipe_t *pipe, void *buffer, uint32_t len, USBD
transfer = allocate_Transfer();
if (!transfer) return false;
data = transfer;
for (count=(len >> 14); count; count--) {
for (count=((len-1) >> 14); count; count--) {
next = allocate_Transfer();
if (!next) {
// free already-allocated qTDs

Cargando…
Cancelar
Guardar