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

fix some priorities

parent ad2f8cf7
No related branches found
No related tags found
No related merge requests found
Pipeline #2543 passed
...@@ -291,7 +291,7 @@ mod app { ...@@ -291,7 +291,7 @@ mod app {
} }
} }
#[task(shared = [radio, spi_data, pi_tx, other_tx_buf])] #[task(priority = 1, shared = [radio, spi_data, pi_tx, other_tx_buf])]
fn get_radio_temp(mut ctx: get_radio_temp::Context) { fn get_radio_temp(mut ctx: get_radio_temp::Context) {
// get temp every second // get temp every second
...@@ -310,7 +310,7 @@ mod app { ...@@ -310,7 +310,7 @@ mod app {
get_radio_temp::spawn_after(1u64.secs()).unwrap(); get_radio_temp::spawn_after(1u64.secs()).unwrap();
} }
#[task(shared = [radio])] #[task(priority = 1, shared = [radio])]
fn run_radio_interrupt(mut ctx: run_radio_interrupt::Context) { fn run_radio_interrupt(mut ctx: run_radio_interrupt::Context) {
ctx.shared.radio.lock(|r| r.interrupt().unwrap()); ctx.shared.radio.lock(|r| r.interrupt().unwrap());
......
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