Hello,
I'm working on TMS320C6472 multicore DSP using the CCS4.2 and bios5.
I want to compute the cycles number of a function using a timer. so could someone tell me what are the appropriate instructions to use.
I tried to compute the cycles number using this method (DSP register):
start=TSCL;
func();
end=TSCL;
cycles_number=end-start;
First I want to know if my method is correct or not. Second I want to use the timer to compute the cycles number.
I did a research on internet, I found that there is a timestamp to use it but I think it's for bios6 and me I work with the bios5. So, is there another method to compute the cycles number with bios5 instead of using TSCL register?
I will be very thankfull.
david