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

radio temperature

parent b0c9b6f1
No related branches found
No related tags found
No related merge requests found
use std::{ use std::{
sync::mpsc::{self, Receiver, Sender, SyncSender}, sync::mpsc::{self, Receiver, Sender, SyncSender},
thread, thread,
time::Duration, time::{Duration, Instant},
}; };
use anyhow::Context; use anyhow::Context;
...@@ -15,7 +15,8 @@ use crate::{ ...@@ -15,7 +15,8 @@ use crate::{
ssdv::ssdv_encode, ssdv::ssdv_encode,
}; };
const IMAGE_PACKET_QUEUE_LENGTH: usize = 1024; const IMAGE_PACKET_QUEUE_LENGTH: usize = 8192;
const TEMP_REFRESH_INTERVAL: Duration = Duration::from_secs(5);
pub struct Controller { pub struct Controller {
config: Config, config: Config,
...@@ -95,6 +96,7 @@ impl Controller { ...@@ -95,6 +96,7 @@ impl Controller {
}; };
let mut text_msg_id = 0; let mut text_msg_id = 0;
let mut last_got_temp = Instant::now();
loop { loop {
while let Ok(tm) = telem_rx.try_recv() { while let Ok(tm) = telem_rx.try_recv() {
let tm = tm.into_raw(&mut text_msg_id).into(); let tm = tm.into_raw(&mut text_msg_id).into();
...@@ -109,7 +111,25 @@ impl Controller { ...@@ -109,7 +111,25 @@ impl Controller {
eprintln!("Could not send packet: {}", e); eprintln!("Could not send packet: {}", e);
} }
} else { } else {
thread::sleep(Duration::from_millis(5)); thread::sleep(Duration::from_millis(50));
}
if Instant::now() - last_got_temp > TEMP_REFRESH_INTERVAL {
last_got_temp = Instant::now();
let temp = match radio.get_temp() {
Ok(x) => x,
Err(e) => {
eprintln!("Could not get radio temp: {}", e);
continue;
}
};
let packet = Packet::new_text_message(&format!("Temp: {}", temp));
if let Err(e) = radio.send_packet(&packet.into_raw(&mut text_msg_id).into()) {
eprintln!("Could not send packet: {}", e);
}
} }
} }
} }
......
...@@ -7,6 +7,10 @@ use std::{ ...@@ -7,6 +7,10 @@ use std::{
use crate::packet::FecPacket; use crate::packet::FecPacket;
const BUFFER_STATUS_CMD: u8 = 0x00;
const SEND_PACKET_CMD: u8 = 0x01;
const GET_TEMP_CMD: u8 = 0x02;
// Used for talking to an RF4463 via a microcontroller // Used for talking to an RF4463 via a microcontroller
// The microcontroller takes in packet data over UART and sends it to the RF4463 // The microcontroller takes in packet data over UART and sends it to the RF4463
pub struct UartRadio { pub struct UartRadio {
...@@ -22,7 +26,7 @@ impl UartRadio { ...@@ -22,7 +26,7 @@ impl UartRadio {
} }
pub fn send_packet(&mut self, packet: &FecPacket) -> anyhow::Result<()> { pub fn send_packet(&mut self, packet: &FecPacket) -> anyhow::Result<()> {
self.uart.write_all(&[0x01])?; self.uart.write_all(&[SEND_PACKET_CMD])?;
self.uart.write_all(&packet.0)?; self.uart.write_all(&packet.0)?;
let mut buf = [0; 1]; let mut buf = [0; 1];
...@@ -33,7 +37,7 @@ impl UartRadio { ...@@ -33,7 +37,7 @@ impl UartRadio {
sleep(Duration::from_millis(10)); sleep(Duration::from_millis(10));
// poll to see if the buffer has emptied yet // poll to see if the buffer has emptied yet
self.uart.write_all(&[0x00])?; self.uart.write_all(&[BUFFER_STATUS_CMD])?;
self.uart.flush()?; self.uart.flush()?;
self.uart.read_exact(&mut buf)?; self.uart.read_exact(&mut buf)?;
...@@ -41,4 +45,15 @@ impl UartRadio { ...@@ -41,4 +45,15 @@ impl UartRadio {
Ok(()) Ok(())
} }
pub fn get_temp(&mut self) -> anyhow::Result<f32> {
self.uart.write_all(&[GET_TEMP_CMD])?;
let mut buf = [0; 4];
self.uart.read_exact(&mut buf)?;
let temp = f32::from_le_bytes(buf);
Ok(temp)
}
} }
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