From a9b0de218f44c9045fcc5a3504d61b9188cef0dc Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Mon, 19 Dec 2022 17:05:50 +0100 Subject: [PATCH] add HK subservice enum --- satrs-core/src/pus/hk.rs | 2 ++ satrs-core/src/pus/mod.rs | 1 + 2 files changed, 3 insertions(+) create mode 100644 satrs-core/src/pus/hk.rs diff --git a/satrs-core/src/pus/hk.rs b/satrs-core/src/pus/hk.rs new file mode 100644 index 0000000..062b3fb --- /dev/null +++ b/satrs-core/src/pus/hk.rs @@ -0,0 +1,2 @@ +#[derive(Debug, Copy, Clone, PartialEq, Eq)] +pub enum Subservice {} diff --git a/satrs-core/src/pus/mod.rs b/satrs-core/src/pus/mod.rs index ef06002..ba4629a 100644 --- a/satrs-core/src/pus/mod.rs +++ b/satrs-core/src/pus/mod.rs @@ -12,6 +12,7 @@ use spacepackets::{ByteConversionError, SizeMissmatch}; pub mod event; pub mod event_man; +pub mod hk; pub mod verification; /// Generic error type which is also able to wrap a user send error with the user supplied type E.