1#[doc = "Register `CONF1` reader"]
2pub type R = crate::R<CONF1_SPEC>;
3#[doc = "Register `CONF1` writer"]
4pub type W = crate::W<CONF1_SPEC>;
5#[doc = "Field `RXFIFO_FULL_THRHD` reader - When receiver receives more data than its threshold value.receiver will produce rxfifo_full_int_raw interrupt.the threshold value is (rx_flow_thrhd_h3 rxfifo_full_thrhd)."]
6pub type RXFIFO_FULL_THRHD_R = crate::FieldReader;
7#[doc = "Field `RXFIFO_FULL_THRHD` writer - When receiver receives more data than its threshold value.receiver will produce rxfifo_full_int_raw interrupt.the threshold value is (rx_flow_thrhd_h3 rxfifo_full_thrhd)."]
8pub type RXFIFO_FULL_THRHD_W<'a, REG> = crate::FieldWriter<'a, REG, 7>;
9#[doc = "Field `TXFIFO_EMPTY_THRHD` reader - when the data amount in transmitter fifo is less than its threshold value. it will produce txfifo_empty_int_raw interrupt. the threshold value is (tx_mem_empty_thrhd txfifo_empty_thrhd)"]
10pub type TXFIFO_EMPTY_THRHD_R = crate::FieldReader;
11#[doc = "Field `TXFIFO_EMPTY_THRHD` writer - when the data amount in transmitter fifo is less than its threshold value. it will produce txfifo_empty_int_raw interrupt. the threshold value is (tx_mem_empty_thrhd txfifo_empty_thrhd)"]
12pub type TXFIFO_EMPTY_THRHD_W<'a, REG> = crate::FieldWriter<'a, REG, 7>;
13#[doc = "Field `RX_FLOW_THRHD` reader - when receiver receives more data than its threshold value. receiver produce signal to tell the transmitter stop transferring data. the threshold value is (rx_flow_thrhd_h3 rx_flow_thrhd)."]
14pub type RX_FLOW_THRHD_R = crate::FieldReader;
15#[doc = "Field `RX_FLOW_THRHD` writer - when receiver receives more data than its threshold value. receiver produce signal to tell the transmitter stop transferring data. the threshold value is (rx_flow_thrhd_h3 rx_flow_thrhd)."]
16pub type RX_FLOW_THRHD_W<'a, REG> = crate::FieldWriter<'a, REG, 7>;
17#[doc = "Field `RX_FLOW_EN` reader - This is the flow enable bit for uart receiver. 1:choose software flow control with configuring sw_rts signal"]
18pub type RX_FLOW_EN_R = crate::BitReader;
19#[doc = "Field `RX_FLOW_EN` writer - This is the flow enable bit for uart receiver. 1:choose software flow control with configuring sw_rts signal"]
20pub type RX_FLOW_EN_W<'a, REG> = crate::BitWriter<'a, REG>;
21#[doc = "Field `RX_TOUT_THRHD` reader - This register is used to configure the timeout value for uart receiver receiving a byte."]
22pub type RX_TOUT_THRHD_R = crate::FieldReader;
23#[doc = "Field `RX_TOUT_THRHD` writer - This register is used to configure the timeout value for uart receiver receiving a byte."]
24pub type RX_TOUT_THRHD_W<'a, REG> = crate::FieldWriter<'a, REG, 7>;
25#[doc = "Field `RX_TOUT_EN` reader - This is the enble bit for uart receiver's timeout function."]
26pub type RX_TOUT_EN_R = crate::BitReader;
27#[doc = "Field `RX_TOUT_EN` writer - This is the enble bit for uart receiver's timeout function."]
28pub type RX_TOUT_EN_W<'a, REG> = crate::BitWriter<'a, REG>;
29impl R {
30 #[doc = "Bits 0:6 - When receiver receives more data than its threshold value.receiver will produce rxfifo_full_int_raw interrupt.the threshold value is (rx_flow_thrhd_h3 rxfifo_full_thrhd)."]
31 #[inline(always)]
32 pub fn rxfifo_full_thrhd(&self) -> RXFIFO_FULL_THRHD_R {
33 RXFIFO_FULL_THRHD_R::new((self.bits & 0x7f) as u8)
34 }
35 #[doc = "Bits 8:14 - when the data amount in transmitter fifo is less than its threshold value. it will produce txfifo_empty_int_raw interrupt. the threshold value is (tx_mem_empty_thrhd txfifo_empty_thrhd)"]
36 #[inline(always)]
37 pub fn txfifo_empty_thrhd(&self) -> TXFIFO_EMPTY_THRHD_R {
38 TXFIFO_EMPTY_THRHD_R::new(((self.bits >> 8) & 0x7f) as u8)
39 }
40 #[doc = "Bits 16:22 - when receiver receives more data than its threshold value. receiver produce signal to tell the transmitter stop transferring data. the threshold value is (rx_flow_thrhd_h3 rx_flow_thrhd)."]
41 #[inline(always)]
42 pub fn rx_flow_thrhd(&self) -> RX_FLOW_THRHD_R {
43 RX_FLOW_THRHD_R::new(((self.bits >> 16) & 0x7f) as u8)
44 }
45 #[doc = "Bit 23 - This is the flow enable bit for uart receiver. 1:choose software flow control with configuring sw_rts signal"]
46 #[inline(always)]
47 pub fn rx_flow_en(&self) -> RX_FLOW_EN_R {
48 RX_FLOW_EN_R::new(((self.bits >> 23) & 1) != 0)
49 }
50 #[doc = "Bits 24:30 - This register is used to configure the timeout value for uart receiver receiving a byte."]
51 #[inline(always)]
52 pub fn rx_tout_thrhd(&self) -> RX_TOUT_THRHD_R {
53 RX_TOUT_THRHD_R::new(((self.bits >> 24) & 0x7f) as u8)
54 }
55 #[doc = "Bit 31 - This is the enble bit for uart receiver's timeout function."]
56 #[inline(always)]
57 pub fn rx_tout_en(&self) -> RX_TOUT_EN_R {
58 RX_TOUT_EN_R::new(((self.bits >> 31) & 1) != 0)
59 }
60}
61#[cfg(feature = "impl-register-debug")]
62impl core::fmt::Debug for R {
63 fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
64 f.debug_struct("CONF1")
65 .field("rxfifo_full_thrhd", &self.rxfifo_full_thrhd())
66 .field("txfifo_empty_thrhd", &self.txfifo_empty_thrhd())
67 .field("rx_flow_thrhd", &self.rx_flow_thrhd())
68 .field("rx_flow_en", &self.rx_flow_en())
69 .field("rx_tout_thrhd", &self.rx_tout_thrhd())
70 .field("rx_tout_en", &self.rx_tout_en())
71 .finish()
72 }
73}
74impl W {
75 #[doc = "Bits 0:6 - When receiver receives more data than its threshold value.receiver will produce rxfifo_full_int_raw interrupt.the threshold value is (rx_flow_thrhd_h3 rxfifo_full_thrhd)."]
76 #[inline(always)]
77 pub fn rxfifo_full_thrhd(&mut self) -> RXFIFO_FULL_THRHD_W<CONF1_SPEC> {
78 RXFIFO_FULL_THRHD_W::new(self, 0)
79 }
80 #[doc = "Bits 8:14 - when the data amount in transmitter fifo is less than its threshold value. it will produce txfifo_empty_int_raw interrupt. the threshold value is (tx_mem_empty_thrhd txfifo_empty_thrhd)"]
81 #[inline(always)]
82 pub fn txfifo_empty_thrhd(&mut self) -> TXFIFO_EMPTY_THRHD_W<CONF1_SPEC> {
83 TXFIFO_EMPTY_THRHD_W::new(self, 8)
84 }
85 #[doc = "Bits 16:22 - when receiver receives more data than its threshold value. receiver produce signal to tell the transmitter stop transferring data. the threshold value is (rx_flow_thrhd_h3 rx_flow_thrhd)."]
86 #[inline(always)]
87 pub fn rx_flow_thrhd(&mut self) -> RX_FLOW_THRHD_W<CONF1_SPEC> {
88 RX_FLOW_THRHD_W::new(self, 16)
89 }
90 #[doc = "Bit 23 - This is the flow enable bit for uart receiver. 1:choose software flow control with configuring sw_rts signal"]
91 #[inline(always)]
92 pub fn rx_flow_en(&mut self) -> RX_FLOW_EN_W<CONF1_SPEC> {
93 RX_FLOW_EN_W::new(self, 23)
94 }
95 #[doc = "Bits 24:30 - This register is used to configure the timeout value for uart receiver receiving a byte."]
96 #[inline(always)]
97 pub fn rx_tout_thrhd(&mut self) -> RX_TOUT_THRHD_W<CONF1_SPEC> {
98 RX_TOUT_THRHD_W::new(self, 24)
99 }
100 #[doc = "Bit 31 - This is the enble bit for uart receiver's timeout function."]
101 #[inline(always)]
102 pub fn rx_tout_en(&mut self) -> RX_TOUT_EN_W<CONF1_SPEC> {
103 RX_TOUT_EN_W::new(self, 31)
104 }
105}
106#[doc = "\n\nYou can [`read`](crate::Reg::read) this register and get [`conf1::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`conf1::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
107pub struct CONF1_SPEC;
108impl crate::RegisterSpec for CONF1_SPEC {
109 type Ux = u32;
110}
111#[doc = "`read()` method returns [`conf1::R`](R) reader structure"]
112impl crate::Readable for CONF1_SPEC {}
113#[doc = "`write(|w| ..)` method takes [`conf1::W`](W) writer structure"]
114impl crate::Writable for CONF1_SPEC {
115 type Safety = crate::Unsafe;
116 const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
117 const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
118}
119#[doc = "`reset()` method sets CONF1 to value 0x6060"]
120impl crate::Resettable for CONF1_SPEC {
121 const RESET_VALUE: u32 = 0x6060;
122}