Skip to content

Adding Height to wifi-phy #1286

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

Merged
merged 14 commits into from
May 31, 2025
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
33 changes: 32 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,14 @@ module openconfig-wifi-phy {
description
"Model for managing PHY layer configuration of Radio interfaces.";

oc-ext:openconfig-version "1.2.4";
oc-ext:openconfig-version "1.3.0";

revision "2025-04-08" {
description
"Adding installed-height-m and installed-height-reference
for AFC related operations.";
reference "1.3.0";
}

revision "2024-07-10" {
description
Expand Down Expand Up @@ -236,6 +243,30 @@ module openconfig-wifi-phy {
external antennae connected.";
}

leaf installed-height-m {
type decimal64 {
fraction-digits 2;
}
description
"Height in meters above a reference used for AFC";
}

leaf installed-height-reference {
type enumeration {
enum AGL {
description
"Above Ground Level.";
}
enum AMSL {
description
"Above Mean Sea Level";
}
}
default "AGL";
description
"Describes the reference for the height of the AP/Antenna.";
}

leaf scanning {
type boolean;
default "true";
Expand Down
Loading