mcxa-pac 0.2.0

Peripheral Access Crate for MCXA256 devices
Documentation
#[doc = "Register `ESR2` reader"]
pub type R = crate::R<Esr2Spec>;
#[doc = "Inactive Message Buffer\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Imb {
    #[doc = "0: Message buffer indicated by ESR2\\[LPTM\\] is not inactive."]
    InactiveMailboxNo = 0,
    #[doc = "1: At least one message buffer is inactive."]
    InactiveMailboxYes = 1,
}
impl From<Imb> for bool {
    #[inline(always)]
    fn from(variant: Imb) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `IMB` reader - Inactive Message Buffer"]
pub type ImbR = crate::BitReader<Imb>;
impl ImbR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Imb {
        match self.bits {
            false => Imb::InactiveMailboxNo,
            true => Imb::InactiveMailboxYes,
        }
    }
    #[doc = "Message buffer indicated by ESR2\\[LPTM\\] is not inactive."]
    #[inline(always)]
    pub fn is_inactive_mailbox_no(&self) -> bool {
        *self == Imb::InactiveMailboxNo
    }
    #[doc = "At least one message buffer is inactive."]
    #[inline(always)]
    pub fn is_inactive_mailbox_yes(&self) -> bool {
        *self == Imb::InactiveMailboxYes
    }
}
#[doc = "Valid Priority Status\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Vps {
    #[doc = "0: Invalid"]
    Invalid = 0,
    #[doc = "1: Valid"]
    Valid = 1,
}
impl From<Vps> for bool {
    #[inline(always)]
    fn from(variant: Vps) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `VPS` reader - Valid Priority Status"]
pub type VpsR = crate::BitReader<Vps>;
impl VpsR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Vps {
        match self.bits {
            false => Vps::Invalid,
            true => Vps::Valid,
        }
    }
    #[doc = "Invalid"]
    #[inline(always)]
    pub fn is_invalid(&self) -> bool {
        *self == Vps::Invalid
    }
    #[doc = "Valid"]
    #[inline(always)]
    pub fn is_valid(&self) -> bool {
        *self == Vps::Valid
    }
}
#[doc = "Field `LPTM` reader - Lowest Priority TX Message Buffer"]
pub type LptmR = crate::FieldReader;
impl R {
    #[doc = "Bit 13 - Inactive Message Buffer"]
    #[inline(always)]
    pub fn imb(&self) -> ImbR {
        ImbR::new(((self.bits >> 13) & 1) != 0)
    }
    #[doc = "Bit 14 - Valid Priority Status"]
    #[inline(always)]
    pub fn vps(&self) -> VpsR {
        VpsR::new(((self.bits >> 14) & 1) != 0)
    }
    #[doc = "Bits 16:22 - Lowest Priority TX Message Buffer"]
    #[inline(always)]
    pub fn lptm(&self) -> LptmR {
        LptmR::new(((self.bits >> 16) & 0x7f) as u8)
    }
}
#[cfg(feature = "debug")]
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("ESR2")
            .field("imb", &self.imb())
            .field("vps", &self.vps())
            .field("lptm", &self.lptm())
            .finish()
    }
}
#[doc = "Error and Status 2\n\nYou can [`read`](crate::Reg::read) this register and get [`esr2::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct Esr2Spec;
impl crate::RegisterSpec for Esr2Spec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`esr2::R`](R) reader structure"]
impl crate::Readable for Esr2Spec {}
#[doc = "`reset()` method sets ESR2 to value 0"]
impl crate::Resettable for Esr2Spec {}