gpt4 book ai didi

java - BLE Android - 未调用 onConnectionStateChange

转载 作者:IT老高 更新时间:2023-10-28 23:13:05 33 4
gpt4 key购买 nike

我在尝试连接外围设备时遇到问题。有时回调 onConnectionStateChange(...) 不会在 BluetoothDevice#connectGatt(...) 之后调用。我想要实现的是由用户操作触发的快速和短连接。

这种情况大约每 10 次发生 1 次,无需事先采取具体行动。它持续大约 20 到 30 秒,或者直到应用程序被终止并重新打开。我遵循的正常步骤顺序是:

  1. 扫描设备以查找外围设备。
  2. 调用BluetoothDevice#connectGatt(...)。如果连接时间超过 1 秒,则表示连接“卡住”,因此无法连接,因此再次调用 BluetoothDevice#connectGatt(...)。此操作限制为 5 次尝试。
  3. onConnectionStateChange(...)newState CONNECTED 调用并开始服务发现。
  4. 其余的操作执行没有问题。
  5. 断开连接后调用BluetoothGatt#close()

问题出现在第3点。有时onConnectionStateChange(...)没有被调用。我注意到大多数时候问题始于特定行为。在调用 BluetoothDevice#connectGatt(...) 后,onConnectionStateChange(...) 会在 newState CONNECTED 的情况下被调用,但之后几乎立即(~ 40 毫秒)再次调用 newStatus DISCONNECTED。由于状态变化的时间很短,我可以推断该设备甚至没有尝试建立连接并将状态更改为 DISCONNECTED。问题在以下时间结束:

  1. 20-30 秒过去了。在此期间,永远不会调用 onConnectionStateChange(...)。当问题结束时,onConnectionStateChange(...) 被调用应用程序尝试连接的次数。例如,如果 BluetoothDevice#connectGatt(...) 被调用 15 次,onConnectionStateChange(...) 被调用 15 次 newState等于断开连接。这很奇怪,因为在任何这些连接尝试中,状态都不会更改为 CONNECTED。
  2. 应用被终止并重新启动。

此错误发生在 SDK18 和 SDK 21 中。

@Override
public void onLeScan(final BluetoothDevice device, int rssi, byte[] scanRecord) {
String deviceName = device.getName();
if (deviceName == null) return;
Log.d("BLUETOOTH CONNECTION", "Device found: " + device.getName());
if (mMode == SCAN_MODE) {
mListener.deviceFound(device, rssi, scanRecord);
}
else {
mDevices.put(device.hashCode(), device);
stopScan();
// Samsung devices with SDK 18 or 19 requires that connectGatt is called in main thread.
mHandler.post(new Runnable() {
@Override
public void run() {
Log.d("BLUETOOTH CONNECTION", "Executing first device.connectGatt()");
BluetoothGatt gatt = device.connectGatt(mContext, false, mGattCallback);
retryIfNecessary(device, gatt);
mTryingToConnect = true;
}
});
}
}
private void retryIfNecessary(final BluetoothDevice device, final BluetoothGatt gatt) {
if (isRetryLimitReached()) {
Log.d("BLUETOOTH CONNECTION", "Try count limit reached");
finishConnection(gatt);
mRetryCount = 0;
mListener.error(TIMEOUT);
return;
}
mRetryCount++;
mHandler.postDelayed(new Runnable() {
@Override
public void run() {
Log.d("BLUETOOTH CONNECTION", "Check if it is frozen.");
if (isWorking()) {
Log.d("BLUETOOTH CONNECTION", "Frozen, create new connection.");
BluetoothGatt gatt = device.connectGatt(mContext, false, mGattCallback);
retryIfNecessary(device, gatt);
}
}
}, RETRY_INTERVAL_MS);
}
    @Override
public void onConnectionStateChange(final BluetoothGatt gatt, int status, int newState) {
Log.d("BLUETOOTH CONNECTION", "On connection state changed. Device: "+ gatt.getDevice().getAddress());
if (!mConnected && BluetoothGatt.STATE_CONNECTED == newState) {
Log.d("BLUETOOTH CONNECTION", "Connected");
mTryingToConnect = false;
mTryingToDiscoverServices = true;
mConnected = true;
gatt.discoverServices();
}
else if(BluetoothGatt.STATE_DISCONNECTED == newState) {
Log.d("BLUETOOTH CONNECTION", "Disconnected and closing gatt.");
mConnected = false;
gatt.close();
if (!mConnectionFinished && mRetryCount == 0) {
finishConnection(gatt);
}
}
}

我认为外设不相关,因为iOS应用程序始终可以连接而没有这个问题。

有什么想法吗?提前致谢。

编辑!

This回答说:

Direct connection has interval of 60ms and window of 30ms so connections complete much faster. Additionally there can only be one direct connection request pending at a time and it times out after 30 seconds. onConnectionStateChange() gets called with state=2, status=133 to indicate this timeout.

因此,在这 30 秒的时间间隔内,有一个未决的连接请求,并在 30 秒后超时。这不太可能,但是,我能做些什么来缩短这个时间吗?或者也许有我没有看到的连接失败的解释。谢谢。

编辑 02/03/2016

可能有帮助的新信息。问题开始时(在使用 newState=CONNECTED 调用约 40 毫秒后使用 newState=DISCONNECTED 调用 onConnectionStateChange(...) 时) ,状态为 62 = 0x03E。望 here该状态码表示 GATT_CONN_FAIL_ESTABLISH。当我检测到此状态时,我正在关闭 gatt 连接,但问题仍然存在。我也试过断开和关闭。想法?谢谢。

最佳答案

如果有人遇到类似问题,问题最终通过更改外围设备(arduino)使用的 BLE 芯片解决。在此更改之前,我发现的一种解决方法是在每次连接后关闭和打开 BLE。解决方案并不完美,但连接率提高了很多。

关于java - BLE Android - 未调用 onConnectionStateChange,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35103701/

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