You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CPU utilization is currently calculated using an idle task. This can waste power and prevents the processor(s) from entering sleep or other power management states. As part of the SMP implementation this issue should also be addressed.
The text was updated successfully, but these errors were encountered:
The CPU usage task (CU) is running on the IPLEON processor which is running RTEMS as the OS. RTEMS has a shell command ‘cpuusage’ which dumps all the CPU statistics to the terminal window.
Details of this command can be found at this link https://docs.rtems.org/branches/master/c-user/cpu_usage_statistics.html
The CU task was just invoking this function at each 1 Hz wakeup and populating the data into the telemetry packet.
Total CPU utilization is calculated as 100.0 % – (Idle task CPU utilization %)
They are not actively managing power via the idle task (low power sleep mode).
CPU utilization is currently calculated using an idle task. This can waste power and prevents the processor(s) from entering sleep or other power management states. As part of the SMP implementation this issue should also be addressed.
The text was updated successfully, but these errors were encountered: