hex-motor 0.1.1

Rust driver library for HEX-MECHA motors over CANopen, built on can-transport.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! 跨协议复用的纯数据类型。

pub mod errors;
pub mod identity;
pub mod mode;
pub mod target;

pub use errors::MotorErrorKind;
pub use identity::MotorIdentity;
pub use mode::MotorMode;
pub use target::{MitMapping, MotorTarget, ProfileParams};