1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#[doc = "Reader of register SASR"]
pub type R = crate::R<u32, super::SASR>;
#[doc = "Reader of field `RADDR`"]
pub type RADDR_R = crate::R<u16, u16>;
#[doc = "Address Not Valid\n\nValue on reset: 1"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum ANV_A {
    #[doc = "0: Received Address (RADDR) is valid"]
    ANV_0 = 0,
    #[doc = "1: Received Address (RADDR) is not valid"]
    ANV_1 = 1,
}
impl From<ANV_A> for bool {
    #[inline(always)]
    fn from(variant: ANV_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Reader of field `ANV`"]
pub type ANV_R = crate::R<bool, ANV_A>;
impl ANV_R {
    #[doc = r"Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> ANV_A {
        match self.bits {
            false => ANV_A::ANV_0,
            true => ANV_A::ANV_1,
        }
    }
    #[doc = "Checks if the value of the field is `ANV_0`"]
    #[inline(always)]
    pub fn is_anv_0(&self) -> bool {
        *self == ANV_A::ANV_0
    }
    #[doc = "Checks if the value of the field is `ANV_1`"]
    #[inline(always)]
    pub fn is_anv_1(&self) -> bool {
        *self == ANV_A::ANV_1
    }
}
impl R {
    #[doc = "Bits 0:10 - Received Address"]
    #[inline(always)]
    pub fn raddr(&self) -> RADDR_R {
        RADDR_R::new((self.bits & 0x07ff) as u16)
    }
    #[doc = "Bit 14 - Address Not Valid"]
    #[inline(always)]
    pub fn anv(&self) -> ANV_R {
        ANV_R::new(((self.bits >> 14) & 0x01) != 0)
    }
}