imxrt1062-sai1 0.1.1

An imxrt1062-pac subcrate. See the imxrt1062-pac for more details. This crate is not maintained. Consider using the register access layer provided by the [imxrt-rs](https://github.com/imxrt-rs/imxrt-rs) project. Formerly part of the teensy4-rs project.
Documentation
#[doc = "Reader of register TFR[%s]"]
pub type R = crate::R<u32, super::TFR>;
#[doc = "Reader of field `RFP`"]
pub type RFP_R = crate::R<u8, u8>;
#[doc = "Reader of field `WFP`"]
pub type WFP_R = crate::R<u8, u8>;
#[doc = "Write Channel Pointer\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum WCP_A {
    #[doc = "0: No effect."]
    WCP_0 = 0,
    #[doc = "1: FIFO combine is enabled for FIFO writes and this FIFO will be written on the next FIFO write."]
    WCP_1 = 1,
}
impl From<WCP_A> for bool {
    #[inline(always)]
    fn from(variant: WCP_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `WCP`"]
pub type WCP_R = crate::R<bool, WCP_A>;
impl WCP_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> WCP_A {
        match self.bits {
            false => WCP_A::WCP_0,
            true => WCP_A::WCP_1,
        }
    }
    #[doc = "Checks if the value of the field is `WCP_0`"]
    #[inline(always)]
    pub fn is_wcp_0(&self) -> bool {
        *self == WCP_A::WCP_0
    }
    #[doc = "Checks if the value of the field is `WCP_1`"]
    #[inline(always)]
    pub fn is_wcp_1(&self) -> bool {
        *self == WCP_A::WCP_1
    }
}
impl R {
    #[doc = "Bits 0:5 - Read FIFO Pointer"]
    #[inline(always)]
    pub fn rfp(&self) -> RFP_R {
        RFP_R::new((self.bits & 0x3f) as u8)
    }
    #[doc = "Bits 16:21 - Write FIFO Pointer"]
    #[inline(always)]
    pub fn wfp(&self) -> WFP_R {
        WFP_R::new(((self.bits >> 16) & 0x3f) as u8)
    }
    #[doc = "Bit 31 - Write Channel Pointer"]
    #[inline(always)]
    pub fn wcp(&self) -> WCP_R {
        WCP_R::new(((self.bits >> 31) & 0x01) != 0)
    }
}