esphttpd: increase stack size for task wsbcast
Seeing stack overflows on this one.
This commit is contained in:
parent
d05d3020eb
commit
c2eed89318
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue