#[doc = "Register `INT_ENA` reader"]
pub struct R(crate::R<INT_ENA_SPEC>);
impl core::ops::Deref for R {
type Target = crate::R<INT_ENA_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl From<crate::R<INT_ENA_SPEC>> for R {
#[inline(always)]
fn from(reader: crate::R<INT_ENA_SPEC>) -> Self {
R(reader)
}
}
#[doc = "Register `INT_ENA` writer"]
pub struct W(crate::W<INT_ENA_SPEC>);
impl core::ops::Deref for W {
type Target = crate::W<INT_ENA_SPEC>;
#[inline(always)]
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl core::ops::DerefMut for W {
#[inline(always)]
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl From<crate::W<INT_ENA_SPEC>> for W {
#[inline(always)]
fn from(writer: crate::W<INT_ENA_SPEC>) -> Self {
W(writer)
}
}
#[doc = "Field `CH_TX_END_INT_ENA[0-7]` reader - Set this bit to enable rmt_ch%s_tx_end_int_st."]
pub type CH_TX_END_INT_ENA_R = crate::BitReader<bool>;
#[doc = "Field `CH_TX_END_INT_ENA[0-7]` writer - Set this bit to enable rmt_ch%s_tx_end_int_st."]
pub type CH_TX_END_INT_ENA_W<'a, const O: u8> = crate::BitWriter<'a, u32, INT_ENA_SPEC, bool, O>;
#[doc = "Field `CH_RX_END_INT_ENA[0-7]` reader - Set this bit to enable rmt_ch%s_rx_end_int_st."]
pub type CH_RX_END_INT_ENA_R = crate::BitReader<bool>;
#[doc = "Field `CH_RX_END_INT_ENA[0-7]` writer - Set this bit to enable rmt_ch%s_rx_end_int_st."]
pub type CH_RX_END_INT_ENA_W<'a, const O: u8> = crate::BitWriter<'a, u32, INT_ENA_SPEC, bool, O>;
#[doc = "Field `CH_ERR_INT_ENA[0-7]` reader - Set this bit to enable rmt_ch%s_err_int_st."]
pub type CH_ERR_INT_ENA_R = crate::BitReader<bool>;
#[doc = "Field `CH_ERR_INT_ENA[0-7]` writer - Set this bit to enable rmt_ch%s_err_int_st."]
pub type CH_ERR_INT_ENA_W<'a, const O: u8> = crate::BitWriter<'a, u32, INT_ENA_SPEC, bool, O>;
#[doc = "Field `CH_TX_THR_EVENT_INT_ENA[0-7]` reader - Set this bit to enable rmt_ch%s_tx_thr_event_int_st."]
pub type CH_TX_THR_EVENT_INT_ENA_R = crate::BitReader<bool>;
#[doc = "Field `CH_TX_THR_EVENT_INT_ENA[0-7]` writer - Set this bit to enable rmt_ch%s_tx_thr_event_int_st."]
pub type CH_TX_THR_EVENT_INT_ENA_W<'a, const O: u8> =
crate::BitWriter<'a, u32, INT_ENA_SPEC, bool, O>;
impl R {
#[doc = "Set this bit to enable rmt_ch[0-7]_tx_end_int_st."]
#[inline(always)]
pub unsafe fn ch_tx_end_int_ena(&self, n: u8) -> CH_TX_END_INT_ENA_R {
CH_TX_END_INT_ENA_R::new(((self.bits >> (n * 3)) & 1) != 0)
}
#[doc = "Bit 0 - Set this bit to enable rmt_ch0_tx_end_int_st."]
#[inline(always)]
pub fn ch0_tx_end_int_ena(&self) -> CH_TX_END_INT_ENA_R {
CH_TX_END_INT_ENA_R::new((self.bits & 1) != 0)
}
#[doc = "Bit 3 - Set this bit to enable rmt_ch1_tx_end_int_st."]
#[inline(always)]
pub fn ch1_tx_end_int_ena(&self) -> CH_TX_END_INT_ENA_R {
CH_TX_END_INT_ENA_R::new(((self.bits >> 3) & 1) != 0)
}
#[doc = "Bit 6 - Set this bit to enable rmt_ch2_tx_end_int_st."]
#[inline(always)]
pub fn ch2_tx_end_int_ena(&self) -> CH_TX_END_INT_ENA_R {
CH_TX_END_INT_ENA_R::new(((self.bits >> 6) & 1) != 0)
}
#[doc = "Bit 9 - Set this bit to enable rmt_ch3_tx_end_int_st."]
#[inline(always)]
pub fn ch3_tx_end_int_ena(&self) -> CH_TX_END_INT_ENA_R {
CH_TX_END_INT_ENA_R::new(((self.bits >> 9) & 1) != 0)
}
#[doc = "Bit 12 - Set this bit to enable rmt_ch4_tx_end_int_st."]
#[inline(always)]
pub fn ch4_tx_end_int_ena(&self) -> CH_TX_END_INT_ENA_R {
CH_TX_END_INT_ENA_R::new(((self.bits >> 12) & 1) != 0)
}
#[doc = "Bit 15 - Set this bit to enable rmt_ch5_tx_end_int_st."]
#[inline(always)]
pub fn ch5_tx_end_int_ena(&self) -> CH_TX_END_INT_ENA_R {
CH_TX_END_INT_ENA_R::new(((self.bits >> 15) & 1) != 0)
}
#[doc = "Bit 18 - Set this bit to enable rmt_ch6_tx_end_int_st."]
#[inline(always)]
pub fn ch6_tx_end_int_ena(&self) -> CH_TX_END_INT_ENA_R {
CH_TX_END_INT_ENA_R::new(((self.bits >> 18) & 1) != 0)
}
#[doc = "Bit 21 - Set this bit to enable rmt_ch7_tx_end_int_st."]
#[inline(always)]
pub fn ch7_tx_end_int_ena(&self) -> CH_TX_END_INT_ENA_R {
CH_TX_END_INT_ENA_R::new(((self.bits >> 21) & 1) != 0)
}
#[doc = "Set this bit to enable rmt_ch[0-7]_rx_end_int_st."]
#[inline(always)]
pub unsafe fn ch_rx_end_int_ena(&self, n: u8) -> CH_RX_END_INT_ENA_R {
CH_RX_END_INT_ENA_R::new(((self.bits >> (n * 3 + 1)) & 1) != 0)
}
#[doc = "Bit 1 - Set this bit to enable rmt_ch0_rx_end_int_st."]
#[inline(always)]
pub fn ch0_rx_end_int_ena(&self) -> CH_RX_END_INT_ENA_R {
CH_RX_END_INT_ENA_R::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bit 4 - Set this bit to enable rmt_ch1_rx_end_int_st."]
#[inline(always)]
pub fn ch1_rx_end_int_ena(&self) -> CH_RX_END_INT_ENA_R {
CH_RX_END_INT_ENA_R::new(((self.bits >> 4) & 1) != 0)
}
#[doc = "Bit 7 - Set this bit to enable rmt_ch2_rx_end_int_st."]
#[inline(always)]
pub fn ch2_rx_end_int_ena(&self) -> CH_RX_END_INT_ENA_R {
CH_RX_END_INT_ENA_R::new(((self.bits >> 7) & 1) != 0)
}
#[doc = "Bit 10 - Set this bit to enable rmt_ch3_rx_end_int_st."]
#[inline(always)]
pub fn ch3_rx_end_int_ena(&self) -> CH_RX_END_INT_ENA_R {
CH_RX_END_INT_ENA_R::new(((self.bits >> 10) & 1) != 0)
}
#[doc = "Bit 13 - Set this bit to enable rmt_ch4_rx_end_int_st."]
#[inline(always)]
pub fn ch4_rx_end_int_ena(&self) -> CH_RX_END_INT_ENA_R {
CH_RX_END_INT_ENA_R::new(((self.bits >> 13) & 1) != 0)
}
#[doc = "Bit 16 - Set this bit to enable rmt_ch5_rx_end_int_st."]
#[inline(always)]
pub fn ch5_rx_end_int_ena(&self) -> CH_RX_END_INT_ENA_R {
CH_RX_END_INT_ENA_R::new(((self.bits >> 16) & 1) != 0)
}
#[doc = "Bit 19 - Set this bit to enable rmt_ch6_rx_end_int_st."]
#[inline(always)]
pub fn ch6_rx_end_int_ena(&self) -> CH_RX_END_INT_ENA_R {
CH_RX_END_INT_ENA_R::new(((self.bits >> 19) & 1) != 0)
}
#[doc = "Bit 22 - Set this bit to enable rmt_ch7_rx_end_int_st."]
#[inline(always)]
pub fn ch7_rx_end_int_ena(&self) -> CH_RX_END_INT_ENA_R {
CH_RX_END_INT_ENA_R::new(((self.bits >> 22) & 1) != 0)
}
#[doc = "Set this bit to enable rmt_ch[0-7]_err_int_st."]
#[inline(always)]
pub unsafe fn ch_err_int_ena(&self, n: u8) -> CH_ERR_INT_ENA_R {
CH_ERR_INT_ENA_R::new(((self.bits >> (n * 3 + 2)) & 1) != 0)
}
#[doc = "Bit 2 - Set this bit to enable rmt_ch0_err_int_st."]
#[inline(always)]
pub fn ch0_err_int_ena(&self) -> CH_ERR_INT_ENA_R {
CH_ERR_INT_ENA_R::new(((self.bits >> 2) & 1) != 0)
}
#[doc = "Bit 5 - Set this bit to enable rmt_ch1_err_int_st."]
#[inline(always)]
pub fn ch1_err_int_ena(&self) -> CH_ERR_INT_ENA_R {
CH_ERR_INT_ENA_R::new(((self.bits >> 5) & 1) != 0)
}
#[doc = "Bit 8 - Set this bit to enable rmt_ch2_err_int_st."]
#[inline(always)]
pub fn ch2_err_int_ena(&self) -> CH_ERR_INT_ENA_R {
CH_ERR_INT_ENA_R::new(((self.bits >> 8) & 1) != 0)
}
#[doc = "Bit 11 - Set this bit to enable rmt_ch3_err_int_st."]
#[inline(always)]
pub fn ch3_err_int_ena(&self) -> CH_ERR_INT_ENA_R {
CH_ERR_INT_ENA_R::new(((self.bits >> 11) & 1) != 0)
}
#[doc = "Bit 14 - Set this bit to enable rmt_ch4_err_int_st."]
#[inline(always)]
pub fn ch4_err_int_ena(&self) -> CH_ERR_INT_ENA_R {
CH_ERR_INT_ENA_R::new(((self.bits >> 14) & 1) != 0)
}
#[doc = "Bit 17 - Set this bit to enable rmt_ch5_err_int_st."]
#[inline(always)]
pub fn ch5_err_int_ena(&self) -> CH_ERR_INT_ENA_R {
CH_ERR_INT_ENA_R::new(((self.bits >> 17) & 1) != 0)
}
#[doc = "Bit 20 - Set this bit to enable rmt_ch6_err_int_st."]
#[inline(always)]
pub fn ch6_err_int_ena(&self) -> CH_ERR_INT_ENA_R {
CH_ERR_INT_ENA_R::new(((self.bits >> 20) & 1) != 0)
}
#[doc = "Bit 23 - Set this bit to enable rmt_ch7_err_int_st."]
#[inline(always)]
pub fn ch7_err_int_ena(&self) -> CH_ERR_INT_ENA_R {
CH_ERR_INT_ENA_R::new(((self.bits >> 23) & 1) != 0)
}
#[doc = "Set this bit to enable rmt_ch[0-7]_tx_thr_event_int_st."]
#[inline(always)]
pub unsafe fn ch_tx_thr_event_int_ena(&self, n: u8) -> CH_TX_THR_EVENT_INT_ENA_R {
CH_TX_THR_EVENT_INT_ENA_R::new(((self.bits >> (n + 24)) & 1) != 0)
}
#[doc = "Bit 24 - Set this bit to enable rmt_ch0_tx_thr_event_int_st."]
#[inline(always)]
pub fn ch0_tx_thr_event_int_ena(&self) -> CH_TX_THR_EVENT_INT_ENA_R {
CH_TX_THR_EVENT_INT_ENA_R::new(((self.bits >> 24) & 1) != 0)
}
#[doc = "Bit 25 - Set this bit to enable rmt_ch1_tx_thr_event_int_st."]
#[inline(always)]
pub fn ch1_tx_thr_event_int_ena(&self) -> CH_TX_THR_EVENT_INT_ENA_R {
CH_TX_THR_EVENT_INT_ENA_R::new(((self.bits >> 25) & 1) != 0)
}
#[doc = "Bit 26 - Set this bit to enable rmt_ch2_tx_thr_event_int_st."]
#[inline(always)]
pub fn ch2_tx_thr_event_int_ena(&self) -> CH_TX_THR_EVENT_INT_ENA_R {
CH_TX_THR_EVENT_INT_ENA_R::new(((self.bits >> 26) & 1) != 0)
}
#[doc = "Bit 27 - Set this bit to enable rmt_ch3_tx_thr_event_int_st."]
#[inline(always)]
pub fn ch3_tx_thr_event_int_ena(&self) -> CH_TX_THR_EVENT_INT_ENA_R {
CH_TX_THR_EVENT_INT_ENA_R::new(((self.bits >> 27) & 1) != 0)
}
#[doc = "Bit 28 - Set this bit to enable rmt_ch4_tx_thr_event_int_st."]
#[inline(always)]
pub fn ch4_tx_thr_event_int_ena(&self) -> CH_TX_THR_EVENT_INT_ENA_R {
CH_TX_THR_EVENT_INT_ENA_R::new(((self.bits >> 28) & 1) != 0)
}
#[doc = "Bit 29 - Set this bit to enable rmt_ch5_tx_thr_event_int_st."]
#[inline(always)]
pub fn ch5_tx_thr_event_int_ena(&self) -> CH_TX_THR_EVENT_INT_ENA_R {
CH_TX_THR_EVENT_INT_ENA_R::new(((self.bits >> 29) & 1) != 0)
}
#[doc = "Bit 30 - Set this bit to enable rmt_ch6_tx_thr_event_int_st."]
#[inline(always)]
pub fn ch6_tx_thr_event_int_ena(&self) -> CH_TX_THR_EVENT_INT_ENA_R {
CH_TX_THR_EVENT_INT_ENA_R::new(((self.bits >> 30) & 1) != 0)
}
#[doc = "Bit 31 - Set this bit to enable rmt_ch7_tx_thr_event_int_st."]
#[inline(always)]
pub fn ch7_tx_thr_event_int_ena(&self) -> CH_TX_THR_EVENT_INT_ENA_R {
CH_TX_THR_EVENT_INT_ENA_R::new(((self.bits >> 31) & 1) != 0)
}
}
impl W {
#[doc = "Set this bit to enable rmt_ch[0-7]_tx_end_int_st."]
#[inline(always)]
#[must_use]
pub unsafe fn ch_tx_end_int_ena<const O: u8>(&mut self) -> CH_TX_END_INT_ENA_W<O> {
CH_TX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 0 - Set this bit to enable rmt_ch0_tx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch0_tx_end_int_ena(&mut self) -> CH_TX_END_INT_ENA_W<0> {
CH_TX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 3 - Set this bit to enable rmt_ch1_tx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch1_tx_end_int_ena(&mut self) -> CH_TX_END_INT_ENA_W<3> {
CH_TX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 6 - Set this bit to enable rmt_ch2_tx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch2_tx_end_int_ena(&mut self) -> CH_TX_END_INT_ENA_W<6> {
CH_TX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 9 - Set this bit to enable rmt_ch3_tx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch3_tx_end_int_ena(&mut self) -> CH_TX_END_INT_ENA_W<9> {
CH_TX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 12 - Set this bit to enable rmt_ch4_tx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch4_tx_end_int_ena(&mut self) -> CH_TX_END_INT_ENA_W<12> {
CH_TX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 15 - Set this bit to enable rmt_ch5_tx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch5_tx_end_int_ena(&mut self) -> CH_TX_END_INT_ENA_W<15> {
CH_TX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 18 - Set this bit to enable rmt_ch6_tx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch6_tx_end_int_ena(&mut self) -> CH_TX_END_INT_ENA_W<18> {
CH_TX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 21 - Set this bit to enable rmt_ch7_tx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch7_tx_end_int_ena(&mut self) -> CH_TX_END_INT_ENA_W<21> {
CH_TX_END_INT_ENA_W::new(self)
}
#[doc = "Set this bit to enable rmt_ch[0-7]_rx_end_int_st."]
#[inline(always)]
#[must_use]
pub unsafe fn ch_rx_end_int_ena<const O: u8>(&mut self) -> CH_RX_END_INT_ENA_W<O> {
CH_RX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 1 - Set this bit to enable rmt_ch0_rx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch0_rx_end_int_ena(&mut self) -> CH_RX_END_INT_ENA_W<1> {
CH_RX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 4 - Set this bit to enable rmt_ch1_rx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch1_rx_end_int_ena(&mut self) -> CH_RX_END_INT_ENA_W<4> {
CH_RX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 7 - Set this bit to enable rmt_ch2_rx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch2_rx_end_int_ena(&mut self) -> CH_RX_END_INT_ENA_W<7> {
CH_RX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 10 - Set this bit to enable rmt_ch3_rx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch3_rx_end_int_ena(&mut self) -> CH_RX_END_INT_ENA_W<10> {
CH_RX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 13 - Set this bit to enable rmt_ch4_rx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch4_rx_end_int_ena(&mut self) -> CH_RX_END_INT_ENA_W<13> {
CH_RX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 16 - Set this bit to enable rmt_ch5_rx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch5_rx_end_int_ena(&mut self) -> CH_RX_END_INT_ENA_W<16> {
CH_RX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 19 - Set this bit to enable rmt_ch6_rx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch6_rx_end_int_ena(&mut self) -> CH_RX_END_INT_ENA_W<19> {
CH_RX_END_INT_ENA_W::new(self)
}
#[doc = "Bit 22 - Set this bit to enable rmt_ch7_rx_end_int_st."]
#[inline(always)]
#[must_use]
pub fn ch7_rx_end_int_ena(&mut self) -> CH_RX_END_INT_ENA_W<22> {
CH_RX_END_INT_ENA_W::new(self)
}
#[doc = "Set this bit to enable rmt_ch[0-7]_err_int_st."]
#[inline(always)]
#[must_use]
pub unsafe fn ch_err_int_ena<const O: u8>(&mut self) -> CH_ERR_INT_ENA_W<O> {
CH_ERR_INT_ENA_W::new(self)
}
#[doc = "Bit 2 - Set this bit to enable rmt_ch0_err_int_st."]
#[inline(always)]
#[must_use]
pub fn ch0_err_int_ena(&mut self) -> CH_ERR_INT_ENA_W<2> {
CH_ERR_INT_ENA_W::new(self)
}
#[doc = "Bit 5 - Set this bit to enable rmt_ch1_err_int_st."]
#[inline(always)]
#[must_use]
pub fn ch1_err_int_ena(&mut self) -> CH_ERR_INT_ENA_W<5> {
CH_ERR_INT_ENA_W::new(self)
}
#[doc = "Bit 8 - Set this bit to enable rmt_ch2_err_int_st."]
#[inline(always)]
#[must_use]
pub fn ch2_err_int_ena(&mut self) -> CH_ERR_INT_ENA_W<8> {
CH_ERR_INT_ENA_W::new(self)
}
#[doc = "Bit 11 - Set this bit to enable rmt_ch3_err_int_st."]
#[inline(always)]
#[must_use]
pub fn ch3_err_int_ena(&mut self) -> CH_ERR_INT_ENA_W<11> {
CH_ERR_INT_ENA_W::new(self)
}
#[doc = "Bit 14 - Set this bit to enable rmt_ch4_err_int_st."]
#[inline(always)]
#[must_use]
pub fn ch4_err_int_ena(&mut self) -> CH_ERR_INT_ENA_W<14> {
CH_ERR_INT_ENA_W::new(self)
}
#[doc = "Bit 17 - Set this bit to enable rmt_ch5_err_int_st."]
#[inline(always)]
#[must_use]
pub fn ch5_err_int_ena(&mut self) -> CH_ERR_INT_ENA_W<17> {
CH_ERR_INT_ENA_W::new(self)
}
#[doc = "Bit 20 - Set this bit to enable rmt_ch6_err_int_st."]
#[inline(always)]
#[must_use]
pub fn ch6_err_int_ena(&mut self) -> CH_ERR_INT_ENA_W<20> {
CH_ERR_INT_ENA_W::new(self)
}
#[doc = "Bit 23 - Set this bit to enable rmt_ch7_err_int_st."]
#[inline(always)]
#[must_use]
pub fn ch7_err_int_ena(&mut self) -> CH_ERR_INT_ENA_W<23> {
CH_ERR_INT_ENA_W::new(self)
}
#[doc = "Set this bit to enable rmt_ch[0-7]_tx_thr_event_int_st."]
#[inline(always)]
#[must_use]
pub unsafe fn ch_tx_thr_event_int_ena<const O: u8>(&mut self) -> CH_TX_THR_EVENT_INT_ENA_W<O> {
CH_TX_THR_EVENT_INT_ENA_W::new(self)
}
#[doc = "Bit 24 - Set this bit to enable rmt_ch0_tx_thr_event_int_st."]
#[inline(always)]
#[must_use]
pub fn ch0_tx_thr_event_int_ena(&mut self) -> CH_TX_THR_EVENT_INT_ENA_W<24> {
CH_TX_THR_EVENT_INT_ENA_W::new(self)
}
#[doc = "Bit 25 - Set this bit to enable rmt_ch1_tx_thr_event_int_st."]
#[inline(always)]
#[must_use]
pub fn ch1_tx_thr_event_int_ena(&mut self) -> CH_TX_THR_EVENT_INT_ENA_W<25> {
CH_TX_THR_EVENT_INT_ENA_W::new(self)
}
#[doc = "Bit 26 - Set this bit to enable rmt_ch2_tx_thr_event_int_st."]
#[inline(always)]
#[must_use]
pub fn ch2_tx_thr_event_int_ena(&mut self) -> CH_TX_THR_EVENT_INT_ENA_W<26> {
CH_TX_THR_EVENT_INT_ENA_W::new(self)
}
#[doc = "Bit 27 - Set this bit to enable rmt_ch3_tx_thr_event_int_st."]
#[inline(always)]
#[must_use]
pub fn ch3_tx_thr_event_int_ena(&mut self) -> CH_TX_THR_EVENT_INT_ENA_W<27> {
CH_TX_THR_EVENT_INT_ENA_W::new(self)
}
#[doc = "Bit 28 - Set this bit to enable rmt_ch4_tx_thr_event_int_st."]
#[inline(always)]
#[must_use]
pub fn ch4_tx_thr_event_int_ena(&mut self) -> CH_TX_THR_EVENT_INT_ENA_W<28> {
CH_TX_THR_EVENT_INT_ENA_W::new(self)
}
#[doc = "Bit 29 - Set this bit to enable rmt_ch5_tx_thr_event_int_st."]
#[inline(always)]
#[must_use]
pub fn ch5_tx_thr_event_int_ena(&mut self) -> CH_TX_THR_EVENT_INT_ENA_W<29> {
CH_TX_THR_EVENT_INT_ENA_W::new(self)
}
#[doc = "Bit 30 - Set this bit to enable rmt_ch6_tx_thr_event_int_st."]
#[inline(always)]
#[must_use]
pub fn ch6_tx_thr_event_int_ena(&mut self) -> CH_TX_THR_EVENT_INT_ENA_W<30> {
CH_TX_THR_EVENT_INT_ENA_W::new(self)
}
#[doc = "Bit 31 - Set this bit to enable rmt_ch7_tx_thr_event_int_st."]
#[inline(always)]
#[must_use]
pub fn ch7_tx_thr_event_int_ena(&mut self) -> CH_TX_THR_EVENT_INT_ENA_W<31> {
CH_TX_THR_EVENT_INT_ENA_W::new(self)
}
#[doc = "Writes raw bits to the register."]
#[inline(always)]
pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
self.0.bits(bits);
self
}
}
#[doc = "\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [int_ena](index.html) module"]
pub struct INT_ENA_SPEC;
impl crate::RegisterSpec for INT_ENA_SPEC {
type Ux = u32;
}
#[doc = "`read()` method returns [int_ena::R](R) reader structure"]
impl crate::Readable for INT_ENA_SPEC {
type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [int_ena::W](W) writer structure"]
impl crate::Writable for INT_ENA_SPEC {
type Writer = W;
const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
}
#[doc = "`reset()` method sets INT_ENA to value 0"]
impl crate::Resettable for INT_ENA_SPEC {
const RESET_VALUE: Self::Ux = 0;
}