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.
This commit is contained in:
Ivan Grokhotkov 2017-04-11 18:38:50 +08:00
parent 6b94c32cd6
commit 041754f255

View file

@ -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);
}