From 357608b30a81cb2c4d1c8ebe2060a0555b83ac8b6f693de7839cb3baf31e0fb6 Mon Sep 17 00:00:00 2001 From: localhorst Date: Fri, 13 Dec 2024 22:34:02 +0100 Subject: [PATCH] increase inputTask Stack size --- main/inputs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/inputs.c b/main/inputs.c index 5fc459d..825c8c5 100644 --- a/main/inputs.c +++ b/main/inputs.c @@ -55,7 +55,7 @@ void initInputs(void) BaseType_t taskCreated = xTaskCreate( taskInput, // Function to implement the task "taskInput", // Task name - 2048, // Stack size (in words, not bytes) + 4096, // Stack size (in words, not bytes) NULL, // Parameters to the task function (none in this case) 5, // Task priority (higher number = higher priority) NULL // Task handle (optional)