Fixed use of Bluedroid instead of BT in HAL. (#4879)
Fixed use of CONFIG_BLUEDROID_ENABLED instead of CONFIG_BT_ENABLED in HAL. This prevented compilation with Nimble-only configuration without apparent benefit.
This commit is contained in:
parent
1cf1c8eb79
commit
bd3addeb8e
1 changed files with 4 additions and 5 deletions
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue