/// Process an individual `Frame` that has been decoded by the modem.
pub fn handle_frame(&mut self, frame: Frame) {
+ if self.ptt {
+ // Ignore self-decodes
+ return;
+ }
match frame {
Frame::Lsf(lsf) => {
// A new LSF implies a clean slate.
pub fn set_now(&mut self, now_samples: u64) {
self.now = now_samples;
- match self.state {
- State::TxEndingAtTime(time) => {
- if now_samples >= time {
- self.ptt = false;
- self.state = State::Idle;
- }
+ if let State::TxEndingAtTime(time) = self.state {
+ if now_samples >= time {
+ self.ptt = false;
+ self.state = State::Idle;
}
- _ => (),
}
}
pub fn set_tx_end_time(&mut self, in_samples: usize) {
log::debug!("tnc has been told that tx will complete in {in_samples} samples");
- match self.state {
- State::TxEnding => {
- self.state = State::TxEndingAtTime(self.now + in_samples as u64);
- }
- _ => (),
+ if let State::TxEnding = self.state {
+ self.state = State::TxEndingAtTime(self.now + in_samples as u64);
}
}
pending.app_data[len..len + 2].copy_from_slice(&packet_crc.to_be_bytes());
pending.app_data_len = len + 2;
pending.lsf = Some(LsfFrame::new_packet(
- &Address::Callsign(Callsign(b"M17RT-PKT".clone())),
+ &Address::Callsign(Callsign(*b"M17RT-PKT")),
&Address::Broadcast,
));
self.packet_queue[self.packet_next] = pending;
}
}
+impl Default for SoftTnc {
+ fn default() -> Self {
+ Self::new()
+ }
+}
+
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum SoftTncError {
General(&'static str),