diff options
author | Arc Wang <arcwang@google.com> | 2020-04-28 13:39:55 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2020-04-28 13:39:55 +0000 |
commit | 69a288b6e0d14185deb29decd017fe17bda1a2a5 (patch) | |
tree | 5024646c99fbeaf5abb6edb0ddb2da18dd4e973f /libs | |
parent | 32487070589855d410f68619edc3f04572c2777e (diff) | |
parent | a1f9e2ad44df4a3ca250b733507754f8ee553a0b (diff) |
Merge "Fix verbose logging ScanResults group problem" into rvc-dev
Diffstat (limited to 'libs')
-rw-r--r-- | libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java b/libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java index 59062505f..c5d224e39 100644 --- a/libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java +++ b/libs/WifiTrackerLib/src/com/android/wifitrackerlib/WifiEntry.java @@ -165,14 +165,14 @@ public abstract class WifiEntry implements Comparable<WifiEntry> { public static final int MAX_FREQ_5GHZ = 5900; /** - * Min bound on the 6.0 GHz (802.11ad/ay) WLAN channels. + * Min bound on the 6.0 GHz (802.11ax) WLAN channels. */ - public static final int MIN_FREQ_6GHZ = 5700; + public static final int MIN_FREQ_6GHZ = 5925; /** - * Max bound on the 6.0 GHz (802.11ad/ay) WLAN channels. + * Max bound on the 6.0 GHz (802.11ax) WLAN channels. */ - public static final int MAX_FREQ_6GHZ = 7100; + public static final int MAX_FREQ_6GHZ = 7125; /** * Max ScanResult information displayed of Wi-Fi Verbose Logging. |