CFDP destination handler #62

Merged
muellerr merged 49 commits from cfdp-state-machines into main 2023-09-21 18:47:07 +02:00
2 changed files with 4 additions and 3 deletions
Showing only changes of commit c0e1cb8bcf - Show all commits

View File

@ -62,9 +62,9 @@ optional = true
[dependencies.spacepackets]
# version = "0.6"
# path = "../spacepackets"
git = "https://egit.irs.uni-stuttgart.de/rust/spacepackets.git"
rev = "041959e546e6e72b24eb50986c425a924015e3f4"
path = "../../spacepackets"
# git = "https://egit.irs.uni-stuttgart.de/rust/spacepackets.git"
# rev = "041959e546e6e72b24eb50986c425a924015e3f4"
default-features = false
[dev-dependencies]

View File

@ -86,6 +86,7 @@ impl DestinationHandler {
return Err(DestError::RecvdMetadataButIsBusy);
}
let metadata_pdu = MetadataPdu::from_bytes(raw_packet)?;
let params = metadata_pdu.metadata_params();
Ok(())
}