s32k118.rs/src/lpi2c0/star.rs

102 lines
2.7 KiB
Rust

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