I'm getting an assertion failure after running some MQTT stuff for a while on an esp8266. The failure is: ASSERT FAILED AT src/jsvar.c:556, which is assert(jsvGetLocks(var) < JSV_LOCK_MAX); in jsvLock. Is there a simple way I can add a line of code to print the name of the variable?
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
I'm getting an assertion failure after running some MQTT stuff for a while on an esp8266. The failure is:
ASSERT FAILED AT src/jsvar.c:556
, which isassert(jsvGetLocks(var) < JSV_LOCK_MAX);
in jsvLock. Is there a simple way I can add a line of code to print the name of the variable?