diff options
author | Arc Wang <arcwang@google.com> | 2020-04-28 14:08:14 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2020-04-28 14:08:14 +0000 |
commit | 1ff9259c149d0e857fb212358c0e1855f7835bcc (patch) | |
tree | 1a0268b4decfb79f1405301164116394c4902f58 /libs | |
parent | cf3d84c54f94894eaefd70b8f06732b4f28b746e (diff) | |
parent | c80a09fea495e46276f4db04c5bf05c916bc5e20 (diff) |
Merge "Fix verbose logging ScanResults group problem" into rvc-dev am: 69a288b6e0 am: c80a09fea4
Change-Id: I4cd1b75527152ad79eaada518c84e741b97635d0
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. |