-
Notifications
You must be signed in to change notification settings - Fork 7.6k
ArduinoOTA upload intermittent failure fixed #4657
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
Conversation
…ly try to write 4 gigabytes to flash. Fixed by signed comparison and retry.
Leif seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward? This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
👋 Hello leifclaesson, we appreciate your contribution to this project! Click to see more instructions ...
Review and merge process you can expect ...
|
@leifclaesson Could you please sign the CLA ? |
Co-authored-by: Jan Procházka <[email protected]>
* Backport: ArduinoOTA upload intermittent failure fixed Backport of #4657 * Fix compile error
OTA upload often fails when client.read() return -1 and we subsequently try to write 4 gigabytes to flash. I fixed it by adding a signed comparison of the client.read() return value, and a continue. Completely solves the intermittent upload problem for me.