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

add basic debug flag

parent 98ce64d9
No related branches found
No related tags found
No related merge requests found
Pipeline #4838 passed
......@@ -3,6 +3,7 @@ ssid = 0
icon = 0
frequency = 430_500_000 # The standard CATS frequency
enable_tx = true # If false, will be an RX-only I-Gate
debug = false # If true, print additional packet debug information
[felinet]
address = "https://felinet.cats.radio"
......
......@@ -47,6 +47,8 @@ pub struct Config {
pub frequency: u32,
#[serde(default = "default_enable_tx")]
pub enable_tx: bool,
#[serde(default)]
pub debug: bool,
pub felinet: Option<FelinetConfig>,
pub beacon: BeaconConfig,
}
......
......@@ -184,6 +184,7 @@ pub async fn packet_handler(
packet_send: mpsc::Sender<Vec<u8>>,
mut packet_receive: mpsc::Receiver<(Vec<u8>, f64)>,
uuid: Uuid,
debug: bool,
) -> anyhow::Result<()> {
loop {
let (packet, rssi) = packet_receive
......@@ -192,7 +193,7 @@ pub async fn packet_handler(
.context("Packet receive channel died")?;
let mut buf = [0; MAX_PACKET_LEN];
if let Ok(mut packet) = attempt_decode(&packet, &mut buf, rssi) {
if let Some(mut packet) = attempt_decode(&packet, &mut buf, rssi, debug) {
let mut buf2 = [0; MAX_PACKET_LEN];
let mut internet_packet = packet.clone_backing(&mut buf2);
match append_internet_to_packet_route(&callsign, ssid, rssi, &mut internet_packet) {
......
......@@ -143,6 +143,7 @@ async fn gate_forever(
let packet_send = packet_send.clone();
let ssid = config.ssid;
let callsign = config.callsign.clone();
let debug = config.debug;
tokio::task::spawn(async move {
if let Err(e) = packet_handler(
......@@ -152,6 +153,7 @@ async fn gate_forever(
packet_send,
packet_receive,
uuid,
debug,
)
.await
{
......
use crate::radio::MAX_PACKET_LEN;
use anyhow::anyhow;
use colored::{Color, Colorize};
use ham_cats::{
identity::Identity,
......@@ -126,13 +125,25 @@ pub fn attempt_decode<'a>(
packet: &[u8],
buf: &'a mut [u8; MAX_PACKET_LEN],
rssi: f64,
) -> anyhow::Result<Packet<'a, MAX_PACKET_LEN>> {
let packet: Packet<MAX_PACKET_LEN> =
Packet::fully_decode(packet, buf).map_err(|e| anyhow!("Could not decode packet: {e:?}"))?;
debug: bool,
) -> Option<Packet<'a, MAX_PACKET_LEN>> {
if debug {
eprintln!("Attempt decode with len: {}", packet.len());
}
let packet: Packet<MAX_PACKET_LEN> = match Packet::fully_decode(packet, buf) {
Ok(x) => x,
Err(e) => {
if debug {
eprintln!("Could not decode packet: {e}");
}
return None;
}
};
print_packet(&packet, Some(rssi));
Ok(packet)
Some(packet)
}
// i-gating is kind of weird.
......
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