From fc67d89abd0a15789b6ca3d8310267ebd7315aa9 Mon Sep 17 00:00:00 2001 From: Silvano Seva Date: Fri, 18 Dec 2020 21:52:45 +0100 Subject: [PATCH] Increased rtx task stack size to 512 bytes --- openrtx/include/threads.h | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/openrtx/include/threads.h b/openrtx/include/threads.h index 4d2152c7..d8d309b6 100644 --- a/openrtx/include/threads.h +++ b/openrtx/include/threads.h @@ -48,12 +48,7 @@ void create_threads(); /** * Stack size for baseband control task, in bytes. */ -#define RTX_TASK_STKSIZE 128 - -/** - * Stack size for DMR task, in bytes. - */ -#define DMR_TASK_STKSIZE 128 +#define RTX_TASK_STKSIZE 512 #else /* __arm__ */ @@ -74,11 +69,6 @@ void create_threads(); */ #define RTX_TASK_STKSIZE 1024 -/** - * Stack size for DMR task, in bytes. - */ -#define DMR_TASK_STKSIZE 1024 - #endif /* __arm__ */ #endif /* THREADS_H */