allow verif failure and completion starting from accepted

- Also add some prototyping code a prep for generic PUS router
This commit is contained in:
2023-02-28 14:53:57 +01:00
parent b2fc172b0a
commit 53003b9c66
3 changed files with 80 additions and 31 deletions
satrs-core/src
satrs-example/src

@ -36,9 +36,13 @@ impl ModeAndSubmode {
})
}
pub fn mode(&self) -> u32 {self.mode}
pub fn mode(&self) -> u32 {
self.mode
}
pub fn submode(&self) -> u16 {self.submode}
pub fn submode(&self) -> u16 {
self.submode
}
}
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]