Hello
Well you will have to change something in your application.
- You may define a bigger stack in your linker configuration file
- I would also suggest you to check your application and make sure you do not have
big arrays or data structure local variables.
- Also avoid when possible to pass structure as parameters to a function. Whenever possible
pass a pointer to the structure.
This is using less memory on the stack.
CrasyCat