diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-11-11 09:09:39 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-11-11 09:09:39 +0000 |
| commit | e5f4e821a51f5b0dd44fe601df8bffcf1b635b8c (patch) | |
| tree | daf57c62f20881434ca23f2972e5ebee8c0eaf15 /Demos/Device/ClassDriver/CDC/CDC.c | |
| parent | 73299ea0a87c9e08bb98a8187929f8cb78c1d096 (diff) | |
Minor code cleanups for clarity.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@892 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Device/ClassDriver/CDC/CDC.c')
| -rw-r--r-- | Demos/Device/ClassDriver/CDC/CDC.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/ClassDriver/CDC/CDC.c b/Demos/Device/ClassDriver/CDC/CDC.c index 5d74cb1a..8940ae04 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));
}
}
|
