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.

CCS/LAUNCHXL-CC2650: Why is my task missing in the execution graph?

Part Number: LAUNCHXL-CC2650


Tool/software: Code Composer Studio

I'm using the CCS studio execution graph for the SimpleLink Academy Basic Lab1 tutorial and I ran the lab so the LED blinked a few times and then halted the program and started the execution graph.

Iin the Cortex_M3_0.*OS section, the workTaskFunc wasn't displayed and I don't understand what is being displayed or what is being executed.

I'm attaching a screenshot of the graph that I saw.

  • Kati,

    The execution graph only shows tasks that it knows about. I'm assuming you are using LoggerStopMode. It has an internal buffer that is probably getting full. Execution graph only displays things it sees in the log buffer. So if there is no reference to a specific task in the log records, it is not shown.

    Todd