Navigator: Fix priority to run at much lower priority than controllers, but higher than common stuff.

This commit is contained in:
Lorenz Meier
2015-09-06 15:36:37 +02:00
parent 0b4f88a490
commit 4450f1ae54

View File

@@ -524,7 +524,7 @@ Navigator::start()
/* start the task */
_navigator_task = px4_task_spawn_cmd("navigator",
SCHED_DEFAULT,
SCHED_PRIORITY_DEFAULT - 5,
SCHED_PRIORITY_DEFAULT + 5,
1500,
(px4_main_t)&Navigator::task_main_trampoline,
nullptr);