1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-13 10:29:35 +01:00

Porting HD API ver. 2.7

This commit is contained in:
Mimmo La Fauci 2012-05-20 23:54:32 +02:00
parent 6e149c4e32
commit 47e6129e01

View File

@ -430,12 +430,12 @@ int WiFiDrv::getHostByName(const char* aHostname, IPAddress& aResult)
{
while(!getHostByName(aResult) && --retry > 0)
{
delay(500);
delay(1000);
}
}else{
return 0;
}
return 1;
return (retry>0);
}
WiFiDrv wiFiDrv;