簡體   English   中英

具有多個服務的 Android BLE Gatt 服務器 - onCharacteristicWriteRequest() 沒有字符作為句柄

[英]Android BLE Gatt Server with multiple services - onCharacteristicWriteRequest() no char for handle

我正在嘗試構建具有多個自定義服務和多個特征的 BLE Gatt 服務器。

首先,我使用了 Google 示例: https : //github.com/androidthings/sample-bluetooth-le-gattserver/tree/master/kotlin

這很簡單,而且效果很好。 我修改了 UUID 以適應我的情況,我可以毫無問題地接收通知並寫入字符。

這是我定義服務和字符的地方:

fun createTimeService(): BluetoothGattService {
        val service = BluetoothGattService(TIME_SERVICE,
                BluetoothGattService.SERVICE_TYPE_PRIMARY)

        // Current Time characteristic
        val currentTime = BluetoothGattCharacteristic(CURRENT_TIME,
                //Read-only characteristic, supports notifications
                BluetoothGattCharacteristic.PROPERTY_READ or BluetoothGattCharacteristic.PROPERTY_NOTIFY,
                BluetoothGattCharacteristic.PERMISSION_READ)
        val configDescriptor = BluetoothGattDescriptor(CLIENT_CONFIG,
                //Read/write descriptor
                BluetoothGattDescriptor.PERMISSION_READ or BluetoothGattDescriptor.PERMISSION_WRITE)
        currentTime.addDescriptor(configDescriptor)

        // Local Time Information characteristic
        val localTime = BluetoothGattCharacteristic(LOCAL_TIME_INFO,
                BluetoothGattCharacteristic.PROPERTY_WRITE,
                BluetoothGattCharacteristic.PERMISSION_WRITE)

        service.addCharacteristic(currentTime)
        service.addCharacteristic(localTime)

        return service
    }

    fun createSerialService(): BluetoothGattService {
        val service = BluetoothGattService(serialPortServiceID,
                BluetoothGattService.SERVICE_TYPE_PRIMARY)

        val serialData = BluetoothGattCharacteristic(serialDataCharacteristicID,
        BluetoothGattCharacteristic.PROPERTY_WRITE,
        BluetoothGattCharacteristic.PERMISSION_WRITE)

        service.addCharacteristic(serialData)

        return service
    }

在這里,我將它們應用於我的服務器:

 private fun startServer() {
        bluetoothGattServer = bluetoothManager.openGattServer(this, gattServerCallback)

        bluetoothGattServer?.addService(TimeProfile.createTimeService())
                ?: Log.w(TAG, "Unable to create GATT server")

        bluetoothGattServer?.addService(TimeProfile.createSerialService())
                ?: Log.w(TAG, "Unable to create GATT server")

        // Initialize the local UI
        updateLocalUi(System.currentTimeMillis())
    }

我希望在添加第二個服務后一切都會像以前一樣工作。 但是現在,如果我嘗試編寫/訂閱任何特征(在哪個服務中無關緊要),我只會收到以下信息:

W/BluetoothGattServer: onCharacteristicWriteRequest() no char for handle 42
W/BluetoothGattServer: onDescriptorWriteRequest() no desc for handle 43

我發現出了什么問題。 顯然,您不能像我一樣一次性添加所有服務。 在確認第一個服務之前添加第二個服務會導致將服務設置為空的異常。

最后我通過最初只添加一項服務來解決這個問題。 然后在 BleGattServerCallback() 的 onServiceAdded() 回調中,我一個接一個地開始。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM