其他分享
首页 > 其他分享> > BLE Android API 18状态141

BLE Android API 18状态141

作者:互联网

我进行设备扫描.我的Nexus 7找到了设备.在尝试连接到设备后,

public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {}

我的状态= 141.
此代码是什么意思?我在文档中找不到此代码.
之后,该连接不存在,也没有发现服务.
也许有人遇到同样的问题?

解决方法:

https://android.googlesource.com/platform/external/bluetooth/bluedroid/+/android-4.3_r1.1/stack/include/gatt_api.h

状态141应该为GATT_ENCRYPED_NO_MITM,尽管根据我的经验,由于完全不相关的原因,我已收到此状态.

以我的经验,如果您建立了一个gatt连接,并在接收onConnectionStateChange回调之前将其关闭(BluetoothGatt.close()),那么您将收到状态= 141的onConnectionStateChange.

标签:bluetooth-lowenergy,android
来源: https://codeday.me/bug/20191030/1968360.html