Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 77a4d168 authored by Gabriel Biren's avatar Gabriel Biren Committed by Android (Google) Code Review
Browse files

Merge "RTT: Add OuiKeyedData List in ranging APIs" into main

parents 40b937be 870da833
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -46,4 +46,5 @@ parcelable RttCapabilities {
  int azBwSupport;
  boolean ntbInitiatorSupported;
  boolean ntbResponderSupported;
  @nullable android.hardware.wifi.common.OuiKeyedData[] vendorData;
}
+1 −0
Original line number Diff line number Diff line
@@ -50,4 +50,5 @@ parcelable RttConfig {
  android.hardware.wifi.RttBw bw;
  long ntbMinMeasurementTime;
  long ntbMaxMeasurementTime;
  @nullable android.hardware.wifi.common.OuiKeyedData[] vendorData;
}
+1 −0
Original line number Diff line number Diff line
@@ -65,4 +65,5 @@ parcelable RttResult {
  long ntbMaxMeasurementTime;
  byte numTxSpatialStreams;
  byte numRxSpatialStreams;
  @nullable android.hardware.wifi.common.OuiKeyedData[] vendorData;
}
+6 −0
Original line number Diff line number Diff line
@@ -18,6 +18,7 @@ package android.hardware.wifi;

import android.hardware.wifi.RttBw;
import android.hardware.wifi.RttPreamble;
import android.hardware.wifi.common.OuiKeyedData;

/**
 * RTT Capabilities.
@@ -78,4 +79,9 @@ parcelable RttCapabilities {
     * Whether IEEE 802.11az Non-Trigger-based (non-TB) responder mode is supported.
     */
    boolean ntbResponderSupported;
    /**
     * Optional vendor-specific parameters. Null value indicates
     * that no vendor data is provided.
     */
    @nullable OuiKeyedData[] vendorData;
}
+6 −0
Original line number Diff line number Diff line
@@ -21,6 +21,7 @@ import android.hardware.wifi.RttPeerType;
import android.hardware.wifi.RttPreamble;
import android.hardware.wifi.RttType;
import android.hardware.wifi.WifiChannelInfo;
import android.hardware.wifi.common.OuiKeyedData;

/**
 * RTT configuration.
@@ -134,4 +135,9 @@ parcelable RttConfig {
     * Reference: IEEE Std 802.11az-2022 spec, section 9.4.2.298 Ranging Parameters element.
     */
    long ntbMaxMeasurementTime;
    /**
     * Optional vendor-specific parameters. Null value indicates
     * that no vendor data is provided.
     */
    @nullable OuiKeyedData[] vendorData;
}
Loading