diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-02-04 02:27:09 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2010-02-04 02:27:09 +0000 |
| commit | 685b86dd98950e5b00822b87ab9753cfeba728b5 (patch) | |
| tree | 2bbdfa3a850b212b503ab18812291d391061a0b7 /Projects/Webserver/Lib/uIPManagement.c | |
| parent | ca954b9f1a6d89e97b36fd4b0a4fdf397e47ba78 (diff) | |
New BOARD value option BOARD_NONE (equivelent to not specifying BOARD) which will remove all board hardware drivers which do not adversely affect the code operation (currently only the LEDs driver).
Spell-check code/comments in the Webserver/AVRISP-MKII projects.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1110 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Projects/Webserver/Lib/uIPManagement.c')
| -rw-r--r-- | Projects/Webserver/Lib/uIPManagement.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Projects/Webserver/Lib/uIPManagement.c b/Projects/Webserver/Lib/uIPManagement.c index 90629b89..c7773c45 100644 --- a/Projects/Webserver/Lib/uIPManagement.c +++ b/Projects/Webserver/Lib/uIPManagement.c @@ -30,7 +30,7 @@ /** \file
*
- * uIP Managament functions. This file contains the functions and globals needed to maintain the uIP
+ * uIP Management functions. This file contains the functions and globals needed to maintain the uIP
* stack once an RNDIS device has been attached to the system.
*/
@@ -87,7 +87,7 @@ void uIPManagement_ManageNetwork(void) {
if ((USB_CurrentMode == USB_MODE_HOST) && (USB_HostState == HOST_STATE_Configured))
{
- uIPManagement_ProcessIncommingPacket();
+ uIPManagement_ProcessIncomingPacket();
uIPManagement_ManageConnections();
}
}
@@ -123,8 +123,8 @@ void uIPManagement_UDPCallback(void) }
}
-/** Processes incomming packets to the server from the connected RNDIS device, creating responses as needed. */
-static void uIPManagement_ProcessIncommingPacket(void)
+/** Processes Incoming packets to the server from the connected RNDIS device, creating responses as needed. */
+static void uIPManagement_ProcessIncomingPacket(void)
{
/* If no packet received, exit processing routine */
if (!(RNDIS_Host_IsPacketReceived(&Ethernet_RNDIS_Interface)))
@@ -132,7 +132,7 @@ static void uIPManagement_ProcessIncommingPacket(void) LEDs_SetAllLEDs(LEDMASK_USB_BUSY);
- /* Read the incomming packet straight into the UIP packet buffer */
+ /* Read the Incoming packet straight into the UIP packet buffer */
RNDIS_Host_ReadPacket(&Ethernet_RNDIS_Interface, uip_buf, &uip_len);
/* If the packet contains an Ethernet frame, process it */
@@ -144,7 +144,7 @@ static void uIPManagement_ProcessIncommingPacket(void) /* Filter packet by MAC destination */
uip_arp_ipin();
- /* Process incomming packet */
+ /* Process Incoming packet */
uip_input();
/* If a response was generated, send it */
|
