mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-08-06 07:00:05 +08:00
feat(task): Change all tasks size 4 times the original
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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"
|
||||
|
@ -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";
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user