Skip to content

Commit

Permalink
Fixed use of Bluedroid instead of BT in HAL. (#4879)
Browse files Browse the repository at this point in the history
Fixed use of CONFIG_BLUEDROID_ENABLED instead of CONFIG_BT_ENABLED in HAL. This prevented compilation with Nimble-only configuration without apparent benefit.
  • Loading branch information
AronRubin committed Mar 1, 2021
1 parent 1cf1c8e commit bd3adde
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions cores/esp32/esp32-hal-bt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -79,7 +78,7 @@ bool btStop(){
return false;
}

#else
#else // CONFIG_BT_ENABLED
bool btStarted()
{
return false;
Expand All @@ -94,6 +93,6 @@ bool btStop()
{
return false;
}
#endif
#endif

#endif // CONFIG_BT_ENABLED

0 comments on commit bd3adde

Please sign in to comment.