mirror of
https://github.com/hathach/tinyusb.git
synced 2025-03-28 16:20:26 +00:00
stm32f4: Fix incorrect xfer length for short packet IN xfers.
This commit is contained in:
parent
d1150432fe
commit
17e418bce4
@ -488,7 +488,8 @@ void OTG_FS_IRQHandler(void) {
|
||||
uint16_t remaining = (in_ep[n].DIEPTSIZ & USB_OTG_DIEPTSIZ_XFRSIZ_Msk) >> USB_OTG_DIEPTSIZ_XFRSIZ_Pos;
|
||||
xfer->queued_len = xfer->total_len - remaining;
|
||||
|
||||
for(uint8_t i = 0; i < xfer->max_size; i++) {
|
||||
uint16_t to_xfer_size = (remaining > xfer->max_size) ? xfer->max_size : remaining;
|
||||
for(uint16_t i = 0; i < to_xfer_size; i++) {
|
||||
(* tx_fifo) = xfer->buffer[xfer->queued_len + i];
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user