gpt4 book ai didi

android - 蓝牙Gatt : onClientConnectionState() returns status=133

转载 作者:行者123 更新时间:2023-12-02 01:06:00 43 4
gpt4 key购买 nike

场景是:

我有一个 android dongle运行我的应用程序,在另一边我有一个连接到 esp8266 的 HM10 LE 蓝牙。

我正在尝试通过蓝牙将 android 加密狗通过我的应用程序连接到 HM10。

我已经在几周内成功地做到了这一点,甚至将 android 加密狗与不同的 HM10 连接起来,反之亦然,将相同的 HM10 与其他加密狗连接起来。

问题:

一段时间后,在连接尝试期间,我开始收到状态为 133 的已断开连接状态,但经过一些连接重试后连接成功。

现在,我无法将特定的 android 加密狗(我们称之为有问题的加密狗)与特定的 HM10(我们称之为有问题的 HM10)连接。我总是收到 133,即使重试了数百次,它也无法连接。

但是,如果我使用另一个加密狗,我可以连接到“有问题的”HM10。此外,如果我使用另一个 HM10,我可以连接到“有问题的”加密狗。

最后,当我将另一个 HM10 连接到有问题的加密狗时,我也可以将有问题的 HM10 连接到有问题的加密狗。但是,如果我断开它,我将永远无法再次连接。

当我尝试连接到特定的 BLE 设备时,我总是收到状态为 133 的断开连接状态。

我试图解决的问题:

重要的是,在正常使用过程中,可以关闭 HM10,反之亦然。但是,当我在 Gatt 回调中的“onConnectionStateChange”上获取断开连接事件时,我总是关闭 gatt ( deviceGatt.close(); )

我还阅读了一些帖子以在关闭它之前刷新 deviceGatt,所以我也在这样做:

//inside the onConnectionStateChange on the BluetoothGattCallback:
case BluetoothProfile.STATE_DISCONNECTED:

mConnectionState = ConnectionStatus.DISCONNECTED;
readCharacteristic = null;
writeCharacteristic = null;

if ( status != BluetoothGatt.GATT_SUCCESS ) {

if ( status == 133) {
refreshDeviceCache(deviceGatt);
}

}

deviceGatt.close();
deviceGatt = null;

break;
}


private boolean refreshDeviceCache(BluetoothGatt gatt){
try {
BluetoothGatt localBluetoothGatt = gatt;
Method localMethod = localBluetoothGatt.getClass().getMethod("refresh", new Class[0]);
if (localMethod != null) {
boolean bool = ((Boolean) localMethod.invoke(localBluetoothGatt, new Object[0])).booleanValue();
return bool;
}
}
catch (Exception localException) {

}
return false;
}

我也在一篇文章中阅读了清除android设置中的缓存->无线和网络->更多->网络设置重置,但这样做后问题仍然存在。

请在下面找到日志:
11-27 11:16:49.353 8104-8130/? D/bt_hci_h5: hci_hal_h5 h5_transmit_data, data type: 1
11-27 11:16:49.353 8104-8130/? D/bt_hci_h5: cmd opcode = 0xfc19
11-27 11:16:49.353 8104-8130/? D/bt_hci_h5: hci_hal_h5 h5_int_transmit_data_cb data type: 5
11-27 11:16:49.353 8104-8144/? W/bt_btif: bta_gattc_conn_cback() - cif=3 connected=0 conn_id=3 reason=0x0008
11-27 11:16:49.353 8104-8144/? W/bt_btif: bta_gattc_conn_cback() - cif=4 connected=0 conn_id=4 reason=0x0008
11-27 11:16:49.353 8104-8144/? W/bt_btif: bta_gattc_conn_cback() - cif=5 connected=0 conn_id=5 reason=0x0008
11-27 11:16:49.353 8104-8144/? W/bt_btif: bta_gattc_conn_cback() - cif=6 connected=0 conn_id=6 reason=0x0008
11-27 11:16:49.353 8104-8144/? W/bt_btif: bta_gattc_conn_cback() - cif=7 connected=0 conn_id=7 reason=0x0008
11-27 11:16:49.353 8104-8144/? E/rtk_parse: rtk_delete_le_profile, hci_conn not exist with handle ffff
11-27 11:16:49.353 8104-8144/? I/bt_btm_sec: btm_sec_disconnected clearing pending flag handle:16 reason:8
11-27 11:16:49.354 8104-8126/? D/BtGatt.GattService: onConnected() - clientIf=7, connId=0, address=34:15:13:E6:50:8F
11-27 11:16:49.354 8104-8130/? D/bt_hci_h5: hci_hal_h5 h5_int_transmit_data_cb data type: 5
11-27 11:16:49.354 24277-24288/? D/BluetoothGatt: onClientConnectionState() - status=133 clientIf=7 device=34:15:13:E6:50:8F
11-27 11:16:49.358 24277-24288/? D/BluetoothComm: Error connecting to device: com.polidea.rxandroidble.exceptions.BleDisconnectedException: Disconnected from 34:15:13:E6:50:8F
11-27 11:16:49.359 24277-24288/? W/System.err: com.polidea.rxandroidble.exceptions.BleDisconnectedException: Disconnected from 34:15:13:E6:50:8F
11-27 11:16:49.359 24277-24288/? W/System.err: at com.polidea.rxandroidble.internal.connection.RxBleGattCallback$2.onConnectionStateChange(RxBleGattCallback.java:76)
11-27 11:16:49.359 24277-24288/? W/System.err: at android.bluetooth.BluetoothGatt$1.onClientConnectionState(BluetoothGatt.java:184)
11-27 11:16:49.359 24277-24288/? W/System.err: at android.bluetooth.IBluetoothGattCallback$Stub.onTransact(IBluetoothGattCallback.java:70)
11-27 11:16:49.359 24277-24288/? W/System.err: at android.os.Binder.execTransact(Binder.java:565)
11-27 11:16:49.362 24277-24324/? D/BluetoothManager: getConnectionState()
11-27 11:16:49.362 24277-24324/? D/BluetoothManager: getConnectedDevices
11-27 11:16:49.367 24277-24324/? D/BluetoothGatt: close()
11-27 11:16:49.367 24277-24324/? D/BluetoothGatt: unregisterApp() - mClientIf=7
11-27 11:16:49.368 8104-8158/? D/BtGatt.GattService: unregisterClient() - clientIf=7
11-27 11:16:49.465 8104-8130/? D/bt_vendor_uart: op for 7
11-27 11:16:49.465 8104-8130/? D/bt_hci_h5: hci_hal_h5 h5_transmit_data, data type: 1
11-27 11:16:49.465 8104-8130/? D/bt_hci_h5: cmd opcode = 0xfc94

这是 btsnoop_hci.cfa 的截图:

enter image description here

//update - 添加文件日志

这里是 log file

//结束更新

我阅读了很多关于这个问题的帖子,但或者没有解决方案,或者提供的解决方案不起作用。

我没有选择,所以我想知道是否有人可以帮助我。有什么想法吗?

最佳答案

Android软件没有任何问题。问题是 BLE radio 链路似乎没有保持连接。您可以使用空气嗅探器来尝试监测空气中的情况;为什么数据包丢失。当然,两个蓝牙 Controller 的链路层中的任何一个也有可能出现异常。我会建议验证硬件是否真的可以工作并且是正确的。

关于android - 蓝牙Gatt : onClientConnectionState() returns status=133,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47510868/

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