How to Write consecutive Characteristic fast and stable for BLE in Android?

两盒软妹~` 提交于 2019-12-03 16:25:04

问题


I am developing BLE in Android , I can scan, connected and write characteristic to to the BLE device.

I call the following function to pass BluetoothGatt and characteristic to AsyncTask when click the Button.

write_btn.setOnClickListener(new View.OnClickListener() {
     @Override
     public void onClick(View v) {
        new WriteCharacteristic(mBluetoothGatt , HueCharacteristic).execute();
     }
});

The code of write characteristic is like the following:

private class WriteCharacteristic extends AsyncTask<String, Void, String> {

        public BluetoothGatt mGatt;
        public BluetoothGattCharacteristic mCharacteristic;

        public WriteCharacteristic(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic){
            mGatt = gatt;
            mCharacteristic = characteristic;
        }

        @Override
        protected String doInBackground(String... urls) {
            mGatt.writeCharacteristic(mCharacteristic);
            return null;
        }
    }

But I try to click the button consecutive, it seems the Android did not write every characteristic to the BLE device.

If I click the button consecutive for 5 times , it will loss 1~3 times. It only write characteristic to BLE device for two times.

Question:

Is there any better way to write characteristic consecutive and stable to BLE device for Android?


回答1:


The read/write characteristic system in Android's Bluetooth stack isn't good at queueing up multiple operations. You need to wait for operations to complete before sending along another one. In addition, since your code is using AsyncTask, you will get parallel execution of tasks on some devices, so even the requests aren't being serialized when you repeatedly hit the button.

To get stable results from the framework, you will need to queue up those requests yourself and wait for BluetoothGattCallback onCharacteristicWrite() to trigger before sending the next command. Your code needs to synchronize all access to the GATT object, so that the next writeCharacteristic() never comes until the completion callback fires for the previous request.



来源:https://stackoverflow.com/questions/28493281/how-to-write-consecutive-characteristic-fast-and-stable-for-ble-in-android

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