added trait impls to legacy classes
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
Robin Müller 2023-07-11 00:07:38 +02:00
parent 7db2190ec3
commit 46eab35290
Signed by: muellerr
GPG Key ID: A649FB78196E3849
2 changed files with 7 additions and 3 deletions

View File

@ -213,7 +213,7 @@ impl PusTcSecondaryHeader {
pub mod legacy_tc { pub mod legacy_tc {
use crate::ecss::tc::{ use crate::ecss::tc::{
zc, GenericPusTcSecondaryHeader, PusTcSecondaryHeader, ACK_ALL, zc, GenericPusTcSecondaryHeader, IsPusTelecommand, PusTcSecondaryHeader, ACK_ALL,
PUC_TC_SECONDARY_HEADER_LEN, PUS_TC_MIN_LEN_WITHOUT_APP_DATA, PUC_TC_SECONDARY_HEADER_LEN, PUS_TC_MIN_LEN_WITHOUT_APP_DATA,
}; };
use crate::ecss::{ use crate::ecss::{
@ -524,6 +524,8 @@ pub mod legacy_tc {
fn ack_flags(&self) -> u8; fn ack_flags(&self) -> u8;
}); });
} }
impl IsPusTelecommand for PusTc<'_> {}
} }
/// This class can be used to create PUS C telecommand packet. It is the primary data structure to /// This class can be used to create PUS C telecommand packet. It is the primary data structure to

View File

@ -196,8 +196,8 @@ impl<'slice> TryFrom<zc::PusTmSecHeader<'slice>> for PusTmSecondaryHeader<'slice
pub mod legacy_tm { pub mod legacy_tm {
use crate::ecss::tm::{ use crate::ecss::tm::{
zc, GenericPusTmSecondaryHeader, PusTmSecondaryHeader, PUC_TM_MIN_SEC_HEADER_LEN, zc, GenericPusTmSecondaryHeader, IsPusTelemetry, PusTmSecondaryHeader,
PUS_TM_MIN_LEN_WITHOUT_SOURCE_DATA, PUC_TM_MIN_SEC_HEADER_LEN, PUS_TM_MIN_LEN_WITHOUT_SOURCE_DATA,
}; };
use crate::ecss::PusVersion; use crate::ecss::PusVersion;
use crate::ecss::{ use crate::ecss::{
@ -517,6 +517,8 @@ pub mod legacy_tm {
fn sc_time_ref_status(&self) -> u8; fn sc_time_ref_status(&self) -> u8;
}); });
} }
impl IsPusTelemetry for PusTm<'_> {}
} }
/// This class models the PUS C telemetry packet. It is the primary data structure to generate the /// This class models the PUS C telemetry packet. It is the primary data structure to generate the