aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/CDC/CDC.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-11-11 09:09:39 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-11-11 09:09:39 +0000
commit04774208b6d4131466a2b5e44af314252ab1734e (patch)
treedaf57c62f20881434ca23f2972e5ebee8c0eaf15 /Demos/Device/ClassDriver/CDC/CDC.c
parent5de364163f5a7597ba2f54e37cdea493fbd1e7ff (diff)
downloadlufa-04774208b6d4131466a2b5e44af314252ab1734e.tar.gz
lufa-04774208b6d4131466a2b5e44af314252ab1734e.tar.bz2
lufa-04774208b6d4131466a2b5e44af314252ab1734e.zip
Minor code cleanups for clarity.
Diffstat (limited to 'Demos/Device/ClassDriver/CDC/CDC.c')
-rw-r--r--Demos/Device/ClassDriver/CDC/CDC.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/ClassDriver/CDC/CDC.c b/Demos/Device/ClassDriver/CDC/CDC.c
index 5d74cb1a5..8940ae042 100644
--- a/Demos/Device/ClassDriver/CDC/CDC.c
+++ b/Demos/Device/ClassDriver/CDC/CDC.c
@@ -130,10 +130,10 @@ void CheckJoystickMovement(void)
{
ActionSent = true;
- // Write the string to the virtual COM port via the created character stream
+ /* Write the string to the virtual COM port via the created character stream */
fputs(ReportString, &USBSerialStream);
- // Alternatively, without the stream:
+ /* Alternatively, without the stream: */
// CDC_Device_SendString(&VirtualSerial_CDC_Interface, ReportString, strlen(ReportString));
}
}