Skip to content

Commit

Permalink
Increase BtI2STask stack depth to avoid stack overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
BetterJincheng committed Nov 24, 2022
1 parent 75b2e63 commit 9ad1c7d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,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)
Expand Down

0 comments on commit 9ad1c7d

Please sign in to comment.