gpt4 book ai didi

android - 写入特性后 GATT 内部错误

转载 作者:行者123 更新时间:2023-11-29 20:49:14 26 4
gpt4 key购买 nike

我一直在尝试使用 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() 操作均返回 true,表示成功。然后,我的 BluetoothGattCallback 收到 RACP 特征的 onCharacteristicWrite() 回调。但是,回调返回的状态是 129(内部错误)而不是预期的 0(成功)。

我相信我还需要启用 RACP 特征的指示(和/或测量特征的通知)以接收记录。但是启用过程似乎工作正常,无论我使用哪种通知/指示组合(如果有),我都会收到相同的错误。所以我不认为错误是相关的,但为了完整起见,这里是通知/指示代码,它在记录请求代码之前运行:

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 指示。

关于android - 写入特性后 GATT 内部错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29608481/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com