Skip to content
Snippets Groups Projects
Commit 110930dc authored by Lorenz Meier's avatar Lorenz Meier
Browse files

FW pos control: Adjust stack size to real use

parent d5c59b51
No related branches found
No related tags found
No related merge requests found
......@@ -1624,7 +1624,7 @@ FixedwingPositionControl::start()
_control_task = task_spawn_cmd("fw_pos_control_l1",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 5,
2000,
1600,
(main_t)&FixedwingPositionControl::task_main_trampoline,
nullptr);
......
......@@ -44,6 +44,8 @@ SRCS = fw_pos_control_l1_main.cpp \
mtecs/limitoverride.cpp \
mtecs/mTecs_params.c
# Startup handler, the actual app stack size is
# in the task_spawn command
MODULE_STACKSIZE = 1200
MAXOPTIMIZATION = -Os
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment