]> granicus.if.org Git - esp-idf/commitdiff
example:coap_server: Change app task stack size
authorJitin George <jitin@espressif.com>
Thu, 14 Mar 2019 12:15:26 +0000 (17:45 +0530)
committerbot <bot@espressif.com>
Mon, 18 Mar 2019 12:33:52 +0000 (12:33 +0000)
examples/protocols/coap_server/main/coap_server_example_main.c

index 507a815c2b8c6bcca4f984601df0555e5b6a3d9b..f41ca9dfddc2966813eee875d12e5dc107da9ba1 100644 (file)
@@ -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);
 }