12 lines
269 B
Rust
12 lines
269 B
Rust
|
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),
|
||
|
}
|