s32k118.rs/src/cmu_fc_1/gcr.rs

102 lines
2.6 KiB
Rust

#[doc = "Reader of register GCR"]
pub type R = crate::R<u32, super::GCR>;
#[doc = "Writer for register GCR"]
pub type W = crate::W<u32, super::GCR>;
#[doc = "Register GCR `reset()`'s with value 0"]
impl crate::ResetValue for super::GCR {
type Type = u32;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Frequency Check Enable\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FCE_A {
#[doc = "0: Frequency Check Disabled"]
_0 = 0,
#[doc = "1: Frequency Check Enabled"]
_1 = 1,
}
impl From<FCE_A> for bool {
#[inline(always)]
fn from(variant: FCE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `FCE`"]
pub type FCE_R = crate::R<bool, FCE_A>;
impl FCE_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> FCE_A {
match self.bits {
false => FCE_A::_0,
true => FCE_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == FCE_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == FCE_A::_1
}
}
#[doc = "Write proxy for field `FCE`"]
pub struct FCE_W<'a> {
w: &'a mut W,
}
impl<'a> FCE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: FCE_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Frequency Check Disabled"]
#[inline(always)]
pub fn _0(self) -> &'a mut W {
self.variant(FCE_A::_0)
}
#[doc = "Frequency Check Enabled"]
#[inline(always)]
pub fn _1(self) -> &'a mut W {
self.variant(FCE_A::_1)
}
#[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
}
}
impl R {
#[doc = "Bit 0 - Frequency Check Enable"]
#[inline(always)]
pub fn fce(&self) -> FCE_R {
FCE_R::new((self.bits & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 0 - Frequency Check Enable"]
#[inline(always)]
pub fn fce(&mut self) -> FCE_W {
FCE_W { w: self }
}
}