nrf52840_pac/uarte0/
errorsrc.rs
1#[doc = "Register `ERRORSRC` reader"]
2pub struct R(crate::R<ERRORSRC_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<ERRORSRC_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<ERRORSRC_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<ERRORSRC_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Register `ERRORSRC` writer"]
17pub struct W(crate::W<ERRORSRC_SPEC>);
18impl core::ops::Deref for W {
19 type Target = crate::W<ERRORSRC_SPEC>;
20 #[inline(always)]
21 fn deref(&self) -> &Self::Target {
22 &self.0
23 }
24}
25impl core::ops::DerefMut for W {
26 #[inline(always)]
27 fn deref_mut(&mut self) -> &mut Self::Target {
28 &mut self.0
29 }
30}
31impl From<crate::W<ERRORSRC_SPEC>> for W {
32 #[inline(always)]
33 fn from(writer: crate::W<ERRORSRC_SPEC>) -> Self {
34 W(writer)
35 }
36}
37#[doc = "Field `OVERRUN` reader - Overrun error"]
38pub type OVERRUN_R = crate::BitReader<OVERRUN_A>;
39#[doc = "Overrun error\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq)]
41pub enum OVERRUN_A {
42 #[doc = "0: Read: error not present"]
43 NOT_PRESENT = 0,
44 #[doc = "1: Read: error present"]
45 PRESENT = 1,
46}
47impl From<OVERRUN_A> for bool {
48 #[inline(always)]
49 fn from(variant: OVERRUN_A) -> Self {
50 variant as u8 != 0
51 }
52}
53impl OVERRUN_R {
54 #[doc = "Get enumerated values variant"]
55 #[inline(always)]
56 pub fn variant(&self) -> OVERRUN_A {
57 match self.bits {
58 false => OVERRUN_A::NOT_PRESENT,
59 true => OVERRUN_A::PRESENT,
60 }
61 }
62 #[doc = "Checks if the value of the field is `NOT_PRESENT`"]
63 #[inline(always)]
64 pub fn is_not_present(&self) -> bool {
65 *self == OVERRUN_A::NOT_PRESENT
66 }
67 #[doc = "Checks if the value of the field is `PRESENT`"]
68 #[inline(always)]
69 pub fn is_present(&self) -> bool {
70 *self == OVERRUN_A::PRESENT
71 }
72}
73#[doc = "Field `OVERRUN` writer - Overrun error"]
74pub type OVERRUN_W<'a, const O: u8> = crate::BitWriter1C<'a, u32, ERRORSRC_SPEC, OVERRUN_A, O>;
75impl<'a, const O: u8> OVERRUN_W<'a, O> {
76 #[doc = "Read: error not present"]
77 #[inline(always)]
78 pub fn not_present(self) -> &'a mut W {
79 self.variant(OVERRUN_A::NOT_PRESENT)
80 }
81 #[doc = "Read: error present"]
82 #[inline(always)]
83 pub fn present(self) -> &'a mut W {
84 self.variant(OVERRUN_A::PRESENT)
85 }
86}
87#[doc = "Field `PARITY` reader - Parity error"]
88pub type PARITY_R = crate::BitReader<PARITY_A>;
89#[doc = "Parity error\n\nValue on reset: 0"]
90#[derive(Clone, Copy, Debug, PartialEq)]
91pub enum PARITY_A {
92 #[doc = "0: Read: error not present"]
93 NOT_PRESENT = 0,
94 #[doc = "1: Read: error present"]
95 PRESENT = 1,
96}
97impl From<PARITY_A> for bool {
98 #[inline(always)]
99 fn from(variant: PARITY_A) -> Self {
100 variant as u8 != 0
101 }
102}
103impl PARITY_R {
104 #[doc = "Get enumerated values variant"]
105 #[inline(always)]
106 pub fn variant(&self) -> PARITY_A {
107 match self.bits {
108 false => PARITY_A::NOT_PRESENT,
109 true => PARITY_A::PRESENT,
110 }
111 }
112 #[doc = "Checks if the value of the field is `NOT_PRESENT`"]
113 #[inline(always)]
114 pub fn is_not_present(&self) -> bool {
115 *self == PARITY_A::NOT_PRESENT
116 }
117 #[doc = "Checks if the value of the field is `PRESENT`"]
118 #[inline(always)]
119 pub fn is_present(&self) -> bool {
120 *self == PARITY_A::PRESENT
121 }
122}
123#[doc = "Field `PARITY` writer - Parity error"]
124pub type PARITY_W<'a, const O: u8> = crate::BitWriter1C<'a, u32, ERRORSRC_SPEC, PARITY_A, O>;
125impl<'a, const O: u8> PARITY_W<'a, O> {
126 #[doc = "Read: error not present"]
127 #[inline(always)]
128 pub fn not_present(self) -> &'a mut W {
129 self.variant(PARITY_A::NOT_PRESENT)
130 }
131 #[doc = "Read: error present"]
132 #[inline(always)]
133 pub fn present(self) -> &'a mut W {
134 self.variant(PARITY_A::PRESENT)
135 }
136}
137#[doc = "Field `FRAMING` reader - Framing error occurred"]
138pub type FRAMING_R = crate::BitReader<FRAMING_A>;
139#[doc = "Framing error occurred\n\nValue on reset: 0"]
140#[derive(Clone, Copy, Debug, PartialEq)]
141pub enum FRAMING_A {
142 #[doc = "0: Read: error not present"]
143 NOT_PRESENT = 0,
144 #[doc = "1: Read: error present"]
145 PRESENT = 1,
146}
147impl From<FRAMING_A> for bool {
148 #[inline(always)]
149 fn from(variant: FRAMING_A) -> Self {
150 variant as u8 != 0
151 }
152}
153impl FRAMING_R {
154 #[doc = "Get enumerated values variant"]
155 #[inline(always)]
156 pub fn variant(&self) -> FRAMING_A {
157 match self.bits {
158 false => FRAMING_A::NOT_PRESENT,
159 true => FRAMING_A::PRESENT,
160 }
161 }
162 #[doc = "Checks if the value of the field is `NOT_PRESENT`"]
163 #[inline(always)]
164 pub fn is_not_present(&self) -> bool {
165 *self == FRAMING_A::NOT_PRESENT
166 }
167 #[doc = "Checks if the value of the field is `PRESENT`"]
168 #[inline(always)]
169 pub fn is_present(&self) -> bool {
170 *self == FRAMING_A::PRESENT
171 }
172}
173#[doc = "Field `FRAMING` writer - Framing error occurred"]
174pub type FRAMING_W<'a, const O: u8> = crate::BitWriter1C<'a, u32, ERRORSRC_SPEC, FRAMING_A, O>;
175impl<'a, const O: u8> FRAMING_W<'a, O> {
176 #[doc = "Read: error not present"]
177 #[inline(always)]
178 pub fn not_present(self) -> &'a mut W {
179 self.variant(FRAMING_A::NOT_PRESENT)
180 }
181 #[doc = "Read: error present"]
182 #[inline(always)]
183 pub fn present(self) -> &'a mut W {
184 self.variant(FRAMING_A::PRESENT)
185 }
186}
187#[doc = "Field `BREAK` reader - Break condition"]
188pub type BREAK_R = crate::BitReader<BREAK_A>;
189#[doc = "Break condition\n\nValue on reset: 0"]
190#[derive(Clone, Copy, Debug, PartialEq)]
191pub enum BREAK_A {
192 #[doc = "0: Read: error not present"]
193 NOT_PRESENT = 0,
194 #[doc = "1: Read: error present"]
195 PRESENT = 1,
196}
197impl From<BREAK_A> for bool {
198 #[inline(always)]
199 fn from(variant: BREAK_A) -> Self {
200 variant as u8 != 0
201 }
202}
203impl BREAK_R {
204 #[doc = "Get enumerated values variant"]
205 #[inline(always)]
206 pub fn variant(&self) -> BREAK_A {
207 match self.bits {
208 false => BREAK_A::NOT_PRESENT,
209 true => BREAK_A::PRESENT,
210 }
211 }
212 #[doc = "Checks if the value of the field is `NOT_PRESENT`"]
213 #[inline(always)]
214 pub fn is_not_present(&self) -> bool {
215 *self == BREAK_A::NOT_PRESENT
216 }
217 #[doc = "Checks if the value of the field is `PRESENT`"]
218 #[inline(always)]
219 pub fn is_present(&self) -> bool {
220 *self == BREAK_A::PRESENT
221 }
222}
223#[doc = "Field `BREAK` writer - Break condition"]
224pub type BREAK_W<'a, const O: u8> = crate::BitWriter1C<'a, u32, ERRORSRC_SPEC, BREAK_A, O>;
225impl<'a, const O: u8> BREAK_W<'a, O> {
226 #[doc = "Read: error not present"]
227 #[inline(always)]
228 pub fn not_present(self) -> &'a mut W {
229 self.variant(BREAK_A::NOT_PRESENT)
230 }
231 #[doc = "Read: error present"]
232 #[inline(always)]
233 pub fn present(self) -> &'a mut W {
234 self.variant(BREAK_A::PRESENT)
235 }
236}
237impl R {
238 #[doc = "Bit 0 - Overrun error"]
239 #[inline(always)]
240 pub fn overrun(&self) -> OVERRUN_R {
241 OVERRUN_R::new((self.bits & 1) != 0)
242 }
243 #[doc = "Bit 1 - Parity error"]
244 #[inline(always)]
245 pub fn parity(&self) -> PARITY_R {
246 PARITY_R::new(((self.bits >> 1) & 1) != 0)
247 }
248 #[doc = "Bit 2 - Framing error occurred"]
249 #[inline(always)]
250 pub fn framing(&self) -> FRAMING_R {
251 FRAMING_R::new(((self.bits >> 2) & 1) != 0)
252 }
253 #[doc = "Bit 3 - Break condition"]
254 #[inline(always)]
255 pub fn break_(&self) -> BREAK_R {
256 BREAK_R::new(((self.bits >> 3) & 1) != 0)
257 }
258}
259impl W {
260 #[doc = "Bit 0 - Overrun error"]
261 #[inline(always)]
262 pub fn overrun(&mut self) -> OVERRUN_W<0> {
263 OVERRUN_W::new(self)
264 }
265 #[doc = "Bit 1 - Parity error"]
266 #[inline(always)]
267 pub fn parity(&mut self) -> PARITY_W<1> {
268 PARITY_W::new(self)
269 }
270 #[doc = "Bit 2 - Framing error occurred"]
271 #[inline(always)]
272 pub fn framing(&mut self) -> FRAMING_W<2> {
273 FRAMING_W::new(self)
274 }
275 #[doc = "Bit 3 - Break condition"]
276 #[inline(always)]
277 pub fn break_(&mut self) -> BREAK_W<3> {
278 BREAK_W::new(self)
279 }
280 #[doc = "Writes raw bits to the register."]
281 #[inline(always)]
282 pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
283 self.0.bits(bits);
284 self
285 }
286}
287#[doc = "Error source Note : this register is read / write one to clear.\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [errorsrc](index.html) module"]
288pub struct ERRORSRC_SPEC;
289impl crate::RegisterSpec for ERRORSRC_SPEC {
290 type Ux = u32;
291}
292#[doc = "`read()` method returns [errorsrc::R](R) reader structure"]
293impl crate::Readable for ERRORSRC_SPEC {
294 type Reader = R;
295}
296#[doc = "`write(|w| ..)` method takes [errorsrc::W](W) writer structure"]
297impl crate::Writable for ERRORSRC_SPEC {
298 type Writer = W;
299}
300#[doc = "`reset()` method sets ERRORSRC to value 0"]
301impl crate::Resettable for ERRORSRC_SPEC {
302 #[inline(always)]
303 fn reset_value() -> Self::Ux {
304 0
305 }
306}