autd3_link_soem/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(feature = "local")]
pub mod local;
#[cfg(all(feature = "local", target_os = "windows"))]
pub use local::ProcessPriority;
#[cfg(feature = "local")]
pub use local::{
    EthernetAdapters, Status, SyncMode, ThreadPriority, ThreadPriorityValue, TimerStrategy, SOEM,
};

#[cfg(feature = "remote")]
pub mod remote;
#[cfg(feature = "remote")]
pub use remote::RemoteSOEM;