Skip to content

Commit

Permalink
usb: match maximum asynchronous transfers count to buffer count
Browse files Browse the repository at this point in the history
  • Loading branch information
rjonaitis committed Sep 1, 2024
1 parent f3f4cab commit 59f5a43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/comms/USB/USBDMAEmulation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

namespace lime {

static constexpr int maxAsyncTransfers = 16;
static constexpr int maxAsyncTransfers = 256;

USBDMAEmulation::USBDMAEmulation(std::shared_ptr<IUSB> port, uint8_t endpoint, DataTransferDirection dir)
: port(port)
Expand Down

0 comments on commit 59f5a43

Please sign in to comment.