From: Jitin George Date: Thu, 14 Mar 2019 12:15:26 +0000 (+0530) Subject: example:coap_server: Change app task stack size X-Git-Tag: v4.0-beta1~480^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ab4b57e03d84f7061e5a53c3923a45cfa67862fb;p=esp-idf example:coap_server: Change app task stack size --- diff --git a/examples/protocols/coap_server/main/coap_server_example_main.c b/examples/protocols/coap_server/main/coap_server_example_main.c index 507a815c2b..f41ca9dfdd 100644 --- a/examples/protocols/coap_server/main/coap_server_example_main.c +++ b/examples/protocols/coap_server/main/coap_server_example_main.c @@ -226,5 +226,5 @@ void app_main(void) ESP_ERROR_CHECK( nvs_flash_init() ); wifi_conn_init(); - xTaskCreate(coap_example_thread, "coap", 10240, NULL, 5, NULL); + xTaskCreate(coap_example_thread, "coap", 1024 * 5, NULL, 5, NULL); }