Reduced the main's task stack size from 4k to 2k

This commit is contained in:
anschrammh 2023-03-24 15:18:07 +01:00
parent 2761a53a49
commit f8dace1dc1

View File

@ -95,7 +95,7 @@ void _mutex_release (u32 *mutex)
u8 *TaskStartStk = NULL;
tls_os_task_t tststarthdl = NULL;
#define TASK_USERMAIN_STK_SIZE 1024
#define TASK_USERMAIN_STK_SIZE 512
u8 *TaskUsermainStk = NULL;
tls_os_task_t tstusermainhdl = NULL;