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/AM6546: Variable graph with time reference

Part Number: AM6546

Tool/software: Code Composer Studio

I am running code on PRU which updates value of variable "z" in loop like,

while(i <= 800 )
{

z = m - abs(m - 2*(i++ % m));

wait_for_pwm_timer();

}

  I want watch this variable on graph so that I can calculate time between two "z" values .

what should be settings in a graph properties so that I can get correct time  reference?