From b3dbee5cd61a3b979197993b66fcb6849c2c328b Mon Sep 17 00:00:00 2001 From: Pol Henarejos Date: Sun, 18 Aug 2024 23:43:54 +0200 Subject: [PATCH] Increase vStack of core0 of ESP32. Signed-off-by: Pol Henarejos --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.c b/src/main.c index 90dc0e5..ad4c94f 100644 --- a/src/main.c +++ b/src/main.c @@ -440,7 +440,7 @@ int main(void) { #endif #ifdef ESP_PLATFORM - xTaskCreate(core0_loop, "core0", 4096, NULL, CONFIG_TINYUSB_TASK_PRIORITY + 1, &hcore0); + xTaskCreate(core0_loop, "core0", 4096*5, NULL, CONFIG_TINYUSB_TASK_PRIORITY + 1, &hcore0); #else core0_loop(); #endif