我正在开发一个需要与蓝牙LE设备通信的应用程序。
这是我用来设置CharacteristicsNotification
的代码public boolean setCharacteristicNotification(
BluetoothGattCharacteristic characteristic, boolean enable) {
if(mBluetoothAdapter == null || mBluetoothGatt == null) {
Log.w(TAG, "BluetoothAdapter not initialized");
return false;
}
Log.v(TAG, "setCharacteristicNotification(): uuid=" + characteristic.getUuid() + " enabled=" + enable);
boolean notifications = mBluetoothGatt.setCharacteristicNotification(characteristic, enable);
if(notifications) {
Log.v(TAG, "setCharacteristicNotification(): Notifications are enabled");
}
else {
Log.w(TAG, "setCharacteristicNotification(): Notifications are not enabled for characteristic " + characteristic);
}
BluetoothGattDescriptor desc = characteristic.getDescriptor(
UUID.fromString(FBGattAttributes.CHARACTERISTIC_CLIENT_CONFIG));
desc.setValue(enable ?
BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE :
new byte[]{0x00, 0x00}
);
boolean ok = mBluetoothGatt.writeDescriptor(desc);
if(ok){
Log.v(TAG, "wrote descriptor value for notification: ok=" + ok);
}else{
Log.w(TAG, "writeDescriptor failed: we will not get notifications=" + ok);
}
return ok;
}
这里的代码是“mBluetoothGatt.writeDescriptor(desc);”有时返回false这是我无法从BluetoothGatt收到任何通知的原因。我不知道如何解决这个问题。
此问题仅发生在具有操作系统5.02的LG G2上,之前它有4.4问题不是那么频繁但是在更新之后我每次都是“假”,除了第一次。 如果我们尝试在连接之后第一次设置通知,那么当我断开连接并尝试连接时,它将始终返回False。 我需要杀死并重新启动应用程序才能再次运行。 有谁知道为什么这不起作用?提前致谢
答案 0 :(得分:4)
在Lollypop中,BluetoothGatt.java已更新为包含“设备忙”块,可阻止应用程序一次请求多个异步操作。有关从writeDescriptor返回的内容,请参阅BluetoothGatt.java:1029。
我不得不设置一个命令队列来解决这个问题。基本上我的逻辑是将任何失败的异步调用排入队列并在我的BluetoothGattCallback中执行重试。