Skip to content

Changed timeout logic in wificlient example #1860

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 5, 2016
Merged

Conversation

hemalchevli
Copy link
Contributor

Changed timeout to unsigned long. Using addition with millis() is not recommended.
Source: http://www.gammon.com.au/millis

Changed timeout to unsigned long. Using addition with millis() is not recommended. 
Source: http://www.gammon.com.au/millis
@chaeplin
Copy link
Contributor

chaeplin commented Apr 5, 2016

I think this has problem.

 if (millis() - timeout < 5000) {

should be ?

 if (millis() - timeout > 5000) {

@hemalchevli
Copy link
Contributor Author

You are right @chaeplin. I made a mistake. thanks for correcting.

thanks to @chaeplin for finding the mistake
@igrr igrr merged commit 2301f29 into esp8266:master Apr 5, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants