start adding CFDP state machines
Some checks failed
Rust/sat-rs/pipeline/head There was a failure building this commit

This commit is contained in:
2023-07-21 20:23:24 +02:00
parent 698c2edb93
commit 0e2a413505
3 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,13 @@
use super::{TransactionStep, State};
pub struct DestinationHandler {
step: TransactionStep,
state: State
}
impl DestinationHandler {
pub fn state_machine() {}
}