forked from Archive/PX4-Autopilot
GPS app: Increase stack to ensure 300 bytes headroom
This commit is contained in:
parent
fe5cc5622b
commit
5759fd5726
|
@ -324,7 +324,7 @@ int GPS::init()
|
|||
|
||||
/* start the GPS driver worker task */
|
||||
_task = px4_task_spawn_cmd("gps", SCHED_DEFAULT,
|
||||
SCHED_PRIORITY_SLOW_DRIVER, 1200, (px4_main_t)&GPS::task_main_trampoline, args);
|
||||
SCHED_PRIORITY_SLOW_DRIVER, 1400, (px4_main_t)&GPS::task_main_trampoline, args);
|
||||
|
||||
if (_task < 0) {
|
||||
PX4_WARN("task start failed: %d", errno);
|
||||
|
|
Loading…
Reference in New Issue