Skip to content
Snippets Groups Projects
Commit a0f10cdc authored by Stephen D's avatar Stephen D
Browse files

basic node info whisker

parent edf16d43
No related branches found
No related tags found
No related merge requests found
......@@ -11,4 +11,10 @@ max_hops = 3
latitude = 45.0
longitude = -66.0
altitude = 30 # meters
comment = "Check out my cool CATS beacon!"
comment = "Check out my cool CATS I-gate!"
# These settings DO NOT change anything about how
# the software/hardware work. It only changes data
# in the NodeInfo whisker
antenna_height = 10 # meters above ground
antenna_gain = 2 # dBi
tx_power = 30 # dBm
......@@ -20,6 +20,9 @@ pub struct BeaconConfig {
pub longitude: Option<f64>,
pub altitude: Option<f64>,
pub comment: Option<String>,
pub antenna_height: Option<u8>,
pub antenna_gain: Option<f32>,
pub tx_power: Option<f32>,
}
#[derive(Deserialize, Clone)]
......
......@@ -9,6 +9,7 @@ use anyhow::{anyhow, Context};
use async_stream::stream;
use half::f16;
use ham_cats::buffer::Buffer;
use ham_cats::whisker::NodeInfoBuilder;
use ham_cats::{
packet::Packet,
whisker::{Gps, Identification, Route},
......@@ -19,6 +20,9 @@ use tokio_stream::StreamExt;
use tonic::{transport::Channel, Request};
use uuid::Uuid;
const HARDWARE_ID: u16 = 0x7c85;
const SOFTWARE_ID: u8 = 0x00;
pub fn beacon_forever(
c: &Config,
modem_send: mpsc::Sender<Vec<u8>>,
......@@ -58,6 +62,26 @@ pub fn beacon_forever(
.map_err(|e| anyhow!("Could not add gps to beacon packet: {e}"))?;
}
let mut info_builder = NodeInfoBuilder::default()
.hardware_id(HARDWARE_ID)
.software_id(SOFTWARE_ID);
if let Some(height) = c.beacon.antenna_height {
info_builder = info_builder.antenna_height(height);
}
if let Some(gain) = c.beacon.antenna_gain {
info_builder = info_builder.antenna_gain(gain as f64);
}
if let Some(power) = c.beacon.tx_power {
info_builder = info_builder.tx_power(power as f64);
}
packet
.add_node_info(info_builder.build())
.map_err(|e| anyhow!("Could not add info to beacon packet: {e}"))?;
let mut internet_buf = [0; MAX_PACKET_LEN];
let mut internet_packet = packet.clone_backing(&mut internet_buf);
let mut rf_packet = packet;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment