Android BLE readCharacteristic失败

时间:2015-05-22 13:55:28

标签: android bluetooth-lowenergy android-ble

当我连接到BLE设备时,我试图读取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交互启动读取,它就读得很好!关于这里发生了什么的任何想法?

1 个答案:

答案 0 :(得分:14)

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

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