#[doc = "Register `DPRESCALER` 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 `DPRESCALER` 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 = "Debouncer Prescaler\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] #[repr(u8)] pub enum PRESCALER0_A { #[doc = "0: EIC clock divided by 2"] DIV2 = 0, #[doc = "1: EIC clock divided by 4"] DIV4 = 1, #[doc = "2: EIC clock divided by 8"] DIV8 = 2, #[doc = "3: EIC clock divided by 16"] DIV16 = 3, #[doc = "4: EIC clock divided by 32"] DIV32 = 4, #[doc = "5: EIC clock divided by 64"] DIV64 = 5, #[doc = "6: EIC clock divided by 128"] DIV128 = 6, #[doc = "7: EIC clock divided by 256"] DIV256 = 7, } impl From for u8 { #[inline(always)] fn from(variant: PRESCALER0_A) -> Self { variant as _ } } #[doc = "Field `PRESCALER0` reader - Debouncer Prescaler"] pub struct PRESCALER0_R(crate::FieldReader); impl PRESCALER0_R { pub(crate) fn new(bits: u8) -> Self { PRESCALER0_R(crate::FieldReader::new(bits)) } #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> PRESCALER0_A { match self.bits { 0 => PRESCALER0_A::DIV2, 1 => PRESCALER0_A::DIV4, 2 => PRESCALER0_A::DIV8, 3 => PRESCALER0_A::DIV16, 4 => PRESCALER0_A::DIV32, 5 => PRESCALER0_A::DIV64, 6 => PRESCALER0_A::DIV128, 7 => PRESCALER0_A::DIV256, _ => unreachable!(), } } #[doc = "Checks if the value of the field is `DIV2`"] #[inline(always)] pub fn is_div2(&self) -> bool { **self == PRESCALER0_A::DIV2 } #[doc = "Checks if the value of the field is `DIV4`"] #[inline(always)] pub fn is_div4(&self) -> bool { **self == PRESCALER0_A::DIV4 } #[doc = "Checks if the value of the field is `DIV8`"] #[inline(always)] pub fn is_div8(&self) -> bool { **self == PRESCALER0_A::DIV8 } #[doc = "Checks if the value of the field is `DIV16`"] #[inline(always)] pub fn is_div16(&self) -> bool { **self == PRESCALER0_A::DIV16 } #[doc = "Checks if the value of the field is `DIV32`"] #[inline(always)] pub fn is_div32(&self) -> bool { **self == PRESCALER0_A::DIV32 } #[doc = "Checks if the value of the field is `DIV64`"] #[inline(always)] pub fn is_div64(&self) -> bool { **self == PRESCALER0_A::DIV64 } #[doc = "Checks if the value of the field is `DIV128`"] #[inline(always)] pub fn is_div128(&self) -> bool { **self == PRESCALER0_A::DIV128 } #[doc = "Checks if the value of the field is `DIV256`"] #[inline(always)] pub fn is_div256(&self) -> bool { **self == PRESCALER0_A::DIV256 } } impl core::ops::Deref for PRESCALER0_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `PRESCALER0` writer - Debouncer Prescaler"] pub struct PRESCALER0_W<'a> { w: &'a mut W, } impl<'a> PRESCALER0_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: PRESCALER0_A) -> &'a mut W { self.bits(variant.into()) } #[doc = "EIC clock divided by 2"] #[inline(always)] pub fn div2(self) -> &'a mut W { self.variant(PRESCALER0_A::DIV2) } #[doc = "EIC clock divided by 4"] #[inline(always)] pub fn div4(self) -> &'a mut W { self.variant(PRESCALER0_A::DIV4) } #[doc = "EIC clock divided by 8"] #[inline(always)] pub fn div8(self) -> &'a mut W { self.variant(PRESCALER0_A::DIV8) } #[doc = "EIC clock divided by 16"] #[inline(always)] pub fn div16(self) -> &'a mut W { self.variant(PRESCALER0_A::DIV16) } #[doc = "EIC clock divided by 32"] #[inline(always)] pub fn div32(self) -> &'a mut W { self.variant(PRESCALER0_A::DIV32) } #[doc = "EIC clock divided by 64"] #[inline(always)] pub fn div64(self) -> &'a mut W { self.variant(PRESCALER0_A::DIV64) } #[doc = "EIC clock divided by 128"] #[inline(always)] pub fn div128(self) -> &'a mut W { self.variant(PRESCALER0_A::DIV128) } #[doc = "EIC clock divided by 256"] #[inline(always)] pub fn div256(self) -> &'a mut W { self.variant(PRESCALER0_A::DIV256) } #[doc = r"Writes raw bits to the field"] #[inline(always)] pub fn bits(self, value: u8) -> &'a mut W { self.w.bits = (self.w.bits & !0x07) | (value as u32 & 0x07); self.w } } #[doc = "Debouncer number of states\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum STATES0_A { #[doc = "0: 3 low frequency samples"] LFREQ3 = 0, #[doc = "1: 7 low frequency samples"] LFREQ7 = 1, } impl From for bool { #[inline(always)] fn from(variant: STATES0_A) -> Self { variant as u8 != 0 } } #[doc = "Field `STATES0` reader - Debouncer number of states"] pub struct STATES0_R(crate::FieldReader); impl STATES0_R { pub(crate) fn new(bits: bool) -> Self { STATES0_R(crate::FieldReader::new(bits)) } #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> STATES0_A { match self.bits { false => STATES0_A::LFREQ3, true => STATES0_A::LFREQ7, } } #[doc = "Checks if the value of the field is `LFREQ3`"] #[inline(always)] pub fn is_lfreq3(&self) -> bool { **self == STATES0_A::LFREQ3 } #[doc = "Checks if the value of the field is `LFREQ7`"] #[inline(always)] pub fn is_lfreq7(&self) -> bool { **self == STATES0_A::LFREQ7 } } impl core::ops::Deref for STATES0_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `STATES0` writer - Debouncer number of states"] pub struct STATES0_W<'a> { w: &'a mut W, } impl<'a> STATES0_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: STATES0_A) -> &'a mut W { self.bit(variant.into()) } #[doc = "3 low frequency samples"] #[inline(always)] pub fn lfreq3(self) -> &'a mut W { self.variant(STATES0_A::LFREQ3) } #[doc = "7 low frequency samples"] #[inline(always)] pub fn lfreq7(self) -> &'a mut W { self.variant(STATES0_A::LFREQ7) } #[doc = r"Sets the field bit"] #[inline(always)] pub fn set_bit(self) -> &'a mut W { self.bit(true) } #[doc = r"Clears the field bit"] #[inline(always)] pub fn clear_bit(self) -> &'a mut W { self.bit(false) } #[doc = r"Writes raw bits to the field"] #[inline(always)] pub fn bit(self, value: bool) -> &'a mut W { self.w.bits = (self.w.bits & !(0x01 << 3)) | ((value as u32 & 0x01) << 3); self.w } } #[doc = "Debouncer Prescaler\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] #[repr(u8)] pub enum PRESCALER1_A { #[doc = "0: EIC clock divided by 2"] DIV2 = 0, #[doc = "1: EIC clock divided by 4"] DIV4 = 1, #[doc = "2: EIC clock divided by 8"] DIV8 = 2, #[doc = "3: EIC clock divided by 16"] DIV16 = 3, #[doc = "4: EIC clock divided by 32"] DIV32 = 4, #[doc = "5: EIC clock divided by 64"] DIV64 = 5, #[doc = "6: EIC clock divided by 128"] DIV128 = 6, #[doc = "7: EIC clock divided by 256"] DIV256 = 7, } impl From for u8 { #[inline(always)] fn from(variant: PRESCALER1_A) -> Self { variant as _ } } #[doc = "Field `PRESCALER1` reader - Debouncer Prescaler"] pub struct PRESCALER1_R(crate::FieldReader); impl PRESCALER1_R { pub(crate) fn new(bits: u8) -> Self { PRESCALER1_R(crate::FieldReader::new(bits)) } #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> PRESCALER1_A { match self.bits { 0 => PRESCALER1_A::DIV2, 1 => PRESCALER1_A::DIV4, 2 => PRESCALER1_A::DIV8, 3 => PRESCALER1_A::DIV16, 4 => PRESCALER1_A::DIV32, 5 => PRESCALER1_A::DIV64, 6 => PRESCALER1_A::DIV128, 7 => PRESCALER1_A::DIV256, _ => unreachable!(), } } #[doc = "Checks if the value of the field is `DIV2`"] #[inline(always)] pub fn is_div2(&self) -> bool { **self == PRESCALER1_A::DIV2 } #[doc = "Checks if the value of the field is `DIV4`"] #[inline(always)] pub fn is_div4(&self) -> bool { **self == PRESCALER1_A::DIV4 } #[doc = "Checks if the value of the field is `DIV8`"] #[inline(always)] pub fn is_div8(&self) -> bool { **self == PRESCALER1_A::DIV8 } #[doc = "Checks if the value of the field is `DIV16`"] #[inline(always)] pub fn is_div16(&self) -> bool { **self == PRESCALER1_A::DIV16 } #[doc = "Checks if the value of the field is `DIV32`"] #[inline(always)] pub fn is_div32(&self) -> bool { **self == PRESCALER1_A::DIV32 } #[doc = "Checks if the value of the field is `DIV64`"] #[inline(always)] pub fn is_div64(&self) -> bool { **self == PRESCALER1_A::DIV64 } #[doc = "Checks if the value of the field is `DIV128`"] #[inline(always)] pub fn is_div128(&self) -> bool { **self == PRESCALER1_A::DIV128 } #[doc = "Checks if the value of the field is `DIV256`"] #[inline(always)] pub fn is_div256(&self) -> bool { **self == PRESCALER1_A::DIV256 } } impl core::ops::Deref for PRESCALER1_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `PRESCALER1` writer - Debouncer Prescaler"] pub struct PRESCALER1_W<'a> { w: &'a mut W, } impl<'a> PRESCALER1_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: PRESCALER1_A) -> &'a mut W { self.bits(variant.into()) } #[doc = "EIC clock divided by 2"] #[inline(always)] pub fn div2(self) -> &'a mut W { self.variant(PRESCALER1_A::DIV2) } #[doc = "EIC clock divided by 4"] #[inline(always)] pub fn div4(self) -> &'a mut W { self.variant(PRESCALER1_A::DIV4) } #[doc = "EIC clock divided by 8"] #[inline(always)] pub fn div8(self) -> &'a mut W { self.variant(PRESCALER1_A::DIV8) } #[doc = "EIC clock divided by 16"] #[inline(always)] pub fn div16(self) -> &'a mut W { self.variant(PRESCALER1_A::DIV16) } #[doc = "EIC clock divided by 32"] #[inline(always)] pub fn div32(self) -> &'a mut W { self.variant(PRESCALER1_A::DIV32) } #[doc = "EIC clock divided by 64"] #[inline(always)] pub fn div64(self) -> &'a mut W { self.variant(PRESCALER1_A::DIV64) } #[doc = "EIC clock divided by 128"] #[inline(always)] pub fn div128(self) -> &'a mut W { self.variant(PRESCALER1_A::DIV128) } #[doc = "EIC clock divided by 256"] #[inline(always)] pub fn div256(self) -> &'a mut W { self.variant(PRESCALER1_A::DIV256) } #[doc = r"Writes raw bits to the field"] #[inline(always)] pub fn bits(self, value: u8) -> &'a mut W { self.w.bits = (self.w.bits & !(0x07 << 4)) | ((value as u32 & 0x07) << 4); self.w } } #[doc = "Debouncer number of states\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum STATES1_A { #[doc = "0: 3 low frequency samples"] LFREQ3 = 0, #[doc = "1: 7 low frequency samples"] LFREQ7 = 1, } impl From for bool { #[inline(always)] fn from(variant: STATES1_A) -> Self { variant as u8 != 0 } } #[doc = "Field `STATES1` reader - Debouncer number of states"] pub struct STATES1_R(crate::FieldReader); impl STATES1_R { pub(crate) fn new(bits: bool) -> Self { STATES1_R(crate::FieldReader::new(bits)) } #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> STATES1_A { match self.bits { false => STATES1_A::LFREQ3, true => STATES1_A::LFREQ7, } } #[doc = "Checks if the value of the field is `LFREQ3`"] #[inline(always)] pub fn is_lfreq3(&self) -> bool { **self == STATES1_A::LFREQ3 } #[doc = "Checks if the value of the field is `LFREQ7`"] #[inline(always)] pub fn is_lfreq7(&self) -> bool { **self == STATES1_A::LFREQ7 } } impl core::ops::Deref for STATES1_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `STATES1` writer - Debouncer number of states"] pub struct STATES1_W<'a> { w: &'a mut W, } impl<'a> STATES1_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: STATES1_A) -> &'a mut W { self.bit(variant.into()) } #[doc = "3 low frequency samples"] #[inline(always)] pub fn lfreq3(self) -> &'a mut W { self.variant(STATES1_A::LFREQ3) } #[doc = "7 low frequency samples"] #[inline(always)] pub fn lfreq7(self) -> &'a mut W { self.variant(STATES1_A::LFREQ7) } #[doc = r"Sets the field bit"] #[inline(always)] pub fn set_bit(self) -> &'a mut W { self.bit(true) } #[doc = r"Clears the field bit"] #[inline(always)] pub fn clear_bit(self) -> &'a mut W { self.bit(false) } #[doc = r"Writes raw bits to the field"] #[inline(always)] pub fn bit(self, value: bool) -> &'a mut W { self.w.bits = (self.w.bits & !(0x01 << 7)) | ((value as u32 & 0x01) << 7); self.w } } #[doc = "Pin Sampler frequency selection\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] pub enum TICKON_A { #[doc = "0: Clocked by GCLK"] CLK_GCLK_EIC = 0, #[doc = "1: Clocked by Low Frequency Clock"] CLK_LFREQ = 1, } impl From for bool { #[inline(always)] fn from(variant: TICKON_A) -> Self { variant as u8 != 0 } } #[doc = "Field `TICKON` reader - Pin Sampler frequency selection"] pub struct TICKON_R(crate::FieldReader); impl TICKON_R { pub(crate) fn new(bits: bool) -> Self { TICKON_R(crate::FieldReader::new(bits)) } #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> TICKON_A { match self.bits { false => TICKON_A::CLK_GCLK_EIC, true => TICKON_A::CLK_LFREQ, } } #[doc = "Checks if the value of the field is `CLK_GCLK_EIC`"] #[inline(always)] pub fn is_clk_gclk_eic(&self) -> bool { **self == TICKON_A::CLK_GCLK_EIC } #[doc = "Checks if the value of the field is `CLK_LFREQ`"] #[inline(always)] pub fn is_clk_lfreq(&self) -> bool { **self == TICKON_A::CLK_LFREQ } } impl core::ops::Deref for TICKON_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `TICKON` writer - Pin Sampler frequency selection"] pub struct TICKON_W<'a> { w: &'a mut W, } impl<'a> TICKON_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: TICKON_A) -> &'a mut W { self.bit(variant.into()) } #[doc = "Clocked by GCLK"] #[inline(always)] pub fn clk_gclk_eic(self) -> &'a mut W { self.variant(TICKON_A::CLK_GCLK_EIC) } #[doc = "Clocked by Low Frequency Clock"] #[inline(always)] pub fn clk_lfreq(self) -> &'a mut W { self.variant(TICKON_A::CLK_LFREQ) } #[doc = r"Sets the field bit"] #[inline(always)] pub fn set_bit(self) -> &'a mut W { self.bit(true) } #[doc = r"Clears the field bit"] #[inline(always)] pub fn clear_bit(self) -> &'a mut W { self.bit(false) } #[doc = r"Writes raw bits to the field"] #[inline(always)] pub fn bit(self, value: bool) -> &'a mut W { self.w.bits = (self.w.bits & !(0x01 << 16)) | ((value as u32 & 0x01) << 16); self.w } } impl R { #[doc = "Bits 0:2 - Debouncer Prescaler"] #[inline(always)] pub fn prescaler0(&self) -> PRESCALER0_R { PRESCALER0_R::new((self.bits & 0x07) as u8) } #[doc = "Bit 3 - Debouncer number of states"] #[inline(always)] pub fn states0(&self) -> STATES0_R { STATES0_R::new(((self.bits >> 3) & 0x01) != 0) } #[doc = "Bits 4:6 - Debouncer Prescaler"] #[inline(always)] pub fn prescaler1(&self) -> PRESCALER1_R { PRESCALER1_R::new(((self.bits >> 4) & 0x07) as u8) } #[doc = "Bit 7 - Debouncer number of states"] #[inline(always)] pub fn states1(&self) -> STATES1_R { STATES1_R::new(((self.bits >> 7) & 0x01) != 0) } #[doc = "Bit 16 - Pin Sampler frequency selection"] #[inline(always)] pub fn tickon(&self) -> TICKON_R { TICKON_R::new(((self.bits >> 16) & 0x01) != 0) } } impl W { #[doc = "Bits 0:2 - Debouncer Prescaler"] #[inline(always)] pub fn prescaler0(&mut self) -> PRESCALER0_W { PRESCALER0_W { w: self } } #[doc = "Bit 3 - Debouncer number of states"] #[inline(always)] pub fn states0(&mut self) -> STATES0_W { STATES0_W { w: self } } #[doc = "Bits 4:6 - Debouncer Prescaler"] #[inline(always)] pub fn prescaler1(&mut self) -> PRESCALER1_W { PRESCALER1_W { w: self } } #[doc = "Bit 7 - Debouncer number of states"] #[inline(always)] pub fn states1(&mut self) -> STATES1_W { STATES1_W { w: self } } #[doc = "Bit 16 - Pin Sampler frequency selection"] #[inline(always)] pub fn tickon(&mut self) -> TICKON_W { TICKON_W { w: 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 = "Debouncer Prescaler\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 [dprescaler](index.html) module"] pub struct DPRESCALER_SPEC; impl crate::RegisterSpec for DPRESCALER_SPEC { type Ux = u32; } #[doc = "`read()` method returns [dprescaler::R](R) reader structure"] impl crate::Readable for DPRESCALER_SPEC { type Reader = R; } #[doc = "`write(|w| ..)` method takes [dprescaler::W](W) writer structure"] impl crate::Writable for DPRESCALER_SPEC { type Writer = W; } #[doc = "`reset()` method sets DPRESCALER to value 0"] impl crate::Resettable for DPRESCALER_SPEC { #[inline(always)] fn reset_value() -> Self::Ux { 0 } }