kopia lustrzana https://github.com/espressif/esp-idf
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
rodzic
6b94c32cd6
commit
041754f255
|
@ -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);
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue