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

fix bug where NET was being added onto rf gated beacon packets

parent 16d144c1
No related branches found
No related tags found
No related merge requests found
......@@ -57,17 +57,26 @@ pub fn beacon_forever(
if let Some(c) = &c.beacon.comment {
packet
.add_comment(c)
.map_err(|e| anyhow!("Could not add gps to comment packet: {e}"))?;
.map_err(|e| anyhow!("Could not add gps to beacon packet: {e}"))?;
}
let mut internet_packet = packet.clone();
let mut rf_packet = packet;
// internet route
let mut r = Route::new(c.beacon.max_hops);
// TODO - we shouldn't be adding an internet route when gating to RF in this case
r.push_internet().context("Could not create beacon route")?;
packet
internet_packet
.add_route(r)
.map_err(|e| anyhow!("Could not add route to beacon packet: {e}"))?;
// rf route
let r = Route::new(c.beacon.max_hops);
rf_packet
.add_route(r)
.map_err(|e| anyhow!("Could not add route to comment packet: {e}"))?;
.map_err(|e| anyhow!("Could not add route to beacon packet: {e}"))?;
let semi = packet
let semi = internet_packet
.clone()
.semi_encode()
.map_err(|(e, _)| anyhow!("Could not encode beacon packet: {e}"))?
......@@ -77,7 +86,7 @@ pub fn beacon_forever(
uuid: uuid.into(),
};
let full = packet
let full = rf_packet
.fully_encode()
.map_err(|e| anyhow!("Could not encode beacon packet: {e}"))?
.to_vec();
......
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