1 2 3 4 5 6 7 8 9 10 11
#[doc = "Reader of register EIFR"] pub type R = crate::R<u8, super::EIFR>; #[doc = "Reader of field `INTF`"] pub type INTF_R = crate::R<u8, u8>; impl R { #[doc = "Bits 0:1 - External Interrupt Flags"] #[inline(always)] pub fn intf(&self) -> INTF_R { INTF_R::new((self.bits & 0x03) as u8) } }