Android BLE BluetoothGattDescriptor проблема записи дескриптора - PullRequest
0 голосов
/ 06 сентября 2018

Я создаю приложение, которое связывается с BLE. Мне нужно написать в BluetoothGattDescriptor значение int. Если я делаю это один раз, все работает отлично, но если я хочу записать в BluetoothGattDescriptor (в отдельных характеристиках) для каждого из них, я получаю значение false в методе mBluetoothGatt.writeDescriptor(descriptor), но только для второй характеристики, впервые получаю true . Я заметил, что если я установлю задержку между ними примерно на 1,3 секунды, то получу истину в обеих попытках. Кто-то сталкивается с той же проблемой?

Здесь я отправляю регистрацию для уведомлений с задержкой:

            Handler handler = new Handler();

    registeredToNotification(BLEGattAttributes.UUID_STERN_DATA__REMOTE_CONTROLS_SETTINGS_SERVICE,
            BLEGattAttributes.UUID_STERN_DATA_SETTINGS_REMOTES_CONTROL_READ_REQUEST_DELAY_IN, SettingsProperties.DELAY_IN_REGISTER_NOTIFICATION_REQUEST);

    handler.postDelayed(() -> registeredToNotification(BLEGattAttributes.UUID_STERN_DATA__REMOTE_CONTROLS_SETTINGS_SERVICE,
            BLEGattAttributes.UUID_STERN_DATA_SETTINGS_REMOTES_CONTROL_READ_REQUEST_DELAY_OUT, SettingsProperties.DELAY_OUT_REGISTER_NOTIFICATION_REQUEST), 1300);


    handler.postDelayed(() -> registeredToNotification(BLEGattAttributes.UUID_STERN_DATA__REMOTE_CONTROLS_SETTINGS_SERVICE,
            BLEGattAttributes.UUID_STERN_DATA_SETTINGS_REMOTES_CONTROL_READ_REQUEST_SHORT_WASH, SettingsProperties.SHORT_FLUSH_REGISTER_NOTIFICATION_REQUEST), 2600);


    handler.postDelayed(() -> registeredToNotification(BLEGattAttributes.UUID_STERN_DATA__REMOTE_CONTROLS_SETTINGS_SERVICE,
            BLEGattAttributes.UUID_STERN_DATA_SETTINGS_REMOTES_CONTROL_READ_REQUEST_LONG_WASH, SettingsProperties.LONG_FLUSH_REGISTER_NOTIFICATION_REQUEST), 3900);


    handler.postDelayed(() -> registeredToNotification(BLEGattAttributes.UUID_STERN_DATA__REMOTE_CONTROLS_SETTINGS_SERVICE,
            BLEGattAttributes.UUID_STERN_DATA_SETTINGS_REMOTES_CONTROL_READ_REQUEST_SECURITY_TIME, SettingsProperties.SECURITY_TIME_REGISTER_NOTIFICATION_REQUEST), 5200);

Вот журнал для этих команд:

 D/IDTEST: ............................setRegisterToNotification
 D/IDTEST: ......setRegisterToNotification ID = 53
 D/IDTEST: ............................Is descriptor registered? = true
 D/IDTEST: ............................Is Notification registered? = true
 D/IDTEST: ............................setRegisterToNotification
 D/IDTEST: ......setRegisterToNotification ID = 56
 D/IDTEST: ............................Is descriptor registered? = true
 D/IDTEST: ............................Is Notification registered? = true
 D/IDTEST: ............................setRegisterToNotification
 D/IDTEST: ......setRegisterToNotification ID = 63
 D/IDTEST: ............................Is descriptor registered? = true
 D/IDTEST: ............................Is Notification registered? = true
 D/IDTEST: ............................setRegisterToNotification
 D/IDTEST: ......setRegisterToNotification ID = 60
 D/IDTEST: ............................Is descriptor registered? = true
 D/IDTEST: ............................Is Notification registered? = true
 D/IDTEST: ............................setRegisterToNotification
 D/IDTEST: ......setRegisterToNotification ID = 66
 D/IDTEST: ............................Is descriptor registered? = true
 D/IDTEST: ............................Is Notification registered? = true

Метод setRegisterToNotification ():

public void setRegisterToNotification(BLEDeviceConnectionManager.DataClass dataClass) {

        Log.d("IDTEST", "............................setRegisterToNotification");
        Log.d("IDTEST", "......setRegisterToNotification ID = " + dataClass.getRequestID());


        BluetoothGattCharacteristic characteristic = mBluetoothGatt.getService(dataClass.getServiceUUid()).getCharacteristic(dataClass.getCharacteristicsUUid());

        BluetoothGattDescriptor descriptor = characteristic.getDescriptors().get(0);

        if (descriptor != null) {
            descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
            descriptor.setValue(BleDataParser.getInstance().intTobyteArray(dataClass.getRequestID()));
            boolean isRegistered = mBluetoothGatt.writeDescriptor(descriptor);

            Log.d("IDTEST", "............................Is descriptor registered? = " + isRegistered);

        }

        boolean isRegistered = mBluetoothGatt.setCharacteristicNotification(characteristic, dataClass.isEnableNotification());

        Log.d("IDTEST", "............................Is Notification registered? = " + isRegistered);


    }

1 Ответ

0 голосов
/ 06 сентября 2018

Вам нужно дождаться обратного вызова дескриптора, прежде чем писать снова. Это можно найти в BluetoothGattCallback # onDescriptorWrite , используемом при вызове connectGatt .

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...