BLE の onClientConnectionState() - status=22 clientIf=7 エラーを解決する方法 質問する

BLE の onClientConnectionState() - status=22 clientIf=7 エラーを解決する方法 質問する

私はAndroidアプリケーションを使用していますBluetooth 低エネルギー(BLE) を使用して携帯電話に接続します。このアプリケーションは、Galaxy S5 (Android 5.0.1)、Galaxy S6 (Android 6.0) など、ほぼすべての携帯電話で正常に動作しました。ただし、Galaxy Note 3 (Android 5.0.1) では重大な問題が発生します。

関数を呼び出しconnect()、次に を呼び出すとreadCharacteristic()、次のエラーが返されます。

onClientConnectionState() - ステータス=22 クライアントIf=7

関数を呼び出してから約 2 秒後にエラーが発生しますconnect。 を呼び出す前に遅延を設けるなどの解決策を調べました readCharacteristic()が、解決できません。

私の問題を解決する方法はありますか?

皆様ありがとうございました。

これが私のコードです:

 private final BluetoothGattCallback mGattCallback = new BluetoothGattCallback() {
   @Override
   public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
            
     if (newState == BluetoothProfile.STATE_CONNECTED) {               
        mBluetoothGatt.discoverServices();      
     } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {}
     }

     @Override
     public void onServicesDiscovered(BluetoothGatt gatt, int status) {
       if (status == BluetoothGatt.GATT_SUCCESS) {
          try {
            Thread.sleep(500);
            readCharacteristic();
          } catch (InterruptedException e) {
            e.printStackTrace();
          }

       } else {
           Log.w(TAG, "onServicesDiscovered received: " + status);
       }
     }

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

     @Override
     public void onCharacteristicChanged(BluetoothGatt gatt,
                                            BluetoothGattCharacteristic characteristic) {            
     }
 };

 public void readCharacteristic() {
   /*check if the service is available on the device*/
   BluetoothGattService mCustomService = mBluetoothGatt.getService(UUID.fromString("00001c00-d102-11e1-9b23-00025b00123"));
   /*get the read characteristic from the service*/
   BluetoothGattCharacteristic mReadCharacteristic = mCustomService.getCharacteristic(UUID.fromString("00001233-d102-11e1-9b23-00025b00a5a5"));
   mBluetoothGatt.setCharacteristicNotification(mReadCharacteristic, true);
   BluetoothGattDescriptor descriptor = mReadCharacteristic.getDescriptor(
                UUID.fromString(SampleGattAttributes.CLIENT_CHARACTERISTIC_CONFIG));
   descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
   mBluetoothGatt.writeDescriptor(descriptor);
 }

これはBLEに接続するためのフルサービス関数ファイルです

public class ConnectionService extends Service{
    private BluetoothLeService mBluetoothLeService;
    public String mDeviceAddress="0A:1B:6C:22:11:3D";
    private ServiceMonitor serviceMonitor = ServiceMonitor.getInstance();
    private final ServiceConnection mServiceConnection = new ServiceConnection() {

        @Override
        public void onServiceConnected(ComponentName componentName, IBinder service) {           
            mBluetoothLeService = ((BluetoothLeService.LocalBinder) service).getService();
            if (!mBluetoothLeService.initialize()) {
                Log.e(TAG, "Unable to initialize Bluetooth");
            }
            mBluetoothLeService.connect(mDeviceAddress);
        }
        @Override
        public void onServiceDisconnected(ComponentName componentName) {
            mBluetoothLeService = null;
        }
    };

    @Override
    public void onCreate() {
        super.onCreate();        
    }

    @Override
    public IBinder onBind(Intent intent) {
        return null;
    }
    @Override
    public void onDestroy() {
        if(mGattUpdateReceiver!=null) {
            unregisterReceiver(mGattUpdateReceiver);
        }
        if(mServiceConnection!=null) {
            unbindService(mServiceConnection);
        }
    }


    @Override
    public int onStartCommand(Intent intent, int flags, int startId)
    {      
        //If some device is connecting to phone, let disconnect 
        if(mConnected==true) {
            mBluetoothLeService.disconnect();           
        } 
        //If bluetooth is enable    
        if (BleUtils.getBluetoothAdapter(getApplicationContext()).enable()) {
            Intent gattServiceIntent = new Intent(this, BluetoothLeService.class);
            bindService(gattServiceIntent, mServiceConnection, BIND_AUTO_CREATE);
            registerReceiver(mGattUpdateReceiver, makeGattUpdateIntentFilter());
            //Try to reconnect if the connect is not successful
            if (mBluetoothLeService != null) {
                new CountDownTimer(3000,1000) {
                    public void onTick(long millisUntilFinished) {}
                    public void onFinish() {
                        final boolean result = mBluetoothLeService.connect(mDeviceAddress);
                        Log.d(TAG, "Connect request result=" + result);
                    }
                }.start();
            }            
        }
        return START_STICKY;
}

ベストアンサー1

メソッドにはさまざまなパラメーターがありconnectGatt()、API バージョンによって異なります。これは Kotlin コードです。connect メソッドはどこにも見当たりませんが、どこかで connectGatt() を呼び出す必要があることはわかっています。

Build.VERSION.SDK_INT >= Build.VERSION_CODES.M -> bluetoothDevice?.connectGatt(applicationContext, true, mGattCallback, BluetoothDevice.TRANSPORT_LE)

else -> bluetoothDevice?.connectGatt(applicationContext, false, mGattCallback)

おすすめ記事