From 344041b37114d687c145d439a31df27359249bf5 Mon Sep 17 00:00:00 2001 From: Silvano Seva Date: Tue, 8 Dec 2020 09:08:37 +0100 Subject: [PATCH] Adjusted task stack sizes when compiling for ARM --- openrtx/include/threads.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openrtx/include/threads.h b/openrtx/include/threads.h index f9368bc7..4e5b0afe 100644 --- a/openrtx/include/threads.h +++ b/openrtx/include/threads.h @@ -33,27 +33,27 @@ void create_threads(); /** * Stack size for UI task, in bytes. */ -#define UI_TASK_STKSIZE 1024*4 +#define UI_TASK_STKSIZE 1024 /** * Stack size for Keyboard task, in bytes. */ -#define KBD_TASK_STKSIZE 256*4 +#define KBD_TASK_STKSIZE 256 /** * Stack size for state update task, in bytes. */ -#define DEV_TASK_STKSIZE 256*4 +#define DEV_TASK_STKSIZE 512 /** * Stack size for baseband control task, in bytes. */ -#define RTX_TASK_STKSIZE 128*4 +#define RTX_TASK_STKSIZE 128 /** * Stack size for DMR task, in bytes. */ -#define DMR_TASK_STKSIZE 128*4 +#define DMR_TASK_STKSIZE 128 #else /* __arm__ */