aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/ClassDriver/CDC
diff options
context:
space:
mode:
Diffstat (limited to 'Demos/Device/ClassDriver/CDC')
-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));
}
}