I have added profiling to arp32 test app code using TSC. I have observed in the sample test app codes provided by TI, the difference(t0 - t1) is being divided by 1000000 . Can anyone please let me know why it is being divided by 1000000 ?
t0 = _tsc_gettime(); /* CODE TO BE PROFILed */ t1 = _tsc_gettime(); time_taken = ((t1 - t0)*2)/1000000;