写入 GATT 描述符会产生不允许写入的错误
writing to GATT descriptor produces write not permitted error
我正在使用 java TinyB 连接到具有蓝牙 LE 的 TimeFlip 设备。
当尝试写入 Facet 特征的描述符以接收通知时,我总是收到错误消息:
线程“main”中的异常tinyb.BluetoothException:GDBus.Error:org.bluez.Error.NotPermitted:不允许写入
但是当我使用 gatttool 写入同一个描述符时,它起作用了,我收到了通知。
BluetoothGattService timeFlipService = device.find("f1196f50-71a4-11e6-bdf4-0800200c9a66", Duration.ofSeconds(5));
BluetoothGattCharacteristic facets = timeFlipService.find("f1196f52-71a4-11e6-bdf4-0800200c9a66", Duration.ofSeconds(5));
BluetoothGattDescriptor facetsConfig = facets.find("00002902-0000-1000-8000-00805f9b34fb", Duration.ofSeconds(5)); // like this ==> always null, custom method works???
if(!login(timeFlipService)) {log.error("login to TimeFlip failed");}
try{
byte[] enableNotifications = {0x01, 0x00};
facetsConfig.writeValue(enableNotifications); //when facesConfig assigned with custom method throws write not permitted error
facets.enableValueNotifications(new FacetNotification());
}
catch(NullPointerException e){
log.error("NullPointerException in " + (facets == null ? "facet characteristic" : "facet descriptor"));
}
catch(BluetoothException b){
log.error(b.getMessage());
}
}
提到的“自定义方法”只是从一个特征中获取所有描述符和 returns 匹配给定 uuid 的描述符,因为 find() 方法每次都会超时。
在 Bluez 中,您应该使用 StartNotify 来打开通知或指示。 Bluez 会为您编写描述符,但如果您尝试自己编写,它确实会出错。
我正在使用 java TinyB 连接到具有蓝牙 LE 的 TimeFlip 设备。
当尝试写入 Facet 特征的描述符以接收通知时,我总是收到错误消息:
线程“main”中的异常tinyb.BluetoothException:GDBus.Error:org.bluez.Error.NotPermitted:不允许写入
但是当我使用 gatttool 写入同一个描述符时,它起作用了,我收到了通知。
BluetoothGattService timeFlipService = device.find("f1196f50-71a4-11e6-bdf4-0800200c9a66", Duration.ofSeconds(5));
BluetoothGattCharacteristic facets = timeFlipService.find("f1196f52-71a4-11e6-bdf4-0800200c9a66", Duration.ofSeconds(5));
BluetoothGattDescriptor facetsConfig = facets.find("00002902-0000-1000-8000-00805f9b34fb", Duration.ofSeconds(5)); // like this ==> always null, custom method works???
if(!login(timeFlipService)) {log.error("login to TimeFlip failed");}
try{
byte[] enableNotifications = {0x01, 0x00};
facetsConfig.writeValue(enableNotifications); //when facesConfig assigned with custom method throws write not permitted error
facets.enableValueNotifications(new FacetNotification());
}
catch(NullPointerException e){
log.error("NullPointerException in " + (facets == null ? "facet characteristic" : "facet descriptor"));
}
catch(BluetoothException b){
log.error(b.getMessage());
}
}
提到的“自定义方法”只是从一个特征中获取所有描述符和 returns 匹配给定 uuid 的描述符,因为 find() 方法每次都会超时。
在 Bluez 中,您应该使用 StartNotify 来打开通知或指示。 Bluez 会为您编写描述符,但如果您尝试自己编写,它确实会出错。