#[doc = "Register `EVENTS_READY` 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_READY` 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_READY` reader - COMP is ready and output is valid"] pub type EVENTS_READY_R = crate::BitReader; #[doc = "COMP is ready and output is valid\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub enum EVENTS_READY_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_READY_A) -> Self { variant as u8 != 0 } } impl EVENTS_READY_R { #[doc = "Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> EVENTS_READY_A { match self.bits { false => EVENTS_READY_A::NOT_GENERATED, true => EVENTS_READY_A::GENERATED, } } #[doc = "Checks if the value of the field is `NOT_GENERATED`"] #[inline(always)] pub fn is_not_generated(&self) -> bool { *self == EVENTS_READY_A::NOT_GENERATED } #[doc = "Checks if the value of the field is `GENERATED`"] #[inline(always)] pub fn is_generated(&self) -> bool { *self == EVENTS_READY_A::GENERATED } } #[doc = "Field `EVENTS_READY` writer - COMP is ready and output is valid"] pub type EVENTS_READY_W<'a, const O: u8> = crate::BitWriter<'a, u32, EVENTS_READY_SPEC, EVENTS_READY_A, O>; impl<'a, const O: u8> EVENTS_READY_W<'a, O> { #[doc = "Event not generated"] #[inline(always)] pub fn not_generated(self) -> &'a mut W { self.variant(EVENTS_READY_A::NOT_GENERATED) } #[doc = "Event generated"] #[inline(always)] pub fn generated(self) -> &'a mut W { self.variant(EVENTS_READY_A::GENERATED) } } impl R { #[doc = "Bit 0 - COMP is ready and output is valid"] #[inline(always)] pub fn events_ready(&self) -> EVENTS_READY_R { EVENTS_READY_R::new((self.bits & 1) != 0) } } impl W { #[doc = "Bit 0 - COMP is ready and output is valid"] #[inline(always)] #[must_use] pub fn events_ready(&mut self) -> EVENTS_READY_W<0> { EVENTS_READY_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 = "COMP is ready and output is valid\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_ready](index.html) module"] pub struct EVENTS_READY_SPEC; impl crate::RegisterSpec for EVENTS_READY_SPEC { type Ux = u32; } #[doc = "`read()` method returns [events_ready::R](R) reader structure"] impl crate::Readable for EVENTS_READY_SPEC { type Reader = R; } #[doc = "`write(|w| ..)` method takes [events_ready::W](W) writer structure"] impl crate::Writable for EVENTS_READY_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_READY to value 0"] impl crate::Resettable for EVENTS_READY_SPEC { const RESET_VALUE: Self::Ux = 0; }