|
|
|
@ -107,12 +107,22 @@ int main(void)
|
|
|
|
|
/* Check if the UART receive buffer flush timer has expired or the buffer is nearly full */
|
|
|
|
|
uint16_t BufferCount = RingBuffer_GetCount(&USARTtoUSB_Buffer);
|
|
|
|
|
if ((TIFR0 & (1 << TOV0)) || (BufferCount > (uint8_t)(sizeof(USARTtoUSB_Buffer_Data) * .75)))
|
|
|
|
|
{
|
|
|
|
|
Endpoint_SelectEndpoint(VirtualSerial_CDC_Interface.Config.DataINEndpoint.Address);
|
|
|
|
|
|
|
|
|
|
/* Check if a packet is already enqueued to the host - if so, we shouldn't try to send more data
|
|
|
|
|
* until it completes as there is a chance nothing is listening and a lengthy timeout could occur */
|
|
|
|
|
if (Endpoint_IsINReady())
|
|
|
|
|
{
|
|
|
|
|
/* Clear flush timer expiry flag */
|
|
|
|
|
TIFR0 |= (1 << TOV0);
|
|
|
|
|
|
|
|
|
|
/* Never send more than one bank size less one byte to the host at a time, so that we don't block
|
|
|
|
|
* while a Zero Length Packet (ZLP) to terminate the transfer is sent if the host isn't listening */
|
|
|
|
|
uint8_t BytesToSend = MIN(BufferCount, (CDC_TXRX_EPSIZE - 1));
|
|
|
|
|
|
|
|
|
|
/* Read bytes from the USART receive buffer into the USB IN endpoint */
|
|
|
|
|
while (BufferCount--)
|
|
|
|
|
while (BytesToSend--)
|
|
|
|
|
{
|
|
|
|
|
/* 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,
|
|
|
|
@ -125,6 +135,7 @@ int main(void)
|
|
|
|
|
RingBuffer_Remove(&USARTtoUSB_Buffer);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Load the next byte from the USART transmit buffer into the USART */
|
|
|
|
|
if (!(RingBuffer_IsEmpty(&USBtoUSART_Buffer)))
|
|
|
|
|