From 06ffee27b1dc80da359addd6e169ec1dec2cd891 Mon Sep 17 00:00:00 2001 From: Adam Capparelli Date: Mon, 18 Aug 2025 13:15:49 -0400 Subject: [PATCH 1/2] Add HaLow to wifi band enums. Signed-off-by: Adam Capparelli --- src/framework/ConfigurationValidator.cpp | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/src/framework/ConfigurationValidator.cpp b/src/framework/ConfigurationValidator.cpp index 155fb15d..01272027 100644 --- a/src/framework/ConfigurationValidator.cpp +++ b/src/framework/ConfigurationValidator.cpp @@ -552,7 +552,8 @@ static std::string DefaultAPSchema = R"foo( "5G", "5G-lower", "5G-upper", - "6G" + "6G", + "HaLow" ] }, "bandwidth": { @@ -2312,7 +2313,8 @@ static std::string DefaultAPSchema = R"foo( "5G", "5G-lower", "5G-upper", - "6G" + "6G", + "HaLow" ] } }, @@ -3745,7 +3747,8 @@ static std::string DefaultAPSchema = R"foo( "5G", "5G-lower", "5G-upper", - "6G" + "6G", + "HaLow" ] } }, @@ -4895,7 +4898,8 @@ static std::string DefaultSWITCHSchema = R"foo( "5G", "5G-lower", "5G-upper", - "6G" + "6G", + "HaLow" ] }, "bandwidth": { @@ -6536,7 +6540,8 @@ static std::string DefaultSWITCHSchema = R"foo( "5G", "5G-lower", "5G-upper", - "6G" + "6G", + "HaLow" ] } }, @@ -7759,7 +7764,8 @@ static std::string DefaultSWITCHSchema = R"foo( "5G", "5G-lower", "5G-upper", - "6G" + "6G", + "HaLow" ] } }, From 446cbf270f36c36eafe0c14dba2be7d333a5bc7c Mon Sep 17 00:00:00 2001 From: Adam Capparelli Date: Mon, 18 Aug 2025 13:22:45 -0400 Subject: [PATCH 2/2] Add description to enable field. Signed-off-by: Adam Capparelli --- src/framework/ConfigurationValidator.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/framework/ConfigurationValidator.cpp b/src/framework/ConfigurationValidator.cpp index 01272027..86df08e8 100644 --- a/src/framework/ConfigurationValidator.cpp +++ b/src/framework/ConfigurationValidator.cpp @@ -627,6 +627,7 @@ static std::string DefaultAPSchema = R"foo( "default": 80 }, "enable": { + "description": "Specifies radio is enabled/disabled.", "type": "boolean" }, "require-mode": { @@ -4966,6 +4967,7 @@ static std::string DefaultSWITCHSchema = R"foo( "default": 80 }, "enable": { + "description": "Specifies radio is enabled/disabled.", "type": "boolean" }, "require-mode": {