Skip to content

Commit

Permalink
gui thread stack size increased to 12K
Browse files Browse the repository at this point in the history
  • Loading branch information
mvladic committed Dec 29, 2021
1 parent 604cccc commit a5c511f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/eez/gui/thread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ namespace gui {

void mainLoop(void *);

EEZ_THREAD_DECLARE(gui, Normal, 8192)
EEZ_THREAD_DECLARE(gui, Normal, 12 * 1024)

EEZ_MESSAGE_QUEUE_DECLARE(gui, {
uint8_t type;
Expand All @@ -46,7 +46,7 @@ EEZ_MESSAGE_QUEUE_DECLARE(gui, {
});

void startThread() {
EEZ_MESSAGE_QUEUE_CREATE(gui, 10);
EEZ_MESSAGE_QUEUE_CREATE(gui, 20);
EEZ_THREAD_CREATE(gui, mainLoop);
}

Expand Down

0 comments on commit a5c511f

Please sign in to comment.