2022-09-03 13:47:25 +02:00
|
|
|
use crate::TmStore;
|
|
|
|
use fsrc_core::pool::StoreAddr;
|
|
|
|
use fsrc_core::tmtc::tm_helper::PusTmWithCdsShortHelper;
|
|
|
|
use fsrc_core::tmtc::PusServiceProvider;
|
|
|
|
use spacepackets::tc::{PusTc, PusTcSecondaryHeaderT};
|
|
|
|
use spacepackets::SpHeader;
|
|
|
|
use std::sync::{mpsc, Arc, Mutex};
|
2022-08-29 01:33:32 +02:00
|
|
|
|
2022-09-03 13:47:25 +02:00
|
|
|
pub struct PusReceiver {
|
|
|
|
pub tm_helper: PusTmWithCdsShortHelper,
|
|
|
|
pub tm_tx: mpsc::Sender<StoreAddr>,
|
|
|
|
pub tm_store: Arc<Mutex<TmStore>>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PusReceiver {
|
|
|
|
pub fn new(apid: u16, tm_tx: mpsc::Sender<StoreAddr>, tm_store: Arc<Mutex<TmStore>>) -> Self {
|
|
|
|
Self {
|
|
|
|
tm_helper: PusTmWithCdsShortHelper::new(apid),
|
|
|
|
tm_tx,
|
|
|
|
tm_store,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PusServiceProvider for PusReceiver {
|
|
|
|
type Error = ();
|
|
|
|
|
|
|
|
fn handle_pus_tc_packet(
|
|
|
|
&mut self,
|
|
|
|
service: u8,
|
|
|
|
_header: &SpHeader,
|
|
|
|
pus_tc: &PusTc,
|
|
|
|
) -> Result<(), Self::Error> {
|
|
|
|
if service == 17 {
|
|
|
|
self.handle_test_service(pus_tc);
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PusReceiver {
|
|
|
|
fn handle_test_service(&mut self, pus_tc: &PusTc) {
|
|
|
|
if pus_tc.subservice() == 1 {
|
|
|
|
println!("Received PUS ping command TC[17,1]");
|
|
|
|
println!("Sending ping reply PUS TM[17,2]");
|
|
|
|
let ping_reply = self.tm_helper.create_pus_tm_timestamp_now(17, 2, None);
|
|
|
|
let addr = self
|
|
|
|
.tm_store
|
|
|
|
.lock()
|
|
|
|
.expect("Locking TM store failed")
|
|
|
|
.add_pus_tm(&ping_reply);
|
|
|
|
self.tm_tx
|
|
|
|
.send(addr)
|
|
|
|
.expect("Sending TM to TM funnel failed");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|