esp32c61 0.2.0

Peripheral access crate for the ESP32-C61
Documentation
#[doc = "Register `INFIFO_STATUS` reader"]
pub type R = crate::R<INFIFO_STATUS_SPEC>;
#[doc = "Field `INFIFO_FULL_CH0` reader - Represents whether L1 RX FIFO is full.\\\\0: Not Full\\\\1: Full\\\\"]
pub type INFIFO_FULL_CH0_R = crate::BitReader;
#[doc = "Field `INFIFO_EMPTY_CH0` reader - Represents whether L1 RX FIFO is empty.\\\\0: Not empty\\\\1: Empty\\\\"]
pub type INFIFO_EMPTY_CH0_R = crate::BitReader;
#[doc = "Field `INFIFO_CNT_CH0` reader - Represents the number of data bytes in L1 RX FIFO for RX channel 0"]
pub type INFIFO_CNT_CH0_R = crate::FieldReader;
#[doc = "Field `IN_REMAIN_UNDER_1B_CH0` reader - reserved"]
pub type IN_REMAIN_UNDER_1B_CH0_R = crate::BitReader;
#[doc = "Field `IN_REMAIN_UNDER_2B_CH0` reader - reserved"]
pub type IN_REMAIN_UNDER_2B_CH0_R = crate::BitReader;
#[doc = "Field `IN_REMAIN_UNDER_3B_CH0` reader - reserved"]
pub type IN_REMAIN_UNDER_3B_CH0_R = crate::BitReader;
#[doc = "Field `IN_REMAIN_UNDER_4B_CH0` reader - reserved"]
pub type IN_REMAIN_UNDER_4B_CH0_R = crate::BitReader;
#[doc = "Field `IN_BUF_HUNGRY_CH0` reader - reserved"]
pub type IN_BUF_HUNGRY_CH0_R = crate::BitReader;
impl R {
    #[doc = "Bit 0 - Represents whether L1 RX FIFO is full.\\\\0: Not Full\\\\1: Full\\\\"]
    #[inline(always)]
    pub fn infifo_full_ch0(&self) -> INFIFO_FULL_CH0_R {
        INFIFO_FULL_CH0_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Represents whether L1 RX FIFO is empty.\\\\0: Not empty\\\\1: Empty\\\\"]
    #[inline(always)]
    pub fn infifo_empty_ch0(&self) -> INFIFO_EMPTY_CH0_R {
        INFIFO_EMPTY_CH0_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bits 8:14 - Represents the number of data bytes in L1 RX FIFO for RX channel 0"]
    #[inline(always)]
    pub fn infifo_cnt_ch0(&self) -> INFIFO_CNT_CH0_R {
        INFIFO_CNT_CH0_R::new(((self.bits >> 8) & 0x7f) as u8)
    }
    #[doc = "Bit 23 - reserved"]
    #[inline(always)]
    pub fn in_remain_under_1b_ch0(&self) -> IN_REMAIN_UNDER_1B_CH0_R {
        IN_REMAIN_UNDER_1B_CH0_R::new(((self.bits >> 23) & 1) != 0)
    }
    #[doc = "Bit 24 - reserved"]
    #[inline(always)]
    pub fn in_remain_under_2b_ch0(&self) -> IN_REMAIN_UNDER_2B_CH0_R {
        IN_REMAIN_UNDER_2B_CH0_R::new(((self.bits >> 24) & 1) != 0)
    }
    #[doc = "Bit 25 - reserved"]
    #[inline(always)]
    pub fn in_remain_under_3b_ch0(&self) -> IN_REMAIN_UNDER_3B_CH0_R {
        IN_REMAIN_UNDER_3B_CH0_R::new(((self.bits >> 25) & 1) != 0)
    }
    #[doc = "Bit 26 - reserved"]
    #[inline(always)]
    pub fn in_remain_under_4b_ch0(&self) -> IN_REMAIN_UNDER_4B_CH0_R {
        IN_REMAIN_UNDER_4B_CH0_R::new(((self.bits >> 26) & 1) != 0)
    }
    #[doc = "Bit 27 - reserved"]
    #[inline(always)]
    pub fn in_buf_hungry_ch0(&self) -> IN_BUF_HUNGRY_CH0_R {
        IN_BUF_HUNGRY_CH0_R::new(((self.bits >> 27) & 1) != 0)
    }
}
#[cfg(feature = "impl-register-debug")]
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("INFIFO_STATUS")
            .field("infifo_full_ch0", &self.infifo_full_ch0())
            .field("infifo_empty_ch0", &self.infifo_empty_ch0())
            .field("infifo_cnt_ch0", &self.infifo_cnt_ch0())
            .field("in_remain_under_1b_ch0", &self.in_remain_under_1b_ch0())
            .field("in_remain_under_2b_ch0", &self.in_remain_under_2b_ch0())
            .field("in_remain_under_3b_ch0", &self.in_remain_under_3b_ch0())
            .field("in_remain_under_4b_ch0", &self.in_remain_under_4b_ch0())
            .field("in_buf_hungry_ch0", &self.in_buf_hungry_ch0())
            .finish()
    }
}
#[doc = "Receive FIFO status of RX channel 0\n\nYou can [`read`](crate::Reg::read) this register and get [`infifo_status::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct INFIFO_STATUS_SPEC;
impl crate::RegisterSpec for INFIFO_STATUS_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`infifo_status::R`](R) reader structure"]
impl crate::Readable for INFIFO_STATUS_SPEC {}
#[doc = "`reset()` method sets INFIFO_STATUS to value 0x0780_0003"]
impl crate::Resettable for INFIFO_STATUS_SPEC {
    const RESET_VALUE: u32 = 0x0780_0003;
}