* \r
* This demo prints out received CDC data through the serial port.\r
* \r
- * Not that this demo is only compatible with devices which report the correct CDC\r
+ * Note that this demo is only compatible with devices which report the correct CDC\r
* and ACM class, subclass and protocol values. Most USB-Serial cables have vendor\r
* specific features, thus use vendor-specific class/subclass/protocol codes to force\r
* the user to use specialized drivers. This demo is not compatible with such devices.\r
*\r
* \note If desired, the macro DISABLE_TERMINAL_CODES can be defined in the project makefile and passed to the GCC\r
* compiler via the -D switch to disable the terminal codes without modifying the source, for use with non\r
- * compatible terminals (any terminal code then equate to empty strings).\r
+ * compatible terminals (any terminal codes then equate to empty strings).\r
*\r
* Example Usage:\r
* \code\r
#if defined(USE_INTERNAL_SERIAL)\r
if (USB_ControlRequest.wValue == ((DTYPE_String << 8) | USE_INTERNAL_SERIAL))\r
{\r
- uint8_t SignatureDescriptor[2 + (sizeof(int16_t) * 20)];\r
+ uint8_t SignatureDescriptor[2 + (sizeof(int16_t) * 12)];\r
\r
SignatureDescriptor[0] = sizeof(SignatureDescriptor);\r
SignatureDescriptor[1] = DTYPE_String;\r
\r
uint16_t* SigUnicodeChars = (uint16_t*)&SignatureDescriptor[2];\r
\r
- for (uint8_t SerialByteNum = 0; SerialByteNum < 10; SerialByteNum++)\r
+ for (uint8_t SerialByteNum = 0; SerialByteNum < 6; SerialByteNum++)\r
{\r
char ConvSigString[3];\r
\r
* - Master LUFA include file\r
* - Debug mode for pipe/endpoint calls\r
* - Add hub support to match Atmel's stack\r
+ * - Update Host mode Class Driver demo .txt files\r
*/\r