From 412adc214cdfc57ee5b1495a45659a6f05c55dc0 Mon Sep 17 00:00:00 2001 From: Lior Dekel Date: Wed, 22 Dec 2021 16:47:25 +0200 Subject: PlatformNightly ThreadX bug fix Increasing stack size for threads in ThreadX Change-Id: Ied7502422034a9fb1ac92aa5ebaa70b9d0bc9939 --- applications/threadx_demo/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/threadx_demo/main.cpp b/applications/threadx_demo/main.cpp index 94430ee..f813ee4 100644 --- a/applications/threadx_demo/main.cpp +++ b/applications/threadx_demo/main.cpp @@ -46,7 +46,7 @@ using namespace InferenceProcess; // Nr. of jobs to create per job thread #define NUM_JOBS_PER_THREAD 1 -#define PROCESS_THREAD_STACK_SIZE (16 * 1024) +#define PROCESS_THREAD_STACK_SIZE (20 * 1024) #define SENDER_THREAD_STACK_SIZE (2 * 1024) #define PROCESS_THREAD_CONTEXT_SIZE (sizeof(TX_THREAD)) #define SENDER_THREAD_CONTEXT_SIZE (sizeof(TX_THREAD)) -- cgit v1.2.1