Multicopter attitude controller: Run at maximum priority.

This allows for a quicker update from sensors if the estimator runs at the default priority of the estimator class. If there is no direct sensor pass-through then it will wait for an estimator update.
This commit is contained in:
Lorenz Meier 2017-07-09 19:21:13 +02:00
parent 8dd96e960d
commit d8cc38728d
1 changed files with 1 additions and 1 deletions

View File

@ -1362,7 +1362,7 @@ MulticopterAttitudeControl::start()
/* start the task */
_control_task = px4_task_spawn_cmd("mc_att_control",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 5,
SCHED_PRIORITY_MAX - 4,
1700,
(px4_main_t)&MulticopterAttitudeControl::task_main_trampoline,
nullptr);