mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
Merge "Make TWT wake interval type as long" into main
This commit is contained in:
@@ -40,6 +40,6 @@ parcelable TwtCapabilities {
|
||||
boolean isFlexibleTwtScheduleSupported;
|
||||
int minWakeDurationMicros;
|
||||
int maxWakeDurationMicros;
|
||||
int minWakeIntervalMicros;
|
||||
int maxWakeIntervalMicros;
|
||||
long minWakeIntervalMicros;
|
||||
long maxWakeIntervalMicros;
|
||||
}
|
||||
|
||||
@@ -37,6 +37,6 @@ parcelable TwtRequest {
|
||||
int mloLinkId;
|
||||
int minWakeDurationMicros;
|
||||
int maxWakeDurationMicros;
|
||||
int minWakeIntervalMicros;
|
||||
int maxWakeIntervalMicros;
|
||||
long minWakeIntervalMicros;
|
||||
long maxWakeIntervalMicros;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
@@ -46,7 +46,7 @@ parcelable TwtSession {
|
||||
/**
|
||||
* Time interval in microseconds between two successive TWT service periods.
|
||||
*/
|
||||
int wakeIntervalMicros;
|
||||
long wakeIntervalMicros;
|
||||
|
||||
/**
|
||||
* TWT negotiation type.
|
||||
|
||||
Reference in New Issue
Block a user