-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Bluetooth: Controller: Implement LE Set Extended Advertising Paramete… #19662
Bluetooth: Controller: Implement LE Set Extended Advertising Paramete… #19662
Conversation
1302b94
to
d7426e7
Compare
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:sdk-nrf: PR head: 42d10f3086a059a317f529f0c8c19bdb562270b4 more detailssdk-nrf:
Github labels
List of changed files detected by CI (1)
Outputs:ToolchainVersion: b77d8c1312 Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
@@ -762,6 +764,7 @@ void hci_internal_le_supported_features( | |||
|
|||
#ifdef CONFIG_BT_CTLR_ADV_EXT | |||
features->params.le_extended_advertising = 1; | |||
features->params.advertising_coding_selection = 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the feature bit set no matter if coded phy is enabled?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can change this, my mistake. Do I need to do the same in the #ifdef above this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We support the API independent of the support of coded phy. If coded PHY is not supported will will just not transmit on the particular coding scheme, and also not raise reports with Coded PHY
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ok, then we can keep it as is
ec177f0
to
b8de38b
Compare
b8de38b
to
8d6b698
Compare
Implement LE Set Extended Advertising Parameters [v2] command as per bluetooth spec v6.0 (Vol 4 Part E Section 7.8.53). Advertising Coding Selection is marked as supported. Signed-off-by: Thomas Deppe <[email protected]>
8d6b698
to
42d10f3
Compare
…rs v2 command
Implement LE Set Extended Advertising Parameters [v2] command as per Bluetooth spec v6.0 (Vol 4 Part E Section 7.8.53). Advertising Coding Selection is marked as supported.