increase inputTask Stack size

This commit is contained in:
Hendrik Schutter 2024-12-13 22:34:02 +01:00
parent 1af962190e
commit 357608b30a

View File

@ -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)