Stack/heap size: 16384 bytes; estimated max. usage: unknown, due to recursion
#9

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
Code:
stock func(n)
{
       if(n == 10) return 0;
       else func(n+1);
}
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.
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 2 Guest(s)