forked from Archive/PX4-Autopilot
Tracked task_spawn API changes for sdlog2 and att_estm_so3_comp
This commit is contained in:
parent
6015809d89
commit
fc471c731a
|
@ -117,7 +117,7 @@ int attitude_estimator_so3_comp_main(int argc, char *argv[])
|
|||
}
|
||||
|
||||
thread_should_exit = false;
|
||||
attitude_estimator_so3_comp_task = task_spawn("attitude_estimator_so3_comp",
|
||||
attitude_estimator_so3_comp_task = task_spawn_cmd("attitude_estimator_so3_comp",
|
||||
SCHED_DEFAULT,
|
||||
SCHED_PRIORITY_MAX - 5,
|
||||
12400,
|
||||
|
|
|
@ -235,7 +235,7 @@ int sdlog2_main(int argc, char *argv[])
|
|||
}
|
||||
|
||||
thread_should_exit = false;
|
||||
deamon_task = task_spawn("sdlog2",
|
||||
deamon_task = task_spawn_cmd("sdlog2",
|
||||
SCHED_DEFAULT,
|
||||
SCHED_PRIORITY_DEFAULT - 30,
|
||||
2048,
|
||||
|
|
Loading…
Reference in New Issue