mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-07 03:57:07 +03:00
wait for BT disable to avoid crash - release
This commit is contained in:
@@ -650,10 +650,12 @@ void bt_sink_init(bt_cmd_vcb_t cmd_cb, bt_data_cb_t data_cb)
|
|||||||
|
|
||||||
void bt_sink_deinit(void)
|
void bt_sink_deinit(void)
|
||||||
{
|
{
|
||||||
/* this still does not work, can't figure out how to stop properly this BT stack */
|
|
||||||
bt_app_task_shut_down();
|
bt_app_task_shut_down();
|
||||||
ESP_LOGD(BT_AV_TAG, "bt_app_task shutdown successfully");
|
ESP_LOGD(BT_AV_TAG, "bt_app_task shutdown successfully");
|
||||||
if (esp_bluedroid_disable() != ESP_OK) return;
|
if (esp_bluedroid_disable() != ESP_OK) return;
|
||||||
|
// this disable has a sleep timer BTA_DISABLE_DELAY in bt_target.h and
|
||||||
|
// if we don't wait for it then disable crashes... don't know why
|
||||||
|
vTaskDelay(2*200 / portTICK_PERIOD_MS);
|
||||||
ESP_LOGD(BT_AV_TAG, "esp_bluedroid_disable called successfully");
|
ESP_LOGD(BT_AV_TAG, "esp_bluedroid_disable called successfully");
|
||||||
if (esp_bluedroid_deinit() != ESP_OK) return;
|
if (esp_bluedroid_deinit() != ESP_OK) return;
|
||||||
ESP_LOGD(BT_AV_TAG, "esp_bluedroid_deinit called successfully");
|
ESP_LOGD(BT_AV_TAG, "esp_bluedroid_deinit called successfully");
|
||||||
|
|||||||
Reference in New Issue
Block a user