aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/USBtoSerial
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-09-13 08:29:31 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-09-13 08:29:31 +0000
commit93b24a25dfd49eba38ac9523f1d7f779dfbbb026 (patch)
tree0f3bbe40b758eb95c0cf61f5f29856e08332e004 /Demos/Device/LowLevel/USBtoSerial
parent81b618be2376bc790a39db5ac40f7e86ba822ef2 (diff)
downloadlufa-93b24a25dfd49eba38ac9523f1d7f779dfbbb026.tar.gz
lufa-93b24a25dfd49eba38ac9523f1d7f779dfbbb026.tar.bz2
lufa-93b24a25dfd49eba38ac9523f1d7f779dfbbb026.zip
Fixed Low Level USBtoSerial demo not storing received characters (thanks to Michael from DirectAid.ca).
Diffstat (limited to 'Demos/Device/LowLevel/USBtoSerial')
-rw-r--r--Demos/Device/LowLevel/USBtoSerial/USBtoSerial.c2
1 files changed, 1 insertions, 1 deletions
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);
}