increase inputTask Stack size
This commit is contained in:
parent
1af962190e
commit
357608b30a
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user