aboutsummaryrefslogtreecommitdiffstats
path: root/src/fsm/main.c
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2015-12-20 17:33:35 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2015-12-20 17:33:35 +0100
commit2df9487d111f69651f28d4763e253a5ae1f29148 (patch)
tree43066fdda69d1f7eaf9a5dcf9776cb93ef25b34d /src/fsm/main.c
parent3c52f83a465550795b1401fa8d0e366df15aa737 (diff)
downloadglutte-o-matic-2df9487d111f69651f28d4763e253a5ae1f29148.tar.gz
glutte-o-matic-2df9487d111f69651f28d4763e253a5ae1f29148.tar.bz2
glutte-o-matic-2df9487d111f69651f28d4763e253a5ae1f29148.zip
Increase stack size for gps monit task
Diffstat (limited to 'src/fsm/main.c')
-rw-r--r--src/fsm/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fsm/main.c b/src/fsm/main.c
index 040899e..339c1ed 100644
--- a/src/fsm/main.c
+++ b/src/fsm/main.c
@@ -134,7 +134,7 @@ static void launcher_task(void *pvParameters)
xTaskCreate(
gps_monit_task,
"TaskGPSMonit",
- configMINIMAL_STACK_SIZE,
+ 4*configMINIMAL_STACK_SIZE,
(void*) NULL,
tskIDLE_PRIORITY + 2UL,
&task_handle);