aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/USBtoSerial/USBtoSerial.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-11-03 11:24:34 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-11-03 11:24:34 +0000
commit85cf2027373cfbe6f6fb257a84a59df0d74f3e1a (patch)
treedf007db035b4ccc4a558ed8eb01cee00fb3f974f /Projects/USBtoSerial/USBtoSerial.c
parent8f9b5ae00df6654490245d29d1fd703a90be382d (diff)
downloadlufa-85cf2027373cfbe6f6fb257a84a59df0d74f3e1a.tar.gz
lufa-85cf2027373cfbe6f6fb257a84a59df0d74f3e1a.tar.bz2
lufa-85cf2027373cfbe6f6fb257a84a59df0d74f3e1a.zip
Fixed USBtoSerial and XPLAINBridge demos discarding data from the PC if the send buffer becomes full.
Diffstat (limited to 'Projects/USBtoSerial/USBtoSerial.c')
-rw-r--r--Projects/USBtoSerial/USBtoSerial.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/Projects/USBtoSerial/USBtoSerial.c b/Projects/USBtoSerial/USBtoSerial.c
index 3f06acde9..c26667df9 100644
--- a/Projects/USBtoSerial/USBtoSerial.c
+++ b/Projects/USBtoSerial/USBtoSerial.c
@@ -81,15 +81,21 @@ int main(void)
for (;;)
{
- /* Read bytes from the USB OUT endpoint into the USART transmit buffer */
- int16_t ReceivedByte = CDC_Device_ReceiveByte(&VirtualSerial_CDC_Interface);
- if (!(ReceivedByte < 0) && !(RingBuffer_IsFull(&USBtoUSART_Buffer)))
- RingBuffer_Insert(&USBtoUSART_Buffer, ReceivedByte);
+ /* Only try to read in bytes from the CDC interface if the transmit buffer is not full */
+ if (!(RingBuffer_IsFull(&USBtoUSART_Buffer)))
+ {
+ int16_t ReceivedByte = CDC_Device_ReceiveByte(&VirtualSerial_CDC_Interface);
+ /* Read bytes from the USB OUT endpoint into the USART transmit buffer */
+ if (!(ReceivedByte < 0))
+ RingBuffer_Insert(&USBtoUSART_Buffer, ReceivedByte);
+ }
+
/* Check if the UART receive buffer flush timer has expired or the buffer is nearly full */
RingBuff_Count_t BufferCount = RingBuffer_GetCount(&USARTtoUSB_Buffer);
if ((TIFR0 & (1 << TOV0)) || (BufferCount > 200))
{
+ /* Clear flush timer expiry flag */
TIFR0 |= (1 << TOV0);
/* Read bytes from the USART receive buffer into the USB IN endpoint */