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

VTOL: Be more efficient

parent 0354ada5
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,8 @@
px4_add_module(
MODULE modules__vtol_att_control
MAIN vtol_att_control
COMPILE_FLAGS
STACK_MAIN 1300
COMPILE_FLAGS -Os
SRCS
vtol_att_control_main.cpp
tiltrotor.cpp
......
......@@ -830,7 +830,7 @@ VtolAttitudeControl::start()
_control_task = px4_task_spawn_cmd("vtol_att_control",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 10,
2048,
1100,
(px4_main_t)&VtolAttitudeControl::task_main_trampoline,
nullptr);
......
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