aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-29 16:20:45 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-29 16:20:45 +0000
commit28401f7bb749350a66ebe95649d01a25c01842f7 (patch)
treeeff8174e307ea39ee7c1351fde7c23f0f33faf6c /Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c
parentca007f91f2aa959a738649d35becb54cb1efc8b8 (diff)
downloadlufa-28401f7bb749350a66ebe95649d01a25c01842f7.tar.gz
lufa-28401f7bb749350a66ebe95649d01a25c01842f7.tar.bz2
lufa-28401f7bb749350a66ebe95649d01a25c01842f7.zip
Spell check all source files once again to find any typos.
Diffstat (limited to 'Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c')
-rw-r--r--Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c b/Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c
index 9d28e7136..9135e53eb 100644
--- a/Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c
+++ b/Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c
@@ -143,7 +143,7 @@ int main(void)
/* Key code is an unsigned char in length, cast to the appropriate type */
uint8_t KeyCode = (uint8_t)ReportItem->Value;
- /* If scancode is non-zero, a key is being pressed */
+ /* If scan-code is non-zero, a key is being pressed */
if (KeyCode)
{
/* Toggle status LED to indicate keypress */
@@ -151,7 +151,7 @@ int main(void)
char PressedKey = 0;
- /* Convert scancode to printable character if alphanumeric */
+ /* Convert scan-code to printable character if alphanumeric */
if ((KeyCode >= 0x04) && (KeyCode <= 0x1D))
PressedKey = (KeyCode - 0x04) + 'A';
else if ((KeyCode >= 0x1E) && (KeyCode <= 0x27))
@@ -166,7 +166,7 @@ int main(void)
putchar(PressedKey);
}
- /* Once a scancode is found, stop scanning through the report items */
+ /* Once a scan-code is found, stop scanning through the report items */
break;
}
}