Type Alias esp_idf_hal::rmt::TxRmtConfig

source ·
pub type TxRmtConfig = TransmitConfig;

Aliased Type§

struct TxRmtConfig {
    pub clock_divider: u8,
    pub mem_block_num: u8,
    pub carrier: Option<CarrierConfig>,
    pub looping: Loop,
    pub idle: Option<PinState>,
    pub aware_dfs: bool,
    pub intr_flags: EnumSet<InterruptType>,
}

Fields§

§clock_divider: u8§mem_block_num: u8§carrier: Option<CarrierConfig>§looping: Loop§idle: Option<PinState>

Enable and set the signal level on the output if idle.

§aware_dfs: bool

Channel can work during APB clock scaling.

When set, RMT channel will take REF_TICK or XTAL as source clock. The benefit is, RMT channel can continue work even when APB clock is changing.

§intr_flags: EnumSet<InterruptType>