From fb04a611c52af547de4ec27f607d9962fcbaacec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beat=20K=C3=BCng?= Date: Wed, 19 Sep 2018 11:51:36 +0200 Subject: [PATCH] gps: reduce stack size A buffer size of the gps drivers got reduced by 100 bytes. --- src/drivers/gps/gps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/gps/gps.cpp b/src/drivers/gps/gps.cpp index 4626a2b57f..099ded36c0 100644 --- a/src/drivers/gps/gps.cpp +++ b/src/drivers/gps/gps.cpp @@ -965,7 +965,7 @@ int GPS::task_spawn(int argc, char *argv[], Instance instance) } int task_id = px4_task_spawn_cmd("gps", SCHED_DEFAULT, - SCHED_PRIORITY_SLOW_DRIVER, 1630, + SCHED_PRIORITY_SLOW_DRIVER, 1530, entry_point, (char *const *)argv); if (task_id < 0) {