diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-01 14:33:40 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-06-01 14:33:40 +0000 |
commit | f01a05415c03b0dd61297849ece2cfcce7f8d3e8 (patch) | |
tree | e46fd811bc29edaa3764a2d2a89e760621c8f794 /Demos | |
parent | 6d2a08f1b77208de1f71dd4035d21f13e3f90462 (diff) | |
download | lufa-f01a05415c03b0dd61297849ece2cfcce7f8d3e8.tar.gz lufa-f01a05415c03b0dd61297849ece2cfcce7f8d3e8.tar.bz2 lufa-f01a05415c03b0dd61297849ece2cfcce7f8d3e8.zip |
Spell check library source code files.
Diffstat (limited to 'Demos')
7 files changed, 7 insertions, 7 deletions
diff --git a/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c b/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c index f6354f509..71f7df173 100644 --- a/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c +++ b/Demos/Device/ClassDriver/RNDISEthernet/Lib/TCP.c @@ -153,7 +153,7 @@ void TCP_TCPTask(USB_ClassInfo_RNDIS_Device_t* const RNDISInterfaceInfo, } } -/** Initialises the TCP protocol handler, clearing the port and connection state tables. This must be called before TCP packets are +/** Initializes the TCP protocol handler, clearing the port and connection state tables. This must be called before TCP packets are * processed. */ void TCP_Init(void) diff --git a/Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c b/Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c index 8066bd43f..401dddf0d 100644 --- a/Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c +++ b/Demos/Device/ClassDriver/RNDISEthernet/Lib/Webserver.c @@ -74,7 +74,7 @@ char PROGMEM HTTPPage[] = "</html>"; -/** Initialises the Webserver application, opening the appropriate HTTP port in the TCP handler and registering the application +/** Initializes the Webserver application, opening the appropriate HTTP port in the TCP handler and registering the application * callback routine for packets sent to the HTTP protocol port. */ void Webserver_Init(void) diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c b/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c index 97c1355b2..d469f686f 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c +++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/TCP.c @@ -152,7 +152,7 @@ void TCP_Task(void) } } -/** Initialises the TCP protocol handler, clearing the port and connection state tables. This must be called before TCP packets are +/** Initializes the TCP protocol handler, clearing the port and connection state tables. This must be called before TCP packets are * processed. */ void TCP_Init(void) diff --git a/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c b/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c index 019329e2b..7bd083d85 100644 --- a/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c +++ b/Demos/Device/LowLevel/RNDISEthernet/Lib/Webserver.c @@ -74,7 +74,7 @@ char PROGMEM HTTPPage[] = "</html>"; -/** Initialises the Webserver application, opening the appropriate HTTP port in the TCP handler and registering the application +/** Initializes the Webserver application, opening the appropriate HTTP port in the TCP handler and registering the application * callback routine for packets sent to the HTTP protocol port. */ void Webserver_Init(void) diff --git a/Demos/Host/Incomplete/AndroidAccessoryHost/AndroidAccessoryHost.c b/Demos/Host/Incomplete/AndroidAccessoryHost/AndroidAccessoryHost.c index 0c15b8acf..3cb2f530d 100644 --- a/Demos/Host/Incomplete/AndroidAccessoryHost/AndroidAccessoryHost.c +++ b/Demos/Host/Incomplete/AndroidAccessoryHost/AndroidAccessoryHost.c @@ -142,7 +142,7 @@ void Android_Host_Task(void) /* Save whether the Android device needs to be mode-switched later on */
bool RequiresModeSwitch = (ErrorCode == NonAccessoryModeAndroidDevice);
- /* Error out if the device is not an Android device or an error ocurred */
+ /* Error out if the device is not an Android device or an error occurred */
if ((ErrorCode != AccessoryModeAndroidDevice) && !(RequiresModeSwitch))
{
if (ErrorCode == DevControlError)
diff --git a/Demos/Host/Incomplete/BluetoothHost/Lib/RFCOMM.c b/Demos/Host/Incomplete/BluetoothHost/Lib/RFCOMM.c index 1b839faed..3203278b4 100644 --- a/Demos/Host/Incomplete/BluetoothHost/Lib/RFCOMM.c +++ b/Demos/Host/Incomplete/BluetoothHost/Lib/RFCOMM.c @@ -65,7 +65,7 @@ const uint8_t CRC8_Table[256] PROGMEM = RFCOMM_Channel_t RFCOMM_Channels[RFCOMM_MAX_OPEN_CHANNELS]; -/** Initialises the RFCOMM service, ready for new connections from a SDP client. */ +/** Initializes the RFCOMM service, ready for new connections from a SDP client. */ void RFCOMM_Initialize(void) { /* Reset the RFCOMM channel structures, to invalidate any configured RFCOMM channels */ diff --git a/Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c b/Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c index e640dbb21..c906a3b6c 100644 --- a/Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c +++ b/Demos/Host/LowLevel/RNDISEthernetHost/Lib/RNDISCommands.c @@ -122,7 +122,7 @@ uint8_t RNDIS_SendKeepAlive(void) return HOST_SENDCONTROL_Successful; } -/** Initialises the attached RNDIS device's RNDIS interface. +/** Initializes the attached RNDIS device's RNDIS interface. * * \param[in] HostMaxPacketSize Size of the packet buffer on the host * \param[out] DeviceMaxPacketSize Pointer to where the packet buffer size of the device is to be stored |