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

Commit f8e4a123 authored by Gabriel Biren's avatar Gabriel Biren
Browse files

Address ANAPIC feedback for Supplicant V3

and Vendor HAL V2.

Comments addressed include:
- Indicate version where methods were
  deprecated.
- Bitmasks should use an int rather
  than an enum.
- Use 'us' suffix instead of 'micros'
  for consistency with the rest of
  the interface.

Bug: 317404786
Test: m
Change-Id: I026479aaa3f358913f61c6505ff9dccb0edc5ae8
parent e3339a65
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -42,8 +42,8 @@ parcelable RttCapabilities {
  android.hardware.wifi.RttPreamble preambleSupport;
  android.hardware.wifi.RttBw bwSupport;
  byte mcVersion;
  android.hardware.wifi.RttPreamble azPreambleSupport;
  android.hardware.wifi.RttBw azBwSupport;
  int azPreambleSupport;
  int azBwSupport;
  boolean ntbInitiatorSupported;
  boolean ntbResponderSupported;
}
+4 −4
Original line number Diff line number Diff line
@@ -38,8 +38,8 @@ parcelable TwtCapabilities {
  boolean isTwtResponderSupported;
  boolean isBroadcastTwtSupported;
  boolean isFlexibleTwtScheduleSupported;
  int minWakeDurationMicros;
  int maxWakeDurationMicros;
  long minWakeIntervalMicros;
  long maxWakeIntervalMicros;
  int minWakeDurationUs;
  int maxWakeDurationUs;
  long minWakeIntervalUs;
  long maxWakeIntervalUs;
}
+4 −4
Original line number Diff line number Diff line
@@ -35,8 +35,8 @@ package android.hardware.wifi;
@VintfStability
parcelable TwtRequest {
  int mloLinkId;
  int minWakeDurationMicros;
  int maxWakeDurationMicros;
  long minWakeIntervalMicros;
  long maxWakeIntervalMicros;
  int minWakeDurationUs;
  int maxWakeDurationUs;
  long minWakeIntervalUs;
  long maxWakeIntervalUs;
}
+2 −2
Original line number Diff line number Diff line
@@ -36,8 +36,8 @@ package android.hardware.wifi;
parcelable TwtSession {
  int sessionId;
  int mloLinkId;
  int wakeDurationMicros;
  long wakeIntervalMicros;
  int wakeDurationUs;
  long wakeIntervalUs;
  android.hardware.wifi.TwtSession.TwtNegotiationType negotiationType;
  boolean isTriggerEnabled;
  boolean isAnnounced;
+1 −1
Original line number Diff line number Diff line
@@ -38,6 +38,6 @@ parcelable TwtSessionStats {
  int avgRxPktCount;
  int avgTxPktSize;
  int avgRxPktSize;
  int avgEospDurationMicros;
  int avgEospDurationUs;
  int eospCount;
}
Loading