Newer
Older
use rf4463::{config::RADIO_CONFIG_CATS, error::TransferError, Rf4463};
pac::{SPI1, TIM5},
spi::{self, Spi},
timer::Delay,
};
use crate::MAX_PACKET_LEN;
type SdnPin = gpio::Pin<'B', 12, gpio::Output>;
type CsPin = gpio::Pin<'A', 8, gpio::Output>;
type MyDelay = Delay<TIM5, 1000000>;
type Radio = Rf4463<Spi<SPI1>, SdnPin, CsPin, MyDelay>;
pub struct RadioManager<'a> {
buf: &'a mut [u8; MAX_PACKET_LEN],
enable_digipeating: bool,
}
impl<'a> RadioManager<'a> {
pub fn new(
spi: Spi<SPI1>,
sdn: SdnPin,
cs: CsPin,
delay: MyDelay,
buf: &'a mut [u8; MAX_PACKET_LEN],
enable_digipeating: bool,
) -> Option<Self> {
let mut radio = Rf4463::new(spi, sdn, cs, delay, &mut RADIO_CONFIG_CATS.clone()).ok()?;
// sets us up for the default CATS frequency, 430.500 MHz
radio.set_channel(20);
radio,
buf,
enable_digipeating,
})
}
// call me every 20-ish ms
// technically needs to be every 100ms, tops
// digipeats only if ident is Some,
// otherwise the packet is discarded
pub fn tick<P: OutputPin, M: Mutex<T = P>>(
&mut self,
led: &mut M,
ident: Option<(&str, u8)>,
) -> Result<(), TransferError<spi::Error>> {
if let Some(data) = self
.radio
.finish_rx(self.buf)
.map_err(TransferError::SpiError)?
{
if self.enable_digipeating {
if let Some((callsign, ssid)) = ident {
// digipeats only if ident is Some,
// otherwise the rx'd packet is discarded
pub fn tx<P: OutputPin, M: Mutex<T = P>>(
&mut self,
led: &mut M,
data: &[u8],
ident: Option<(&str, u8)>,
) -> Option<()> {
// don't want to transmit on top of a packet
while self.radio.is_busy_rxing().ok()? {
self.radio.start_tx(data).ok()?;
while !self.radio.is_idle() {
self.radio.interrupt(None, Some(data)).ok();
}
fn handle_packet_rx<P: OutputPin, M: Mutex<T = P>>(
&mut self,
led: &mut M,
mut packet: Packet<MAX_PACKET_LEN>,
callsign: &str,
ssid: u8,
) {
if packet.should_digipeat(callsign, ssid).is_ok() {
if packet.append_to_route(callsign, ssid).is_err() {
let mut buf = [0; MAX_PACKET_LEN];
let mut buf = Buffer::new_empty(&mut buf);
if packet.fully_encode(&mut buf).is_ok() {
self.tx(led, &buf, None);