xmc4800 0.14.0

XMC peripheral library for XMC4800 generated from SVD
Documentation
#[doc = "Register `ESC_WR_PROTECT` reader"]
pub type R = crate::R<ESC_WR_PROTECT_SPEC>;
#[doc = "Write protect\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ESC_WR_PROT_A {
    #[doc = "0: Protection disabled"]
    VALUE1 = 0,
    #[doc = "1: Protection enabled"]
    VALUE2 = 1,
}
impl From<ESC_WR_PROT_A> for bool {
    #[inline(always)]
    fn from(variant: ESC_WR_PROT_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `ESC_WR_PROT` reader - Write protect"]
pub type ESC_WR_PROT_R = crate::BitReader<ESC_WR_PROT_A>;
impl ESC_WR_PROT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> ESC_WR_PROT_A {
        match self.bits {
            false => ESC_WR_PROT_A::VALUE1,
            true => ESC_WR_PROT_A::VALUE2,
        }
    }
    #[doc = "Protection disabled"]
    #[inline(always)]
    pub fn is_value1(&self) -> bool {
        *self == ESC_WR_PROT_A::VALUE1
    }
    #[doc = "Protection enabled"]
    #[inline(always)]
    pub fn is_value2(&self) -> bool {
        *self == ESC_WR_PROT_A::VALUE2
    }
}
impl R {
    #[doc = "Bit 0 - Write protect"]
    #[inline(always)]
    pub fn esc_wr_prot(&self) -> ESC_WR_PROT_R {
        ESC_WR_PROT_R::new((self.bits & 1) != 0)
    }
}
#[doc = "ESC Write Protection\n\nYou can [`read`](crate::Reg::read) this register and get [`esc_wr_protect::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct ESC_WR_PROTECT_SPEC;
impl crate::RegisterSpec for ESC_WR_PROTECT_SPEC {
    type Ux = u8;
}
#[doc = "`read()` method returns [`esc_wr_protect::R`](R) reader structure"]
impl crate::Readable for ESC_WR_PROTECT_SPEC {}
#[doc = "`reset()` method sets ESC_WR_PROTECT to value 0"]
impl crate::Resettable for ESC_WR_PROTECT_SPEC {}