写入特性后 GATT 内部错误
GATT internal error after writing characteristic
我一直在尝试使用 Glucose service 从 BLE 设备读取葡萄糖测量记录。我能够成功连接到设备并在获取新记录时读取它们,但是当我请求以前记录的列表时,我收到状态为 129 ("GATT_INTERNAL_ERROR") 的回调。之后再无回调,最终转账超时。
据我了解,要检索记录,我需要向 Record Access Control Point characteristic 写入请求。收到请求后,设备应通过吐出请求的记录来响应。
我的请求代码如下:
private void requestRecords() {
byte[] requestValue = new byte[] {0x01, 0x01};
racpCharacteristic.setValue(requestValue);
bluetoothGatt.writeCharacteristic(racpCharacteristic);
}
其中{0x01, 0x01}枚举对应{"Request stored records","All records"}。
setValue() 和 writeCharacteristic() 操作都 return 为真,表示成功。然后,我的 BluetoothGattCallback 收到 RACP 特征的 onCharacteristicWrite() 回调。但是,回调的状态 return 是 129(内部错误)而不是预期的 0(成功)。
我认为我还需要启用 RACP 特性的指示(and/or 测量特性的通知)以接收记录。但是启用过程似乎正常工作,无论我使用哪种 notifications/indications 组合(如果有),我都会收到相同的错误。所以我不认为错误是相关的,但为了完整起见,这里是 notification/indication 代码,它在记录请求代码之前运行:
private static final String DESCRIPTOR_UUID = "00002902-0000-1000-8000-00805f9b34fb";
...
private void enableNotifications(BluetoothGattCharacteristic char) {
bluetoothGatt.setCharacteristicNotification(char, true);
UUID uuid = UUID.fromString(DESCRIPTOR_UUID);
BluetoothGattDescriptor descriptor = char.getDescriptor(uuid);
boolean usesIndications = characteristicUsesIndications(char);
descriptor.setValue(usesIndications ?
BluetoothGattDescriptor.ENABLE_INDICATION_VALUE :
BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
bluetoothGatt.writeDescriptor(descriptor);
}
我确保在执行后续操作之前等待相应的 onDescriptorWrite() 回调。例如。 enableNotifications(measurementChar) -> onDescriptorWrite() -> enableNotifications(racpChar) -> onDescriptorWrite() -> requestRecords()
谁能帮我找出问题所在?我不相信这是设备的问题,因为我的 iOS 对方能够成功检索记录。我知道有些手机不能很好地支持 BLE,所以为了记录,我正在使用三星 Galaxy S5 进行测试。如前所述,它能够从 BLE 设备接收新记录,因此希望该错误与设备无关。
在为适应症配置 RACP 之前,您必须启用葡萄糖测量和葡萄糖测量上下文的通知。一些血糖仪只允许启用 RACP 的指示,但作为一般做法,您应该在写入记录访问控制点之前启用 (2) 测量通知和 (1) RACP 指示。
我一直在尝试使用 Glucose service 从 BLE 设备读取葡萄糖测量记录。我能够成功连接到设备并在获取新记录时读取它们,但是当我请求以前记录的列表时,我收到状态为 129 ("GATT_INTERNAL_ERROR") 的回调。之后再无回调,最终转账超时。
据我了解,要检索记录,我需要向 Record Access Control Point characteristic 写入请求。收到请求后,设备应通过吐出请求的记录来响应。
我的请求代码如下:
private void requestRecords() {
byte[] requestValue = new byte[] {0x01, 0x01};
racpCharacteristic.setValue(requestValue);
bluetoothGatt.writeCharacteristic(racpCharacteristic);
}
其中{0x01, 0x01}枚举对应{"Request stored records","All records"}。
setValue() 和 writeCharacteristic() 操作都 return 为真,表示成功。然后,我的 BluetoothGattCallback 收到 RACP 特征的 onCharacteristicWrite() 回调。但是,回调的状态 return 是 129(内部错误)而不是预期的 0(成功)。
我认为我还需要启用 RACP 特性的指示(and/or 测量特性的通知)以接收记录。但是启用过程似乎正常工作,无论我使用哪种 notifications/indications 组合(如果有),我都会收到相同的错误。所以我不认为错误是相关的,但为了完整起见,这里是 notification/indication 代码,它在记录请求代码之前运行:
private static final String DESCRIPTOR_UUID = "00002902-0000-1000-8000-00805f9b34fb";
...
private void enableNotifications(BluetoothGattCharacteristic char) {
bluetoothGatt.setCharacteristicNotification(char, true);
UUID uuid = UUID.fromString(DESCRIPTOR_UUID);
BluetoothGattDescriptor descriptor = char.getDescriptor(uuid);
boolean usesIndications = characteristicUsesIndications(char);
descriptor.setValue(usesIndications ?
BluetoothGattDescriptor.ENABLE_INDICATION_VALUE :
BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
bluetoothGatt.writeDescriptor(descriptor);
}
我确保在执行后续操作之前等待相应的 onDescriptorWrite() 回调。例如。 enableNotifications(measurementChar) -> onDescriptorWrite() -> enableNotifications(racpChar) -> onDescriptorWrite() -> requestRecords()
谁能帮我找出问题所在?我不相信这是设备的问题,因为我的 iOS 对方能够成功检索记录。我知道有些手机不能很好地支持 BLE,所以为了记录,我正在使用三星 Galaxy S5 进行测试。如前所述,它能够从 BLE 设备接收新记录,因此希望该错误与设备无关。
在为适应症配置 RACP 之前,您必须启用葡萄糖测量和葡萄糖测量上下文的通知。一些血糖仪只允许启用 RACP 的指示,但作为一般做法,您应该在写入记录访问控制点之前启用 (2) 测量通知和 (1) RACP 指示。