Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/flipperzero-firmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorあく <alleteam@gmail.com>2021-08-02 18:32:15 +0300
committerGitHub <noreply@github.com>2021-08-02 18:32:15 +0300
commitbf6c9fe114417749d18c8f408b73453ee28474de (patch)
treeefa9fe15d903c6bb285cd55e0d5131801ba8cad8 /applications/applications.c
parent93caf84c8040f9c485dc9112737c48101e210e3b (diff)
Applications: add stack_size to keypad_test and assert in furi thread (#620)
Diffstat (limited to 'applications/applications.c')
-rw-r--r--applications/applications.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/applications.c b/applications/applications.c
index f61dc5b7..d6ea88fa 100644
--- a/applications/applications.c
+++ b/applications/applications.c
@@ -144,7 +144,7 @@ const FlipperApplication FLIPPER_SERVICES[] = {
#endif
#ifdef SRV_KEYPAD_TEST
- {.app = keypad_test, .name = "keypad_test", .icon = &A_Plugins_14},
+ {.app = keypad_test, .name = "keypad_test", .stack_size = 1024, .icon = &A_Plugins_14},
#endif
#ifdef SRV_ACCESSOR
@@ -273,7 +273,7 @@ const FlipperApplication FLIPPER_DEBUG_APPS[] = {
#endif
#ifdef APP_KEYPAD_TEST
- {.app = keypad_test, .name = "keypad_test", .icon = &A_Plugins_14},
+ {.app = keypad_test, .name = "keypad_test", .stack_size = 1024, .icon = &A_Plugins_14},
#endif
#ifdef APP_ACCESSOR