From 93b24a25dfd49eba38ac9523f1d7f779dfbbb026 Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Sun, 13 Sep 2009 08:29:31 +0000 Subject: Fixed Low Level USBtoSerial demo not storing received characters (thanks to Michael from DirectAid.ca). --- Demos/Device/LowLevel/USBtoSerial/USBtoSerial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Demos') diff --git a/Demos/Device/LowLevel/USBtoSerial/USBtoSerial.c b/Demos/Device/LowLevel/USBtoSerial/USBtoSerial.c index d5e871c2d..92449a67d 100644 --- a/Demos/Device/LowLevel/USBtoSerial/USBtoSerial.c +++ b/Demos/Device/LowLevel/USBtoSerial/USBtoSerial.c @@ -299,7 +299,7 @@ ISR(USART1_RX_vect, ISR_BLOCK) uint8_t ReceivedByte = UDR1; /* Only store received characters if the USB interface is connected */ - if ((USB_DeviceState != DEVICE_STATE_Configured) && LineEncoding.BaudRateBPS) + if ((USB_DeviceState == DEVICE_STATE_Configured) && LineEncoding.BaudRateBPS) Buffer_StoreElement(&Tx_Buffer, ReceivedByte); } -- cgit v1.2.3