From c2eed89318d84685378705abd6b84e51afe41ec2 Mon Sep 17 00:00:00 2001 From: Our Air Quality Date: Sat, 9 Dec 2017 23:41:16 +1100 Subject: [PATCH] esphttpd: increase stack size for task wsbcast Seeing stack overflows on this one. --- examples/esphttpd/user_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/esphttpd/user_main.c b/examples/esphttpd/user_main.c index 94e4fd4..a532fb6 100644 --- a/examples/esphttpd/user_main.c +++ b/examples/esphttpd/user_main.c @@ -204,7 +204,7 @@ void user_init(void) { espFsInit((void*)(_binary_build_web_espfs_bin_start)); httpdInit(builtInUrls, 80); - xTaskCreate(websocketBcast, "wsbcast", 300, NULL, 3, NULL); + xTaskCreate(websocketBcast, "wsbcast", 384, NULL, 3, NULL); printf("\nReady\n"); }