You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your enhancement proposal related to a problem? Please describe.
BLE Extended Advertising API lets the user have two different advertising sets running simultaneously. There is one limitation: you can have only one of the two advertising sets configured as connectable. Otherwise, the bt_le_ext_adv_start API will fail, because le_adv_start_add_conn function in the HCI Core source file returns ENOTSUP error: https://github.com/zephyrproject-rtos/zephyr/blob/master/subsys/bluetooth/host/hci_core.c#L8102
Describe the solution you'd like
Remove the limitation, described above and let the stack users have more than one connectable advertising set running at the same time.
Describe alternatives you've considered
None so far
Additional context
I prepared the minimal BLE sample to test this behaviour: kapi-no@892b75f
Please configure both advertising sets as connectable if you want to observe the described limitation.
The text was updated successfully, but these errors were encountered:
joerchan
changed the title
Bluetooth: Extended advertising: support for multiple connectable advertising sets
Bluetooth: Support for multiple connectable advertising sets with different identities.
Apr 26, 2021
Is your enhancement proposal related to a problem? Please describe.
BLE Extended Advertising API lets the user have two different advertising sets running simultaneously. There is one limitation: you can have only one of the two advertising sets configured as connectable. Otherwise, the bt_le_ext_adv_start API will fail, because le_adv_start_add_conn function in the HCI Core source file returns ENOTSUP error:
https://github.com/zephyrproject-rtos/zephyr/blob/master/subsys/bluetooth/host/hci_core.c#L8102
Describe the solution you'd like
Remove the limitation, described above and let the stack users have more than one connectable advertising set running at the same time.
Describe alternatives you've considered
None so far
Additional context
I prepared the minimal BLE sample to test this behaviour:
kapi-no@892b75f
Please configure both advertising sets as connectable if you want to observe the described limitation.
The text was updated successfully, but these errors were encountered: