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 found an old issue:
there, it says it may have crashes due to no heap memory, so i printed the memory in a loop. THis is the last print before crash:
======FREE HEAP========
7568
The text was updated successfully, but these errors were encountered:
look at EXCVADDR: 0x00000000
There's something accessing NULL pointer
It may be malloc or realloc exit with failure and some other code uses returned value without checks, which is usually a NULL pointer.
7kb heap available is pretty little, especially considering possible fragmentation.
Backtrace looks quite bad. Hard to say where's exact point of failure. But it definitely related with malloc/realloc.
It is likely not an issue with your code, but the memory consumption and underlying library bug.
Im using esp8288 nodemcu 12E v3
code bellow:
When websocket is succesfully connected, and i try to connect to AP Point the esp8266 crashes with:
if u need any more information, please tell me.
edit:
i found an old issue:
there, it says it may have crashes due to no heap memory, so i printed the memory in a loop. THis is the last print before crash:
======FREE HEAP========
7568
The text was updated successfully, but these errors were encountered: