1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#[doc = "Reader of register IRQ18_SRC"]
pub type R = crate::R<u32, super::IRQ18_SRC>;
#[doc = "Reader of field `INT_SRC`"]
pub type INT_SRC_R = crate::R<u8, u8>;
impl R {
    #[doc = "Bits 0:2 - Bit2: 0 Bit1: 0 Bit0: I2C0_INT"]
    #[inline(always)]
    pub fn int_src(&self) -> INT_SRC_R {
        INT_SRC_R::new((self.bits & 0x07) as u8)
    }
}