RR 间隔的缺失值(BLE / Polar 设备)

Missing value for RR-interval (BLE / Polar device)

我拥有一台 Polar H10 设备,我对心率和 RR 间隔很感兴趣,我使用 Android 的官方蓝牙低功耗 API 读取了这些信息。 Polar 设备每秒发送一个包含心率和 RR 间隔的数据包。现在我已经认识到,在每个这样的包中都有一个心率值,但在某些包中没有 RR-interval 值(RR-interval 的值为-1)。

为什么会这样?是我的设备坏了还是我在实施过程中犯了错误,或者其他人也面临这个问题?

编辑:这是代码。在方法 public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) 中,我从 Polar 设备接收到更改后的值。该方法大约每秒触发一次。然后我解析特征如下:

    public int[] parse(BluetoothGattCharacteristic characteristic) {

        double heartRate = extractHeartRate(c);
        Integer[] interval = extractBeatToBeatInterval(c);

        int[] result = null;
        if (interval != null) {
            result = new int[interval.length + 1];
        } else {
            result = new int[2];
            result[1] = -1;
        }
        result[0] = (int) heartRate;

        if (interval != null) {
            for (int i = 0; i < interval.length; i++) {
                result[i+1] = interval[i];
            }
        }

        return result;
    }


private static double extractHeartRate(
        BluetoothGattCharacteristic characteristic) {

    int flag = characteristic.getProperties();
    Log.d(TAG, "Heart rate flag: " + flag);
    int format = -1;
    // Heart rate bit number format
    if ((flag & 0x01) != 0) {
        format = BluetoothGattCharacteristic.FORMAT_UINT16;
        Log.d(TAG, "Heart rate format UINT16.");
    } else {
        format = BluetoothGattCharacteristic.FORMAT_UINT8;
        Log.d(TAG, "Heart rate format UINT8.");
    }

    final int heartRate = characteristic.getIntValue(format, 1);
    Log.d(TAG, String.format("Received heart rate: %d", heartRate));
    return heartRate;
}

private static Integer[] extractBeatToBeatInterval(
        BluetoothGattCharacteristic characteristic) {

    int flag = characteristic.getIntValue(BluetoothGattCharacteristic.FORMAT_UINT8, 0);
    int format = -1;
    int energy = -1;
    int offset = 1; // This depends on hear rate value format and if there is energy data
    int rr_count = 0;

    if ((flag & 0x01) != 0) {
        format = BluetoothGattCharacteristic.FORMAT_UINT16;
        Log.d(TAG, "Heart rate format UINT16.");
        offset = 3;
    } else {
        format = BluetoothGattCharacteristic.FORMAT_UINT8;
        Log.d(TAG, "Heart rate format UINT8.");
        offset = 2;
    }
    if ((flag & 0x08) != 0) {
        // calories present
        energy = characteristic.getIntValue(BluetoothGattCharacteristic.FORMAT_UINT16, offset);
        offset += 2;
        Log.d(TAG, "Received energy: {}"+ energy);
    }
    if ((flag & 0x16) != 0){
        // RR stuff.
        Log.d(TAG, "RR stuff found at offset: "+ offset);
        Log.d(TAG, "RR length: "+ (characteristic.getValue()).length);
        rr_count = ((characteristic.getValue()).length - offset) / 2;
        Log.d(TAG, "RR length: "+ (characteristic.getValue()).length);
        Log.d(TAG, "rr_count: "+ rr_count);
        if (rr_count > 0) {
            Integer[] mRr_values = new Integer[rr_count];
            for (int i = 0; i < rr_count; i++) {
                mRr_values[i] = characteristic.getIntValue(
                        BluetoothGattCharacteristic.FORMAT_UINT16, offset);
                offset += 2;
                Log.d(TAG, "Received RR: " + mRr_values[i]);
            }
            return mRr_values;
        }
    }
    Log.d(TAG, "No RR data on this update: ");
    return null;
}

parse方法返回的第一个元素是心率,第二个元素是RR间隔。碰巧有时第二个元素是-1(即没有检测到 RR 间隔)。

您的 Polar 设备或您发布的软件没有任何问题。

某些传输的数据包可能缺少 RR 间隔度量,if ((flag & 0x16) != 0) 说明了这种情况。

例如,假设您的设备每秒发送一次心跳测量,而您有 50 次 beats/sec:在某些时间间隔内,RR 间隔未被测量,因为在那一秒内没有检测到心跳(它是一个简化的解释,只是为了明白这一点)。