mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-09-10 17:15:43 +00:00
Fixed possible lost data in the XPLAINBridge, USBtoSerial and Benito projects when the host exceeds the packet timeout period on received packets as set by USB_STREAM_TIMEOUT_MS (thanks to Justin Rajewski).
This commit is contained in:
@@ -100,7 +100,17 @@ int main(void)
|
||||
|
||||
/* Read bytes from the USART receive buffer into the USB IN endpoint */
|
||||
while (BufferCount--)
|
||||
CDC_Device_SendByte(&VirtualSerial_CDC_Interface, RingBuffer_Remove(&USARTtoUSB_Buffer));
|
||||
{
|
||||
/* Try to send the next byte of data to the host, abort if there is an error without dequeuing */
|
||||
if (CDC_Device_SendByte(&VirtualSerial_CDC_Interface,
|
||||
RingBuffer_Peek(&USARTtoUSB_Buffer)) != ENDPOINT_READYWAIT_NoError)
|
||||
{
|
||||
break;
|
||||
}
|
||||
|
||||
/* Dequeue the already sent byte from the buffer now we have confirmed that no transmission error occurred */
|
||||
RingBuffer_Remove(&USARTtoUSB_Buffer);
|
||||
}
|
||||
}
|
||||
|
||||
/* Load the next byte from the USART transmit buffer into the USART */
|
||||
|
||||
Reference in New Issue
Block a user