autd3_driver/firmware/fpga/
silencer_target.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
/// Silencer target.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
#[repr(u8)]
pub enum SilencerTarget {
    /// Apply the silencer to the intensity (before [`PulseWidthEncoder`]).
    ///
    /// [`PulseWidthEncoder`]: crate::datagram::PulseWidthEncoder
    Intensity = 0,
    /// Apply the silencer to the pulse width (after [`PulseWidthEncoder`]).
    ///
    /// [`PulseWidthEncoder`]: crate::datagram::PulseWidthEncoder
    PulseWidth = 1,
}