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

uart improvements

parent 29687ee1
No related branches found
No related tags found
No related merge requests found
...@@ -79,22 +79,25 @@ impl Controller { ...@@ -79,22 +79,25 @@ impl Controller {
} }
// manages our transceiver // manages our transceiver
// TODO currently very hacky, because we're going to rip
// most of this out when we stop using a lobotomized NPR-70
// and move to just accessing the RF4463 directly over SPI
fn tx_thread(image_rx: Receiver<FecPacket>, telem_rx: Receiver<Packet>) { fn tx_thread(image_rx: Receiver<FecPacket>, telem_rx: Receiver<Packet>) {
let mut radio = UartRadio::new("/dev/ttyACM0"); let mut radio = UartRadio::new("/dev/ttyAMA0").expect("Could not initialize radio");
let mut text_msg_id = 0; let mut text_msg_id = 0;
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();
radio.send_packet(&tm); if let Err(e) = radio.send_packet(&tm) {
eprintln!("Could not send packet: {}", e);
}
} }
if let Ok(img) = image_rx.try_recv() { if let Ok(img) = image_rx.try_recv() {
radio.send_packet(&img); println!("start send packet");
if let Err(e) = radio.send_packet(&img) {
eprintln!("Could not send packet: {}", e);
}
println!("end send packet");
} else { } else {
thread::sleep(Duration::from_millis(5)); thread::sleep(Duration::from_millis(5));
} }
......
...@@ -3,6 +3,7 @@ use crc::{Crc, CRC_16_IBM_3740}; ...@@ -3,6 +3,7 @@ use crc::{Crc, CRC_16_IBM_3740};
use crate::ldpc::ldpc_encode; use crate::ldpc::ldpc_encode;
const TEXT_MESSAGE_LEN: usize = 252; const TEXT_MESSAGE_LEN: usize = 252;
const FEC_PACKET_LEN: usize = 256 + 2 + 65;
pub enum Packet { pub enum Packet {
TextMessage(u8, [u8; TEXT_MESSAGE_LEN]), TextMessage(u8, [u8; TEXT_MESSAGE_LEN]),
...@@ -55,7 +56,7 @@ impl Packet { ...@@ -55,7 +56,7 @@ impl Packet {
pub struct RawPacket(pub [u8; 256]); pub struct RawPacket(pub [u8; 256]);
pub struct FecPacket(pub [u8; 256 + 2 + 65]); pub struct FecPacket(pub [u8; FEC_PACKET_LEN]);
impl From<RawPacket> for FecPacket { impl From<RawPacket> for FecPacket {
fn from(value: RawPacket) -> Self { fn from(value: RawPacket) -> Self {
......
use serial::{unix::TTYPort, BaudRate::BaudOther, SerialPort}; use serial::{unix::TTYPort, BaudRate::BaudOther, SerialPort};
use std::{ use std::{
io::{Read, Write}, io::{Read, Write},
thread::sleep,
time::Duration, time::Duration,
}; };
...@@ -8,33 +9,36 @@ use crate::packet::FecPacket; ...@@ -8,33 +9,36 @@ use crate::packet::FecPacket;
// 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
// Note that this is a little hacky. It's only intended to be used
// for debugging, and not for an actual balloon flight
pub struct UartRadio { pub struct UartRadio {
uart: TTYPort, uart: TTYPort,
} }
impl UartRadio { impl UartRadio {
pub fn new(uart: &str) -> Self { pub fn new(uart: &str) -> anyhow::Result<Self> {
let mut uart = serial::open(uart).unwrap(); let mut uart = serial::open(uart)?;
uart.reconfigure(&|settings| settings.set_baud_rate(BaudOther(921600))) uart.reconfigure(&|settings| settings.set_baud_rate(BaudOther(921_600)))?;
.unwrap();
uart.set_timeout(Duration::from_millis(5)).unwrap();
Self { uart } Ok(Self { uart })
} }
pub fn send_packet(&mut self, packet: &FecPacket) { pub fn send_packet(&mut self, packet: &FecPacket) -> anyhow::Result<()> {
self.uart.write_all(&packet.0).unwrap(); loop {
let mut buf = [0; 1]; self.uart.write_all(&[0x00])?;
if let Ok(1) = self.uart.read(&mut buf) { self.uart.flush()?;
if buf[0] == b'F' {
// uC is full. Need to wait until we receive let mut buf = [0; 1];
// the empty signal self.uart.read_exact(&mut buf)?;
while buf[0] != b'E' {
let _ = self.uart.read(&mut buf); if buf == [0x02] {
} break; // enough space for packet
} else {
sleep(Duration::from_millis(10));
} }
} }
self.uart.write_all(&[0x01])?;
self.uart.write_all(&packet.0)?;
Ok(())
} }
} }
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