fix mem fault

This commit is contained in:
2024-12-26 11:01:25 +01:00
parent 26d0761aed
commit 80e48f632f
2 changed files with 4 additions and 3 deletions

View File

@ -35,7 +35,7 @@ void initControl(void)
BaseType_t taskCreated = xTaskCreate(
taskControl, // Function to implement the task
"taskControl", // Task name
4096, // Stack size (in words, not bytes)
8192, // 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)