#[doc = "Reader of register S1"]
pub type R = crate::R<u8, super::S1>;
#[doc = "Writer for register S1"]
pub type W = crate::W<u8, super::S1>;
#[doc = "Register S1 `reset()`'s with value 0xc0"]
impl crate::ResetValue for super::S1 {
type Type = u8;
#[inline(always)]
fn reset_value() -> Self::Type {
0xc0
}
}
#[doc = "Parity Error Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum PF_A {
#[doc = "0: No parity error."]
_0 = 0,
#[doc = "1: Parity error."]
_1 = 1,
}
impl From<PF_A> for bool {
#[inline(always)]
fn from(variant: PF_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `PF`"]
pub type PF_R = crate::R<bool, PF_A>;
impl PF_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> PF_A {
match self.bits {
false => PF_A::_0,
true => PF_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == PF_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == PF_A::_1
}
}
#[doc = "Write proxy for field `PF`"]
pub struct PF_W<'a> {
w: &'a mut W,
}
impl<'a> PF_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: PF_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "No parity error."]
#[inline(always)]
pub fn _0(self) -> &'a mut W {
self.variant(PF_A::_0)
}
#[doc = "Parity error."]
#[inline(always)]
pub fn _1(self) -> &'a mut W {
self.variant(PF_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 u8) & 0x01);
self.w
}
}
#[doc = "Framing Error Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum FE_A {
#[doc = "0: No framing error detected. This does not guarantee the framing is correct."]
_0 = 0,
#[doc = "1: Framing error."]
_1 = 1,
}
impl From<FE_A> for bool {
#[inline(always)]
fn from(variant: FE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `FE`"]
pub type FE_R = crate::R<bool, FE_A>;
impl FE_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> FE_A {
match self.bits {
false => FE_A::_0,
true => FE_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == FE_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == FE_A::_1
}
}
#[doc = "Write proxy for field `FE`"]
pub struct FE_W<'a> {
w: &'a mut W,
}
impl<'a> FE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: FE_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "No framing error detected. This does not guarantee the framing is correct."]
#[inline(always)]
pub fn _0(self) -> &'a mut W {
self.variant(FE_A::_0)
}
#[doc = "Framing error."]
#[inline(always)]
pub fn _1(self) -> &'a mut W {
self.variant(FE_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
}
}
#[doc = "Noise Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum NF_A {
#[doc = "0: No noise detected."]
_0 = 0,
#[doc = "1: Noise detected in the received character in UART _D."]
_1 = 1,
}
impl From<NF_A> for bool {
#[inline(always)]
fn from(variant: NF_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `NF`"]
pub type NF_R = crate::R<bool, NF_A>;
impl NF_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> NF_A {
match self.bits {
false => NF_A::_0,
true => NF_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == NF_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == NF_A::_1
}
}
#[doc = "Write proxy for field `NF`"]
pub struct NF_W<'a> {
w: &'a mut W,
}
impl<'a> NF_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: NF_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "No noise detected."]
#[inline(always)]
pub fn _0(self) -> &'a mut W {
self.variant(NF_A::_0)
}
#[doc = "Noise detected in the received character in UART _D."]
#[inline(always)]
pub fn _1(self) -> &'a mut W {
self.variant(NF_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 << 2)) | (((value as u8) & 0x01) << 2);
self.w
}
}
#[doc = "Receiver Overrun Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum OR_A {
#[doc = "0: No overrun."]
_0 = 0,
#[doc = "1: Receive overrun (new UART data lost)."]
_1 = 1,
}
impl From<OR_A> for bool {
#[inline(always)]
fn from(variant: OR_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `OR`"]
pub type OR_R = crate::R<bool, OR_A>;
impl OR_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> OR_A {
match self.bits {
false => OR_A::_0,
true => OR_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == OR_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == OR_A::_1
}
}
#[doc = "Write proxy for field `OR`"]
pub struct OR_W<'a> {
w: &'a mut W,
}
impl<'a> OR_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: OR_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "No overrun."]
#[inline(always)]
pub fn _0(self) -> &'a mut W {
self.variant(OR_A::_0)
}
#[doc = "Receive overrun (new UART data lost)."]
#[inline(always)]
pub fn _1(self) -> &'a mut W {
self.variant(OR_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 << 3)) | (((value as u8) & 0x01) << 3);
self.w
}
}
#[doc = "Idle Line Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum IDLE_A {
#[doc = "0: No idle line detected."]
_0 = 0,
#[doc = "1: Idle line was detected."]
_1 = 1,
}
impl From<IDLE_A> for bool {
#[inline(always)]
fn from(variant: IDLE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `IDLE`"]
pub type IDLE_R = crate::R<bool, IDLE_A>;
impl IDLE_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> IDLE_A {
match self.bits {
false => IDLE_A::_0,
true => IDLE_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == IDLE_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == IDLE_A::_1
}
}
#[doc = "Write proxy for field `IDLE`"]
pub struct IDLE_W<'a> {
w: &'a mut W,
}
impl<'a> IDLE_W<'a> {
#[doc = r"Writes `variant` to the field"]
#[inline(always)]
pub fn variant(self, variant: IDLE_A) -> &'a mut W {
{
self.bit(variant.into())
}
}
#[doc = "No idle line detected."]
#[inline(always)]
pub fn _0(self) -> &'a mut W {
self.variant(IDLE_A::_0)
}
#[doc = "Idle line was detected."]
#[inline(always)]
pub fn _1(self) -> &'a mut W {
self.variant(IDLE_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 << 4)) | (((value as u8) & 0x01) << 4);
self.w
}
}
#[doc = "Receive Data Register Full Flag\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum RDRF_A {
#[doc = "0: Receive data buffer empty."]
_0 = 0,
#[doc = "1: Receive data buffer full."]
_1 = 1,
}
impl From<RDRF_A> for bool {
#[inline(always)]
fn from(variant: RDRF_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `RDRF`"]
pub type RDRF_R = crate::R<bool, RDRF_A>;
impl RDRF_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> RDRF_A {
match self.bits {
false => RDRF_A::_0,
true => RDRF_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == RDRF_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == RDRF_A::_1
}
}
#[doc = "Transmission Complete Flag\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TC_A {
#[doc = "0: Transmitter active (sending data, a preamble, or a break)."]
_0 = 0,
#[doc = "1: Transmitter idle (transmission activity complete)."]
_1 = 1,
}
impl From<TC_A> for bool {
#[inline(always)]
fn from(variant: TC_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `TC`"]
pub type TC_R = crate::R<bool, TC_A>;
impl TC_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> TC_A {
match self.bits {
false => TC_A::_0,
true => TC_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == TC_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == TC_A::_1
}
}
#[doc = "Transmit Data Register Empty Flag\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum TDRE_A {
#[doc = "0: Transmit data buffer full."]
_0 = 0,
#[doc = "1: Transmit data buffer empty."]
_1 = 1,
}
impl From<TDRE_A> for bool {
#[inline(always)]
fn from(variant: TDRE_A) -> Self {
variant as u8 != 0
}
}
#[doc = "Reader of field `TDRE`"]
pub type TDRE_R = crate::R<bool, TDRE_A>;
impl TDRE_R {
#[doc = r"Get enumerated values variant"]
#[inline(always)]
pub fn variant(&self) -> TDRE_A {
match self.bits {
false => TDRE_A::_0,
true => TDRE_A::_1,
}
}
#[doc = "Checks if the value of the field is `_0`"]
#[inline(always)]
pub fn is_0(&self) -> bool {
*self == TDRE_A::_0
}
#[doc = "Checks if the value of the field is `_1`"]
#[inline(always)]
pub fn is_1(&self) -> bool {
*self == TDRE_A::_1
}
}
impl R {
#[doc = "Bit 0 - Parity Error Flag"]
#[inline(always)]
pub fn pf(&self) -> PF_R {
PF_R::new((self.bits & 0x01) != 0)
}
#[doc = "Bit 1 - Framing Error Flag"]
#[inline(always)]
pub fn fe(&self) -> FE_R {
FE_R::new(((self.bits >> 1) & 0x01) != 0)
}
#[doc = "Bit 2 - Noise Flag"]
#[inline(always)]
pub fn nf(&self) -> NF_R {
NF_R::new(((self.bits >> 2) & 0x01) != 0)
}
#[doc = "Bit 3 - Receiver Overrun Flag"]
#[inline(always)]
pub fn or(&self) -> OR_R {
OR_R::new(((self.bits >> 3) & 0x01) != 0)
}
#[doc = "Bit 4 - Idle Line Flag"]
#[inline(always)]
pub fn idle(&self) -> IDLE_R {
IDLE_R::new(((self.bits >> 4) & 0x01) != 0)
}
#[doc = "Bit 5 - Receive Data Register Full Flag"]
#[inline(always)]
pub fn rdrf(&self) -> RDRF_R {
RDRF_R::new(((self.bits >> 5) & 0x01) != 0)
}
#[doc = "Bit 6 - Transmission Complete Flag"]
#[inline(always)]
pub fn tc(&self) -> TC_R {
TC_R::new(((self.bits >> 6) & 0x01) != 0)
}
#[doc = "Bit 7 - Transmit Data Register Empty Flag"]
#[inline(always)]
pub fn tdre(&self) -> TDRE_R {
TDRE_R::new(((self.bits >> 7) & 0x01) != 0)
}
}
impl W {
#[doc = "Bit 0 - Parity Error Flag"]
#[inline(always)]
pub fn pf(&mut self) -> PF_W {
PF_W { w: self }
}
#[doc = "Bit 1 - Framing Error Flag"]
#[inline(always)]
pub fn fe(&mut self) -> FE_W {
FE_W { w: self }
}
#[doc = "Bit 2 - Noise Flag"]
#[inline(always)]
pub fn nf(&mut self) -> NF_W {
NF_W { w: self }
}
#[doc = "Bit 3 - Receiver Overrun Flag"]
#[inline(always)]
pub fn or(&mut self) -> OR_W {
OR_W { w: self }
}
#[doc = "Bit 4 - Idle Line Flag"]
#[inline(always)]
pub fn idle(&mut self) -> IDLE_W {
IDLE_W { w: self }
}
}