Merge pull request #144 from devran01/master

Incrase netif_up semaphore timeout from 1500ms to 2500ms
geky 2016-05-26 10:46:30 -05:00
commit 11baa9dce0
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ int LWIPInterface::connect()
// Wait for an IP Address // Wait for an IP Address
// -1: error, 0: timeout // -1: error, 0: timeout
if (netif_up.wait(1500) < 0) { if (netif_up.wait(2500) < 0) {
return NSAPI_ERROR_DHCP_FAILURE; return NSAPI_ERROR_DHCP_FAILURE;
} }