From 482888829eb061a4b2510aa3cbe7d1ddb89e9efe Mon Sep 17 00:00:00 2001
From: Stephen D <webmaster@scd31.com>
Date: Sun, 23 Jul 2023 14:22:57 -0300
Subject: [PATCH] fix some priorities

---
 src/main.rs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main.rs b/src/main.rs
index e3ecd75..161e8b6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -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) {
         // get temp every second
 
@@ -310,7 +310,7 @@ mod app {
         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) {
         ctx.shared.radio.lock(|r| r.interrupt().unwrap());
 
-- 
GitLab