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