mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-03 04:34:31 +02:00
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:
@@ -176,5 +176,5 @@ void app_main()
|
|||||||
{
|
{
|
||||||
ESP_ERROR_CHECK( nvs_flash_init() );
|
ESP_ERROR_CHECK( nvs_flash_init() );
|
||||||
initialise_wifi();
|
initialise_wifi();
|
||||||
xTaskCreate(&http_get_task, "http_get_task", 2048, NULL, 5, NULL);
|
xTaskCreate(&http_get_task, "http_get_task", 4096, NULL, 5, NULL);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user