Skip to content

Commit

Permalink
Add deployment info to gateway_metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
kurotych committed Nov 18, 2024
1 parent ad4db78 commit 69da9a5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions src/service/mobile_config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,36 @@ import "reward_manifest.proto";
// - Keypair fields are binary encoded public keys, Rust encoding example here:
// https://github.com/helium/helium-crypto-rs/blob/main/src/public_key.rs#L347-L354


message wifi_deployment_info {
// antenna id
uint32 antenna = 1;
// The height of the hotspot above ground level in whole meters
uint32 elevation = 2;
uint16 azimuth = 3;
uint16 mechanical_down_tilt = 4;
uint16 electrical_down_tilt = 5;
}

message cbrs_deployment_info {
repeated radio_deployment_info = 1;
}

message radio_deployment_info {
// CBSD_ID or radio
string radio_id = 1;
// The asserted elevation of the gateway above ground level in whole meters
uint32 elevation = 2;
}

message gateway_metadata {
// The res12 h3 index asserted address of the gateway as a string
// where an unasserted gateway returns an empty string
string location = 2;
oneof deployment_info {
wifi_deployment_info wifi_deployment_info = 1;
cbrs_deployment_info cbrs_deployment_info = 2;
}
}

message gateway_info {
Expand Down

0 comments on commit 69da9a5

Please sign in to comment.