From 309519472c47742c022b82a3d18ee26aaab68538 Mon Sep 17 00:00:00 2001 From: Andrew Beltrano Date: Tue, 28 Nov 2023 20:15:48 -0700 Subject: [PATCH 1/2] Add 6GHz band. --- protocol/protos/WifiCore.proto | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/protocol/protos/WifiCore.proto b/protocol/protos/WifiCore.proto index 03097281..370cf1e5 100644 --- a/protocol/protos/WifiCore.proto +++ b/protocol/protos/WifiCore.proto @@ -7,7 +7,14 @@ enum RadioBand { RadioBandUnknown = 0; RadioBand2400MHz = 1; + RadioBand2_4GHz = 1; + RadioBandTwoPoint4GHz = 1; RadioBand5000MHz = 2; + RadioBand5_0GHz = 2; + RadioBandFiveGHz = 2; + RadioBand6000MHz = 3; + RadioBand6_0GHz = 3; + RadioBandSixGHz = 3; } enum Dot11PhyType From 5fd49cd5021450a3cb527ccbb527f06c6ae50afb Mon Sep 17 00:00:00 2001 From: Andrew Beltrano Date: Tue, 28 Nov 2023 20:15:48 -0700 Subject: [PATCH 2/2] Add 6GHz band. --- protocol/protos/WifiCore.proto | 2 ++ 1 file changed, 2 insertions(+) diff --git a/protocol/protos/WifiCore.proto b/protocol/protos/WifiCore.proto index 370cf1e5..85964689 100644 --- a/protocol/protos/WifiCore.proto +++ b/protocol/protos/WifiCore.proto @@ -5,6 +5,8 @@ package Microsoft.Net.Wifi; enum RadioBand { + option allow_alias = true; + RadioBandUnknown = 0; RadioBand2400MHz = 1; RadioBand2_4GHz = 1;