Increase vStack depending on the number of interfaces.

Signed-off-by: Pol Henarejos <pol.henarejos@cttc.es>
This commit is contained in:
Pol Henarejos
2024-08-20 12:43:01 +02:00
parent d379a39bd6
commit c1571c02f8
2 changed files with 2 additions and 2 deletions

View File

@@ -440,7 +440,7 @@ int main(void) {
#endif
#ifdef ESP_PLATFORM
xTaskCreate(core0_loop, "core0", 4096*5, NULL, CONFIG_TINYUSB_TASK_PRIORITY + 1, &hcore0);
xTaskCreate(core0_loop, "core0", 4096*ITF_TOTAL, NULL, CONFIG_TINYUSB_TASK_PRIORITY + 1, &hcore0);
#else
core0_loop();
#endif