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

bug fixes

parent 86bef4a1
No related branches found
No related tags found
No related merge requests found
[target.thumbv7em-none-eabihf]
rustflags = [
"-C", "link-arg=-Tlink.x",
"-C", "linker=flip-link",
]
[build]
......
......@@ -306,7 +306,7 @@ dependencies = [
[[package]]
name = "ham-cats"
version = "0.1.0"
source = "git+https://gitlab.scd31.com/cats/ham-cats/#d32d0a72f3e5633a25cc6495b2fe7daed139fc84"
source = "git+https://gitlab.scd31.com/cats/ham-cats/#97ff918c4e3aaa6e15dadbaa1ab9c12b1fdb5655"
dependencies = [
"arrayvec",
"bitvec",
......
......@@ -64,6 +64,7 @@ git clone https://gitlab.scd31.com/cats/mobile-transceiver-software
cd mobile-transceiver-software
git pull # make sure we're up to date
rustup target add thumbv7em-none-eabihf # add our board architecture, if needed
cargo install flip-link # needed for building
cargo install cargo-dfu # needed for flashing
```
......
......@@ -28,6 +28,7 @@ mod app {
};
use half::f16;
use ham_cats::{
buffer::Buffer,
packet::Packet,
whisker::{Gps, Route},
};
......@@ -263,7 +264,8 @@ mod app {
};
if should_transmit {
let mut cats: Packet<MAX_PACKET_LEN> = Packet::default();
let mut buf = [0; MAX_PACKET_LEN];
let mut cats = Packet::new(&mut buf);
config.lock(|config| {
cats.add_identification(ham_cats::whisker::Identification {
......@@ -292,18 +294,14 @@ mod app {
.unwrap();
}
let x = cats.fully_encode().unwrap();
let buf = ctx.local.buf;
buf[..x.len()].copy_from_slice(&x);
let tx_buf = &buf[..x.len()];
let mut x = Buffer::new_empty(buf);
cats.fully_encode(&mut x).unwrap();
ctx.shared.radio.lock(|radio| {
radio
.as_mut()
(ctx.shared.radio, config).lock(|r, c| {
r.as_mut()
.unwrap()
.tx(&mut ctx.shared.red, tx_buf)
.tx(&mut ctx.shared.red, &x, Some((&c.callsign, c.ssid)))
.unwrap();
});
}
......
use ham_cats::{
buffer::Buffer,
packet::Packet,
whisker::{Route, RouteNode},
};
......@@ -20,7 +21,7 @@ type MyDelay = Delay<TIM5, 1000000>;
type Radio = Rf4463<Spi<SPI1>, SdnPin, CsPin, MyDelay>;
pub struct RadioManager<'a> {
radio: Radio,
pub radio: Radio,
buf: &'a mut [u8; MAX_PACKET_LEN],
enable_digipeating: bool,
}
......@@ -39,8 +40,7 @@ impl<'a> RadioManager<'a> {
// sets us up for the default CATS frequency, 430.500 MHz
radio.set_channel(20);
// perpetual mode
radio.start_rx(None, true).ok()?;
radio.start_rx(None, false).ok()?;
Some(Self {
radio,
......@@ -51,6 +51,8 @@ impl<'a> RadioManager<'a> {
// 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,
......@@ -58,7 +60,7 @@ impl<'a> RadioManager<'a> {
) -> Result<(), TransferError<spi::Error>> {
if self.radio.is_idle() {
self.radio
.start_rx(None, true)
.start_rx(None, false)
.map_err(TransferError::SpiError)?;
}
......@@ -67,25 +69,33 @@ impl<'a> RadioManager<'a> {
if let Some(data) = self.radio.finish_rx(self.buf).unwrap() {
if self.enable_digipeating {
if let Some((callsign, ssid)) = ident {
if let Ok(packet) = Packet::fully_decode(data.data()) {
let mut buf = [0; MAX_PACKET_LEN];
let p = Packet::fully_decode(data.data(), &mut buf);
if let Ok(packet) = p {
self.handle_packet_rx(led, packet, callsign, ssid);
};
}
}
}
// Only needed if the radio gets confused
self.radio
.start_rx(None, true)
.start_rx(None, false)
.map_err(TransferError::SpiError)?;
}
Ok(())
}
pub fn tx<P: OutputPin, M: Mutex<T = P>>(&mut self, led: &mut M, data: &[u8]) -> Option<()> {
// 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.tick(led, None).ok()?;
self.tick(led, ident).ok()?;
}
led.lock(|l| l.set_high().ok());
......@@ -99,7 +109,6 @@ impl<'a> RadioManager<'a> {
Some(())
}
// Not great - lots of copies, and therefore stack usage here
fn handle_packet_rx<P: OutputPin, M: Mutex<T = P>>(
&mut self,
led: &mut M,
......@@ -112,8 +121,10 @@ impl<'a> RadioManager<'a> {
return;
}
if let Ok(buf) = packet.fully_encode() {
self.tx(led, &buf);
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);
}
}
}
......
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