mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-03-30 16:20:24 +00:00
esp32: fix init for BR/EDR only mode
This commit is contained in:
parent
1e4fedb96f
commit
5451dc6db6
@ -12,6 +12,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
||||
- GATT Service: Broadcast Audio Scamn Service Server and Client (BASS 1.0)
|
||||
|
||||
### Fixed
|
||||
- ESP32: fix init for BR/EDR Only mode
|
||||
|
||||
### Changed
|
||||
- Mesh: move GATT Services into src/mesh/gatt-service
|
||||
- SM: delete bonding information for existing device with BD_ADDR, on new pairing with different IRK
|
||||
|
@ -260,7 +260,7 @@ static int transport_open(void){
|
||||
#if CONFIG_IDF_TARGET_ESP32
|
||||
#if CONFIG_BTDM_CTRL_MODE_BTDM
|
||||
bt_mode = ESP_BT_MODE_BTDM;
|
||||
#elif BTDM_CTRL_MODE_BR_EDR_ONLY
|
||||
#elif CONFIG_BTDM_CTRL_MODE_BR_EDR_ONLY
|
||||
bt_mode = ESP_BT_MODE_CLASSIC_BT;
|
||||
#endif
|
||||
#endif
|
||||
|
Loading…
x
Reference in New Issue
Block a user