From 3a63bff54d5974b597b3a7115ec0b75eab7c5f95 Mon Sep 17 00:00:00 2001 From: Tectu Date: Tue, 26 Jun 2012 13:50:49 +0200 Subject: [PATCH] GUI thread WA size fix --- gui.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui.c b/gui.c index bd00d776..895eb3dd 100644 --- a/gui.c +++ b/gui.c @@ -105,7 +105,7 @@ static void guiThread(const uint16_t interval) { Thread *guiInit(uint16_t interval, tprio_t priority) { Thread *tp = NULL; - tp = chThdCreateFromHeap(NULL, THD_WA_SIZE(10240), priority, guiThread, interval); + tp = chThdCreateFromHeap(NULL, THD_WA_SIZE(512), priority, guiThread, interval); return tp; }