#[doc = "Register `QSPI_WPMR` 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 `QSPI_WPMR` 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 `WPEN` reader - Write Protection Enable"] pub struct WPEN_R(crate::FieldReader); impl WPEN_R { #[inline(always)] pub(crate) fn new(bits: bool) -> Self { WPEN_R(crate::FieldReader::new(bits)) } } impl core::ops::Deref for WPEN_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `WPEN` writer - Write Protection Enable"] pub struct WPEN_W<'a> { w: &'a mut W, } impl<'a> WPEN_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 = "Write Protection Key\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq)] #[repr(u32)] pub enum WPKEY_A { #[doc = "5329744: Writing any other value in this field aborts the write operation of the WPEN bit. Always reads as 0."] PASSWD = 5329744, } impl From for u32 { #[inline(always)] fn from(variant: WPKEY_A) -> Self { variant as _ } } #[doc = "Field `WPKEY` reader - Write Protection Key"] pub struct WPKEY_R(crate::FieldReader); impl WPKEY_R { #[inline(always)] pub(crate) fn new(bits: u32) -> Self { WPKEY_R(crate::FieldReader::new(bits)) } #[doc = r"Get enumerated values variant"] #[inline(always)] pub fn variant(&self) -> Option { match self.bits { 5329744 => Some(WPKEY_A::PASSWD), _ => None, } } #[doc = "Checks if the value of the field is `PASSWD`"] #[inline(always)] pub fn is_passwd(&self) -> bool { **self == WPKEY_A::PASSWD } } impl core::ops::Deref for WPKEY_R { type Target = crate::FieldReader; #[inline(always)] fn deref(&self) -> &Self::Target { &self.0 } } #[doc = "Field `WPKEY` writer - Write Protection Key"] pub struct WPKEY_W<'a> { w: &'a mut W, } impl<'a> WPKEY_W<'a> { #[doc = r"Writes `variant` to the field"] #[inline(always)] pub fn variant(self, variant: WPKEY_A) -> &'a mut W { unsafe { self.bits(variant.into()) } } #[doc = "Writing any other value in this field aborts the write operation of the WPEN bit. Always reads as 0."] #[inline(always)] pub fn passwd(self) -> &'a mut W { self.variant(WPKEY_A::PASSWD) } #[doc = r"Writes raw bits to the field"] #[inline(always)] pub unsafe fn bits(self, value: u32) -> &'a mut W { self.w.bits = (self.w.bits & !(0x00ff_ffff << 8)) | ((value as u32 & 0x00ff_ffff) << 8); self.w } } impl R { #[doc = "Bit 0 - Write Protection Enable"] #[inline(always)] pub fn wpen(&self) -> WPEN_R { WPEN_R::new((self.bits & 0x01) != 0) } #[doc = "Bits 8:31 - Write Protection Key"] #[inline(always)] pub fn wpkey(&self) -> WPKEY_R { WPKEY_R::new(((self.bits >> 8) & 0x00ff_ffff) as u32) } } impl W { #[doc = "Bit 0 - Write Protection Enable"] #[inline(always)] pub fn wpen(&mut self) -> WPEN_W { WPEN_W { w: self } } #[doc = "Bits 8:31 - Write Protection Key"] #[inline(always)] pub fn wpkey(&mut self) -> WPKEY_W { WPKEY_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 = "Write Protection 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 [qspi_wpmr](index.html) module"] pub struct QSPI_WPMR_SPEC; impl crate::RegisterSpec for QSPI_WPMR_SPEC { type Ux = u32; } #[doc = "`read()` method returns [qspi_wpmr::R](R) reader structure"] impl crate::Readable for QSPI_WPMR_SPEC { type Reader = R; } #[doc = "`write(|w| ..)` method takes [qspi_wpmr::W](W) writer structure"] impl crate::Writable for QSPI_WPMR_SPEC { type Writer = W; } #[doc = "`reset()` method sets QSPI_WPMR to value 0"] impl crate::Resettable for QSPI_WPMR_SPEC { #[inline(always)] fn reset_value() -> Self::Ux { 0 } }