Android ble device is not disconnecting sometime

给你一囗甜甜゛ 提交于 2019-12-07 13:07:00

问题


  • After doing disconnecte ble device i am getting disconnect callback . but some time still it is not disconnected . in some layer connection state is maintaining . so that i am not able to do reconnect.

i have tested in android 5 & android 6. in HTC One A9, Moto x play, Moto G4

  • If i do bluetooth turn on off. then again disconnect callback is coming and device is disconnecting actually. -Please give some suggestion for resolve issue.
  • I am doing below steps for ble operation
  • 1.Discover ble device.
    1. Connect to device.
    2. onConnectionStateChange (connected) i am doing gatt.discoverServices()
    3. onServicesDiscovered callback i am reading characteristics 5.onCharacteristicRead callback i am doing write characteristics. 6.onCharacteristicWrite call back i am doing gatt.disconnect()
    4. onConnectionStateChange (disconnected) i am doing gatt.close()

In this full process in background device scanning is going on.


回答1:


this problem can be connected with not calling stopScan() method. see comment from SoroushA Totally Disconnect a Bluetooth Low Energy Device




回答2:


You need to ensure that you connect to your device no more than once. I found that without adding your own protection, you can inadvertently have multiple connections with one device (that is multiple BluetoothGatt objects in existence) simultaneously. You can communicate with the device via any of these BluetoothGatt objects, so you don't notice the problem at that point. But when you try to disconnect you (erroneously) leave connections open.

To remove this risk you need code roughly like this:

BluetoothGatt mBluetoothGatt;
private BluetoothAdapter.LeScanCallback mLeScanCallback = new BluetoothAdapter.LeScanCallback() {
    @Override
    public void onLeScan(BluetoothDevice device, int rssi, byte[] scanRecord) {            
        if (device != null) {
            Log.d(TAG, "LeScanCallback!!!!  device " + device.getAddress());

            boolean foundDevice = false;

            if (device.getName() != null) {
                Log.d(TAG, "LeScanCallback!!!!  " + device.getName());
                // Put your logic here!
                if (device.getName().compareTo("YOUR_DEVICE") == 0) {
                    Log.d(TAG, "Found device by name");
                    foundDevice = true;
                }
                else {
                    Log.d(TAG,"Found " + device.getName());
                }
            }

            if(mBluetoothGatt == null && foundDevice) {
                mBluetoothGatt = device.connectGatt(getApplicationContext(), false, mGattCallback);
                // Make sure to handle failure cases in your callback!

                Log.d(TAG, "Stopping scan."); //Appropriate only if you want to find and connect just one device.
                mBluetoothAdapter.stopLeScan(this);
            }
        }
    }
};


来源:https://stackoverflow.com/questions/37653487/android-ble-device-is-not-disconnecting-sometime

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!