Tool/software: TI-RTOS
Hi
I have a very big object that configures almost everything once created. When I create it in the following way ;
BigCls BigObj; // this creates task, initializes ndk, stacks, etc..
main(){
Bios_start();
}
it works fine.
However, following gives instruction fetch exception;
main() {
BigCls BigObj; // this creates task, initializes ndk, stacks, etc..
Bios_start();
}
I suspect stack overflow for the main() function. Which stack does it use? Program.stack? I need to increase its size.
What about the first case(global creation)? Which stack does it use?
regards, Mustafa