1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#[doc = "Reader of register MISR"] pub type R = crate::R<u32, super::MISR>; #[doc = "Reader of field `ALRAMF`"] pub type ALRAMF_R = crate::R<bool, bool>; #[doc = "Reader of field `ALRBMF`"] pub type ALRBMF_R = crate::R<bool, bool>; #[doc = "Reader of field `WUTMF`"] pub type WUTMF_R = crate::R<bool, bool>; #[doc = "Reader of field `TSMF`"] pub type TSMF_R = crate::R<bool, bool>; #[doc = "Reader of field `TSOVMF`"] pub type TSOVMF_R = crate::R<bool, bool>; #[doc = "Reader of field `ITSMF`"] pub type ITSMF_R = crate::R<bool, bool>; impl R { #[doc = "Bit 0 - ALRAMF"] #[inline(always)] pub fn alramf(&self) -> ALRAMF_R { ALRAMF_R::new((self.bits & 0x01) != 0) } #[doc = "Bit 1 - ALRBMF"] #[inline(always)] pub fn alrbmf(&self) -> ALRBMF_R { ALRBMF_R::new(((self.bits >> 1) & 0x01) != 0) } #[doc = "Bit 2 - WUTMF"] #[inline(always)] pub fn wutmf(&self) -> WUTMF_R { WUTMF_R::new(((self.bits >> 2) & 0x01) != 0) } #[doc = "Bit 3 - TSMF"] #[inline(always)] pub fn tsmf(&self) -> TSMF_R { TSMF_R::new(((self.bits >> 3) & 0x01) != 0) } #[doc = "Bit 4 - TSOVMF"] #[inline(always)] pub fn tsovmf(&self) -> TSOVMF_R { TSOVMF_R::new(((self.bits >> 4) & 0x01) != 0) } #[doc = "Bit 5 - ITSMF"] #[inline(always)] pub fn itsmf(&self) -> ITSMF_R { ITSMF_R::new(((self.bits >> 5) & 0x01) != 0) } }