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

fix a giant bug. No idea why it worked before and is only now causing issues

parent f115d943
No related branches found
No related tags found
No related merge requests found
Pipeline #2540 passed
...@@ -324,7 +324,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" ...@@ -324,7 +324,7 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
[[package]] [[package]]
name = "rf4463" name = "rf4463"
version = "0.1.0" version = "0.1.0"
source = "git+https://gitlab.scd31.com/stephen/rf4463-lib#b8c2156522cd9a1a5899ae1d8dd5e885db73afff" source = "git+https://gitlab.scd31.com/stephen/rf4463-lib#bb99c6bed20f795939e8e1f8b28ba4cbfe4ddfbf"
dependencies = [ dependencies = [
"embedded-hal 0.2.7", "embedded-hal 0.2.7",
] ]
......
MEMORY MEMORY
{ {
/* NOTE K = KiBi = 1024 bytes */ /* NOTE K = KiBi = 1024 bytes */
FLASH : ORIGIN = 0x08000000, LENGTH = 512K FLASH : ORIGIN = 0x08000000, LENGTH = 512K
RAM : ORIGIN = 0x20000000, LENGTH = 128K RAM : ORIGIN = 0x20000000, LENGTH = 128K
} }
......
...@@ -109,7 +109,7 @@ mod app { ...@@ -109,7 +109,7 @@ mod app {
} }
#[monotonic(binds = SysTick, default = true)] #[monotonic(binds = SysTick, default = true)]
type Tonic = Systick<1000>; type Tonic = Systick<10000>;
#[init] #[init]
fn init(mut ctx: init::Context) -> (Shared, Local, init::Monotonics) { fn init(mut ctx: init::Context) -> (Shared, Local, init::Monotonics) {
...@@ -216,6 +216,11 @@ mod app { ...@@ -216,6 +216,11 @@ mod app {
// start our radio temp loop // start our radio temp loop
get_radio_temp::spawn_after(1u64.secs()).unwrap(); get_radio_temp::spawn_after(1u64.secs()).unwrap();
// start our radio interrupt loop
// TODO I kind of hate this. We need this because sometimes we miss the real interrupt
// I don't know why
run_radio_interrupt::spawn_after(500u64.micros()).unwrap();
( (
Shared { Shared {
radio, radio,
...@@ -305,6 +310,13 @@ mod app { ...@@ -305,6 +310,13 @@ mod app {
get_radio_temp::spawn_after(1u64.secs()).unwrap(); get_radio_temp::spawn_after(1u64.secs()).unwrap();
} }
#[task(shared = [radio])]
fn run_radio_interrupt(mut ctx: run_radio_interrupt::Context) {
ctx.shared.radio.lock(|r| r.interrupt().unwrap());
run_radio_interrupt::spawn_after(500u64.micros()).unwrap();
}
#[task(binds = DMA1_STREAM3, priority = 2, local = [state, pi_rx, other_rx_buf], shared = [tx_buf, pi_tx, other_tx_buf, spi_data])] #[task(binds = DMA1_STREAM3, priority = 2, local = [state, pi_rx, other_rx_buf], shared = [tx_buf, pi_tx, other_tx_buf, spi_data])]
fn pi_spi_recv(mut ctx: pi_spi_recv::Context) { fn pi_spi_recv(mut ctx: pi_spi_recv::Context) {
let rx = ctx.local.pi_rx; let rx = ctx.local.pi_rx;
......
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