pub type R = crate::R<DLY0CRrs>;
pub type W = crate::W<DLY0CRrs>;
pub type SKPDLY_R = crate::FieldReader;
pub type SKPDLY_W<'a, REG> = crate::FieldWriter<'a, REG, 7>;
pub type SKPBF_R = crate::BitReader;
impl R {
#[inline(always)]
pub fn skpdly(&self) -> SKPDLY_R {
SKPDLY_R::new((self.bits & 0x7f) as u8)
}
#[inline(always)]
pub fn skpbf(&self) -> SKPBF_R {
SKPBF_R::new(((self.bits >> 31) & 1) != 0)
}
}
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("DLY0CR")
.field("skpdly", &self.skpdly())
.field("skpbf", &self.skpbf())
.finish()
}
}
impl W {
#[inline(always)]
pub fn skpdly(&mut self) -> SKPDLY_W<DLY0CRrs> {
SKPDLY_W::new(self, 0)
}
}
pub struct DLY0CRrs;
impl crate::RegisterSpec for DLY0CRrs {
type Ux = u32;
}
impl crate::Readable for DLY0CRrs {}
impl crate::Writable for DLY0CRrs {
type Safety = crate::Unsafe;
}
impl crate::Resettable for DLY0CRrs {}