#[doc = "Register `VER` 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 `NVTIM` reader - Non-valid Time"] pub type NVTIM_R = crate::BitReader; #[doc = "Field `NVCAL` reader - Non-valid Calendar"] pub type NVCAL_R = crate::BitReader; #[doc = "Field `NVTIMALR` reader - Non-valid Time Alarm"] pub type NVTIMALR_R = crate::BitReader; #[doc = "Field `NVCALALR` reader - Non-valid Calendar Alarm"] pub type NVCALALR_R = crate::BitReader; impl R { #[doc = "Bit 0 - Non-valid Time"] #[inline(always)] pub fn nvtim(&self) -> NVTIM_R { NVTIM_R::new((self.bits & 1) != 0) } #[doc = "Bit 1 - Non-valid Calendar"] #[inline(always)] pub fn nvcal(&self) -> NVCAL_R { NVCAL_R::new(((self.bits >> 1) & 1) != 0) } #[doc = "Bit 2 - Non-valid Time Alarm"] #[inline(always)] pub fn nvtimalr(&self) -> NVTIMALR_R { NVTIMALR_R::new(((self.bits >> 2) & 1) != 0) } #[doc = "Bit 3 - Non-valid Calendar Alarm"] #[inline(always)] pub fn nvcalalr(&self) -> NVCALALR_R { NVCALALR_R::new(((self.bits >> 3) & 1) != 0) } } #[doc = "Valid Entry 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 [ver](index.html) module"] pub struct VER_SPEC; impl crate::RegisterSpec for VER_SPEC { type Ux = u32; } #[doc = "`read()` method returns [ver::R](R) reader structure"] impl crate::Readable for VER_SPEC { type Reader = R; } #[doc = "`reset()` method sets VER to value 0"] impl crate::Resettable for VER_SPEC { const RESET_VALUE: Self::Ux = 0; }