#[doc = "Register `MAINCLKUEN` reader"] pub type R = crate::R; #[doc = "Register `MAINCLKUEN` writer"] pub type W = crate::W; #[doc = "Enable main clock source update\n\nValue on reset: 0"] #[derive(Clone, Copy, Debug, PartialEq, Eq)] pub enum Ena { #[doc = "0: No change"] NoChange = 0, #[doc = "1: Update clock source"] UpdateClockSource = 1, } impl From for bool { #[inline(always)] fn from(variant: Ena) -> Self { variant as u8 != 0 } } #[doc = "Field `ENA` reader - Enable main clock source update"] pub type EnaR = crate::BitReader; impl EnaR { #[doc = "Get enumerated values variant"] #[inline(always)] pub const fn variant(&self) -> Ena { match self.bits { false => Ena::NoChange, true => Ena::UpdateClockSource, } } #[doc = "No change"] #[inline(always)] pub fn is_no_change(&self) -> bool { *self == Ena::NoChange } #[doc = "Update clock source"] #[inline(always)] pub fn is_update_clock_source(&self) -> bool { *self == Ena::UpdateClockSource } } #[doc = "Field `ENA` writer - Enable main clock source update"] pub type EnaW<'a, REG> = crate::BitWriter<'a, REG, Ena>; impl<'a, REG> EnaW<'a, REG> where REG: crate::Writable + crate::RegisterSpec, { #[doc = "No change"] #[inline(always)] pub fn no_change(self) -> &'a mut crate::W { self.variant(Ena::NoChange) } #[doc = "Update clock source"] #[inline(always)] pub fn update_clock_source(self) -> &'a mut crate::W { self.variant(Ena::UpdateClockSource) } } impl R { #[doc = "Bit 0 - Enable main clock source update"] #[inline(always)] pub fn ena(&self) -> EnaR { EnaR::new((self.bits & 1) != 0) } } impl W { #[doc = "Bit 0 - Enable main clock source update"] #[inline(always)] #[must_use] pub fn ena(&mut self) -> EnaW { EnaW::new(self, 0) } } #[doc = "Main clock source update enable\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`mainclkuen::R`](R). You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`mainclkuen::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."] pub struct MainclkuenSpec; impl crate::RegisterSpec for MainclkuenSpec { type Ux = u32; } #[doc = "`read()` method returns [`mainclkuen::R`](R) reader structure"] impl crate::Readable for MainclkuenSpec {} #[doc = "`write(|w| ..)` method takes [`mainclkuen::W`](W) writer structure"] impl crate::Writable for MainclkuenSpec { type Safety = crate::Unsafe; const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0; const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0; } #[doc = "`reset()` method sets MAINCLKUEN to value 0"] impl crate::Resettable for MainclkuenSpec { const RESET_VALUE: u32 = 0; }