mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-09 21:45:54 +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)
|
- GATT Service: Broadcast Audio Scamn Service Server and Client (BASS 1.0)
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- ESP32: fix init for BR/EDR Only mode
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
- Mesh: move GATT Services into src/mesh/gatt-service
|
- 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
|
- 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_IDF_TARGET_ESP32
|
||||||
#if CONFIG_BTDM_CTRL_MODE_BTDM
|
#if CONFIG_BTDM_CTRL_MODE_BTDM
|
||||||
bt_mode = ESP_BT_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;
|
bt_mode = ESP_BT_MODE_CLASSIC_BT;
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user