mirror of
https://github.com/hubaldv/bioz-host-rs.git
synced 2025-12-06 05:11:17 +00:00
9 lines
262 B
Rust
9 lines
262 B
Rust
use crate::icd::{IcdDftNum, MeasurementPointSet};
|
|
|
|
#[derive(Copy, Clone)]
|
|
pub enum StartStopSignal {
|
|
StartSingle(u32, IcdDftNum), // frequency in Hz, DFT number
|
|
StartMulti(MeasurementPointSet), // DFT number, number of points per measurement
|
|
Stop,
|
|
}
|