Android-BlutoothBle,蓝牙中心设备(peripheral)向外围设备(GattServer)连续写入多个Characteristic的注意事项

Posted 懒惰的星期六

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android-BlutoothBle,蓝牙中心设备(peripheral)向外围设备(GattServer)连续写入多个Characteristic的注意事项相关的知识,希望对你有一定的参考价值。

 

新写入一个characteristic时,应该等上一个写入characteristic操作结束后,在回调函数里面得到返回状态过后,再能继续写入下一个characteristic

 

新写入一个characteristic时,

    public static boolean Write_Characteristic_Callback_Success = true;


    Thread t1=new Thread(new Runnable() {
                                        @Override
                                        public void run() {
                                            //上一次回调是否成功,不成功继续等待
                                            while(!Write_Characteristic_Callback_Success){}
                                            //开始写入之前,把Write_Characteristic_Callback_Success置为false
                                            Write_Characteristic_Callback_Success=false;
                                            mBluetoothLeService.writeCharacteristic(finalBluetoothGattCharacteristic);
                                            Log.d(TAG+"setMuscleCharacteristic   ", ""+customMuscleParaList.get(finalK).getMuscleID());
                                        }
                                    });
                                    t1.start();

 

在回调函数里面得到返回状态

        @Override
        public void onCharacteristicWrite(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {

            if(status==BluetoothGatt.GATT_SUCCESS){
                Write_Characteristic_Callback_Success=true;//自定义的全局静态变量,记录上一个写入操作回调函数得到的状态
                broadcastUpdate(ACTION_DATA_WRITE_SUCCESS, characteristic);
            }
        }

 

 

 

参考链接

以上是关于Android-BlutoothBle,蓝牙中心设备(peripheral)向外围设备(GattServer)连续写入多个Characteristic的注意事项的主要内容,如果未能解决你的问题,请参考以下文章

如何在控制中心检测蓝牙真正关闭(或蓝牙开关按钮关闭)

iphone控制中心关闭蓝牙和WiFi,为啥不能彻底关闭,还要到系统关闭?

iPhone12控制中心关闭无线局域网和蓝牙是真的关闭吗

蓝牙BLE协议栈基础知识

基于STM32的无线蓝牙心电监护仪系统设计-毕设课设资料

基于STM32C8T6的智能蓝牙小车控制设计-毕设课设资料