pub type R = crate::R<DHR12LDrs>;
pub type W = crate::W<DHR12LDrs>;
pub type DACCDHR_R = crate::FieldReader<u16>;
pub type DACCDHR_W<'a, REG> = crate::FieldWriter<'a, REG, 12, u16, crate::Safe>;
impl R {
                #[inline(always)]
    pub fn daccdhr(&self, n: u8) -> DACCDHR_R {
        #[allow(clippy::no_effect)]
        [(); 2][n as usize];
        DACCDHR_R::new(((self.bits >> (n * 16 + 4)) & 0x0fff) as u16)
    }
            #[inline(always)]
    pub fn daccdhr_iter(&self) -> impl Iterator<Item = DACCDHR_R> + '_ {
        (0..2).map(move |n| DACCDHR_R::new(((self.bits >> (n * 16 + 4)) & 0x0fff) as u16))
    }
        #[inline(always)]
    pub fn dacc1dhr(&self) -> DACCDHR_R {
        DACCDHR_R::new(((self.bits >> 4) & 0x0fff) as u16)
    }
        #[inline(always)]
    pub fn dacc2dhr(&self) -> DACCDHR_R {
        DACCDHR_R::new(((self.bits >> 20) & 0x0fff) as u16)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("DHR12LD")
            .field("dacc1dhr", &self.dacc1dhr())
            .field("dacc2dhr", &self.dacc2dhr())
            .finish()
    }
}
impl W {
                #[inline(always)]
    pub fn daccdhr(&mut self, n: u8) -> DACCDHR_W<DHR12LDrs> {
        #[allow(clippy::no_effect)]
        [(); 2][n as usize];
        DACCDHR_W::new(self, n * 16 + 4)
    }
        #[inline(always)]
    pub fn dacc1dhr(&mut self) -> DACCDHR_W<DHR12LDrs> {
        DACCDHR_W::new(self, 4)
    }
        #[inline(always)]
    pub fn dacc2dhr(&mut self) -> DACCDHR_W<DHR12LDrs> {
        DACCDHR_W::new(self, 20)
    }
}
pub struct DHR12LDrs;
impl crate::RegisterSpec for DHR12LDrs {
    type Ux = u32;
}
impl crate::Readable for DHR12LDrs {}
impl crate::Writable for DHR12LDrs {
    type Safety = crate::Unsafe;
}
impl crate::Resettable for DHR12LDrs {}