Fixed crashing timers by increasing the default task's stack

This commit is contained in:
dario
2023-10-10 11:31:27 +02:00
parent 1a9a96503e
commit cb41fb56e2
6 changed files with 42 additions and 15 deletions

View File

@@ -52,7 +52,7 @@ typedef StaticSemaphore_t osStaticMutexDef_t;
osThreadId_t defaultTaskHandle;
const osThreadAttr_t defaultTask_attributes = {
.name = "defaultTask",
.stack_size = 128 * 4,
.stack_size = 256 * 4,
.priority = (osPriority_t) osPriorityNormal,
};
/* Definitions for uartMutex */