autd3_driver/firmware/fpga/silencer_target.rs
/// 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,
}