#[doc = "Register `PWM_SCM` 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 `PWM_SCM` 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 `SYNC0` reader - Synchronous Channel 0"] pub struct SYNC0_R(crate::FieldReader); impl SYNC0_R { #[inline(always)] pub(crate) fn new(bits: bool) -> Self { SYNC0_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for SYNC0_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `SYNC0` writer - Synchronous Channel 0"] pub struct SYNC0_W<'a> { w: &'a mut W, } impl<'a> SYNC0_W<'a> { #[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) | (value as u32 & 0x01); self.w } } #[doc = "Field `SYNC1` reader - Synchronous Channel 1"] pub struct SYNC1_R(crate::FieldReader); impl SYNC1_R { #[inline(always)] pub(crate) fn new(bits: bool) -> Self { SYNC1_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for SYNC1_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `SYNC1` writer - Synchronous Channel 1"] pub struct SYNC1_W<'a> { w: &'a mut W, } impl<'a> SYNC1_W<'a> { #[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 << 1)) | ((value as u32 & 0x01) << 1); self.w } } #[doc = "Field `SYNC2` reader - Synchronous Channel 2"] pub struct SYNC2_R(crate::FieldReader); impl SYNC2_R { #[inline(always)] pub(crate) fn new(bits: bool) -> Self { SYNC2_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for SYNC2_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `SYNC2` writer - Synchronous Channel 2"] pub struct SYNC2_W<'a> { w: &'a mut W, } impl<'a> SYNC2_W<'a> { #[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 << 2)) | ((value as u32 & 0x01) << 2); self.w } } #[doc = "Field `SYNC3` reader - Synchronous Channel 3"] pub struct SYNC3_R(crate::FieldReader); impl SYNC3_R { #[inline(always)] pub(crate) fn new(bits: bool) -> Self { SYNC3_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for SYNC3_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `SYNC3` writer - Synchronous Channel 3"] pub struct SYNC3_W<'a> { w: &'a mut W, } impl<'a> SYNC3_W<'a> { #[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 = "Synchronous Channels Update Mode\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] #[repr(u8)] pub enum UPDM_A { #[doc = "0: Manual write of double buffer registers and manual update of synchronous channels"] MODE0 = 0, #[doc = "1: Manual write of double buffer registers and automatic update of synchronous channels"] MODE1 = 1, #[doc = "2: Automatic write of duty-cycle update registers by the DMA Controller and automatic update of synchronous channels"] MODE2 = 2, } impl From for u8 { #[inline(always)] fn from(variant: UPDM_A) -> Self { variant as _ } } #[doc = "Field `UPDM` reader - Synchronous Channels Update Mode"] pub struct UPDM_R(crate::FieldReader); impl UPDM_R { #[inline(always)] pub(crate) fn new(bits: u8) -> Self { UPDM_R(crate::FieldReader::new(bits)) } #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> Option { match self.bits { 0 => Some(UPDM_A::MODE0), 1 => Some(UPDM_A::MODE1), 2 => Some(UPDM_A::MODE2), _ => None, } } #[doc = "Checks if the value of the field is `MODE0`"] #[inline(always)] pub fn is_mode0(&self) -> bool { **self == UPDM_A::MODE0 } #[doc = "Checks if the value of the field is `MODE1`"] #[inline(always)] pub fn is_mode1(&self) -> bool { **self == UPDM_A::MODE1 } #[doc = "Checks if the value of the field is `MODE2`"] #[inline(always)] pub fn is_mode2(&self) -> bool { **self == UPDM_A::MODE2 } } impl core::ops::Deref for UPDM_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `UPDM` writer - Synchronous Channels Update Mode"] pub struct UPDM_W<'a> { w: &'a mut W, } impl<'a> UPDM_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: UPDM_A) -> &'a mut W { unsafe { self.bits(variant.into()) } } #[doc = "Manual write of double buffer registers and manual update of synchronous channels"] #[inline(always)] pub fn mode0(self) -> &'a mut W { self.variant(UPDM_A::MODE0) } #[doc = "Manual write of double buffer registers and automatic update of synchronous channels"] #[inline(always)] pub fn mode1(self) -> &'a mut W { self.variant(UPDM_A::MODE1) } #[doc = "Automatic write of duty-cycle update registers by the DMA Controller and automatic update of synchronous channels"] #[inline(always)] pub fn mode2(self) -> &'a mut W { self.variant(UPDM_A::MODE2) } #[doc = r"Writes raw bits to the field"] #[inline(always)] pub unsafe fn bits(self, value: u8) -> &'a mut W { self.w.bits = (self.w.bits & !(0x03 << 16)) | ((value as u32 & 0x03) << 16); self.w } } #[doc = "Field `PTRM` reader - DMA Controller Transfer Request Mode"] pub struct PTRM_R(crate::FieldReader); impl PTRM_R { #[inline(always)] pub(crate) fn new(bits: bool) -> Self { PTRM_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for PTRM_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `PTRM` writer - DMA Controller Transfer Request Mode"] pub struct PTRM_W<'a> { w: &'a mut W, } impl<'a> PTRM_W<'a> { #[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 << 20)) | ((value as u32 & 0x01) << 20); self.w } } #[doc = "Field `PTRCS` reader - DMA Controller Transfer Request Comparison Selection"] pub struct PTRCS_R(crate::FieldReader); impl PTRCS_R { #[inline(always)] pub(crate) fn new(bits: u8) -> Self { PTRCS_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for PTRCS_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `PTRCS` writer - DMA Controller Transfer Request Comparison Selection"] pub struct PTRCS_W<'a> { w: &'a mut W, } impl<'a> PTRCS_W<'a> { #[doc = r"Writes raw bits to the field"] #[inline(always)] pub unsafe fn bits(self, value: u8) -> &'a mut W { self.w.bits = (self.w.bits & !(0x07 << 21)) | ((value as u32 & 0x07) << 21); self.w } } impl R { #[doc = "Bit 0 - Synchronous Channel 0"] #[inline(always)] pub fn sync0(&self) -> SYNC0_R { SYNC0_R::new((self.bits & 0x01) != 0) } #[doc = "Bit 1 - Synchronous Channel 1"] #[inline(always)] pub fn sync1(&self) -> SYNC1_R { SYNC1_R::new(((self.bits >> 1) & 0x01) != 0) } #[doc = "Bit 2 - Synchronous Channel 2"] #[inline(always)] pub fn sync2(&self) -> SYNC2_R { SYNC2_R::new(((self.bits >> 2) & 0x01) != 0) } #[doc = "Bit 3 - Synchronous Channel 3"] #[inline(always)] pub fn sync3(&self) -> SYNC3_R { SYNC3_R::new(((self.bits >> 3) & 0x01) != 0) } #[doc = "Bits 16:17 - Synchronous Channels Update Mode"] #[inline(always)] pub fn updm(&self) -> UPDM_R { UPDM_R::new(((self.bits >> 16) & 0x03) as u8) } #[doc = "Bit 20 - DMA Controller Transfer Request Mode"] #[inline(always)] pub fn ptrm(&self) -> PTRM_R { PTRM_R::new(((self.bits >> 20) & 0x01) != 0) } #[doc = "Bits 21:23 - DMA Controller Transfer Request Comparison Selection"] #[inline(always)] pub fn ptrcs(&self) -> PTRCS_R { PTRCS_R::new(((self.bits >> 21) & 0x07) as u8) } } impl W { #[doc = "Bit 0 - Synchronous Channel 0"] #[inline(always)] pub fn sync0(&mut self) -> SYNC0_W { SYNC0_W { w: self } } #[doc = "Bit 1 - Synchronous Channel 1"] #[inline(always)] pub fn sync1(&mut self) -> SYNC1_W { SYNC1_W { w: self } } #[doc = "Bit 2 - Synchronous Channel 2"] #[inline(always)] pub fn sync2(&mut self) -> SYNC2_W { SYNC2_W { w: self } } #[doc = "Bit 3 - Synchronous Channel 3"] #[inline(always)] pub fn sync3(&mut self) -> SYNC3_W { SYNC3_W { w: self } } #[doc = "Bits 16:17 - Synchronous Channels Update Mode"] #[inline(always)] pub fn updm(&mut self) -> UPDM_W { UPDM_W { w: self } } #[doc = "Bit 20 - DMA Controller Transfer Request Mode"] #[inline(always)] pub fn ptrm(&mut self) -> PTRM_W { PTRM_W { w: self } } #[doc = "Bits 21:23 - DMA Controller Transfer Request Comparison Selection"] #[inline(always)] pub fn ptrcs(&mut self) -> PTRCS_W { PTRCS_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 = "PWM Sync Channels Mode Register\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 [pwm_scm](index.html) module"] pub struct PWM_SCM_SPEC; impl crate::RegisterSpec for PWM_SCM_SPEC { type Ux = u32; } #[doc = "`read()` method returns [pwm_scm::R](R) reader structure"] impl crate::Readable for PWM_SCM_SPEC { type Reader = R; } #[doc = "`write(|w| ..)` method takes [pwm_scm::W](W) writer structure"] impl crate::Writable for PWM_SCM_SPEC { type Writer = W; } #[doc = "`reset()` method sets PWM_SCM to value 0"] impl crate::Resettable for PWM_SCM_SPEC { #[inline(always)] fn reset_value() -> Self::Ux { 0 } }