-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Bluetooth: Fix double set random address for every advertising enable #97974
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
LingaoM
wants to merge
2
commits into
zephyrproject-rtos:main
Choose a base branch
from
LingaoM:fix_double_set_random_addr
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Bluetooth: Fix double set random address for every advertising enable #97974
LingaoM
wants to merge
2
commits into
zephyrproject-rtos:main
from
LingaoM:fix_double_set_random_addr
+13
−2
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7790a4f
to
a558bcf
Compare
0e7b311
to
a558bcf
Compare
@PavelVPV I am confused about the failure of mesh relay in bbsim? |
a04b899
to
8659046
Compare
8659046
to
231ba67
Compare
The `bt_le_ext_adv_update_param` will set new random address when option not select `BT_LE_ADV_OPT_USE_IDENTITY`, But `bt_le_ext_adv_start` will also set random address again. This will be affect bluetooth mesh, after this change, will ensure address only change once for every advertising. Signed-off-by: Lingao Meng <[email protected]>
fix bluetooth mesh relay timing problem. Signed-off-by: Lingao Meng <[email protected]>
38589d6
to
a7b7c06
Compare
@alxelax For Mesh bbsim problem, it's look like not problem, just timing changed. For PAST bbsim, even i revert these change, bbsim also not pass.
|
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area: Bluetooth Controller
area: Bluetooth Host
Bluetooth Host (excluding BR/EDR)
area: Bluetooth Mesh
area: Bluetooth
area: Tests
Issues related to a particular existing or missing test
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
bt_le_ext_adv_update_param
will set new random address when option not selectBT_LE_ADV_OPT_USE_IDENTITY
, Butbt_le_ext_adv_start
will also set random address again.This will be affect bluetooth mesh, after this change, will ensure address only change once for every advertising.