mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
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:
commit
70c6f0b581
@ -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;
|
||||
}
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user