From d1ccfa6b250712491228e4e8afea101258f6bbc8 Mon Sep 17 00:00:00 2001 From: duffy Date: Thu, 29 Jan 2026 21:58:46 +0100 Subject: [PATCH] fix bt manager for idf 5 --- main/bluetooth/bt_manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/bluetooth/bt_manager.c b/main/bluetooth/bt_manager.c index 248cab9..f18d9c4 100644 --- a/main/bluetooth/bt_manager.c +++ b/main/bluetooth/bt_manager.c @@ -144,7 +144,7 @@ esp_err_t bt_manager_init(void) // Bluetooth Controller konfigurieren esp_bt_controller_config_t bt_cfg = BT_CONTROLLER_INIT_CONFIG_DEFAULT(); - bt_cfg.mode = ESP_BT_MODE_BTDM; // Dual Mode für Classic + BLE + // Mode wird bei esp_bt_controller_enable() gesetzt esp_err_t ret = esp_bt_controller_init(&bt_cfg); if (ret != ESP_OK) {