aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/HID
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-08-18 14:54:37 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-08-18 14:54:37 +0000
commit1cb60c1214c82ac117a7ede9e29351e902ee7c35 (patch)
treedf4d07eaaa9fb6eeff71e62039d1ac78e41ffff8 /Bootloaders/HID
parent8d8e5c06b9c6c7410ec6a08c530dfaf6e4bf213f (diff)
downloadlufa-1cb60c1214c82ac117a7ede9e29351e902ee7c35.tar.gz
lufa-1cb60c1214c82ac117a7ede9e29351e902ee7c35.tar.bz2
lufa-1cb60c1214c82ac117a7ede9e29351e902ee7c35.zip
Spell-check latest trunk source code.
Diffstat (limited to 'Bootloaders/HID')
-rw-r--r--Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c b/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c
index c86b0da9c..f40a3e6a0 100644
--- a/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c
+++ b/Bootloaders/HID/HostLoaderApp/hid_bootloader_cli.c
@@ -712,7 +712,7 @@ int teensy_write(void *buf, int len, double timeout)
{
int r;
- // TODO: imeplement timeout... how??
+ // TODO: implement timeout... how??
r = write(uhid_teensy_fd, buf, len);
if (r == len) return 1;
return 0;
@@ -807,7 +807,7 @@ int read_intel_hex(const char *filename)
/* parses a line of intel hex code, stores the data in bytes[] */
/* and the beginning address in addr, and returns a 1 if the */
-/* line was valid, or a 0 if an error occured. The variable */
+/* line was valid, or a 0 if an error occurred. The variable */
/* num gets the number of bytes that were stored into bytes[] */