esp_idf_svc::hal::rmt

Type Alias RxRmtConfig

Source
pub type RxRmtConfig = ReceiveConfig;

Aliased Type§

struct RxRmtConfig {
    pub clock_divider: u8,
    pub mem_block_num: u8,
    pub idle_threshold: u16,
    pub filter_ticks_thresh: u8,
    pub filter_en: bool,
    pub carrier: Option<CarrierConfig>,
    pub intr_flags: EnumSet<InterruptType>,
}

Fields§

§clock_divider: u8§mem_block_num: u8§idle_threshold: u16§filter_ticks_thresh: u8§filter_en: bool§carrier: Option<CarrierConfig>§intr_flags: EnumSet<InterruptType>

Implementations

Source§

impl ReceiveConfig

Source

pub fn new() -> ReceiveConfig

Source

pub fn clock_divider(self, divider: u8) -> ReceiveConfig

Source

pub fn mem_block_num(self, mem_block_num: u8) -> ReceiveConfig

Source

pub fn idle_threshold(self, threshold: u16) -> ReceiveConfig

Source

pub fn filter_ticks_thresh(self, threshold: u8) -> ReceiveConfig

Source

pub fn filter_en(self, enable: bool) -> ReceiveConfig

Source

pub fn carrier(self, carrier: Option<CarrierConfig>) -> ReceiveConfig

Source

pub fn intr_flags(self, flags: EnumSet<InterruptType>) -> ReceiveConfig

Trait Implementations

Source§

impl Clone for ReceiveConfig

Source§

fn clone(&self) -> ReceiveConfig

Returns a copy of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ReceiveConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for ReceiveConfig

Source§

fn default() -> ReceiveConfig

Defaults from <https://github.com/espressif/esp-idf/blob/master/components/driver/include/driver/rmt.h#L110>