Merge remote-tracking branch 'origin/main' into stop-logic

This commit is contained in:
Robin Müller 2024-04-10 15:02:59 +02:00
commit 7d7cd99d6a
7 changed files with 8 additions and 5 deletions

1
src/interface/can.rs Normal file
View File

@ -0,0 +1 @@
//! This is a preliminary implementation of the necessary infrastructure to enable communication over OPS-SAT's internal CAN Bus.

View File

@ -1,2 +1,3 @@
pub mod can;
pub mod tcp;
pub mod udp;

View File

@ -13,7 +13,7 @@ use satrs::{
tmtc::{CcsdsDistributor, CcsdsError, ReceivesCcsdsTc, TmPacketSourceCore},
};
use crate::ccsds::CcsdsReceiver;
use crate::tmtc::ccsds::CcsdsReceiver;
#[derive(Default, Clone)]
pub struct SyncTcpTmSource {

View File

@ -21,22 +21,20 @@ use satrs::{
use crate::pus::stack::PusStack;
use crate::pus::test::create_test_service_dynamic;
use crate::pus::{PusReceiver, PusTcMpscRouter};
use crate::tm_funnel::TmFunnelDynamic;
use crate::tmtc::tm_funnel::TmFunnelDynamic;
use crate::tmtc::TcSourceTaskDynamic;
use crate::{
ccsds::CcsdsReceiver,
interface::tcp::{SyncTcpTmSource, TcpTask},
interface::udp::{DynamicUdpTmHandler, UdpTmtcServer},
logger::setup_logger,
tmtc::ccsds::CcsdsReceiver,
tmtc::PusTcSourceProviderDynamic,
};
mod ccsds;
mod interface;
mod logger;
mod pus;
mod requests;
mod tm_funnel;
mod tmtc;
fn main() {

View File

@ -10,6 +10,9 @@ use satrs::{
use std::sync::mpsc::{self, SendError, Sender, TryRecvError};
use thiserror::Error;
pub mod ccsds;
pub mod tm_funnel;
#[derive(Debug, Clone, PartialEq, Eq, Error)]
pub enum MpscStoreAndSendError {
#[error("Store error: {0}")]