Fix typo in DualVirtualSerial.c due to the changed CDC Device APIs that was preventin...
authorDean Camera <dean@fourwalledcubicle.com>
Fri, 30 Jul 2010 04:20:41 +0000 (04:20 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Fri, 30 Jul 2010 04:20:41 +0000 (04:20 +0000)
Demos/Device/ClassDriver/DualVirtualSerial/DualVirtualSerial.c
LUFA/ManPages/ChangeLog.txt

index 53d7ce9..ffbc12c 100644 (file)
@@ -104,7 +104,7 @@ int main(void)
                CDC_Device_ReceiveByte(&VirtualSerial1_CDC_Interface);
 
                /* Echo all received data on the second CDC interface */
                CDC_Device_ReceiveByte(&VirtualSerial1_CDC_Interface);
 
                /* Echo all received data on the second CDC interface */
-               int16_t ReceivedByte; = CDC_Device_ReceiveByte(&VirtualSerial2_CDC_Interface);
+               int16_t ReceivedByte = CDC_Device_ReceiveByte(&VirtualSerial2_CDC_Interface);
                if (!(ReceivedByte < 0))
                  CDC_Device_SendByte(&VirtualSerial2_CDC_Interface, (uint8_t)ReceivedByte);
                  
                if (!(ReceivedByte < 0))
                  CDC_Device_SendByte(&VirtualSerial2_CDC_Interface, (uint8_t)ReceivedByte);
                  
index b234bfc..8e77876 100644 (file)
@@ -41,7 +41,8 @@
   *  - Internal USB driver source files renamed and moved to ease future possible architecture ports
   *  - All internal pseudo-function macros have been converted to true inline functions for type-safety and readability
   *  - Changed LED indicator masks for the AVRISP-MKII project, so that there are defined roles for each LED
   *  - Internal USB driver source files renamed and moved to ease future possible architecture ports
   *  - All internal pseudo-function macros have been converted to true inline functions for type-safety and readability
   *  - Changed LED indicator masks for the AVRISP-MKII project, so that there are defined roles for each LED
-  *  - Altered the CDC Deivice and Host Class drivers' receive byte routines, so that no data is indicated by a negative return value
+  *  - Altered the CDC Deivice and Host Class drivers' receive byte routines, so that no data is indicated by the function returning a
+  *    negative value (thanks to Andreas Paulin)
   *  - Added auto flushing of OUT data to the CDC Host Class driver's USBTask function to automatically flush the send pipe buffer
   *
   *  <b>Fixed:</b>
   *  - Added auto flushing of OUT data to the CDC Host Class driver's USBTask function to automatically flush the send pipe buffer
   *
   *  <b>Fixed:</b>