07.06.2015, 02:54
It is probably because djson has #pragma dynamic within the include which increases the heap size.If you remove it the default setting will be used which is not sufficient for your script.
"due to recursion" means that you have a function like this
You are calling the same function within a function.Search for your code and find such functions and post them here so that we can tell you how to improve it.
"due to recursion" means that you have a function like this
Code:
stock func(n) { if(n == 10) return 0; else func(n+1); }