From a3b7940baf343c5485ff8c2c7baa7bb90cb5473a Mon Sep 17 00:00:00 2001 From: SG Date: Tue, 9 Mar 2021 03:00:56 +1000 Subject: [PATCH] Udpate gui_test and app_subghz stack size (#368) --- applications/applications.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/applications/applications.c b/applications/applications.c index b66d8cda..b667f196 100644 --- a/applications/applications.c +++ b/applications/applications.c @@ -147,11 +147,11 @@ const FlipperApplication FLIPPER_SERVICES[] = { #endif #ifdef APP_GUI_TEST - {.app = gui_test, .name = "gui_test", .icon = A_Plugins_14}, + {.app = gui_test, .name = "gui_test", .stack_size = 1024, .icon = A_Plugins_14}, #endif #ifdef APP_SUBGHZ - {.app = app_subghz, .name = "app_subghz", .icon = A_Plugins_14}, + {.app = app_subghz, .name = "app_subghz", .stack_size = 1024, .icon = A_Plugins_14}, #endif }; @@ -223,11 +223,11 @@ const FlipperApplication FLIPPER_PLUGINS[] = { #endif #ifdef BUILD_GUI_TEST - {.app = gui_test, .name = "gui_test", .icon = A_Plugins_14}, + {.app = gui_test, .name = "gui_test", .stack_size = 1024, .icon = A_Plugins_14}, #endif #ifdef BUILD_SUBGHZ - {.app = app_subghz, .name = "app_subghz", .icon = A_Plugins_14}, + {.app = app_subghz, .name = "app_subghz", .stack_size = 1024, .icon = A_Plugins_14}, #endif };