#[doc = "Register `VD_CORE_CFG` reader"]
pub type R = crate::R<VdCoreCfgSpec>;
#[doc = "Register `VD_CORE_CFG` writer"]
pub type W = crate::W<VdCoreCfgSpec>;
#[doc = "Core LVD Reset Enable\n\nValue on reset: 1"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Lvdre {
#[doc = "0: Disable"]
Disable = 0,
#[doc = "1: Enable"]
Enable = 1,
}
impl From<Lvdre> for bool {
#[inline(always)]
fn from(variant: Lvdre) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `LVDRE` reader - Core LVD Reset Enable"]
pub type LvdreR = crate::BitReader<Lvdre>;
impl LvdreR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Lvdre {
match self.bits {
false => Lvdre::Disable,
true => Lvdre::Enable,
}
}
#[doc = "Disable"]
#[inline(always)]
pub fn is_disable(&self) -> bool {
*self == Lvdre::Disable
}
#[doc = "Enable"]
#[inline(always)]
pub fn is_enable(&self) -> bool {
*self == Lvdre::Enable
}
}
#[doc = "Field `LVDRE` writer - Core LVD Reset Enable"]
pub type LvdreW<'a, REG> = crate::BitWriter<'a, REG, Lvdre>;
impl<'a, REG> LvdreW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[doc = "Disable"]
#[inline(always)]
pub fn disable(self) -> &'a mut crate::W<REG> {
self.variant(Lvdre::Disable)
}
#[doc = "Enable"]
#[inline(always)]
pub fn enable(self) -> &'a mut crate::W<REG> {
self.variant(Lvdre::Enable)
}
}
#[doc = "Core LVD Interrupt Enable\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Lvdie {
#[doc = "0: Disable"]
Disable = 0,
#[doc = "1: Enable"]
Enable = 1,
}
impl From<Lvdie> for bool {
#[inline(always)]
fn from(variant: Lvdie) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `LVDIE` reader - Core LVD Interrupt Enable"]
pub type LvdieR = crate::BitReader<Lvdie>;
impl LvdieR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Lvdie {
match self.bits {
false => Lvdie::Disable,
true => Lvdie::Enable,
}
}
#[doc = "Disable"]
#[inline(always)]
pub fn is_disable(&self) -> bool {
*self == Lvdie::Disable
}
#[doc = "Enable"]
#[inline(always)]
pub fn is_enable(&self) -> bool {
*self == Lvdie::Enable
}
}
#[doc = "Field `LVDIE` writer - Core LVD Interrupt Enable"]
pub type LvdieW<'a, REG> = crate::BitWriter<'a, REG, Lvdie>;
impl<'a, REG> LvdieW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[doc = "Disable"]
#[inline(always)]
pub fn disable(self) -> &'a mut crate::W<REG> {
self.variant(Lvdie::Disable)
}
#[doc = "Enable"]
#[inline(always)]
pub fn enable(self) -> &'a mut crate::W<REG> {
self.variant(Lvdie::Enable)
}
}
#[doc = "Core Voltage Detect Reset Enable Lock\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Lock {
#[doc = "0: Allow"]
Allow = 0,
#[doc = "1: Deny"]
Deny = 1,
}
impl From<Lock> for bool {
#[inline(always)]
fn from(variant: Lock) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `LOCK` reader - Core Voltage Detect Reset Enable Lock"]
pub type LockR = crate::BitReader<Lock>;
impl LockR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Lock {
match self.bits {
false => Lock::Allow,
true => Lock::Deny,
}
}
#[doc = "Allow"]
#[inline(always)]
pub fn is_allow(&self) -> bool {
*self == Lock::Allow
}
#[doc = "Deny"]
#[inline(always)]
pub fn is_deny(&self) -> bool {
*self == Lock::Deny
}
}
#[doc = "Field `LOCK` writer - Core Voltage Detect Reset Enable Lock"]
pub type LockW<'a, REG> = crate::BitWriter<'a, REG, Lock>;
impl<'a, REG> LockW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[doc = "Allow"]
#[inline(always)]
pub fn allow(self) -> &'a mut crate::W<REG> {
self.variant(Lock::Allow)
}
#[doc = "Deny"]
#[inline(always)]
pub fn deny(self) -> &'a mut crate::W<REG> {
self.variant(Lock::Deny)
}
}
impl R {
#[doc = "Bit 0 - Core LVD Reset Enable"]
#[inline(always)]
pub fn lvdre(&self) -> LvdreR {
LvdreR::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - Core LVD Interrupt Enable"]
#[inline(always)]
pub fn lvdie(&self) -> LvdieR {
LvdieR::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bit 16 - Core Voltage Detect Reset Enable Lock"]
#[inline(always)]
pub fn lock(&self) -> LockR {
LockR::new(((self.bits >> 16) & 1) != 0)
}
}
#[cfg(feature = "debug")]
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("VD_CORE_CFG")
.field("lvdre", &self.lvdre())
.field("lvdie", &self.lvdie())
.field("lock", &self.lock())
.finish()
}
}
impl W {
#[doc = "Bit 0 - Core LVD Reset Enable"]
#[inline(always)]
pub fn lvdre(&mut self) -> LvdreW<'_, VdCoreCfgSpec> {
LvdreW::new(self, 0)
}
#[doc = "Bit 1 - Core LVD Interrupt Enable"]
#[inline(always)]
pub fn lvdie(&mut self) -> LvdieW<'_, VdCoreCfgSpec> {
LvdieW::new(self, 1)
}
#[doc = "Bit 16 - Core Voltage Detect Reset Enable Lock"]
#[inline(always)]
pub fn lock(&mut self) -> LockW<'_, VdCoreCfgSpec> {
LockW::new(self, 16)
}
}
#[doc = "Core Voltage Detect Configuration\n\nYou can [`read`](crate::Reg::read) this register and get [`vd_core_cfg::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`vd_core_cfg::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct VdCoreCfgSpec;
impl crate::RegisterSpec for VdCoreCfgSpec {
type Ux = u32;
}
#[doc = "`read()` method returns [`vd_core_cfg::R`](R) reader structure"]
impl crate::Readable for VdCoreCfgSpec {}
#[doc = "`write(|w| ..)` method takes [`vd_core_cfg::W`](W) writer structure"]
impl crate::Writable for VdCoreCfgSpec {
type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets VD_CORE_CFG to value 0x01"]
impl crate::Resettable for VdCoreCfgSpec {
const RESET_VALUE: u32 = 0x01;
}