examples: increase stack size in http_request

Previously the stack size was 2048 bytes, which caused stack overflow
to be detected after one or two runs of the example.
pull/468/merge
Ivan Grokhotkov 2017-04-11 18:38:50 +08:00
rodzic 6b94c32cd6
commit 041754f255
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -176,5 +176,5 @@ void app_main()
{
ESP_ERROR_CHECK( nvs_flash_init() );
initialise_wifi();
xTaskCreate(&http_get_task, "http_get_task", 2048, NULL, 5, NULL);
xTaskCreate(&http_get_task, "http_get_task", 4096, NULL, 5, NULL);
}