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

remove unneeded setting

parent 9498885a
No related branches found
No related tags found
No related merge requests found
Pipeline #4748 passed
......@@ -23,7 +23,6 @@ ssid = 0
[felinet.beacon]
period_seconds = 120
icon = 0
max_hops = 3
latitude = 45.0
longitude = -66.0
altitude = 30 # meters
......
......@@ -14,8 +14,6 @@ pub struct BeaconConfig {
#[serde_as(as = "DurationSeconds<u64>")]
pub period_seconds: Duration,
pub icon: u16,
#[serde(default)]
pub max_hops: u8,
pub latitude: Option<f64>,
pub longitude: Option<f64>,
pub altitude: Option<f64>,
......
......@@ -80,7 +80,7 @@ pub fn beacon_forever(
.add_node_info(info_builder.build())
.map_err(|e| anyhow!("Could not add info to beacon packet: {e}"))?;
let mut r = Route::new(c.beacon.max_hops);
let mut r = Route::new(0);
r.push_internet().context("Could not create beacon route")?;
packet
.add_route(r)
......
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