Minor code cleanups for clarity.

This commit is contained in:
Dean Camera 2009-11-11 09:09:39 +00:00
parent 5de364163f
commit 04774208b6
11 changed files with 33 additions and 33 deletions

View file

@ -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));
}
}