I am trying to achieve a UWB communication between the two devices with the help of Bluetooth(ble) in android. There is no specific documentation available regarding the same. Google provides this as a sample.
https://github.com/android/connectivity-samples/tree/main/UwbRanging
The above code creates a connection with the help of a nearby api and uses the endpoint to create a session.
If we see the code. The steps are as follows. Start discovery with the nearby api.
fun startDiscovery() = callbackFlow {
dispatchEvent = { trySend(it) }
coroutineScope.launch {
connectionsClient
.startDiscovery(
CONNECTION_SERVICE_ID,
endpointDiscoveryCallback,
DiscoveryOptions.Builder().setStrategy(Strategy.P2P_CLUSTER).build()
)
.await()
}
The above is done by the controller.
Similarly for the controlee the following code execute.
fun startAdvertising() = callbackFlow {
dispatchEvent = { trySend(it) }
coroutineScope.launch {
connectionsClient
.startAdvertising(
CONNECTION_NAME,
CONNECTION_SERVICE_ID,
connectionLifecycleCallback,
AdvertisingOptions.Builder().setStrategy(Strategy.P2P_CLUSTER).build()
)
.await()
}
awaitClose {
disconnectAll()
connectionsClient.stopAdvertising()
}
}
In the discovery callback by the controller one endpoint is received which is used to request the connection
private val endpointDiscoveryCallback =
object : EndpointDiscoveryCallback() {
override fun onEndpointFound(endpointId: String, info: DiscoveredEndpointInfo) {
Log.d("endpointid",endpointId + info.endpointName + " " + info.endpointInfo)
coroutineScope.launch {
connectionsClient
.requestConnection(CONNECTION_NAME, endpointId, connectionLifecycleCallback)
}
}
Similarly for ble we have the methods
bluetoothLeScanner?.startScan(scanCallback)
and
advertiser.startAdvertisingSet(parameters, data, null, null, null, callback);
Which data from the above ble scan and advertise can be accessed and how can we create the ranging parameters for uwb from the same.
So that once the connection is established with the gatt client. We can do create the ranging parameters like
val uwbConfigType: Int,
val sessionId: Int,
val sessionKeyInfo: ByteArray?,
val complexChannel: UwbComplexChannel?,
val peerDevices: List<UwbDevice>,
val updateRateType: Int
So here are my two questions 1.How to redrive the above parameters using the BLE ? 2. Is it possible to achieve the same without advertising as client in the case of BLE ?
Thank you.
The Jetpack UWB library doesn't handle the out-of-band (OOB) parameter exchange. If you want to use BLE as the OOB medium, one way to do it is:
UwbControleeSessionScope
and callUwbClientSessionScope#rangingCapabilities
to get the device's ranging capabilities and callUwbClientSessionScope#localAddress
to get the device's per-session-based UWB address.UwbControllerSessionScope
and callUwbClientSessionScope#localAddress
andUwbClientSessionScope#uwbComplexChannel
to obtain the scanner's UWB address and the complex channel used for ranging.RangingParameters
object, you can randomly generatesessionId
and 8-byte-longsessionKeyInfo
.sessionId
,sessionKeyInfp
, controller address etc. to the advertiser.RangingParameters
object at this stage.