BluetoothGatt:onClientConnectionState() 返回状态=133
Posted
技术标签:
【中文标题】BluetoothGatt:onClientConnectionState() 返回状态=133【英文标题】:BluetoothGatt: onClientConnectionState() returns status=133 【发布时间】:2017-11-27 12:19:52 【问题描述】:场景是:
我有一个android dongle 运行我的应用程序,而在另一边我有一个连接到 esp8266 的 HM10 LE 蓝牙。
我正在尝试通过蓝牙将安卓加密狗通过我的应用程序连接到 HM10。
我已经在几周内成功地做到了这一点,甚至将安卓加密狗与不同的 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 settings->Wireless&Networks->More->Network settings reset中清理缓存,但是做了之后问题依旧存在。
请在下面找到日志:
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 的截图:
//更新-添加文件日志
这里是log file
//结束更新
我阅读了很多关于此问题的帖子,但或没有解决方案,或者提供的解决方案不起作用。
我没有选择,所以我想知道是否有人可以帮助我。有什么想法吗?
【问题讨论】:
你能上传 hci 日志吗? @Emil 我已经用日志文件更新了帖子。感谢您的帮助。 【参考方案1】:Android 软件没有任何问题。问题是 BLE 无线电链路似乎没有保持连接。您可以使用空气嗅探器来尝试监测空气中的情况;为什么数据包丢失。当然,两个蓝牙控制器的链路层中的任何一个也有可能出现异常。我会建议验证硬件是否真的工作并且是正确的。
【讨论】:
奇怪的是 HM10 硬件与另一个 android 硬件一起工作,这意味着如果我与其他 android dongle 连接成功连接。话虽如此,您还提到“两个蓝牙控制器中的任何一个的链接层行为不端”。我相信问题是围绕这个问题。除了检查空中数据包之外,还有什么建议检查这个吗? 并非如此。因为据我所知,没有蓝牙芯片有任何调试输出,这是唯一的方法。使用空气嗅探器,您会看到哪个设备没有正确响应。以上是关于BluetoothGatt:onClientConnectionState() 返回状态=133的主要内容,如果未能解决你的问题,请参考以下文章
BluetoothGatt:onClientConnectionState() 返回状态=133
如何为所有连接的设备同时执行 BluetoothGatt 读写请求?
BluetoothGatt 显示 10,000 个相同的服务特征
Android BluetoothGatt setCharacteristicNotification 仅设置第一个特征