s32k118.rs/src/ftfc/ferstat.rs

104 lines
3.0 KiB
Rust

#[doc = "Reader of register FERSTAT"]
pub type R = crate::R<u8, super::FERSTAT>;
#[doc = "Writer for register FERSTAT"]
pub type W = crate::W<u8, super::FERSTAT>;
#[doc = "Register FERSTAT `reset()`'s with value 0"]
impl crate::ResetValue for super::FERSTAT {
type Type = u8;
#[inline(always)]
fn reset_value() -> Self::Type {
0
}
}
#[doc = "Double Bit Fault Detect Interrupt Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum DFDIF_A {
#[doc = "0: Double bit fault not detected during a valid flash read access from the platform flash controller"]
_0 = 0,
#[doc = "1: Double bit fault detected (or FERCNFG\\[FDFD\\]
is set) during a valid flash read access from the platform flash controller"]
_1 = 1,
}
impl From<DFDIF_A> for bool {
#[inline(always)]
fn from(variant: DFDIF_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `DFDIF`"]
pub type DFDIF_R = crate::R<bool, DFDIF_A>;
impl DFDIF_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> DFDIF_A {
match self.bits {
false => DFDIF_A::_0,
true => DFDIF_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == DFDIF_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == DFDIF_A::_1
}
}
#[doc = "Write proxy for field `DFDIF`"]
pub struct DFDIF_W<'a> {
w: &'a mut W,
}
impl<'a> DFDIF_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: DFDIF_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "Double bit fault not detected during a valid flash read access from the platform flash controller"]
#[inline(always)]
pub fn _0(self) -> &'a mut W {
self.variant(DFDIF_A::_0)
}
#[doc = "Double bit fault detected (or FERCNFG\\[FDFD\\]
is set) during a valid flash read access from the platform flash controller"]
#[inline(always)]
pub fn _1(self) -> &'a mut W {
self.variant(DFDIF_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 << 1)) | (((value as u8) & 0x01) << 1);
self.w
}
}
impl R {
#[doc = "Bit 1 - Double Bit Fault Detect Interrupt Flag"]
#[inline(always)]
pub fn dfdif(&self) -> DFDIF_R {
DFDIF_R::new(((self.bits >> 1) & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 1 - Double Bit Fault Detect Interrupt Flag"]
#[inline(always)]
pub fn dfdif(&mut self) -> DFDIF_W {
DFDIF_W { w: self }
}
}