autd3-rs 0.5.0

Core async client library for the AUTD3 phased-array kit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod emulator;
pub mod error;
pub mod op;

mod client;
mod command;
mod datagram;
mod wire;

pub use client::{LegacyClient, LegacyClientConfig, LegacyResponse, MAX_DEVICES};
pub use command::{LegacyChangePatternBank, LegacyCommand};
pub use datagram::{LegacyDatagramBuilder, LegacyFrame, LegacyFrameIter, LegacyFrames};
pub use error::{LegacyError, PayloadError, TimeoutPhase};
pub use wire::{
    FirmwareVersion, FpgaState, GainStmMode, RX_FRAME_BYTES, Segment, TX_FRAME_BYTES,
    TransitionMode, Version,
};