1
2
3
4
5
6
7
8
9
#[doc = "Reader of register PH_DIN"]
pub type R = crate::R<u32, super::PH_DIN>;
#[doc = "Reader of field `DIN`"]
pub type DIN_R = crate::R<u16, u16>;
impl R {
    #[doc = "Bits 0:15 - Data in"]
    #[inline(always)]
    pub fn din(&self) -> DIN_R { DIN_R::new((self.bits & 0xffff) as u16) }
}