feat(task): Change all tasks size 4 times the original

This commit is contained in:
Dong Heng
2018-07-09 11:35:09 +08:00
parent 0a0db61155
commit 1ba1e5ccbd
20 changed files with 21 additions and 21 deletions

View File

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

View File

@ -336,5 +336,5 @@ void app_main(void)
{
ESP_ERROR_CHECK( nvs_flash_init() );
initialise_wifi();
xTaskCreate(&https_get_task, "https_get_task", 2048, NULL, 5, NULL);
xTaskCreate(&https_get_task, "https_get_task", 8192, NULL, 5, NULL);
}

View File

@ -58,7 +58,7 @@ extern const uint8_t server_root_cert_pem_end[] asm("_binary_server_root_cert_
"\r\n"
#define WOLFSSL_DEMO_THREAD_NAME "wolfssl_client"
#define WOLFSSL_DEMO_THREAD_STACK_WORDS 2048
#define WOLFSSL_DEMO_THREAD_STACK_WORDS 8192
#define WOLFSSL_DEMO_THREAD_PRORIOTY 6
#define WOLFSSL_DEMO_SNTP_SERVERS "pool.ntp.org"

View File

@ -51,7 +51,7 @@ const int CONNECTED_BIT = 1<<0;
#define MQTT_PORT 1883 /* MQTT Port*/
#define MQTT_CLIENT_THREAD_NAME "mqtt_client_thread"
#define MQTT_CLIENT_THREAD_STACK_WORDS 2048
#define MQTT_CLIENT_THREAD_STACK_WORDS 8192
#define MQTT_CLIENT_THREAD_PRIO 8
static const char *TAG = "example";

View File

@ -327,5 +327,5 @@ void app_main(void)
{
ESP_ERROR_CHECK( nvs_flash_init() );
initialise_wifi();
xTaskCreate(&openssl_client_task, "openssl_client", 2048, NULL, 6, NULL);
xTaskCreate(&openssl_client_task, "openssl_client", 8192, NULL, 6, NULL);
}

View File

@ -255,5 +255,5 @@ void app_main(void)
{
ESP_ERROR_CHECK(nvs_flash_init());
initialise_wifi();
xTaskCreate(&openssl_task, "openssl_task", 2048, NULL, 5, NULL);
xTaskCreate(&openssl_task, "openssl_task", 8192, NULL, 5, NULL);
}

View File

@ -336,5 +336,5 @@ void app_main(void)
{
ESP_ERROR_CHECK( nvs_flash_init() );
initialise_wifi();
xTaskCreate(&openssl_server_task, "openssl_server", 2048, NULL, 6, NULL);
xTaskCreate(&openssl_server_task, "openssl_server", 8192, NULL, 6, NULL);
}