You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have to send a long string (>10 000 char) through my ENC28J60 with ESP8266. It is impossible due to calculation duration, the software WDT makes a reset.
I have already put a yield() inside :
size_t BufferedPrint::write(const uint8_t *buf, size_t length)
{
yield();
for (size_t...
Helped a lot but did not solved. Still crashing while writting.
Hello!
Many thanks for this awesome library!
I have to send a long string (>10 000 char) through my ENC28J60 with ESP8266. It is impossible due to calculation duration, the software WDT makes a reset.
I have already put a yield() inside :
Helped a lot but did not solved. Still crashing while writting.
How can it be improved?
Thanks in advance!
PS: my code is
with HTML_STRING the 10Ko string.
The text was updated successfully, but these errors were encountered: