From 211211ba9904f4b97c577b8a72565a8f24f1629b Mon Sep 17 00:00:00 2001 From: jitendracandela Date: Mon, 10 Jan 2022 08:21:40 +0530 Subject: [PATCH] modified set_radio_config method Signed-off-by: jitendracandela --- libs/controller/controller_2x/controller.py | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/libs/controller/controller_2x/controller.py b/libs/controller/controller_2x/controller.py index 695f95f7a..7e4ceedd5 100644 --- a/libs/controller/controller_2x/controller.py +++ b/libs/controller/controller_2x/controller.py @@ -434,17 +434,10 @@ class UProfileUtility: def set_radio_config(self, radio_config=None, DFS = False, channel=None, bw=None): if DFS: - self.base_profile_config["radios"].append({ - "band": "2G", - "country": "US", - # "channel-mode": "HE", - "channel-width": 40, - # "channel": 11 - }) self.base_profile_config["radios"].append({ "band": "5G", - "country": "US", - # "channel-mode": "HE", + "country": "CA", + "channel-mode": "VHT", "channel-width": bw, "channel": channel })