You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bluetooth: services: Implement real-time ranging data service
The RRSP now always supports the two operation modes: on-demand
and real-time data. When using real-time data, the CS procedure results
are notified immediately as soon as they are available. The RREQ doesn't
need to fetch or ACK the notifications, or wait for the data complete
indication.
In the case where new procedure results are received from the controller
before the previous procedure results have been completely sent, the new
results are dropped.
A callback has been exposed for the CCCD write request responses as it's
now possible for the RRSP to reject these if they would lead to both
on-demand and real-time modes to be enabled at the same time. The
alternative would be to block on a semaphore before returning from
bt_ras_rreq_realtime_rd_subscribe() or
bt_ras_rreq_on_demand_rd_subscribe().
Signed-off-by: Olivier Lesage <[email protected]>
Copy file name to clipboardExpand all lines: doc/nrf/libraries/bluetooth/services/rreq.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Overview
12
12
13
13
This library implements the Ranging Requestor for Channel Sounding with the corresponding set of characteristics defined in the `Ranging Service Specification`_ and the `Ranging Profile Specification`_.
14
14
15
-
This library supports On Demand Ranging Data.
15
+
This library supports On Demand Ranging Data and Real-time Ranging Data.
Copy file name to clipboardExpand all lines: doc/nrf/libraries/bluetooth/services/rrsp.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Overview
12
12
13
13
This library implements the Ranging Responder for Channel Sounding with the corresponding set of characteristics defined in the `Ranging Service Specification`_ and the `Ranging Profile Specification`_.
14
14
15
-
This library supports On Demand Ranging Data.
15
+
This library supports On Demand Ranging Data and Real-time Ranging Data.
0 commit comments