-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
[Backport-v2.2-branch] Bluetooth: controller: split: correct timing calculation in PKT_US #23570
[Backport-v2.2-branch] Bluetooth: controller: split: correct timing calculation in PKT_US #23570
Conversation
A bug in the PKT_US resulted in wrong calculations for the 2M phy. Fixes the bug, verified on EBQ. Also adds some defines for improved readability. Fixes zephyrproject-rtos#23482 Signed-off-by: Andries Kruithof <Andries.Kruithof@nordicsemi.no>
Fixes zephyrproject-rtos#23482. There is a bug in calculation of time for the DLE procedure: the preamble size is incorrect for the 2M phy This is for the legacy code, see PR zephyrproject-rtos#23570 for the split controller Signed-off-by: Andries Kruithof <Andries.Kruithof@nordicsemi.no>
@carlescufi Please advise on what more info is required |
@carlescufi, is this still waiting for approval? |
No, this is in the Ready column of the Backports project. This means that it can be merged at any time, but I will leave it to @jhedberg to decide when. |
Fair enough. The sooner the 2.2 backports are merged, the sooner we will start doing serious testing on the branch. |
Fixes zephyrproject-rtos#23482. There is a bug in calculation of time for the DLE procedure: the preamble size is incorrect for the 2M phy This is for the legacy code, see PR zephyrproject-rtos#23570 for the split controller Signed-off-by: Andries Kruithof <Andries.Kruithof@nordicsemi.no>
Fixes #23482
A bug in the PKT_US resulted in wrong calculations for the 2M phy since the preamble size was incorrect. This results in reduced throughput since data that should fit in one packet was split in two packets.
Fixes the bug, verified on EBQ.
Also adds some defines for improved readability.
See also PR #23557 which is for the master branch
Signed-off-by: Andries Kruithof Andries.Kruithof@nordicsemi.no