forked from Archive/PX4-Autopilot
Reduced excessive IO stack size (had 4k, is using 0.7k, has now 2k)
This commit is contained in:
parent
cbb5ce8f59
commit
42b4961781
|
@ -558,7 +558,7 @@ PX4IO::init()
|
|||
}
|
||||
|
||||
/* start the IO interface task */
|
||||
_task = task_create("px4io", SCHED_PRIORITY_ACTUATOR_OUTPUTS, 4096, (main_t)&PX4IO::task_main_trampoline, nullptr);
|
||||
_task = task_create("px4io", SCHED_PRIORITY_ACTUATOR_OUTPUTS, 2048, (main_t)&PX4IO::task_main_trampoline, nullptr);
|
||||
|
||||
if (_task < 0) {
|
||||
debug("task start failed: %d", errno);
|
||||
|
|
Loading…
Reference in New Issue