added some generic scheduling definitions
All checks were successful
Rust/spacepackets/pipeline/head This commit looks good

This commit is contained in:
2023-02-04 14:41:59 +01:00
parent 5e208e7c23
commit effef4609b
2 changed files with 95 additions and 0 deletions

View File

@ -12,6 +12,8 @@ use serde::{Deserialize, Serialize};
#[cfg(feature = "std")]
use std::error::Error;
pub mod scheduling;
pub type CrcType = u16;
/// CRC algorithm used by the PUS standard.
@ -29,6 +31,8 @@ pub enum PusServiceId {
Event = 5,
/// Service 8
Action = 8,
/// Service 11
Scheduling = 11,
/// Service 17
Test = 17,
}