Skip to content

Commit

Permalink
keira: increase task stack size to 16K
Browse files Browse the repository at this point in the history
  • Loading branch information
and3rson committed Mar 14, 2024
1 parent a6492a5 commit 4cc00f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion firmware/keira/src/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ void App::start() {
return;
}
Serial.println("Starting app " + String(name));
if (xTaskCreatePinnedToCore(_run, name, 8192, this, 1, &taskHandle, 0) != pdPASS) {
if (xTaskCreatePinnedToCore(_run, name, 16384, this, 1, &taskHandle, 0) != pdPASS) {
Serial.println("Failed to create task for app " + String(name) + " (not enough memory?)");
}
}
Expand Down

0 comments on commit 4cc00f2

Please sign in to comment.