add some documentation and other improvements
All checks were successful
Rust/sat-rs/pipeline/pr-main This commit looks good

This commit is contained in:
2023-12-22 19:40:58 +01:00
parent 7776847364
commit c5054c323e
2 changed files with 39 additions and 23 deletions

View File

@ -37,8 +37,12 @@ pub enum TimerContext {
remote_id: UnsignedByteField,
entity_type: EntityType,
},
NakActivity(f32),
PositiveAck(f32),
NakActivity {
expiry_time_seconds: f32,
},
PositiveAck {
expiry_time_seconds: f32,
},
}
/// Generic abstraction for a check timer which is used by 3 mechanisms of the CFDP protocol.