aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/CDC
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-10-08 07:18:28 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-10-08 07:18:28 +0000
commit664a2921816069483604f5e05a2a02b6ddf8727a (patch)
treec8bc5b6a52dd7dcc3f9233270569ee9cd2ebd0ba /Demos/Device/LowLevel/CDC
parentbdedbd558ce3db0d7c1e0ff6cdde2f480277aff7 (diff)
downloadlufa-664a2921816069483604f5e05a2a02b6ddf8727a.tar.gz
lufa-664a2921816069483604f5e05a2a02b6ddf8727a.tar.bz2
lufa-664a2921816069483604f5e05a2a02b6ddf8727a.zip
Application documentation/comment cleanup.
Diffstat (limited to 'Demos/Device/LowLevel/CDC')
-rw-r--r--Demos/Device/LowLevel/CDC/CDC.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/LowLevel/CDC/CDC.c b/Demos/Device/LowLevel/CDC/CDC.c
index 0c98c11af..444dc019d 100644
--- a/Demos/Device/LowLevel/CDC/CDC.c
+++ b/Demos/Device/LowLevel/CDC/CDC.c
@@ -36,7 +36,6 @@
#include "CDC.h"
-/* Globals: */
/** Contains the current baud rate and other settings of the virtual serial port. While this demo does not use
* the physical USART and thus does not use these settings, they must still be retained and returned to the host
* upon request or the host will assume the device is non-functional.
@@ -50,6 +49,7 @@ CDC_Line_Coding_t LineEncoding = { .BaudRateBPS = 0,
.ParityType = Parity_None,
.DataBits = 8 };
+
#if 0
/* NOTE: Here you can set up a standard stream using the created virtual serial port, so that the standard stream functions in
* <stdio.h> can be used on the virtual serial port (e.g. fprintf(&USBSerial, "Test"); to print a string).