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

show node info

parent bbf5eb79
No related branches found
No related tags found
No related merge requests found
......@@ -631,7 +631,7 @@ dependencies = [
[[package]]
name = "ham-cats"
version = "0.1.0"
source = "git+https://gitlab.scd31.com/cats/ham-cats#25ed83d5eb68cd54f438f487c37f9059cd464e87"
source = "git+https://gitlab.scd31.com/cats/ham-cats#2662fd88ededffad2598ece932a58e1049325aaa"
dependencies = [
"arrayvec",
"bitvec",
......
......@@ -71,6 +71,49 @@ pub fn print_packet(pkt: &Packet<MAX_PACKET_LEN>, rssi: Option<f64>) {
gps.heading()
);
}
if let Some(info) = pkt.node_info() {
match (info.hardware_id(), info.software_id()) {
(Some(hw), Some(sw)) => {
println!(
"{} \t{hw:#06x} {} {sw:#04x}",
"HW:".color(color),
"SW:".color(color)
);
}
(Some(hw), None) => {
println!("{} \t{hw:#06x}", "SW:".color(color));
}
(None, Some(sw)) => {
println!("{} \t{sw:#04x}", "SW:".color(color));
}
(None, None) => {}
}
if let Some(uptime) = info.uptime() {
println!("{} \t{} s", "UTIME:".color(color), uptime);
}
if let Some(a_height) = info.antenna_height() {
println!("{} \t{} m", "VERT:".color(color), a_height);
}
if let Some(a_gain) = info.antenna_gain() {
println!("{} \t{} dBi", "GAIN:".color(color), a_gain);
}
if let Some(power) = info.tx_power() {
println!("{} \t{} dBm", "TXP:".color(color), power);
}
if let Some(volts) = info.voltage() {
println!("{} \t{} V", "VOLTS:".color(color), volts);
}
if let Some(temp) = info.xcvr_temperature() {
println!("{} \t{} C", "TEMP:".color(color), temp);
}
}
}
pub fn attempt_decode<'a>(
......
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