Change yield(); to delay(0); because esp8266 2.4.0-rc2 wdt resets.#86
Change yield(); to delay(0); because esp8266 2.4.0-rc2 wdt resets.#86regimantas wants to merge 1 commit into
Conversation
yield(); in esp8266 2.4.0-rc2 not prevent resets but delay(0); prevent. I install library in esp8266 and it non stop restarts until i change yield() to delay(0); and library start working :)
|
Thanks @regimantas , there have been some recent changes to this library incorporating things like coming from your suggestion. @bogde already verified the library would work on ESP8266 MCUs, so you should also be able to enjoy the current outcome. As being superseded by merging #123, we might close this now. |
|
Dear @regimantas and @bogde, just revisiting this and I believe it might be closed. @regimantas: The updated library is available via Arduino Library Manager these days and should also work on ESP8266. With kind regards, |
|
Hi Bogdan, thank you for responding to some open issues and closing them. I also believe we can close this PR as the respective improvements already have been integrated into the library. Thanks again @regimantas for your initial contribution. With kind regards, |
yield(); in esp8266 2.4.0-rc2 not prevent resets but delay(0); prevent. I install library in esp8266 and it non stop restarts until i change yield() to delay(0); and library start working :)