pub type RmtReceiveConfig = ReceiveConfig;
Aliased Type§
struct RmtReceiveConfig {
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
impl ReceiveConfig
pub fn new() -> Self
pub fn clock_divider(self, divider: u8) -> Self
pub fn mem_block_num(self, mem_block_num: u8) -> Self
pub fn idle_threshold(self, threshold: u16) -> Self
pub fn filter_ticks_thresh(self, threshold: u8) -> Self
pub fn filter_en(self, enable: bool) -> Self
pub fn carrier(self, carrier: Option<CarrierConfig>) -> Self
pub fn intr_flags(self, flags: EnumSet<InterruptType>) -> Self
Trait Implementations
Source§impl Clone for ReceiveConfig
impl Clone for ReceiveConfig
Source§fn clone(&self) -> ReceiveConfig
fn clone(&self) -> ReceiveConfig
Returns a copy of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more