#[doc = "Register `DATA` reader"]
pub type R = crate::R<DataSpec>;
#[doc = "Register `DATA` writer"]
pub type W = crate::W<DataSpec>;
#[doc = "Field `R0T0` reader - Read receive FIFO bit 0 or write transmit FIFO bit 0"]
pub type R0t0R = crate::BitReader;
#[doc = "Field `R0T0` writer - Read receive FIFO bit 0 or write transmit FIFO bit 0"]
pub type R0t0W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `R1T1` reader - Read receive FIFO bit 1 or write transmit FIFO bit 1"]
pub type R1t1R = crate::BitReader;
#[doc = "Field `R1T1` writer - Read receive FIFO bit 1 or write transmit FIFO bit 1"]
pub type R1t1W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `R2T2` reader - Read receive FIFO bit 2 or write transmit FIFO bit 2"]
pub type R2t2R = crate::BitReader;
#[doc = "Field `R2T2` writer - Read receive FIFO bit 2 or write transmit FIFO bit 2"]
pub type R2t2W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `R3T3` reader - Read receive FIFO bit 3 or write transmit FIFO bit 3"]
pub type R3t3R = crate::BitReader;
#[doc = "Field `R3T3` writer - Read receive FIFO bit 3 or write transmit FIFO bit 3"]
pub type R3t3W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `R4T4` reader - Read receive FIFO bit 4 or write transmit FIFO bit 4"]
pub type R4t4R = crate::BitReader;
#[doc = "Field `R4T4` writer - Read receive FIFO bit 4 or write transmit FIFO bit 4"]
pub type R4t4W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `R5T5` reader - Read receive FIFO bit 5 or write transmit FIFO bit 5"]
pub type R5t5R = crate::BitReader;
#[doc = "Field `R5T5` writer - Read receive FIFO bit 5 or write transmit FIFO bit 5"]
pub type R5t5W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `R6T6` reader - Read receive FIFO bit 6 or write transmit FIFO bit 6"]
pub type R6t6R = crate::BitReader;
#[doc = "Field `R6T6` writer - Read receive FIFO bit 6 or write transmit FIFO bit 6"]
pub type R6t6W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `R7T7` reader - Read receive FIFO bit 7 or write transmit FIFO bit 7"]
pub type R7t7R = crate::BitReader;
#[doc = "Field `R7T7` writer - Read receive FIFO bit 7 or write transmit FIFO bit 7"]
pub type R7t7W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `R8T8` reader - Read receive FIFO bit 8 or write transmit FIFO bit 8"]
pub type R8t8R = crate::BitReader;
#[doc = "Field `R8T8` writer - Read receive FIFO bit 8 or write transmit FIFO bit 8"]
pub type R8t8W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "Field `R9T9` reader - Read receive FIFO bit 9 or write transmit FIFO bit 9"]
pub type R9t9R = crate::BitReader;
#[doc = "Field `R9T9` writer - Read receive FIFO bit 9 or write transmit FIFO bit 9"]
pub type R9t9W<'a, REG> = crate::BitWriter<'a, REG>;
#[doc = "LIN Break\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Linbrk {
#[doc = "0: Not detected"]
NoBreak = 0,
#[doc = "1: Detected"]
Break = 1,
}
impl From<Linbrk> for bool {
#[inline(always)]
fn from(variant: Linbrk) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `LINBRK` reader - LIN Break"]
pub type LinbrkR = crate::BitReader<Linbrk>;
impl LinbrkR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Linbrk {
match self.bits {
false => Linbrk::NoBreak,
true => Linbrk::Break,
}
}
#[doc = "Not detected"]
#[inline(always)]
pub fn is_no_break(&self) -> bool {
*self == Linbrk::NoBreak
}
#[doc = "Detected"]
#[inline(always)]
pub fn is_break(&self) -> bool {
*self == Linbrk::Break
}
}
#[doc = "Idle Line\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Idline {
#[doc = "0: Not idle"]
NoIdle = 0,
#[doc = "1: Idle"]
Idle = 1,
}
impl From<Idline> for bool {
#[inline(always)]
fn from(variant: Idline) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `IDLINE` reader - Idle Line"]
pub type IdlineR = crate::BitReader<Idline>;
impl IdlineR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Idline {
match self.bits {
false => Idline::NoIdle,
true => Idline::Idle,
}
}
#[doc = "Not idle"]
#[inline(always)]
pub fn is_no_idle(&self) -> bool {
*self == Idline::NoIdle
}
#[doc = "Idle"]
#[inline(always)]
pub fn is_idle(&self) -> bool {
*self == Idline::Idle
}
}
#[doc = "Receive Buffer Empty\n\nValue on reset: 1"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Rxempt {
#[doc = "0: Valid data"]
NotEmpty = 0,
#[doc = "1: Invalid data and empty"]
Empty = 1,
}
impl From<Rxempt> for bool {
#[inline(always)]
fn from(variant: Rxempt) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `RXEMPT` reader - Receive Buffer Empty"]
pub type RxemptR = crate::BitReader<Rxempt>;
impl RxemptR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Rxempt {
match self.bits {
false => Rxempt::NotEmpty,
true => Rxempt::Empty,
}
}
#[doc = "Valid data"]
#[inline(always)]
pub fn is_not_empty(&self) -> bool {
*self == Rxempt::NotEmpty
}
#[doc = "Invalid data and empty"]
#[inline(always)]
pub fn is_empty(&self) -> bool {
*self == Rxempt::Empty
}
}
#[doc = "Frame Error Transmit Special Character\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Fretsc {
#[doc = "0: Received without a frame error on reads or transmits a normal character on writes"]
NoError = 0,
#[doc = "1: Received with a frame error on reads or transmits an idle or break character on writes"]
Error = 1,
}
impl From<Fretsc> for bool {
#[inline(always)]
fn from(variant: Fretsc) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `FRETSC` reader - Frame Error Transmit Special Character"]
pub type FretscR = crate::BitReader<Fretsc>;
impl FretscR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Fretsc {
match self.bits {
false => Fretsc::NoError,
true => Fretsc::Error,
}
}
#[doc = "Received without a frame error on reads or transmits a normal character on writes"]
#[inline(always)]
pub fn is_no_error(&self) -> bool {
*self == Fretsc::NoError
}
#[doc = "Received with a frame error on reads or transmits an idle or break character on writes"]
#[inline(always)]
pub fn is_error(&self) -> bool {
*self == Fretsc::Error
}
}
#[doc = "Field `FRETSC` writer - Frame Error Transmit Special Character"]
pub type FretscW<'a, REG> = crate::BitWriter<'a, REG, Fretsc>;
impl<'a, REG> FretscW<'a, REG>
where
REG: crate::Writable + crate::RegisterSpec,
{
#[doc = "Received without a frame error on reads or transmits a normal character on writes"]
#[inline(always)]
pub fn no_error(self) -> &'a mut crate::W<REG> {
self.variant(Fretsc::NoError)
}
#[doc = "Received with a frame error on reads or transmits an idle or break character on writes"]
#[inline(always)]
pub fn error(self) -> &'a mut crate::W<REG> {
self.variant(Fretsc::Error)
}
}
#[doc = "Parity Error\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Paritye {
#[doc = "0: Received without a parity error"]
NoParity = 0,
#[doc = "1: Received with a parity error"]
Parity = 1,
}
impl From<Paritye> for bool {
#[inline(always)]
fn from(variant: Paritye) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `PARITYE` reader - Parity Error"]
pub type ParityeR = crate::BitReader<Paritye>;
impl ParityeR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Paritye {
match self.bits {
false => Paritye::NoParity,
true => Paritye::Parity,
}
}
#[doc = "Received without a parity error"]
#[inline(always)]
pub fn is_no_parity(&self) -> bool {
*self == Paritye::NoParity
}
#[doc = "Received with a parity error"]
#[inline(always)]
pub fn is_parity(&self) -> bool {
*self == Paritye::Parity
}
}
#[doc = "Noisy Data Received\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Noisy {
#[doc = "0: Received without noise"]
NoNoise = 0,
#[doc = "1: Received with noise"]
Noise = 1,
}
impl From<Noisy> for bool {
#[inline(always)]
fn from(variant: Noisy) -> Self {
variant as u8 != 0
}
}
#[doc = "Field `NOISY` reader - Noisy Data Received"]
pub type NoisyR = crate::BitReader<Noisy>;
impl NoisyR {
#[doc = "Get enumerated values variant"]
#[inline(always)]
pub const fn variant(&self) -> Noisy {
match self.bits {
false => Noisy::NoNoise,
true => Noisy::Noise,
}
}
#[doc = "Received without noise"]
#[inline(always)]
pub fn is_no_noise(&self) -> bool {
*self == Noisy::NoNoise
}
#[doc = "Received with noise"]
#[inline(always)]
pub fn is_noise(&self) -> bool {
*self == Noisy::Noise
}
}
impl R {
#[doc = "Bit 0 - Read receive FIFO bit 0 or write transmit FIFO bit 0"]
#[inline(always)]
pub fn r0t0(&self) -> R0t0R {
R0t0R::new((self.bits & 1) != 0)
}
#[doc = "Bit 1 - Read receive FIFO bit 1 or write transmit FIFO bit 1"]
#[inline(always)]
pub fn r1t1(&self) -> R1t1R {
R1t1R::new(((self.bits >> 1) & 1) != 0)
}
#[doc = "Bit 2 - Read receive FIFO bit 2 or write transmit FIFO bit 2"]
#[inline(always)]
pub fn r2t2(&self) -> R2t2R {
R2t2R::new(((self.bits >> 2) & 1) != 0)
}
#[doc = "Bit 3 - Read receive FIFO bit 3 or write transmit FIFO bit 3"]
#[inline(always)]
pub fn r3t3(&self) -> R3t3R {
R3t3R::new(((self.bits >> 3) & 1) != 0)
}
#[doc = "Bit 4 - Read receive FIFO bit 4 or write transmit FIFO bit 4"]
#[inline(always)]
pub fn r4t4(&self) -> R4t4R {
R4t4R::new(((self.bits >> 4) & 1) != 0)
}
#[doc = "Bit 5 - Read receive FIFO bit 5 or write transmit FIFO bit 5"]
#[inline(always)]
pub fn r5t5(&self) -> R5t5R {
R5t5R::new(((self.bits >> 5) & 1) != 0)
}
#[doc = "Bit 6 - Read receive FIFO bit 6 or write transmit FIFO bit 6"]
#[inline(always)]
pub fn r6t6(&self) -> R6t6R {
R6t6R::new(((self.bits >> 6) & 1) != 0)
}
#[doc = "Bit 7 - Read receive FIFO bit 7 or write transmit FIFO bit 7"]
#[inline(always)]
pub fn r7t7(&self) -> R7t7R {
R7t7R::new(((self.bits >> 7) & 1) != 0)
}
#[doc = "Bit 8 - Read receive FIFO bit 8 or write transmit FIFO bit 8"]
#[inline(always)]
pub fn r8t8(&self) -> R8t8R {
R8t8R::new(((self.bits >> 8) & 1) != 0)
}
#[doc = "Bit 9 - Read receive FIFO bit 9 or write transmit FIFO bit 9"]
#[inline(always)]
pub fn r9t9(&self) -> R9t9R {
R9t9R::new(((self.bits >> 9) & 1) != 0)
}
#[doc = "Bit 10 - LIN Break"]
#[inline(always)]
pub fn linbrk(&self) -> LinbrkR {
LinbrkR::new(((self.bits >> 10) & 1) != 0)
}
#[doc = "Bit 11 - Idle Line"]
#[inline(always)]
pub fn idline(&self) -> IdlineR {
IdlineR::new(((self.bits >> 11) & 1) != 0)
}
#[doc = "Bit 12 - Receive Buffer Empty"]
#[inline(always)]
pub fn rxempt(&self) -> RxemptR {
RxemptR::new(((self.bits >> 12) & 1) != 0)
}
#[doc = "Bit 13 - Frame Error Transmit Special Character"]
#[inline(always)]
pub fn fretsc(&self) -> FretscR {
FretscR::new(((self.bits >> 13) & 1) != 0)
}
#[doc = "Bit 14 - Parity Error"]
#[inline(always)]
pub fn paritye(&self) -> ParityeR {
ParityeR::new(((self.bits >> 14) & 1) != 0)
}
#[doc = "Bit 15 - Noisy Data Received"]
#[inline(always)]
pub fn noisy(&self) -> NoisyR {
NoisyR::new(((self.bits >> 15) & 1) != 0)
}
}
#[cfg(feature = "debug")]
impl core::fmt::Debug for R {
fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
f.debug_struct("DATA")
.field("r0t0", &self.r0t0())
.field("r1t1", &self.r1t1())
.field("r2t2", &self.r2t2())
.field("r3t3", &self.r3t3())
.field("r4t4", &self.r4t4())
.field("r5t5", &self.r5t5())
.field("r6t6", &self.r6t6())
.field("r7t7", &self.r7t7())
.field("r8t8", &self.r8t8())
.field("r9t9", &self.r9t9())
.field("linbrk", &self.linbrk())
.field("idline", &self.idline())
.field("rxempt", &self.rxempt())
.field("fretsc", &self.fretsc())
.field("paritye", &self.paritye())
.field("noisy", &self.noisy())
.finish()
}
}
impl W {
#[doc = "Bit 0 - Read receive FIFO bit 0 or write transmit FIFO bit 0"]
#[inline(always)]
pub fn r0t0(&mut self) -> R0t0W<'_, DataSpec> {
R0t0W::new(self, 0)
}
#[doc = "Bit 1 - Read receive FIFO bit 1 or write transmit FIFO bit 1"]
#[inline(always)]
pub fn r1t1(&mut self) -> R1t1W<'_, DataSpec> {
R1t1W::new(self, 1)
}
#[doc = "Bit 2 - Read receive FIFO bit 2 or write transmit FIFO bit 2"]
#[inline(always)]
pub fn r2t2(&mut self) -> R2t2W<'_, DataSpec> {
R2t2W::new(self, 2)
}
#[doc = "Bit 3 - Read receive FIFO bit 3 or write transmit FIFO bit 3"]
#[inline(always)]
pub fn r3t3(&mut self) -> R3t3W<'_, DataSpec> {
R3t3W::new(self, 3)
}
#[doc = "Bit 4 - Read receive FIFO bit 4 or write transmit FIFO bit 4"]
#[inline(always)]
pub fn r4t4(&mut self) -> R4t4W<'_, DataSpec> {
R4t4W::new(self, 4)
}
#[doc = "Bit 5 - Read receive FIFO bit 5 or write transmit FIFO bit 5"]
#[inline(always)]
pub fn r5t5(&mut self) -> R5t5W<'_, DataSpec> {
R5t5W::new(self, 5)
}
#[doc = "Bit 6 - Read receive FIFO bit 6 or write transmit FIFO bit 6"]
#[inline(always)]
pub fn r6t6(&mut self) -> R6t6W<'_, DataSpec> {
R6t6W::new(self, 6)
}
#[doc = "Bit 7 - Read receive FIFO bit 7 or write transmit FIFO bit 7"]
#[inline(always)]
pub fn r7t7(&mut self) -> R7t7W<'_, DataSpec> {
R7t7W::new(self, 7)
}
#[doc = "Bit 8 - Read receive FIFO bit 8 or write transmit FIFO bit 8"]
#[inline(always)]
pub fn r8t8(&mut self) -> R8t8W<'_, DataSpec> {
R8t8W::new(self, 8)
}
#[doc = "Bit 9 - Read receive FIFO bit 9 or write transmit FIFO bit 9"]
#[inline(always)]
pub fn r9t9(&mut self) -> R9t9W<'_, DataSpec> {
R9t9W::new(self, 9)
}
#[doc = "Bit 13 - Frame Error Transmit Special Character"]
#[inline(always)]
pub fn fretsc(&mut self) -> FretscW<'_, DataSpec> {
FretscW::new(self, 13)
}
}
#[doc = "Data\n\nYou can [`read`](crate::Reg::read) this register and get [`data::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`data::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct DataSpec;
impl crate::RegisterSpec for DataSpec {
type Ux = u32;
}
#[doc = "`read()` method returns [`data::R`](R) reader structure"]
impl crate::Readable for DataSpec {}
#[doc = "`write(|w| ..)` method takes [`data::W`](W) writer structure"]
impl crate::Writable for DataSpec {
type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets DATA to value 0x1000"]
impl crate::Resettable for DataSpec {
const RESET_VALUE: u32 = 0x1000;
}