1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#[doc = "Reader of register PDR3"]
pub type R = crate::R<u32, super::PDR3>;
#[doc = "Reader of field `PDR`"]
pub type PDR_R = crate::R<u16, u16>;
impl R {
    #[doc = "Bits 0:15 - PWM Data Register User can monitor PDR to know current value in 16-bit down counter."]
    #[inline(always)]
    pub fn pdr(&self) -> PDR_R {
        PDR_R::new((self.bits & 0xffff) as u16)
    }
}