gmt_dos-clients_m2-ctrl 4.1.0

GMT DOS M2 Control Client
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(topend = "ASM")]
mod asm;
#[cfg(topend = "ASM")]
pub use asm::*;
#[cfg(topend = "FSM")]
mod fsm;
#[cfg(topend = "FSM")]
pub use fsm::*;

#[cfg(topend = "ASM")]
pub type M2SegmentInnerController<const SID: u8> = AsmSegmentInnerController<SID>;
#[cfg(topend = "FSM")]
pub type M2SegmentInnerController<const SID: u8> = FsmSegmentInnerController<SID>;

mod positioner;
pub use positioner::{Positioners, PositionersError};