Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add state-only leaves of allowed-max-eirp and allowed-max-txpower #1013

Merged
merged 3 commits into from
Dec 14, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion release/models/wifi/openconfig-wifi-phy.yang
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ module openconfig-wifi-phy {
description
"Model for managing PHY layer configuration of Radio interfaces.";

oc-ext:openconfig-version "1.2.2";
oc-ext:openconfig-version "1.2.3";

revision "2023-11-30" {
description
"Add allowed-max-eirp and allowed-max-txpower radio state leaves.";
reference "1.2.3";
}

revision "2023-05-26" {
description
Expand Down Expand Up @@ -346,6 +352,20 @@ module openconfig-wifi-phy {
"Transmit channel-utilization percentage.";
}

leaf allowed-max-eirp {
type uint8;
units dBm;
description
"Maximum allowed transmit eirp of this radio + antenna, of the current channel, in dBm.";
}

leaf allowed-max-txpower {
type uint8;
units dBm;
description
"Maximum allowed transmit power of this radio, of the current channel, in dBm.";
}

leaf obss-rx {
type oc-types:percentage;
description
Expand Down
Loading