lpc11xx/c_can/
canir2.rs

1#[doc = "Reader of register CANIR2"]
2pub type R = crate::R<u32, super::CANIR2>;
3#[doc = "Reader of field `INTPND_32_17`"]
4pub type INTPND_32_17_R = crate::R<u16, u16>;
5impl R {
6    #[doc = "Bits 0:15 - Interrupt pending bits of message objects 32 to 17. 0 = This message object is ignored by the message handler. 1 = This message object is the source of an interrupt."]
7    #[inline(always)]
8    pub fn intpnd_32_17(&self) -> INTPND_32_17_R {
9        INTPND_32_17_R::new((self.bits & 0xffff) as u16)
10    }
11}