-
Notifications
You must be signed in to change notification settings - Fork 88
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
HTTP Calls stop after a while #11
Comments
I am running into the same problem as you, it seems to be related to the amount of data to be parsed. Somewhere between the 25 and 30 elements and it stops working (Freezes) or wdt kicks in. |
You need to cast parser.reset(); otherwise it will crash the heap. Ex:
|
-- Edit -- Solved:
Then no problems with heap, no problems with WIFI disconnect().Same problem here. I did not observe heap problems. I logged ESP.getHeap() ... and it is not decreasing. In the above example, the parser is defined local on stack and IMHO a reset() is not needed. Only I made such a test with the parser being a member of a class and using reset() between each parsings and it did not help. Sooner or later the endDocument() is not called and the ESP is stalled. I'm running out of ideas. |
Hi
Thanks a lot for this library. Am a complete noob, but I was trying to get your planespotter demo working. After I started on it I realized I have a different LED panel than yours and I couldn't get ahead. I then somehow got the LED panel working and designed some simple screens to display the data and all works. Except that after about twenty minutes, it stops working.
Is there some memory heap I need to take care of? Any help would be greatly appreicated.
I have the AdbsExchangeClient.cpp and AdbsExchangeClient.h files in the same sketch folder which I have not done any major modification to.
My main code is:
The text was updated successfully, but these errors were encountered: