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.

TDA2PXEVM: TDA2PXEVM

Part Number: TDA2PXEVM

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;