Increase console task stack size.

Seems on Xtensa it ended up not being enough.
This commit is contained in:
Jade Mattsson 2024-03-01 11:04:20 +11:00
parent 32fa5db1a6
commit a7e20e6649
1 changed files with 1 additions and 1 deletions

View File

@ -227,7 +227,7 @@ static void console_init(void)
#endif
xTaskCreate(
console_task, "console", 1024, NULL, ESP_TASK_MAIN_PRIO+1, NULL);
console_task, "console", 2048, NULL, ESP_TASK_MAIN_PRIO+1, NULL);
}