nrf52840_pac/radio/
crcstatus.rs
1#[doc = "Register `CRCSTATUS` reader"]
2pub struct R(crate::R<CRCSTATUS_SPEC>);
3impl core::ops::Deref for R {
4 type Target = crate::R<CRCSTATUS_SPEC>;
5 #[inline(always)]
6 fn deref(&self) -> &Self::Target {
7 &self.0
8 }
9}
10impl From<crate::R<CRCSTATUS_SPEC>> for R {
11 #[inline(always)]
12 fn from(reader: crate::R<CRCSTATUS_SPEC>) -> Self {
13 R(reader)
14 }
15}
16#[doc = "Field `CRCSTATUS` reader - CRC status of packet received"]
17pub type CRCSTATUS_R = crate::BitReader<CRCSTATUS_A>;
18#[doc = "CRC status of packet received\n\nValue on reset: 0"]
19#[derive(Clone, Copy, Debug, PartialEq)]
20pub enum CRCSTATUS_A {
21 #[doc = "0: Packet received with CRC error"]
22 CRCERROR = 0,
23 #[doc = "1: Packet received with CRC ok"]
24 CRCOK = 1,
25}
26impl From<CRCSTATUS_A> for bool {
27 #[inline(always)]
28 fn from(variant: CRCSTATUS_A) -> Self {
29 variant as u8 != 0
30 }
31}
32impl CRCSTATUS_R {
33 #[doc = "Get enumerated values variant"]
34 #[inline(always)]
35 pub fn variant(&self) -> CRCSTATUS_A {
36 match self.bits {
37 false => CRCSTATUS_A::CRCERROR,
38 true => CRCSTATUS_A::CRCOK,
39 }
40 }
41 #[doc = "Checks if the value of the field is `CRCERROR`"]
42 #[inline(always)]
43 pub fn is_crcerror(&self) -> bool {
44 *self == CRCSTATUS_A::CRCERROR
45 }
46 #[doc = "Checks if the value of the field is `CRCOK`"]
47 #[inline(always)]
48 pub fn is_crcok(&self) -> bool {
49 *self == CRCSTATUS_A::CRCOK
50 }
51}
52impl R {
53 #[doc = "Bit 0 - CRC status of packet received"]
54 #[inline(always)]
55 pub fn crcstatus(&self) -> CRCSTATUS_R {
56 CRCSTATUS_R::new((self.bits & 1) != 0)
57 }
58}
59#[doc = "CRC 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 [crcstatus](index.html) module"]
60pub struct CRCSTATUS_SPEC;
61impl crate::RegisterSpec for CRCSTATUS_SPEC {
62 type Ux = u32;
63}
64#[doc = "`read()` method returns [crcstatus::R](R) reader structure"]
65impl crate::Readable for CRCSTATUS_SPEC {
66 type Reader = R;
67}
68#[doc = "`reset()` method sets CRCSTATUS to value 0"]
69impl crate::Resettable for CRCSTATUS_SPEC {
70 #[inline(always)]
71 fn reset_value() -> Self::Ux {
72 0
73 }
74}