Merge branch 'bugfix/lower_a2dp_appT_prio_v4.1' into 'release/v4.1'

bugfix/lower the priority of application task of a2dp demo (v4.1)

See merge request espressif/esp-idf!18823
This commit is contained in:
Jiang Jiang Jian 2022-07-10 15:47:43 +08:00
commit 70c6f0b581
2 changed files with 2 additions and 2 deletions

View File

@ -100,7 +100,7 @@ static void bt_app_task_handler(void *arg)
void bt_app_task_start_up(void)
{
s_bt_app_task_queue = xQueueCreate(10, sizeof(bt_app_msg_t));
xTaskCreate(bt_app_task_handler, "BtAppT", 3072, NULL, configMAX_PRIORITIES - 3, &s_bt_app_task_handle);
xTaskCreate(bt_app_task_handler, "BtAppT", 3072, NULL, 10, &s_bt_app_task_handle);
return;
}

View File

@ -96,7 +96,7 @@ static void bt_app_task_handler(void *arg)
void bt_app_task_start_up(void)
{
s_bt_app_task_queue = xQueueCreate(10, sizeof(bt_app_msg_t));
xTaskCreate(bt_app_task_handler, "BtAppT", 2048, NULL, configMAX_PRIORITIES - 3, &s_bt_app_task_handle);
xTaskCreate(bt_app_task_handler, "BtAppT", 2048, NULL, 10, &s_bt_app_task_handle);
return;
}