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?