Procházet zdrojové kódy

Correct queue_Data_Transfer

For files of length 1<<14 there should be no 'next', as all data are transferred in one transfer
main
WMXZ-EU před 5 roky
rodič
revize
b6e2d1aa59
Žádný účet není propojen s e-mailovou adresou tvůrce revize
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      ehci.cpp

+ 1
- 1
ehci.cpp Zobrazit soubor

@@ -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

Načítá se…
Zrušit
Uložit