diff options
author | Arc Wang <arcwang@google.com> | 2020-04-27 15:50:34 +0800 |
---|---|---|
committer | Arc Wang <arcwang@google.com> | 2020-04-27 15:50:34 +0800 |
commit | a1f9e2ad44df4a3ca250b733507754f8ee553a0b (patch) | |
tree | e9579b692e9652df2593451c0b9db4666e89789c /libs | |
parent | fc9e8316cd8b3f97e994815f5fe692c894f38e59 (diff) |
Fix verbose logging ScanResults group problem
Wi-Fi 6GHZ is 802.11ax, it's frequency is 5925~7125 MHZ
Bug: 154529628
Test: compile
Change-Id: I3d9596a8e0ef1b8f9d25f2ed8c5d92627d802ca9
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 989c764aa..1396cddf3 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. |