Reduced excessive IO stack size (had 4k, is using 0.7k, has now 2k)

This commit is contained in:
Lorenz Meier 2013-08-11 16:54:24 +02:00
parent cbb5ce8f59
commit 42b4961781
1 changed files with 1 additions and 1 deletions

View File

@ -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);