aboutsummaryrefslogtreecommitdiffstats
path: root/gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'gui.c')
-rw-r--r--gui.c2
1 files changed, 1 insertions, 1 deletions
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;
}