nrf52840_pac/radio/
pdustat.rs

1#[doc = "Register `PDUSTAT` reader"]
2pub struct R(crate::R<PDUSTAT_SPEC>);
3impl core::ops::Deref for R {
4    type Target = crate::R<PDUSTAT_SPEC>;
5    #[inline(always)]
6    fn deref(&self) -> &Self::Target {
7        &self.0
8    }
9}
10impl From<crate::R<PDUSTAT_SPEC>> for R {
11    #[inline(always)]
12    fn from(reader: crate::R<PDUSTAT_SPEC>) -> Self {
13        R(reader)
14    }
15}
16#[doc = "Field `PDUSTAT` reader - Status on payload length vs. PCNF1.MAXLEN"]
17pub type PDUSTAT_R = crate::BitReader<PDUSTAT_A>;
18#[doc = "Status on payload length vs. PCNF1.MAXLEN\n\nValue on reset: 0"]
19#[derive(Clone, Copy, Debug, PartialEq)]
20pub enum PDUSTAT_A {
21    #[doc = "0: Payload less than PCNF1.MAXLEN"]
22    LESS_THAN = 0,
23    #[doc = "1: Payload greater than PCNF1.MAXLEN"]
24    GREATER_THAN = 1,
25}
26impl From<PDUSTAT_A> for bool {
27    #[inline(always)]
28    fn from(variant: PDUSTAT_A) -> Self {
29        variant as u8 != 0
30    }
31}
32impl PDUSTAT_R {
33    #[doc = "Get enumerated values variant"]
34    #[inline(always)]
35    pub fn variant(&self) -> PDUSTAT_A {
36        match self.bits {
37            false => PDUSTAT_A::LESS_THAN,
38            true => PDUSTAT_A::GREATER_THAN,
39        }
40    }
41    #[doc = "Checks if the value of the field is `LESS_THAN`"]
42    #[inline(always)]
43    pub fn is_less_than(&self) -> bool {
44        *self == PDUSTAT_A::LESS_THAN
45    }
46    #[doc = "Checks if the value of the field is `GREATER_THAN`"]
47    #[inline(always)]
48    pub fn is_greater_than(&self) -> bool {
49        *self == PDUSTAT_A::GREATER_THAN
50    }
51}
52#[doc = "Field `CISTAT` reader - Status on what rate packet is received with in Long Range"]
53pub type CISTAT_R = crate::FieldReader<u8, CISTAT_A>;
54#[doc = "Status on what rate packet is received with in Long Range\n\nValue on reset: 0"]
55#[derive(Clone, Copy, Debug, PartialEq)]
56#[repr(u8)]
57pub enum CISTAT_A {
58    #[doc = "0: Frame is received at 125kbps"]
59    LR125KBIT = 0,
60    #[doc = "1: Frame is received at 500kbps"]
61    LR500KBIT = 1,
62}
63impl From<CISTAT_A> for u8 {
64    #[inline(always)]
65    fn from(variant: CISTAT_A) -> Self {
66        variant as _
67    }
68}
69impl CISTAT_R {
70    #[doc = "Get enumerated values variant"]
71    #[inline(always)]
72    pub fn variant(&self) -> Option<CISTAT_A> {
73        match self.bits {
74            0 => Some(CISTAT_A::LR125KBIT),
75            1 => Some(CISTAT_A::LR500KBIT),
76            _ => None,
77        }
78    }
79    #[doc = "Checks if the value of the field is `LR125KBIT`"]
80    #[inline(always)]
81    pub fn is_lr125kbit(&self) -> bool {
82        *self == CISTAT_A::LR125KBIT
83    }
84    #[doc = "Checks if the value of the field is `LR500KBIT`"]
85    #[inline(always)]
86    pub fn is_lr500kbit(&self) -> bool {
87        *self == CISTAT_A::LR500KBIT
88    }
89}
90impl R {
91    #[doc = "Bit 0 - Status on payload length vs. PCNF1.MAXLEN"]
92    #[inline(always)]
93    pub fn pdustat(&self) -> PDUSTAT_R {
94        PDUSTAT_R::new((self.bits & 1) != 0)
95    }
96    #[doc = "Bits 1:2 - Status on what rate packet is received with in Long Range"]
97    #[inline(always)]
98    pub fn cistat(&self) -> CISTAT_R {
99        CISTAT_R::new(((self.bits >> 1) & 3) as u8)
100    }
101}
102#[doc = "Payload status\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 [pdustat](index.html) module"]
103pub struct PDUSTAT_SPEC;
104impl crate::RegisterSpec for PDUSTAT_SPEC {
105    type Ux = u32;
106}
107#[doc = "`read()` method returns [pdustat::R](R) reader structure"]
108impl crate::Readable for PDUSTAT_SPEC {
109    type Reader = R;
110}
111#[doc = "`reset()` method sets PDUSTAT to value 0"]
112impl crate::Resettable for PDUSTAT_SPEC {
113    #[inline(always)]
114    fn reset_value() -> Self::Ux {
115        0
116    }
117}