diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-04-01 13:53:58 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-04-01 13:53:58 +0000 |
commit | 6933f2e1a543b066ebe734bd126a7ff2f1c2777f (patch) | |
tree | a8fd03c986accab9fa79e43d835e047fb5b0e254 /Demos/Host/MouseHost | |
parent | fb3fcb968ea70f8b5c6d8f7edde65745e49628f2 (diff) | |
download | lufa-6933f2e1a543b066ebe734bd126a7ff2f1c2777f.tar.gz lufa-6933f2e1a543b066ebe734bd126a7ff2f1c2777f.tar.bz2 lufa-6933f2e1a543b066ebe734bd126a7ff2f1c2777f.zip |
All comments in the library, bootloaders, demos and projects have now been spell-checked and spelling mistakes/typos corrected.
Diffstat (limited to 'Demos/Host/MouseHost')
-rw-r--r-- | Demos/Host/MouseHost/MouseHost.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Demos/Host/MouseHost/MouseHost.c b/Demos/Host/MouseHost/MouseHost.c index dd7ff73f0..29cbd8741 100644 --- a/Demos/Host/MouseHost/MouseHost.c +++ b/Demos/Host/MouseHost/MouseHost.c @@ -75,7 +75,7 @@ int main(void) /* Initialize USB Subsystem */
USB_Init();
- /* Startup message */
+ /* Start-up message */
puts_P(PSTR(ESC_RESET ESC_BG_WHITE ESC_INVERSE_ON ESC_ERASE_DISPLAY
"Mouse Host Demo running.\r\n" ESC_INVERSE_OFF));
@@ -132,7 +132,7 @@ EVENT_HANDLER(USB_HostError) for(;;);
}
-/** Event handler for the USB_DeviceEnumerationFailed event. This indicates that a problem occured while
+/** Event handler for the USB_DeviceEnumerationFailed event. This indicates that a problem occurred while
* enumerating an attached USB device.
*/
EVENT_HANDLER(USB_DeviceEnumerationFailed)
@@ -259,7 +259,7 @@ TASK(USB_Mouse_Host) wLength: 0,
};
- /* Send the request, display error and wait for device detatch if request fails */
+ /* Send the request, display error and wait for device detach if request fails */
if ((ErrorCode = USB_Host_SendControlRequest(NULL)) != HOST_SENDCONTROL_Successful)
{
puts_P(PSTR("Control Error (Set Configuration).\r\n"));
@@ -306,7 +306,7 @@ TASK(USB_Mouse_Host) wLength: 0,
};
- /* Send the request, display error and wait for device detatch if request fails */
+ /* Send the request, display error and wait for device detach if request fails */
if ((ErrorCode = USB_Host_SendControlRequest(NULL)) != HOST_SENDCONTROL_Successful)
{
puts_P(PSTR("Control Error (Set Protocol).\r\n"));
|