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

Commit 5d64c92c authored by Mahesh KKV's avatar Mahesh KKV Committed by Android (Google) Code Review
Browse files

Merge "Make TWT wake interval type as long" into main

parents d635e372 f58c8e09
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -40,6 +40,6 @@ parcelable TwtCapabilities {
  boolean isFlexibleTwtScheduleSupported;
  int minWakeDurationMicros;
  int maxWakeDurationMicros;
  int minWakeIntervalMicros;
  int maxWakeIntervalMicros;
  long minWakeIntervalMicros;
  long maxWakeIntervalMicros;
}
+2 −2
Original line number Diff line number Diff line
@@ -37,6 +37,6 @@ parcelable TwtRequest {
  int mloLinkId;
  int minWakeDurationMicros;
  int maxWakeDurationMicros;
  int minWakeIntervalMicros;
  int maxWakeIntervalMicros;
  long minWakeIntervalMicros;
  long maxWakeIntervalMicros;
}
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ parcelable TwtSession {
  int sessionId;
  int mloLinkId;
  int wakeDurationMicros;
  int wakeIntervalMicros;
  long wakeIntervalMicros;
  android.hardware.wifi.TwtSession.TwtNegotiationType negotiationType;
  boolean isTriggerEnabled;
  boolean isAnnounced;
+2 −2
Original line number Diff line number Diff line
@@ -48,9 +48,9 @@ parcelable TwtCapabilities {
    /**
     * Minimum TWT wake interval in microseconds.
     */
    int minWakeIntervalMicros;
    long minWakeIntervalMicros;
    /**
     * Maximum TWT wake interval in microseconds.
     */
    int maxWakeIntervalMicros;
    long maxWakeIntervalMicros;
}
+2 −2
Original line number Diff line number Diff line
@@ -36,9 +36,9 @@ parcelable TwtRequest {
    /**
     * Minimum TWT wake interval in microseconds.
     */
    int minWakeIntervalMicros;
    long minWakeIntervalMicros;
    /**
     * Maximum TWT wake interval in microseconds.
     */
    int maxWakeIntervalMicros;
    long maxWakeIntervalMicros;
}
Loading