1#[doc = "Register `UARTDR` reader"]
2pub type R = crate::R<UARTDR_SPEC>;
3#[doc = "Register `UARTDR` writer"]
4pub type W = crate::W<UARTDR_SPEC>;
5#[doc = "Field `DATA` reader - Receive (read) data character. Transmit (write) data character."]
6pub type DATA_R = crate::FieldReader;
7#[doc = "Field `DATA` writer - Receive (read) data character. Transmit (write) data character."]
8pub type DATA_W<'a, REG> = crate::FieldWriter<'a, REG, 8>;
9#[doc = "Field `FE` reader - Framing error. When set to 1, it indicates that the received character did not have a valid stop bit (a valid stop bit is 1). In FIFO mode, this error is associated with the character at the top of the FIFO."]
10pub type FE_R = crate::BitReader;
11#[doc = "Field `PE` reader - Parity error. When set to 1, it indicates that the parity of the received data character does not match the parity that the EPS and SPS bits in the Line Control Register, UARTLCR_H. In FIFO mode, this error is associated with the character at the top of the FIFO."]
12pub type PE_R = crate::BitReader;
13#[doc = "Field `BE` reader - Break error. This bit is set to 1 if a break condition was detected, indicating that the received data input was held LOW for longer than a full-word transmission time (defined as start, data, parity and stop bits). In FIFO mode, this error is associated with the character at the top of the FIFO. When a break occurs, only one 0 character is loaded into the FIFO. The next character is only enabled after the receive data input goes to a 1 (marking state), and the next valid start bit is received."]
14pub type BE_R = crate::BitReader;
15#[doc = "Field `OE` reader - Overrun error. This bit is set to 1 if data is received and the receive FIFO is already full. This is cleared to 0 once there is an empty space in the FIFO and a new character can be written to it."]
16pub type OE_R = crate::BitReader;
17impl R {
18#[doc = "Bits 0:7 - Receive (read) data character. Transmit (write) data character."]
19 #[inline(always)]
20pub fn data(&self) -> DATA_R {
21 DATA_R::new((self.bits & 0xff) as u8)
22 }
23#[doc = "Bit 8 - Framing error. When set to 1, it indicates that the received character did not have a valid stop bit (a valid stop bit is 1). In FIFO mode, this error is associated with the character at the top of the FIFO."]
24 #[inline(always)]
25pub fn fe(&self) -> FE_R {
26 FE_R::new(((self.bits >> 8) & 1) != 0)
27 }
28#[doc = "Bit 9 - Parity error. When set to 1, it indicates that the parity of the received data character does not match the parity that the EPS and SPS bits in the Line Control Register, UARTLCR_H. In FIFO mode, this error is associated with the character at the top of the FIFO."]
29 #[inline(always)]
30pub fn pe(&self) -> PE_R {
31 PE_R::new(((self.bits >> 9) & 1) != 0)
32 }
33#[doc = "Bit 10 - Break error. This bit is set to 1 if a break condition was detected, indicating that the received data input was held LOW for longer than a full-word transmission time (defined as start, data, parity and stop bits). In FIFO mode, this error is associated with the character at the top of the FIFO. When a break occurs, only one 0 character is loaded into the FIFO. The next character is only enabled after the receive data input goes to a 1 (marking state), and the next valid start bit is received."]
34 #[inline(always)]
35pub fn be(&self) -> BE_R {
36 BE_R::new(((self.bits >> 10) & 1) != 0)
37 }
38#[doc = "Bit 11 - Overrun error. This bit is set to 1 if data is received and the receive FIFO is already full. This is cleared to 0 once there is an empty space in the FIFO and a new character can be written to it."]
39 #[inline(always)]
40pub fn oe(&self) -> OE_R {
41 OE_R::new(((self.bits >> 11) & 1) != 0)
42 }
43}
44impl W {
45#[doc = "Bits 0:7 - Receive (read) data character. Transmit (write) data character."]
46 #[inline(always)]
47 #[must_use]
48pub fn data(&mut self) -> DATA_W<UARTDR_SPEC> {
49 DATA_W::new(self, 0)
50 }
51#[doc = r" Writes raw bits to the register."]
52 #[doc = r""]
53 #[doc = r" # Safety"]
54 #[doc = r""]
55 #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
56 #[inline(always)]
57pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
58self.bits = bits;
59self
60}
61}
62#[doc = "Data Register, UARTDR
6364You can [`read`](crate::generic::Reg::read) this register and get [`uartdr::R`](R). You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`uartdr::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
65pub struct UARTDR_SPEC;
66impl crate::RegisterSpec for UARTDR_SPEC {
67type Ux = u32;
68}
69#[doc = "`read()` method returns [`uartdr::R`](R) reader structure"]
70impl crate::Readable for UARTDR_SPEC {}
71#[doc = "`write(|w| ..)` method takes [`uartdr::W`](W) writer structure"]
72impl crate::Writable for UARTDR_SPEC {
73const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
74const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
75}
76#[doc = "`reset()` method sets UARTDR to value 0"]
77impl crate::Resettable for UARTDR_SPEC {
78const RESET_VALUE: u32 = 0;
79}