forked from Archive/PX4-Autopilot
VTOL: Be more efficient
This commit is contained in:
parent
0354ada5d3
commit
9dd050b393
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue