From 1b0c301c20763fe8bf442930890e53808e04fd4f Mon Sep 17 00:00:00 2001 From: Alessio Morale Date: Sat, 18 Jan 2014 17:59:56 +0100 Subject: [PATCH] OP-1152 Fix stabilization stack size on Revo. --- flight/modules/Stabilization/stabilization.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flight/modules/Stabilization/stabilization.c b/flight/modules/Stabilization/stabilization.c index 8eca48c55..9bc5d1957 100644 --- a/flight/modules/Stabilization/stabilization.c +++ b/flight/modules/Stabilization/stabilization.c @@ -70,7 +70,7 @@ #if defined(PIOS_STABILIZATION_STACK_SIZE) #define STACK_SIZE_BYTES PIOS_STABILIZATION_STACK_SIZE #else -#define STACK_SIZE_BYTES 790 +#define STACK_SIZE_BYTES 840 #endif #define TASK_PRIORITY (tskIDLE_PRIORITY + 4)