diff options
Diffstat (limited to 'Demos/Host/StillImageHost')
-rw-r--r-- | Demos/Host/StillImageHost/StillImageCommands.c | 2 | ||||
-rw-r--r-- | Demos/Host/StillImageHost/StillImageCommands.h | 2 | ||||
-rw-r--r-- | Demos/Host/StillImageHost/StillImageHost.c | 14 |
3 files changed, 9 insertions, 9 deletions
diff --git a/Demos/Host/StillImageHost/StillImageCommands.c b/Demos/Host/StillImageHost/StillImageCommands.c index 4d4c0b170..be6f7482d 100644 --- a/Demos/Host/StillImageHost/StillImageCommands.c +++ b/Demos/Host/StillImageHost/StillImageCommands.c @@ -111,7 +111,7 @@ uint8_t SImage_RecieveBlockHeader(void) /* Check to see if a new frame has been issued (1ms elapsed) */
if (USB_INT_HasOccurred(USB_INT_HSOFI))
{
- /* Clear the flag and decrement the timout period counter */
+ /* Clear the flag and decrement the timeout period counter */
USB_INT_Clear(USB_INT_HSOFI);
TimeoutMSRem--;
diff --git a/Demos/Host/StillImageHost/StillImageCommands.h b/Demos/Host/StillImageHost/StillImageCommands.h index 5679deae2..2ac6afd8b 100644 --- a/Demos/Host/StillImageHost/StillImageCommands.h +++ b/Demos/Host/StillImageHost/StillImageCommands.h @@ -62,7 +62,7 @@ (params * sizeof(PIMA_SendBlock.Params[0])))
/* Type Defines: */
- /** Type define for a PIMA container, use to send commands and receieve responses to and from an
+ /** Type define for a PIMA container, use to send commands and receive responses to and from an
* attached Still Image device.
*/
typedef struct
diff --git a/Demos/Host/StillImageHost/StillImageHost.c b/Demos/Host/StillImageHost/StillImageHost.c index 50b2054df..787629c3b 100644 --- a/Demos/Host/StillImageHost/StillImageHost.c +++ b/Demos/Host/StillImageHost/StillImageHost.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
"Still Image 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)
@@ -165,7 +165,7 @@ TASK(USB_SImage_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 (USB_Host_SendControlRequest(NULL) != HOST_SENDCONTROL_Successful)
{
puts_P(PSTR("Control error.\r\n"));
@@ -223,7 +223,7 @@ TASK(USB_SImage_Host) /* Send the GETDEVICEINFO block */
SImage_SendBlockHeader();
- /* Recieve the response data block */
+ /* Receive the response data block */
if ((ErrorCode = SImage_RecieveBlockHeader()) != PIPE_RWSTREAM_ERROR_NoError)
{
ShowCommandError(ErrorCode, false);
@@ -274,7 +274,7 @@ TASK(USB_SImage_Host) UnicodeToASCII(DeviceInfoPos, DeviceVersion);
printf_P(PSTR(" Device Version: %s\r\n"), DeviceVersion);
- /* Recieve the final response block from the device */
+ /* Receive the final response block from the device */
if ((ErrorCode = SImage_RecieveBlockHeader()) != PIPE_RWSTREAM_ERROR_NoError)
{
ShowCommandError(ErrorCode, false);
@@ -302,7 +302,7 @@ TASK(USB_SImage_Host) /* Send the OPENSESSION block, open a session with an ID of 0x0001 */
SImage_SendBlockHeader();
- /* Recieve the response block from the device */
+ /* Receive the response block from the device */
if ((ErrorCode = SImage_RecieveBlockHeader()) != PIPE_RWSTREAM_ERROR_NoError)
{
ShowCommandError(ErrorCode, false);
@@ -330,7 +330,7 @@ TASK(USB_SImage_Host) /* Send the CLOSESESSION block, close the session with an ID of 0x0001 */
SImage_SendBlockHeader();
- /* Recieve the response block from the device */
+ /* Receive the response block from the device */
if ((ErrorCode = SImage_RecieveBlockHeader()) != PIPE_RWSTREAM_ERROR_NoError)
{
ShowCommandError(ErrorCode, false);
|