#[doc = "Register `COMBCNT` reader"] pub struct R(crate::R); impl core::ops::Deref for R { type Target = crate::R; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } impl From> for R { #[inline(always)] fn from(reader: crate::R) -> Self { R(reader) } } #[doc = "Field `PRECNT` reader - Pre-Counter Value"] pub type PRECNT_R = crate::FieldReader; #[doc = "Field `CNTLSB` reader - Counter Value"] pub type CNTLSB_R = crate::FieldReader; impl R { #[doc = "Bits 0:14 - Pre-Counter Value"] #[inline(always)] pub fn precnt(&self) -> PRECNT_R { PRECNT_R::new((self.bits & 0x7fff) as u16) } #[doc = "Bits 15:31 - Counter Value"] #[inline(always)] pub fn cntlsb(&self) -> CNTLSB_R { CNTLSB_R::new(((self.bits >> 15) & 0x0001_ffff) as u32) } } #[doc = "Combined Pre-Counter and Counter Value Register\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [combcnt](index.html) module"] pub struct COMBCNT_SPEC; impl crate::RegisterSpec for COMBCNT_SPEC { type Ux = u32; } #[doc = "`read()` method returns [combcnt::R](R) reader structure"] impl crate::Readable for COMBCNT_SPEC { type Reader = R; } #[doc = "`reset()` method sets COMBCNT to value 0"] impl crate::Resettable for COMBCNT_SPEC { #[inline(always)] fn reset_value() -> Self::Ux { 0 } }