diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-11 09:09:39 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-11-11 09:09:39 +0000 |
commit | 04774208b6d4131466a2b5e44af314252ab1734e (patch) | |
tree | daf57c62f20881434ca23f2972e5ebee8c0eaf15 /Demos/Device | |
parent | 5de364163f5a7597ba2f54e37cdea493fbd1e7ff (diff) | |
download | lufa-04774208b6d4131466a2b5e44af314252ab1734e.tar.gz lufa-04774208b6d4131466a2b5e44af314252ab1734e.tar.bz2 lufa-04774208b6d4131466a2b5e44af314252ab1734e.zip |
Minor code cleanups for clarity.
Diffstat (limited to 'Demos/Device')
-rw-r--r-- | Demos/Device/ClassDriver/CDC/CDC.c | 4 | ||||
-rw-r--r-- | Demos/Device/Incomplete/Sideshow/Sideshow.c | 4 |
2 files changed, 4 insertions, 4 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));
}
}
diff --git a/Demos/Device/Incomplete/Sideshow/Sideshow.c b/Demos/Device/Incomplete/Sideshow/Sideshow.c index 151d28200..45dfb74bf 100644 --- a/Demos/Device/Incomplete/Sideshow/Sideshow.c +++ b/Demos/Device/Incomplete/Sideshow/Sideshow.c @@ -32,8 +32,8 @@ SideShow Class demonstration application. This give a reference
for implementing Microsoft SideShow compatible devices in an
embedded environment. SideShow allows for gadget data displayed
- on a Vista machine to also be displayed on an externally connected
- interactive display. Upon enumeration on a Vista system, this will
+ on a Windows Vista or later machine to also be displayed on an
+ externally connected interactive display. Upon enumeration, this will
appear as a new SideShow device which can have gadgets loaded onto
it.
|