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