6

当我连接到 BLE 设备时,我正在尝试读取它的初始状态。这是我必须尝试这样做的代码:

@Override
public void onServicesDiscovered(BluetoothGatt gatt, int status)
{
    if(status == BluetoothGatt.GATT_SUCCESS)
    {
        Log.i(TAG, gatt.getDevice().toString() + "Discovered Service Status: " + gattStatusToString(status));
        for(BluetoothGattService service : gatt.getServices())
        {
            Log.i(TAG, "Discovered Service: " + service.getUuid().toString() + " with " + "characteristics:");
            for(BluetoothGattCharacteristic characteristic : service.getCharacteristics())
            {
                // Set notifiable
                if(!gatt.setCharacteristicNotification(characteristic, true))
                {
                    Log.e(TAG, "Failed to set notification for: " + characteristic.toString());
                }

                // Enable notification descriptor
                BluetoothGattDescriptor descriptor = characteristic.getDescriptor(CCC_UUID);
                if(descriptor != null)
                {
                    descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
                    gatt.writeDescriptor(descriptor);
                }

                // Read characteristic
                if(!gatt.readCharacteristic(characteristic))
                {
                    Log.e(TAG, "Failed to read characteristic: " + characteristic.toString());
                }
            }
        }
    }
    else
    {
        Log.d(TAG, "Discover Services status: " + gattStatusToString(status));
    }
}

但是每次读取都失败!稍后,如果我基于 UI 交互启动读取,它读取就好了!关于这里发生了什么的任何想法?

4

1 回答 1

15

在 Android BLE 实现中,需要对 gatt 操作调用进行排队,以便一次只有一个操作(读取、写入等)有效。因此,例如,在gatt.readCharacteristic(characteristicX)调用之后,您需要等待 gatt 回调BluetoothGattCallback.onCharacteristicRead()以指示读取完成。如果在前一个完成之前启动第二个 gatt.readCharacteristic() 操作,第二个将失败(返回 false) 这适用于所有 gatt.XXX() 操作。

它有点工作,但我认为最好的解决方案是为所有 gatt 操作创建一个命令队列并一次运行它们。您可以使用命令模式来完成此操作。

于 2015-06-08T22:39:10.460 回答