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

Merge branch 'wip' into 'master'

Bug fixes

See merge request cats/mobile-transceiver-software!1
parents 7198590a 74a02a10
No related branches found
No related tags found
No related merge requests found
[target.thumbv7em-none-eabihf] [target.thumbv7em-none-eabihf]
rustflags = [ rustflags = [
"-C", "link-arg=-Tlink.x", "-C", "link-arg=-Tlink.x",
"-C", "linker=flip-link",
] ]
[build] [build]
......
...@@ -306,7 +306,7 @@ dependencies = [ ...@@ -306,7 +306,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/#d32d0a72f3e5633a25cc6495b2fe7daed139fc84" source = "git+https://gitlab.scd31.com/cats/ham-cats/#97ff918c4e3aaa6e15dadbaa1ab9c12b1fdb5655"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"bitvec", "bitvec",
...@@ -413,11 +413,12 @@ checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" ...@@ -413,11 +413,12 @@ checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d"
[[package]] [[package]]
name = "nmea" name = "nmea"
version = "0.4.0" version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea2ae8b47e91d2e007edeeaad399231258b67fdbeecebec0cc2ccd6c275771a" checksum = "53d5ae624a2d6d1f119eb99fbc433dcaa660e283e3abdfa67e3094418978a9fb"
dependencies = [ dependencies = [
"arrayvec", "arrayvec",
"cfg-if",
"chrono", "chrono",
"heapless", "heapless",
"nom", "nom",
......
...@@ -23,7 +23,8 @@ rf4463 = { git = "https://gitlab.scd31.com/stephen/rf4463-lib" } ...@@ -23,7 +23,8 @@ rf4463 = { git = "https://gitlab.scd31.com/stephen/rf4463-lib" }
systick-monotonic = "1.0.1" systick-monotonic = "1.0.1"
ham-cats = { git = "https://gitlab.scd31.com/cats/ham-cats/" } ham-cats = { git = "https://gitlab.scd31.com/cats/ham-cats/" }
half = { version = "2.3.1", default-features = false } half = { version = "2.3.1", default-features = false }
nmea = { version = "0.4.0", default-features = false } # TODO can get rid of some of these features
nmea = { version = "0.6.0", default-features = false, features = ["VTG", "GGA", "RMC", "GNS", "GLL"] }
arrayvec = { version = "0.7.4", default-features = false } arrayvec = { version = "0.7.4", default-features = false }
ushell = "0.3.6" ushell = "0.3.6"
usbd-serial = "0.1.1" usbd-serial = "0.1.1"
......
...@@ -64,6 +64,7 @@ git clone https://gitlab.scd31.com/cats/mobile-transceiver-software ...@@ -64,6 +64,7 @@ git clone https://gitlab.scd31.com/cats/mobile-transceiver-software
cd mobile-transceiver-software cd mobile-transceiver-software
git pull # make sure we're up to date git pull # make sure we're up to date
rustup target add thumbv7em-none-eabihf # add our board architecture, if needed 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 cargo install cargo-dfu # needed for flashing
``` ```
......
...@@ -28,6 +28,7 @@ mod app { ...@@ -28,6 +28,7 @@ mod app {
}; };
use half::f16; use half::f16;
use ham_cats::{ use ham_cats::{
buffer::Buffer,
packet::Packet, packet::Packet,
whisker::{Gps, Route}, whisker::{Gps, Route},
}; };
...@@ -225,7 +226,7 @@ mod app { ...@@ -225,7 +226,7 @@ mod app {
) )
} }
#[task(priority = 2, local = [], shared = [red, radio, config, status])] #[task(priority = 3, local = [], shared = [red, radio, config, status])]
fn radio_tick(mut ctx: radio_tick::Context) { fn radio_tick(mut ctx: radio_tick::Context) {
(ctx.shared.radio, ctx.shared.config).lock(|r, c| { (ctx.shared.radio, ctx.shared.config).lock(|r, c| {
r.as_mut() r.as_mut()
...@@ -263,7 +264,8 @@ mod app { ...@@ -263,7 +264,8 @@ mod app {
}; };
if should_transmit { 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| { config.lock(|config| {
cats.add_identification(ham_cats::whisker::Identification { cats.add_identification(ham_cats::whisker::Identification {
...@@ -292,18 +294,14 @@ mod app { ...@@ -292,18 +294,14 @@ mod app {
.unwrap(); .unwrap();
} }
let x = cats.fully_encode().unwrap();
let buf = ctx.local.buf; let buf = ctx.local.buf;
buf[..x.len()].copy_from_slice(&x); let mut x = Buffer::new_empty(buf);
cats.fully_encode(&mut x).unwrap();
let tx_buf = &buf[..x.len()];
ctx.shared.radio.lock(|radio| { (ctx.shared.radio, config).lock(|r, c| {
radio r.as_mut()
.as_mut()
.unwrap() .unwrap()
.tx(&mut ctx.shared.red, tx_buf) .tx(&mut ctx.shared.red, &x, Some((&c.callsign, c.ssid)))
.unwrap(); .unwrap();
}); });
} }
...@@ -313,7 +311,7 @@ mod app { ...@@ -313,7 +311,7 @@ mod app {
} }
} }
#[task(priority = 9, local = [green, usb_detect], shared = [red, status])] #[task(priority = 3, local = [green, usb_detect], shared = [red, status])]
fn led_handler(mut ctx: led_handler::Context) { fn led_handler(mut ctx: led_handler::Context) {
led_handler::spawn_after(LED_BLINK_RATE.millis()).unwrap(); led_handler::spawn_after(LED_BLINK_RATE.millis()).unwrap();
......
use ham_cats::{ use ham_cats::{
buffer::Buffer,
packet::Packet, packet::Packet,
whisker::{Route, RouteNode}, whisker::{Route, RouteNode},
}; };
...@@ -39,8 +40,7 @@ impl<'a> RadioManager<'a> { ...@@ -39,8 +40,7 @@ impl<'a> RadioManager<'a> {
// sets us up for the default CATS frequency, 430.500 MHz // sets us up for the default CATS frequency, 430.500 MHz
radio.set_channel(20); radio.set_channel(20);
// perpetual mode radio.start_rx(None, false).ok()?;
radio.start_rx(None, true).ok()?;
Some(Self { Some(Self {
radio, radio,
...@@ -51,11 +51,19 @@ impl<'a> RadioManager<'a> { ...@@ -51,11 +51,19 @@ impl<'a> RadioManager<'a> {
// 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,
// otherwise the packet is discarded
pub fn tick<P: OutputPin, M: Mutex<T = P>>( pub fn tick<P: OutputPin, M: Mutex<T = P>>(
&mut self, &mut self,
led: &mut M, led: &mut M,
ident: Option<(&str, u8)>, ident: Option<(&str, u8)>,
) -> Result<(), TransferError<spi::Error>> { ) -> Result<(), TransferError<spi::Error>> {
if self.radio.is_idle() {
self.radio
.start_rx(None, false)
.map_err(TransferError::SpiError)?;
}
self.radio.interrupt(Some(self.buf), None)?; self.radio.interrupt(Some(self.buf), None)?;
if let Some(data) = self if let Some(data) = self
...@@ -65,25 +73,32 @@ impl<'a> RadioManager<'a> { ...@@ -65,25 +73,32 @@ impl<'a> RadioManager<'a> {
{ {
if self.enable_digipeating { if self.enable_digipeating {
if let Some((callsign, ssid)) = ident { if let Some((callsign, ssid)) = ident {
if let Ok(packet) = Packet::fully_decode(data.data()) { let mut buf = [0; MAX_PACKET_LEN];
if let Ok(packet) = Packet::fully_decode(data.data(), &mut buf) {
self.handle_packet_rx(led, packet, callsign, ssid); self.handle_packet_rx(led, packet, callsign, ssid);
}; }
} }
} }
// Only needed if the radio gets confused
self.radio self.radio
.start_rx(None, true) .start_rx(None, false)
.map_err(TransferError::SpiError)?; .map_err(TransferError::SpiError)?;
} }
Ok(()) 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 // don't want to transmit on top of a packet
while self.radio.is_busy_rxing().ok()? { while self.radio.is_busy_rxing().ok()? {
self.tick(led, None).ok()?; self.tick(led, ident).ok()?;
} }
led.lock(|l| l.set_high().ok()); led.lock(|l| l.set_high().ok());
...@@ -94,15 +109,9 @@ impl<'a> RadioManager<'a> { ...@@ -94,15 +109,9 @@ impl<'a> RadioManager<'a> {
} }
led.lock(|l| l.set_low().ok()); led.lock(|l| l.set_low().ok());
self.radio
.start_rx(None, true)
.map_err(TransferError::SpiError)
.ok();
Some(()) Some(())
} }
// Not great - lots of copies, and therefore stack usage here
fn handle_packet_rx<P: OutputPin, M: Mutex<T = P>>( fn handle_packet_rx<P: OutputPin, M: Mutex<T = P>>(
&mut self, &mut self,
led: &mut M, led: &mut M,
...@@ -115,8 +124,10 @@ impl<'a> RadioManager<'a> { ...@@ -115,8 +124,10 @@ impl<'a> RadioManager<'a> {
return; return;
} }
if let Ok(buf) = packet.fully_encode() { let mut buf = [0; MAX_PACKET_LEN];
self.tx(led, &buf); 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