Parcourir la source

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 il y a 5 ans
Parent
révision
b6e2d1aa59
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      ehci.cpp

+ 1
- 1
ehci.cpp Voir le fichier

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

Chargement…
Annuler
Enregistrer