pub type R = crate::R<DHR12RDrs>;
pub type W = crate::W<DHR12RDrs>;
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)) & 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)) & 0x0fff) as u16))
}
#[inline(always)]
pub fn dacc1dhr(&self) -> DACCDHR_R {
DACCDHR_R::new((self.bits & 0x0fff) as u16)
}
#[inline(always)]
pub fn dacc2dhr(&self) -> DACCDHR_R {
DACCDHR_R::new(((self.bits >> 16) & 0x0fff) as u16)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("DHR12RD")
.field("dacc1dhr", &self.dacc1dhr())
.field("dacc2dhr", &self.dacc2dhr())
.finish()
}
}
impl W {
#[inline(always)]
pub fn daccdhr(&mut self, n: u8) -> DACCDHR_W<DHR12RDrs> {
#[allow(clippy::no_effect)]
[(); 2][n as usize];
DACCDHR_W::new(self, n * 16)
}
#[inline(always)]
pub fn dacc1dhr(&mut self) -> DACCDHR_W<DHR12RDrs> {
DACCDHR_W::new(self, 0)
}
#[inline(always)]
pub fn dacc2dhr(&mut self) -> DACCDHR_W<DHR12RDrs> {
DACCDHR_W::new(self, 16)
}
}
pub struct DHR12RDrs;
impl crate::RegisterSpec for DHR12RDrs {
type Ux = u32;
}
impl crate::Readable for DHR12RDrs {}
impl crate::Writable for DHR12RDrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for DHR12RDrs {}