nrf52840_pac/nfct/rxd/
amount.rs

1#[doc = "Register `AMOUNT` reader"]
2pub struct R(crate::R<AMOUNT_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<AMOUNT_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<AMOUNT_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<AMOUNT_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Field `RXDATABITS` reader - Number of bits in the last byte in the frame, if less than 8 (including CRC, but excluding parity and SoF/EoF framing)."]
17pub type RXDATABITS_R = crate::FieldReader<u8, u8>;
18#[doc = "Field `RXDATABYTES` reader - Number of complete bytes received in the frame (including CRC, but excluding parity and SoF/EoF framing)"]
19pub type RXDATABYTES_R = crate::FieldReader<u16, u16>;
20impl R {
21    #[doc = "Bits 0:2 - Number of bits in the last byte in the frame, if less than 8 (including CRC, but excluding parity and SoF/EoF framing)."]
22    #[inline(always)]
23    pub fn rxdatabits(&self) -> RXDATABITS_R {
24        RXDATABITS_R::new((self.bits & 7) as u8)
25    }
26    #[doc = "Bits 3:11 - Number of complete bytes received in the frame (including CRC, but excluding parity and SoF/EoF framing)"]
27    #[inline(always)]
28    pub fn rxdatabytes(&self) -> RXDATABYTES_R {
29        RXDATABYTES_R::new(((self.bits >> 3) & 0x01ff) as u16)
30    }
31}
32#[doc = "Size of last incoming frame\n\nThis register you can [`read`](crate::generic::Reg::read). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [amount](index.html) module"]
33pub struct AMOUNT_SPEC;
34impl crate::RegisterSpec for AMOUNT_SPEC {
35    type Ux = u32;
36}
37#[doc = "`read()` method returns [amount::R](R) reader structure"]
38impl crate::Readable for AMOUNT_SPEC {
39    type Reader = R;
40}
41#[doc = "`reset()` method sets AMOUNT to value 0"]
42impl crate::Resettable for AMOUNT_SPEC {
43    #[inline(always)]
44    fn reset_value() -> Self::Ux {
45        0
46    }
47}