4

我正在三星 ACE3 上开发一个应用程序来连接蓝牙低功耗设备。由于三星不希望ACE3升级到Android 4.3,所以我需要使用三星ble api。目前,连接、读取数据、发送数据和从一个特性获取通知都可以。但是,当我为多个特征启用通知时,只有第一个启用的特征才能获得通知。有人有同样的问题吗?感谢你的帮助!

以下代码是启用连接通知

 if (mBluetoothGatt != null && device != null) {
        BluetoothGattService pucService = mBluetoothGatt.getService(device, PROFILE_UART_CONTROL_SERVICE);
        if (pucService == null) {
            showMessage("PUC service not found!");
            return;
        }

        BluetoothGattCharacteristic motion = pucService.getCharacteristic(MOTION_READ);
        if (motion == null) {
            showMessage("charateristic not found!");
            return;
        }
        enableNotification(true, motion);            

        BluetoothGattCharacteristic voltage = pucService.getCharacteristic(VOLTAGE_READ);
        if (voltage == null) {
            showMessage("charateristic not found!");
            return;
        }
        enableNotification(true, voltage);


        BluetoothGattCharacteristic pressure = pucService.getCharacteristic(PRESSURE_READ);
        if (pressure == null) {
            showMessage("charateristic not found!");
            return;
        }
        enableNotification(true, pressure);
    }

以下是 enableNotification 方法:

    public boolean enableNotification(boolean enable, BluetoothGattCharacteristic characteristic) {
    if (mBluetoothGatt == null)
        return false;
    if (!mBluetoothGatt.setCharacteristicNotification(characteristic, enable))
        return false;

    BluetoothGattDescriptor clientConfig = characteristic.getDescriptor(CCC);
    if (clientConfig == null)
        return false;

    if (enable) {
         Log.i(TAG,"enable notification");
        clientConfig.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
    } else {
        Log.i(TAG,"disable notification");
        clientConfig.setValue(BluetoothGattDescriptor.DISABLE_NOTIFICATION_VALUE);
    }
    return mBluetoothGatt.writeDescriptor(clientConfig);
}
4

1 回答 1

3

刚刚意识到这个问题已在 miznick 在这篇文章中的第二个答案中得到解决。主要是因为三星 BLE Api 的行为是同步的。基本上,api 一次只能处理 1 条 Gatt 指令,例如写/读特性、w/r 描述符等。通过调用 w/r GATT 方法,就像将 Gatt 指令附加到等待执行的系统中一样。执行后,系统会调用相关的回调方法,如onCharacterWrite、OnDescriptorWrite等。只有在这一点上或之后,我们才应该调用另一个 Gatt w/r 方法。代码在 miznick 的帖子中给出。

这篇文章也有助于理解 Samsung Ble api 的行为。请查看三星 BLE 官方网站中的指南和提示。

于 2013-11-14T08:10:06.463 回答