-
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: services: ras: Implement Ranging Responder role of RAS #18750
base: main
Are you sure you want to change the base?
bluetooth: services: ras: Implement Ranging Responder role of RAS #18750
Conversation
CI InformationTo view the history of this post, clich the 'edited' button above Inputs:Sources:more detailsGithub labels
List of changed files detected by CI (0)
Outputs:ToolchainVersion: Test Spec & Results: ✅ Success; ❌ Failure; 🟠 Queued; 🟡 Progress; ◻️ Skipped;
|
You can find the documentation preview for this PR at this link. It will be updated about 10 minutes after the documentation build succeeds. Note: This comment is automatically posted by the Documentation Publishing GitHub Action. |
help | ||
The number of ranging procedures that can be stored inside RRSP. | ||
|
||
config BT_RAS_RRSP_MAX_SUBEVENTS_PER_PROCEDURE |
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.
Propose replacing BT_RAS_RRSP_MAX_STEPS_PER_PROCEDURE and BT_RAS_RRSP_MAX_STEPS_PER_PROCEDURE with:
- BT_RAS_RRSP_MAX_ANTENNA_PATHS (range 1 4 default 4)
- BT_RAS_RRSP_MODE_3_SUPPORTED (just yes/no, default yes)
then the only thing these configs do is change the value of BT_RAS_MAX_STEP_DATA_LEN.
We should also make sure there's some kind of warning in the case where the controller generates more data than expected
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 realised these configs are relevant for both RREQ and RRSP, so I reordered the Kconfig menus in the last commit as well.
Implement the ranging responder (RRSP) server role of the Ranging Service draft specification. This allows a ranging requestor (RREQ) to retrieve channel sounding ranging data from the local device. This implementation contains support for all mandatory features, as well as using notifications for data transfer. Signed-off-by: Aleksandar Stanoev <[email protected]>
0aa21db
to
cf80a30
Compare
Enables defining settings common for RREQ and RRSP. Groups RREQ and RRSP under a common Ranging Service menu. Signed-off-by: Aleksandar Stanoev <[email protected]>
Implement the ranging responder (RRSP) server role of the Ranging Service draft specification.
This allows a ranging requestor (RREQ) to retrieve channel sounding ranging data from the local device.
This implementation contains support for all mandatory features, as well as using notifications for data transfer.