ra2l1/sci0/
ssr_fifo.rs

1#[doc = "Register `SSR_FIFO` reader"]
2pub struct R(crate::R<SSR_FIFO_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<SSR_FIFO_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<SSR_FIFO_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<SSR_FIFO_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Register `SSR_FIFO` writer"]
17pub struct W(crate::W<SSR_FIFO_SPEC>);
18impl core::ops::Deref for W {
19    type Target = crate::W<SSR_FIFO_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<SSR_FIFO_SPEC>> for W {
32    #[inline(always)]
33    fn from(writer: crate::W<SSR_FIFO_SPEC>) -> Self {
34        W(writer)
35    }
36}
37#[doc = "Field `DR` reader - Receive Data Ready Flag"]
38pub type DR_R = crate::BitReader<DR_A>;
39#[doc = "Receive Data Ready Flag\n\nValue on reset: 0"]
40#[derive(Clone, Copy, Debug, PartialEq, Eq)]
41pub enum DR_A {
42    #[doc = "0: Receiving is in progress, or no received data remains in FRDRHL after successfully completed reception (receive FIFO empty)"]
43    _0 = 0,
44    #[doc = "1: Next receive data is not received for a period after normal receiving is complete, when the amount of data stored in the FIFO is equal to or less than the receive triggering number"]
45    _1 = 1,
46}
47impl From<DR_A> for bool {
48    #[inline(always)]
49    fn from(variant: DR_A) -> Self {
50        variant as u8 != 0
51    }
52}
53impl DR_R {
54    #[doc = "Get enumerated values variant"]
55    #[inline(always)]
56    pub fn variant(&self) -> DR_A {
57        match self.bits {
58            false => DR_A::_0,
59            true => DR_A::_1,
60        }
61    }
62    #[doc = "Checks if the value of the field is `_0`"]
63    #[inline(always)]
64    pub fn is_0(&self) -> bool {
65        *self == DR_A::_0
66    }
67    #[doc = "Checks if the value of the field is `_1`"]
68    #[inline(always)]
69    pub fn is_1(&self) -> bool {
70        *self == DR_A::_1
71    }
72}
73#[doc = "Field `DR` writer - Receive Data Ready Flag"]
74pub type DR_W<'a, const O: u8> = crate::BitWriter<'a, u8, SSR_FIFO_SPEC, DR_A, O>;
75impl<'a, const O: u8> DR_W<'a, O> {
76    #[doc = "Receiving is in progress, or no received data remains in FRDRHL after successfully completed reception (receive FIFO empty)"]
77    #[inline(always)]
78    pub fn _0(self) -> &'a mut W {
79        self.variant(DR_A::_0)
80    }
81    #[doc = "Next receive data is not received for a period after normal receiving is complete, when the amount of data stored in the FIFO is equal to or less than the receive triggering number"]
82    #[inline(always)]
83    pub fn _1(self) -> &'a mut W {
84        self.variant(DR_A::_1)
85    }
86}
87#[doc = "Field `TEND` reader - Transmit End Flag"]
88pub type TEND_R = crate::BitReader<TEND_A>;
89#[doc = "Transmit End Flag\n\nValue on reset: 0"]
90#[derive(Clone, Copy, Debug, PartialEq, Eq)]
91pub enum TEND_A {
92    #[doc = "0: A character is being transmitted"]
93    _0 = 0,
94    #[doc = "1: Character transfer is complete"]
95    _1 = 1,
96}
97impl From<TEND_A> for bool {
98    #[inline(always)]
99    fn from(variant: TEND_A) -> Self {
100        variant as u8 != 0
101    }
102}
103impl TEND_R {
104    #[doc = "Get enumerated values variant"]
105    #[inline(always)]
106    pub fn variant(&self) -> TEND_A {
107        match self.bits {
108            false => TEND_A::_0,
109            true => TEND_A::_1,
110        }
111    }
112    #[doc = "Checks if the value of the field is `_0`"]
113    #[inline(always)]
114    pub fn is_0(&self) -> bool {
115        *self == TEND_A::_0
116    }
117    #[doc = "Checks if the value of the field is `_1`"]
118    #[inline(always)]
119    pub fn is_1(&self) -> bool {
120        *self == TEND_A::_1
121    }
122}
123#[doc = "Field `TEND` writer - Transmit End Flag"]
124pub type TEND_W<'a, const O: u8> = crate::BitWriter<'a, u8, SSR_FIFO_SPEC, TEND_A, O>;
125impl<'a, const O: u8> TEND_W<'a, O> {
126    #[doc = "A character is being transmitted"]
127    #[inline(always)]
128    pub fn _0(self) -> &'a mut W {
129        self.variant(TEND_A::_0)
130    }
131    #[doc = "Character transfer is complete"]
132    #[inline(always)]
133    pub fn _1(self) -> &'a mut W {
134        self.variant(TEND_A::_1)
135    }
136}
137#[doc = "Field `PER` reader - Parity Error Flag"]
138pub type PER_R = crate::BitReader<PER_A>;
139#[doc = "Parity Error Flag\n\nValue on reset: 0"]
140#[derive(Clone, Copy, Debug, PartialEq, Eq)]
141pub enum PER_A {
142    #[doc = "0: No parity error occurred"]
143    _0 = 0,
144    #[doc = "1: Parity error occurred"]
145    _1 = 1,
146}
147impl From<PER_A> for bool {
148    #[inline(always)]
149    fn from(variant: PER_A) -> Self {
150        variant as u8 != 0
151    }
152}
153impl PER_R {
154    #[doc = "Get enumerated values variant"]
155    #[inline(always)]
156    pub fn variant(&self) -> PER_A {
157        match self.bits {
158            false => PER_A::_0,
159            true => PER_A::_1,
160        }
161    }
162    #[doc = "Checks if the value of the field is `_0`"]
163    #[inline(always)]
164    pub fn is_0(&self) -> bool {
165        *self == PER_A::_0
166    }
167    #[doc = "Checks if the value of the field is `_1`"]
168    #[inline(always)]
169    pub fn is_1(&self) -> bool {
170        *self == PER_A::_1
171    }
172}
173#[doc = "Field `PER` writer - Parity Error Flag"]
174pub type PER_W<'a, const O: u8> = crate::BitWriter<'a, u8, SSR_FIFO_SPEC, PER_A, O>;
175impl<'a, const O: u8> PER_W<'a, O> {
176    #[doc = "No parity error occurred"]
177    #[inline(always)]
178    pub fn _0(self) -> &'a mut W {
179        self.variant(PER_A::_0)
180    }
181    #[doc = "Parity error occurred"]
182    #[inline(always)]
183    pub fn _1(self) -> &'a mut W {
184        self.variant(PER_A::_1)
185    }
186}
187#[doc = "Field `FER` reader - Framing Error Flag"]
188pub type FER_R = crate::BitReader<FER_A>;
189#[doc = "Framing Error Flag\n\nValue on reset: 0"]
190#[derive(Clone, Copy, Debug, PartialEq, Eq)]
191pub enum FER_A {
192    #[doc = "0: No framing error occurred"]
193    _0 = 0,
194    #[doc = "1: Framing error occurred"]
195    _1 = 1,
196}
197impl From<FER_A> for bool {
198    #[inline(always)]
199    fn from(variant: FER_A) -> Self {
200        variant as u8 != 0
201    }
202}
203impl FER_R {
204    #[doc = "Get enumerated values variant"]
205    #[inline(always)]
206    pub fn variant(&self) -> FER_A {
207        match self.bits {
208            false => FER_A::_0,
209            true => FER_A::_1,
210        }
211    }
212    #[doc = "Checks if the value of the field is `_0`"]
213    #[inline(always)]
214    pub fn is_0(&self) -> bool {
215        *self == FER_A::_0
216    }
217    #[doc = "Checks if the value of the field is `_1`"]
218    #[inline(always)]
219    pub fn is_1(&self) -> bool {
220        *self == FER_A::_1
221    }
222}
223#[doc = "Field `FER` writer - Framing Error Flag"]
224pub type FER_W<'a, const O: u8> = crate::BitWriter<'a, u8, SSR_FIFO_SPEC, FER_A, O>;
225impl<'a, const O: u8> FER_W<'a, O> {
226    #[doc = "No framing error occurred"]
227    #[inline(always)]
228    pub fn _0(self) -> &'a mut W {
229        self.variant(FER_A::_0)
230    }
231    #[doc = "Framing error occurred"]
232    #[inline(always)]
233    pub fn _1(self) -> &'a mut W {
234        self.variant(FER_A::_1)
235    }
236}
237#[doc = "Field `ORER` reader - Overrun Error Flag"]
238pub type ORER_R = crate::BitReader<ORER_A>;
239#[doc = "Overrun Error Flag\n\nValue on reset: 0"]
240#[derive(Clone, Copy, Debug, PartialEq, Eq)]
241pub enum ORER_A {
242    #[doc = "0: No overrun error occurred"]
243    _0 = 0,
244    #[doc = "1: Overrun error occurred"]
245    _1 = 1,
246}
247impl From<ORER_A> for bool {
248    #[inline(always)]
249    fn from(variant: ORER_A) -> Self {
250        variant as u8 != 0
251    }
252}
253impl ORER_R {
254    #[doc = "Get enumerated values variant"]
255    #[inline(always)]
256    pub fn variant(&self) -> ORER_A {
257        match self.bits {
258            false => ORER_A::_0,
259            true => ORER_A::_1,
260        }
261    }
262    #[doc = "Checks if the value of the field is `_0`"]
263    #[inline(always)]
264    pub fn is_0(&self) -> bool {
265        *self == ORER_A::_0
266    }
267    #[doc = "Checks if the value of the field is `_1`"]
268    #[inline(always)]
269    pub fn is_1(&self) -> bool {
270        *self == ORER_A::_1
271    }
272}
273#[doc = "Field `ORER` writer - Overrun Error Flag"]
274pub type ORER_W<'a, const O: u8> = crate::BitWriter<'a, u8, SSR_FIFO_SPEC, ORER_A, O>;
275impl<'a, const O: u8> ORER_W<'a, O> {
276    #[doc = "No overrun error occurred"]
277    #[inline(always)]
278    pub fn _0(self) -> &'a mut W {
279        self.variant(ORER_A::_0)
280    }
281    #[doc = "Overrun error occurred"]
282    #[inline(always)]
283    pub fn _1(self) -> &'a mut W {
284        self.variant(ORER_A::_1)
285    }
286}
287#[doc = "Field `RDF` reader - Receive FIFO Data Full Flag"]
288pub type RDF_R = crate::BitReader<RDF_A>;
289#[doc = "Receive FIFO Data Full Flag\n\nValue on reset: 0"]
290#[derive(Clone, Copy, Debug, PartialEq, Eq)]
291pub enum RDF_A {
292    #[doc = "0: The amount of receive data written in FRDRHL is less than the specified receive triggering number"]
293    _0 = 0,
294    #[doc = "1: The amount of receive data written in FRDRHL is equal to or greater than the specified receive triggering number"]
295    _1 = 1,
296}
297impl From<RDF_A> for bool {
298    #[inline(always)]
299    fn from(variant: RDF_A) -> Self {
300        variant as u8 != 0
301    }
302}
303impl RDF_R {
304    #[doc = "Get enumerated values variant"]
305    #[inline(always)]
306    pub fn variant(&self) -> RDF_A {
307        match self.bits {
308            false => RDF_A::_0,
309            true => RDF_A::_1,
310        }
311    }
312    #[doc = "Checks if the value of the field is `_0`"]
313    #[inline(always)]
314    pub fn is_0(&self) -> bool {
315        *self == RDF_A::_0
316    }
317    #[doc = "Checks if the value of the field is `_1`"]
318    #[inline(always)]
319    pub fn is_1(&self) -> bool {
320        *self == RDF_A::_1
321    }
322}
323#[doc = "Field `RDF` writer - Receive FIFO Data Full Flag"]
324pub type RDF_W<'a, const O: u8> = crate::BitWriter<'a, u8, SSR_FIFO_SPEC, RDF_A, O>;
325impl<'a, const O: u8> RDF_W<'a, O> {
326    #[doc = "The amount of receive data written in FRDRHL is less than the specified receive triggering number"]
327    #[inline(always)]
328    pub fn _0(self) -> &'a mut W {
329        self.variant(RDF_A::_0)
330    }
331    #[doc = "The amount of receive data written in FRDRHL is equal to or greater than the specified receive triggering number"]
332    #[inline(always)]
333    pub fn _1(self) -> &'a mut W {
334        self.variant(RDF_A::_1)
335    }
336}
337#[doc = "Field `TDFE` reader - Transmit FIFO Data Empty Flag"]
338pub type TDFE_R = crate::BitReader<TDFE_A>;
339#[doc = "Transmit FIFO Data Empty Flag\n\nValue on reset: 1"]
340#[derive(Clone, Copy, Debug, PartialEq, Eq)]
341pub enum TDFE_A {
342    #[doc = "0: The amount of transmit data written in FTDRHL exceeds the specified transmit triggering number"]
343    _0 = 0,
344    #[doc = "1: The amount of transmit data written in FTDRHL is equal to or less than the specified transmit triggering number"]
345    _1 = 1,
346}
347impl From<TDFE_A> for bool {
348    #[inline(always)]
349    fn from(variant: TDFE_A) -> Self {
350        variant as u8 != 0
351    }
352}
353impl TDFE_R {
354    #[doc = "Get enumerated values variant"]
355    #[inline(always)]
356    pub fn variant(&self) -> TDFE_A {
357        match self.bits {
358            false => TDFE_A::_0,
359            true => TDFE_A::_1,
360        }
361    }
362    #[doc = "Checks if the value of the field is `_0`"]
363    #[inline(always)]
364    pub fn is_0(&self) -> bool {
365        *self == TDFE_A::_0
366    }
367    #[doc = "Checks if the value of the field is `_1`"]
368    #[inline(always)]
369    pub fn is_1(&self) -> bool {
370        *self == TDFE_A::_1
371    }
372}
373#[doc = "Field `TDFE` writer - Transmit FIFO Data Empty Flag"]
374pub type TDFE_W<'a, const O: u8> = crate::BitWriter<'a, u8, SSR_FIFO_SPEC, TDFE_A, O>;
375impl<'a, const O: u8> TDFE_W<'a, O> {
376    #[doc = "The amount of transmit data written in FTDRHL exceeds the specified transmit triggering number"]
377    #[inline(always)]
378    pub fn _0(self) -> &'a mut W {
379        self.variant(TDFE_A::_0)
380    }
381    #[doc = "The amount of transmit data written in FTDRHL is equal to or less than the specified transmit triggering number"]
382    #[inline(always)]
383    pub fn _1(self) -> &'a mut W {
384        self.variant(TDFE_A::_1)
385    }
386}
387impl R {
388    #[doc = "Bit 0 - Receive Data Ready Flag"]
389    #[inline(always)]
390    pub fn dr(&self) -> DR_R {
391        DR_R::new((self.bits & 1) != 0)
392    }
393    #[doc = "Bit 2 - Transmit End Flag"]
394    #[inline(always)]
395    pub fn tend(&self) -> TEND_R {
396        TEND_R::new(((self.bits >> 2) & 1) != 0)
397    }
398    #[doc = "Bit 3 - Parity Error Flag"]
399    #[inline(always)]
400    pub fn per(&self) -> PER_R {
401        PER_R::new(((self.bits >> 3) & 1) != 0)
402    }
403    #[doc = "Bit 4 - Framing Error Flag"]
404    #[inline(always)]
405    pub fn fer(&self) -> FER_R {
406        FER_R::new(((self.bits >> 4) & 1) != 0)
407    }
408    #[doc = "Bit 5 - Overrun Error Flag"]
409    #[inline(always)]
410    pub fn orer(&self) -> ORER_R {
411        ORER_R::new(((self.bits >> 5) & 1) != 0)
412    }
413    #[doc = "Bit 6 - Receive FIFO Data Full Flag"]
414    #[inline(always)]
415    pub fn rdf(&self) -> RDF_R {
416        RDF_R::new(((self.bits >> 6) & 1) != 0)
417    }
418    #[doc = "Bit 7 - Transmit FIFO Data Empty Flag"]
419    #[inline(always)]
420    pub fn tdfe(&self) -> TDFE_R {
421        TDFE_R::new(((self.bits >> 7) & 1) != 0)
422    }
423}
424impl W {
425    #[doc = "Bit 0 - Receive Data Ready Flag"]
426    #[inline(always)]
427    #[must_use]
428    pub fn dr(&mut self) -> DR_W<0> {
429        DR_W::new(self)
430    }
431    #[doc = "Bit 2 - Transmit End Flag"]
432    #[inline(always)]
433    #[must_use]
434    pub fn tend(&mut self) -> TEND_W<2> {
435        TEND_W::new(self)
436    }
437    #[doc = "Bit 3 - Parity Error Flag"]
438    #[inline(always)]
439    #[must_use]
440    pub fn per(&mut self) -> PER_W<3> {
441        PER_W::new(self)
442    }
443    #[doc = "Bit 4 - Framing Error Flag"]
444    #[inline(always)]
445    #[must_use]
446    pub fn fer(&mut self) -> FER_W<4> {
447        FER_W::new(self)
448    }
449    #[doc = "Bit 5 - Overrun Error Flag"]
450    #[inline(always)]
451    #[must_use]
452    pub fn orer(&mut self) -> ORER_W<5> {
453        ORER_W::new(self)
454    }
455    #[doc = "Bit 6 - Receive FIFO Data Full Flag"]
456    #[inline(always)]
457    #[must_use]
458    pub fn rdf(&mut self) -> RDF_W<6> {
459        RDF_W::new(self)
460    }
461    #[doc = "Bit 7 - Transmit FIFO Data Empty Flag"]
462    #[inline(always)]
463    #[must_use]
464    pub fn tdfe(&mut self) -> TDFE_W<7> {
465        TDFE_W::new(self)
466    }
467    #[doc = "Writes raw bits to the register."]
468    #[inline(always)]
469    pub unsafe fn bits(&mut self, bits: u8) -> &mut Self {
470        self.0.bits(bits);
471        self
472    }
473}
474#[doc = "Serial Status Register for Non-Smart Card Interface and FIFO Mode (SCMR.SMIF = 0, FCR.FM = 1)\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 [ssr_fifo](index.html) module"]
475pub struct SSR_FIFO_SPEC;
476impl crate::RegisterSpec for SSR_FIFO_SPEC {
477    type Ux = u8;
478}
479#[doc = "`read()` method returns [ssr_fifo::R](R) reader structure"]
480impl crate::Readable for SSR_FIFO_SPEC {
481    type Reader = R;
482}
483#[doc = "`write(|w| ..)` method takes [ssr_fifo::W](W) writer structure"]
484impl crate::Writable for SSR_FIFO_SPEC {
485    type Writer = W;
486    const ZERO_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
487    const ONE_TO_MODIFY_FIELDS_BITMAP: Self::Ux = 0;
488}
489#[doc = "`reset()` method sets SSR_FIFO to value 0x80"]
490impl crate::Resettable for SSR_FIFO_SPEC {
491    const RESET_VALUE: Self::Ux = 0x80;
492}