From 1428206c6074472b7a8117f415c8f8d0330d11e5 Mon Sep 17 00:00:00 2001 From: Rohan Sahay Date: Wed, 18 Oct 2023 23:36:45 +0530 Subject: [PATCH] Increase APP_TASK_STACK_SIZE --- examples/platform/silabs/BaseApplication.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/platform/silabs/BaseApplication.cpp b/examples/platform/silabs/BaseApplication.cpp index 083298df1cf72e..64a52fe989579d 100644 --- a/examples/platform/silabs/BaseApplication.cpp +++ b/examples/platform/silabs/BaseApplication.cpp @@ -77,7 +77,7 @@ #define FACTORY_RESET_TRIGGER_TIMEOUT 3000 #define FACTORY_RESET_CANCEL_WINDOW_TIMEOUT 3000 #ifndef APP_TASK_STACK_SIZE -#define APP_TASK_STACK_SIZE (4096) +#define APP_TASK_STACK_SIZE (4096 + 256) #endif #define APP_TASK_PRIORITY 2 #define APP_EVENT_QUEUE_SIZE 10