GUI thread WA size fix
This commit is contained in:
parent
bef27b6663
commit
3a63bff54d
2
gui.c
2
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user