Hi,
I am looking for an example on how to detect the stack overflow with sysBios6. I would like to do this in real-time. I read in the sysBios user guide that task overflow check happens during task switch. I already have a hook in my code for task switch as shown below.
Void switchFxn(Task_Handle prev, Task_Handle next)
{
...
}
So, whenever a task switch happens, the above function switchFxn() will be called.
Here is my question:
Within switchFxn() function, what parameter or what function I need to check for getting information about stack overflow?
Thanks,
Rahul