forked from Archive/PX4-Autopilot
Reduce excessive stack sizes for FW estimation / control apps
This commit is contained in:
parent
bd88951f6c
commit
54b55c37c7
|
@ -1533,7 +1533,7 @@ FixedwingEstimator::start()
|
||||||
_estimator_task = task_spawn_cmd("ekf_att_pos_estimator",
|
_estimator_task = task_spawn_cmd("ekf_att_pos_estimator",
|
||||||
SCHED_DEFAULT,
|
SCHED_DEFAULT,
|
||||||
SCHED_PRIORITY_MAX - 40,
|
SCHED_PRIORITY_MAX - 40,
|
||||||
6000,
|
5000,
|
||||||
(main_t)&FixedwingEstimator::task_main_trampoline,
|
(main_t)&FixedwingEstimator::task_main_trampoline,
|
||||||
nullptr);
|
nullptr);
|
||||||
|
|
||||||
|
|
|
@ -1449,7 +1449,7 @@ FixedwingPositionControl::start()
|
||||||
_control_task = task_spawn_cmd("fw_pos_control_l1",
|
_control_task = task_spawn_cmd("fw_pos_control_l1",
|
||||||
SCHED_DEFAULT,
|
SCHED_DEFAULT,
|
||||||
SCHED_PRIORITY_MAX - 5,
|
SCHED_PRIORITY_MAX - 5,
|
||||||
4048,
|
3500,
|
||||||
(main_t)&FixedwingPositionControl::task_main_trampoline,
|
(main_t)&FixedwingPositionControl::task_main_trampoline,
|
||||||
nullptr);
|
nullptr);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue