Android BLE设备收到的结果非常不规律

时间:2015-12-13 04:56:15

标签: android bluetooth bluetooth-lowenergy android-bluetooth

我的灯塔(SensorTag CC2541)是一个广告客户,每秒播放10次信息。

我的Android应用使用BluetoothLeScanner进行扫描。大多数情况下,我BluetoothLeScanner注册的每个扫描结果之间的时间约为0.1秒到0.6秒,这完全没问题。但有时(每5秒钟)每次扫描结果之间的时间超过2秒。有时最多5个。这使我的应用程序关闭,因为我需要快速检测信标。

我不进行批量扫描,只需处理每个扫描结果。

我尝试通过创建自己的scanSettings并强制reportDelay为0并将扫描模式强制为低延迟来解决这个非常规问题。但是,当我使用下面的代码实现它时,我的扫描仪只会接收每个信标ONCE。但是当使用mLeScanner.startScan(scanCallback)而没有scanSettings时,我会从同一个信标中获得几个结果(尽管如上所述,间隔不一致)。有没有人知道这个问题可能是由什么造成的?

BluetoothManager bluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
BluetoothAdapter mBluetoothAdapter = bluetoothManager.getAdapter();
BluetoothLeScanner mLeScanner = mBluetoothAdapter.getBluetoothLeScanner();

ScanSettings.Builder scanSettingsBuilder = new ScanSettings.Builder();
scanSettingsBuilder.setScanMode(ScanSettings.SCAN_MODE_LOW_LATENCY);
scanSettingsBuilder.setReportDelay(0);
scanSettingsBuilder.setCallbackType(ScanSettings.CALLBACK_TYPE_ALL_MATCHES);
ScanSettings scanSettings = scanSettingsBuilder.build();

ScanCallback scanCallback = new ScanCallback() {
    @Override
    public void onScanResult(int callbackType, ScanResult result) {
        super.onScanResult(callbackType, result);
        //Handle result
    }

    @Override
    public void onBatchScanResults(List<ScanResult> results) {
        super.onBatchScanResults(results);
        //Not used, any code I put here never gets run
    }

    @Override
    public void onScanFailed(int errorCode) {
        super.onScanFailed(errorCode);
    }
};

mLeScanner.startScan(null, scanSettings, scanCallback);

结果显示callbackType = 1,当我在mLeScanner.startScan(....)之前记录时,scanSettings也是这样做的,所以据我所知,这不是问题。

更新:使用scanSettings时似乎只扫描一次的问题是因为我的信标启用了可连接模式。我明天会尝试禁用它们。

但是,覆盖扫描设置会不会有助于我的违规情况?

0 个答案:

没有答案