Tool/software: TI-RTOS
Hi,
as the complexity of my projects rise, I implemented a little debug handler. Consequently I wanted to display the past call stack to the debug output (serial interface), something like that:
fprintf(stderr, "\r\n");
vfprintf(stderr, 'some message');
// output stack
callStack.print(); // stackTrace.print() ??
HALT();
Are there any RTOS board means to accomplish that?
