#[doc = "Register `EVENTS_CTTO` 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 = "Register `EVENTS_CTTO` writer"] pub struct W(crate::W); impl core::ops::Deref for W { type Target = crate::W; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } impl core::ops::DerefMut for W { #[inline(always)] fn deref_mut(&mut self) -> &mut Self::Target { &mut self.0 } } impl From> for W { #[inline(always)] fn from(writer: crate::W) -> Self { W(writer) } } #[doc = "Field `EVENTS_CTTO` reader - Calibration timer timeout"] pub type EVENTS_CTTO_R = crate::BitReader; #[doc = "Calibration timer timeout\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub enum EVENTS_CTTO_A { #[doc = "0: Event not generated"] NOT_GENERATED = 0, #[doc = "1: Event generated"] GENERATED = 1, } impl From for bool { #[inline(always)] fn from(variant: EVENTS_CTTO_A) -> Self { variant as u8 != 0 } } impl EVENTS_CTTO_R { #[doc = "Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> EVENTS_CTTO_A { match self.bits { false => EVENTS_CTTO_A::NOT_GENERATED, true => EVENTS_CTTO_A::GENERATED, } } #[doc = "Checks if the value of the field is `NOT_GENERATED`"] #[inline(always)] pub fn is_not_generated(&self) -> bool { *self == EVENTS_CTTO_A::NOT_GENERATED } #[doc = "Checks if the value of the field is `GENERATED`"] #[inline(always)] pub fn is_generated(&self) -> bool { *self == EVENTS_CTTO_A::GENERATED } } #[doc = "Field `EVENTS_CTTO` writer - Calibration timer timeout"] pub type EVENTS_CTTO_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVENTS_CTTO_SPEC, EVENTS_CTTO_A, O>; impl<'a, const O: u8> EVENTS_CTTO_W<'a, O> { #[doc = "Event not generated"] #[inline(always)] pub fn not_generated(self) -> &'a mut W { self.variant(EVENTS_CTTO_A::NOT_GENERATED) } #[doc = "Event generated"] #[inline(always)] pub fn generated(self) -> &'a mut W { self.variant(EVENTS_CTTO_A::GENERATED) } } impl R { #[doc = "Bit 0 - Calibration timer timeout"] #[inline(always)] pub fn events_ctto(&self) -> EVENTS_CTTO_R { EVENTS_CTTO_R::new((self.bits & 1) != 0) } } impl W { #[doc = "Bit 0 - Calibration timer timeout"] #[inline(always)] #[must_use] pub fn events_ctto(&mut self) -> EVENTS_CTTO_W<0> { EVENTS_CTTO_W::new(self) } #[doc = "Writes raw bits to the register."] #[inline(always)] pub unsafe fn bits(&mut self, bits: u32) -> &mut Self { self.0.bits(bits); self } } #[doc = "Calibration timer timeout\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [events_ctto](index.html) module"] pub struct EVENTS_CTTO_SPEC; impl crate::RegisterSpec for EVENTS_CTTO_SPEC { type Ux = u32; } #[doc = "`read()` method returns [events_ctto::R](R) reader structure"] impl crate::Readable for EVENTS_CTTO_SPEC { type Reader = R; } #[doc = "`write(|w| ..)` method takes [events_ctto::W](W) writer structure"] impl crate::Writable for EVENTS_CTTO_SPEC { type Writer = W; const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0; } #[doc = "`reset()` method sets EVENTS_CTTO to value 0"] impl crate::Resettable for EVENTS_CTTO_SPEC { const RESET_VALUE: Self::Ux = 0; }