autd3-rs-core 0.9.0

Core types and link abstraction shared across the AUTD3 phased-array sdk crates.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod rx_frame;
mod seq;
mod tx_frame;

pub use autd3_cpu_wire::{
    Cmd, DEVICE_TO_HOST_BYTES as RX_FRAME_BYTES, Error as DeviceErrorCode,
    HOST_TO_DEVICE_BYTES as TX_FRAME_BYTES, PAYLOAD_BYTES, describe_device_error,
};
pub use rx_frame::RxFrame;
pub use seq::Seq;
pub use tx_frame::TxFrame;

pub const MAX_INFLIGHT: usize = 127;