mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-06-26 17:30:36 +08:00
System status load is now from 0 to 1 instead of non-intuitive 0 to 1000
This commit is contained in:
@@ -862,7 +862,7 @@ int commander_thread_main(int argc, char *argv[])
|
||||
uint64_t interval_runtime = system_load.tasks[0].total_runtime - last_idle_time;
|
||||
|
||||
if (last_idle_time > 0)
|
||||
status.load = 1000 - (interval_runtime / 1000); //system load is time spent in non-idle
|
||||
status.load = 1.0f - ((float)interval_runtime / 1e6f); //system load is time spent in non-idle
|
||||
|
||||
last_idle_time = system_load.tasks[0].total_runtime;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user