nimble/controller: Add Synchronized Receiver role support - #2084
Draft
MariuszSkamra wants to merge 9 commits into
Draft
nimble/controller: Add Synchronized Receiver role support#2084MariuszSkamra wants to merge 9 commits into
MariuszSkamra wants to merge 9 commits into
Conversation
MariuszSkamra
force-pushed
the
feat_broadcast_sync
branch
2 times, most recently
from
July 28, 2025 12:47
4c20a96 to
524dc72
Compare
MariuszSkamra
force-pushed
the
feat_broadcast_sync
branch
2 times, most recently
from
August 8, 2025 13:57
f039be4 to
a707eda
Compare
MariuszSkamra
marked this pull request as ready for review
August 8, 2025 13:59
MariuszSkamra
force-pushed
the
feat_broadcast_sync
branch
from
August 12, 2025 14:34
a707eda to
cc04646
Compare
MariuszSkamra
force-pushed
the
feat_broadcast_sync
branch
from
March 24, 2026 10:42
cc04646 to
78c3d39
Compare
MariuszSkamra
force-pushed
the
feat_broadcast_sync
branch
from
April 13, 2026 15:27
78c3d39 to
3f8fe77
Compare
MariuszSkamra
marked this pull request as draft
April 13, 2026 15:28
MariuszSkamra
force-pushed
the
feat_broadcast_sync
branch
2 times, most recently
from
April 14, 2026 11:52
0097948 to
b309d81
Compare
This removes unused BLE_PHY_TRANSITION_RX_TX definition from API.
This renames transition definitions: BLE_PHY_TRANSITION_TX_RX -> BLE_PHY_TRANSITION_TO_RX BLE_PHY_TRANSITION_TX_TX -> BLE_PHY_TRANSITION_TO_TX
This moves transition-related code to dedicated Rx/Tx functions to reduce function size and remove duplicated code. No functional change intended. Co-authored-by: Andrzej Kaczmarek <andrzej.kaczmarek@codecoup.pl> Co-authored-by: Magdalena Kasenberg <magdalena.kasenberg@codecoup.pl>
New Bluetooth features require fast RX-to-RX and TX-to-TX transitions and use a different TIFS than 150us. Co-authored-by: Andrzej Kaczmarek <andrzej.kaczmarek@codecoup.pl>
This adds Rx end early callback that is called before scheduled PHY transition. This allows user to e.g. prepare CCM for next Rx.
Support for nRF5340.
This fixes race condition in aux scan what was observed on Harmony. During extended scan, the HCI Reset called, that stops the active scan and clears the scan state machine. The scan stop itself, if scan response is pending, and calls ble_ll_scan_aux_sched_remove that pokes the active scan backup (from LL via event queue). The problem is that the SM is cleared already when backoff is called, which causes an assert in ble_ll_scan_req_backoff function. This change ensures the ble_ll_scan_req_backoff is called from ble_ll_reset() function context. ble_ll_reset is always called from LL task context.
As per the Core, the Packet_Status_Flag of an HCI ISO Data packet must be one of the following: 0b00, 0b01, or 0b10. This fixes the BLE_HCI_ISO_PKT_STATUS_LOST value which shall be 0x02 (0b10).
This adds Synchronized Receiver role support. The role enables reception of broadcast isochronous streams. Co-authored-by: Andrzej Kaczmarek <andrzej.kaczmarek@codecoup.pl>
MariuszSkamra
force-pushed
the
feat_broadcast_sync
branch
from
May 25, 2026 15:17
b309d81 to
b531da3
Compare
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
nimble/controller: Add Synchronized Receiver role support
This adds Synchronized Receiver role support.
The role enables reception of broadcast isochronous streams.
Co-authored-by: Andrzej Kaczmarek andrzej.kaczmarek@codecoup.pl
Depends on: #1974
Depends on: #2083
Depends on: #2087
Depends (optionally) on: #1882