Disable uIP connection polling for now - this seems to corrupt the buffers.
This commit is contained in:
parent
16ea5aa7a2
commit
b9cf4815e5
4 changed files with 12 additions and 14 deletions
|
@ -175,6 +175,7 @@ static void uIPManagement_ProcessIncommingPacket(void)
|
|||
/** Manages the currently open network connections, including TCP and (if enabled) UDP. */
|
||||
static void uIPManagement_ManageConnections(void)
|
||||
{
|
||||
#if 0
|
||||
/* Poll TCP connections for more data to send back to the host */
|
||||
for (uint8_t i = 0; i < UIP_CONNS; i++)
|
||||
{
|
||||
|
@ -189,7 +190,7 @@ static void uIPManagement_ManageConnections(void)
|
|||
RNDIS_Host_SendPacket(&Ethernet_RNDIS_Interface, uip_buf, uip_len);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
/* Manage open connections for timeouts */
|
||||
if (timer_expired(&ConnectionTimer))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue