From 778e240cf12dfe9a779dfac88f350be52a5cfd81 Mon Sep 17 00:00:00 2001 From: Aron Rubin Date: Mon, 1 Mar 2021 15:59:02 -0500 Subject: [PATCH] Fixed use of Bluedroid instead of BT in HAL. --- cores/esp32/esp32-hal-bt.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/cores/esp32/esp32-hal-bt.c b/cores/esp32/esp32-hal-bt.c index fc518e38b61..375986d710c 100644 --- a/cores/esp32/esp32-hal-bt.c +++ b/cores/esp32/esp32-hal-bt.c @@ -18,10 +18,9 @@ bool btInUse(){ return true; } -#ifdef CONFIG_BLUEDROID_ENABLED #include "esp_bt.h" -#ifdef CONFIG_CLASSIC_BT_ENABLED +#ifdef CONFIG_BT_CLASSIC_ENABLED #define BT_MODE ESP_BT_MODE_BTDM #else #define BT_MODE ESP_BT_MODE_BLE @@ -79,7 +78,7 @@ bool btStop(){ return false; } -#else +#else // CONFIG_BT_ENABLED bool btStarted() { return false; @@ -94,6 +93,6 @@ bool btStop() { return false; } -#endif -#endif + +#endif // CONFIG_BT_ENABLED