From f8d34d46853987cab557ef37a573ccb38df93f5b Mon Sep 17 00:00:00 2001 From: chendejin Date: Sat, 7 Oct 2023 11:23:25 +0800 Subject: [PATCH] add constants for otcli transmit task --- src/platform/ESP32/OpenthreadLauncher.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/platform/ESP32/OpenthreadLauncher.cpp b/src/platform/ESP32/OpenthreadLauncher.cpp index 45367f7ffef491..8c76c1db809082 100644 --- a/src/platform/ESP32/OpenthreadLauncher.cpp +++ b/src/platform/ESP32/OpenthreadLauncher.cpp @@ -38,6 +38,8 @@ static esp_netif_t * openthread_netif = NULL; static esp_openthread_platform_config_t * s_platform_config = NULL; static TaskHandle_t cli_transmit_task = NULL; static QueueHandle_t cli_transmit_task_queue = NULL; +static constexpr uint16_t OTCLI_TRANSMIT_TASK_STACK_SIZE = 1024; +static constexpr UBaseType_t OTCLI_TRANSMIT_TASK_PRIORITY = 5; CHIP_ERROR cli_transmit_task_post(std::unique_ptr && cli_str) { @@ -103,7 +105,8 @@ static void cli_transmit_worker(void * context) static esp_err_t cli_command_transmit_task(void) { - xTaskCreate(cli_transmit_worker, "ocli_trans", 3072, xTaskGetCurrentTaskHandle(), 5, &cli_transmit_task); + xTaskCreate(cli_transmit_worker, "otcli_trans", OTCLI_TRANSMIT_TASK_STACK_SIZE, xTaskGetCurrentTaskHandle(), + OTCLI_TRANSMIT_TASK_PRIORITY, &cli_transmit_task); return ESP_OK; }