How to track processor load percentage (if possible) in RealTime mode in Code Composer 4.2?
Thanks.
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.
How to track processor load percentage (if possible) in RealTime mode in Code Composer 4.2?
Thanks.
Hi,
there's no automatic feature that gives the CPU load. Basically this is being calculated from the time you spend in IDLE. So if you use another OS this might offer something comparable to DSP/BIOS. If you run code without an OS you'll have to calculate the CPU load yourself in your code. You just measure the time you do useful work and the time you spend in your waiting loop (comparable to IDLE in an OS). The ratio is the CPU load ...
kind regards,
one and zero