mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Merge branch 'bugfix/fixed_a2dp_sink_example_stack_overflow' into 'master'
bugfix/Increase BtI2STask stack depth to avoid stack overflow See merge request espressif/esp-idf!21215
This commit is contained in:
commit
e8c393ad0a
@ -211,7 +211,7 @@ void bt_i2s_task_start_up(void)
|
||||
ESP_LOGE(BT_APP_CORE_TAG, "%s, ringbuffer create failed", __func__);
|
||||
return;
|
||||
}
|
||||
xTaskCreate(bt_i2s_task_handler, "BtI2STask", 1024, NULL, configMAX_PRIORITIES - 3, &s_bt_i2s_task_handle);
|
||||
xTaskCreate(bt_i2s_task_handler, "BtI2STask", 2048, NULL, configMAX_PRIORITIES - 3, &s_bt_i2s_task_handle);
|
||||
}
|
||||
|
||||
void bt_i2s_task_shut_down(void)
|
||||
|
Loading…
x
Reference in New Issue
Block a user