added some stuff

This commit is contained in:
lkoester
2023-01-19 16:16:48 +01:00
parent e7600891ec
commit 1e3aa40a87
9 changed files with 146 additions and 34 deletions

12
src/cam.rs Normal file
View File

@ -0,0 +1,12 @@
use satrs_core::tmtc::AddressableId;
pub type CollectionIntervalFactor = u32;
//#[derive(Debug, Copy, Clone, PartialEq, Eq)]
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
pub enum CameraRequest {
OneShot(AddressableId),
OneShotWithTimeStamp(AddressableId),
}