This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

RTOS/TM4C123GH6PM: Print call stack to console

Part Number: TM4C123GH6PM

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?