Hi! I am using TMS 320C6418 EVM. I want to get time taken by part of an program code to execute. I have found instructions like CLK_gethtime(), CLK_getltime() with time.h header file albeit unsuccessfully. E.g.:
begin1=CLK_gethtime();
delay_usec(10000);
end1=CLK_gethtime();
res=(end1-begin1);
The code is returninng garbage with no change in result with different delays. Please help.....