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

basic nodeinfo support

parent 7542f30b
No related branches found
No related tags found
No related merge requests found
...@@ -297,7 +297,7 @@ dependencies = [ ...@@ -297,7 +297,7 @@ dependencies = [
[[package]] [[package]]
name = "ham-cats" name = "ham-cats"
version = "0.1.0" version = "0.1.0"
source = "git+https://gitlab.scd31.com/cats/ham-cats#25ed83d5eb68cd54f438f487c37f9059cd464e87" source = "git+https://gitlab.scd31.com/cats/ham-cats#b9c0f3a6bd123262454e5e56758f8a0c0db8da89"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"bitvec", "bitvec",
......
...@@ -33,10 +33,10 @@ mod app { ...@@ -33,10 +33,10 @@ mod app {
use ham_cats::{ use ham_cats::{
buffer::Buffer, buffer::Buffer,
packet::Packet, packet::Packet,
whisker::{Gps, Route}, whisker::{Gps, NodeInfoBuilder, Route},
}; };
use stm32f4xx_hal as hal; use stm32f4xx_hal as hal;
use systick_monotonic::{ExtU64, Systick}; use systick_monotonic::{fugit::Instant, ExtU64, Systick};
use usb_device::prelude::*; use usb_device::prelude::*;
use crate::{ use crate::{
...@@ -54,6 +54,9 @@ mod app { ...@@ -54,6 +54,9 @@ mod app {
const LED_BLINK_RATE: u64 = 250; const LED_BLINK_RATE: u64 = 250;
const HARDWARE_ID: u16 = 0x7c84;
const SOFTWARE_ID: u8 = 0;
const MODE: Mode = Mode { const MODE: Mode = Mode {
polarity: Polarity::IdleLow, polarity: Polarity::IdleLow,
phase: Phase::CaptureOnFirstTransition, phase: Phase::CaptureOnFirstTransition,
...@@ -70,6 +73,7 @@ mod app { ...@@ -70,6 +73,7 @@ mod app {
flash: LockedFlash, flash: LockedFlash,
buf: &'static mut [u8; MAX_PACKET_LEN], buf: &'static mut [u8; MAX_PACKET_LEN],
gps_enable: gpio::Pin<'C', 8, gpio::Output<gpio::OpenDrain>>, gps_enable: gpio::Pin<'C', 8, gpio::Output<gpio::OpenDrain>>,
bootup_time: Instant<u64, 1, { SYS_TICK_FREQ }>,
} }
#[shared] #[shared]
...@@ -194,6 +198,8 @@ mod app { ...@@ -194,6 +198,8 @@ mod app {
.device_class(usbd_serial::USB_CLASS_CDC) .device_class(usbd_serial::USB_CLASS_CDC)
.build(); .build();
let bootup_time = monotonics::now();
let shell = Shell::new(config.clone(), usb_serial); let shell = Shell::new(config.clone(), usb_serial);
let buf = cortex_m::singleton!(: [u8; MAX_PACKET_LEN] = [0; MAX_PACKET_LEN]).unwrap(); let buf = cortex_m::singleton!(: [u8; MAX_PACKET_LEN] = [0; MAX_PACKET_LEN]).unwrap();
...@@ -239,6 +245,7 @@ mod app { ...@@ -239,6 +245,7 @@ mod app {
flash, flash,
buf, buf,
gps_enable, gps_enable,
bootup_time,
}, },
init::Monotonics(Systick::new(ctx.core.SYST, H_CLK)), init::Monotonics(Systick::new(ctx.core.SYST, H_CLK)),
) )
...@@ -258,7 +265,7 @@ mod app { ...@@ -258,7 +265,7 @@ mod app {
} }
} }
#[task(priority = 2, local = [buf], shared = [red, radio, gps, config, status])] #[task(priority = 2, local = [buf, bootup_time], shared = [red, radio, gps, config, status, volt_meter])]
fn transmit_position(mut ctx: transmit_position::Context) { fn transmit_position(mut ctx: transmit_position::Context) {
let mut config = ctx.shared.config; let mut config = ctx.shared.config;
let (black_hole, transmit_period_seconds) = let (black_hole, transmit_period_seconds) =
...@@ -300,6 +307,26 @@ mod app { ...@@ -300,6 +307,26 @@ mod app {
cats.add_route(Route::new(config.max_hops)).unwrap(); cats.add_route(Route::new(config.max_hops)).unwrap();
}); });
let voltage = ctx.shared.volt_meter.lock(|vm| vm.voltage());
let temp = ctx
.shared
.radio
.lock(|r| r.as_mut().unwrap().get_temp().unwrap());
let uptime_secs = (monotonics::now() - *ctx.local.bootup_time)
.to_secs()
.try_into()
.unwrap_or(0);
let info = NodeInfoBuilder::default()
.hardware_id(HARDWARE_ID)
.software_id(SOFTWARE_ID)
.uptime(uptime_secs)
.voltage(voltage)
.xcvr_temperature(temp)
.build();
cats.add_node_info(info).unwrap();
if let Some(pos) = pos { if let Some(pos) = pos {
cats.add_gps(Gps::new( cats.add_gps(Gps::new(
pos.latitude, pos.latitude,
......
...@@ -53,6 +53,13 @@ impl<'a> RadioManager<'a> { ...@@ -53,6 +53,13 @@ impl<'a> RadioManager<'a> {
}) })
} }
pub fn get_temp(&mut self) -> Option<i8> {
self.radio
.get_temp()
.ok()
.map(|x| x.clamp(i8::MIN as f32, i8::MAX as f32) as i8)
}
// call me every 20-ish ms // call me every 20-ish ms
// technically needs to be every 100ms, tops // technically needs to be every 100ms, tops
// digipeats only if ident is Some, // digipeats only if ident is Some,
......
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