merging main

This commit is contained in:
lkoester
2023-01-25 10:15:21 +01:00
parent 299135a4c4
commit dce29035a2
3 changed files with 108 additions and 0 deletions

View File

@ -7,6 +7,18 @@ use std::time::SystemTimeError;
use std::vec;
use std::vec::Vec;
//TODO: Move to spacepackets
#[derive(Debug, PartialEq, Copy, Clone)]
pub enum ScheduleSubservice {
EnableScheduling = 1,
DisableScheduling = 2,
ResetScheduling = 3,
InsertActivity = 4,
DeleteActivity = 5,
}
#[derive(Debug)]
pub struct PusScheduler {
tc_map: BTreeMap<UnixTimestamp, Vec<StoreAddr>>,