\r
/** \file\r
*\r
- * uIP Managament functions. This file contains the functions and globals needed to maintain the uIP\r
+ * uIP Management functions. This file contains the functions and globals needed to maintain the uIP\r
* stack once an RNDIS device has been attached to the system.\r
*/\r
\r
{\r
if ((USB_CurrentMode == USB_MODE_HOST) && (USB_HostState == HOST_STATE_Configured))\r
{\r
- uIPManagement_ProcessIncommingPacket();\r
+ uIPManagement_ProcessIncomingPacket();\r
uIPManagement_ManageConnections();\r
}\r
}\r
}\r
}\r
\r
-/** Processes incomming packets to the server from the connected RNDIS device, creating responses as needed. */\r
-static void uIPManagement_ProcessIncommingPacket(void)\r
+/** Processes Incoming packets to the server from the connected RNDIS device, creating responses as needed. */\r
+static void uIPManagement_ProcessIncomingPacket(void)\r
{\r
/* If no packet received, exit processing routine */\r
if (!(RNDIS_Host_IsPacketReceived(&Ethernet_RNDIS_Interface)))\r
\r
LEDs_SetAllLEDs(LEDMASK_USB_BUSY);\r
\r
- /* Read the incomming packet straight into the UIP packet buffer */\r
+ /* Read the Incoming packet straight into the UIP packet buffer */\r
RNDIS_Host_ReadPacket(&Ethernet_RNDIS_Interface, uip_buf, &uip_len);\r
\r
/* If the packet contains an Ethernet frame, process it */\r
/* Filter packet by MAC destination */\r
uip_arp_ipin();\r
\r
- /* Process incomming packet */\r
+ /* Process Incoming packet */\r
uip_input();\r
\r
/* If a response was generated, send it */\r