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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#[doc = "Reader of register APORTCONFLICT"]
pub type R = crate::R<u32, super::APORTCONFLICT>;
#[doc = "Reader of field `APORT0XCONFLICT`"]
pub type APORT0XCONFLICT_R = crate::R<bool, bool>;
#[doc = "Reader of field `APORT0YCONFLICT`"]
pub type APORT0YCONFLICT_R = crate::R<bool, bool>;
#[doc = "Reader of field `APORT1XCONFLICT`"]
pub type APORT1XCONFLICT_R = crate::R<bool, bool>;
#[doc = "Reader of field `APORT1YCONFLICT`"]
pub type APORT1YCONFLICT_R = crate::R<bool, bool>;
#[doc = "Reader of field `APORT2XCONFLICT`"]
pub type APORT2XCONFLICT_R = crate::R<bool, bool>;
#[doc = "Reader of field `APORT2YCONFLICT`"]
pub type APORT2YCONFLICT_R = crate::R<bool, bool>;
#[doc = "Reader of field `APORT3XCONFLICT`"]
pub type APORT3XCONFLICT_R = crate::R<bool, bool>;
#[doc = "Reader of field `APORT3YCONFLICT`"]
pub type APORT3YCONFLICT_R = crate::R<bool, bool>;
#[doc = "Reader of field `APORT4XCONFLICT`"]
pub type APORT4XCONFLICT_R = crate::R<bool, bool>;
#[doc = "Reader of field `APORT4YCONFLICT`"]
pub type APORT4YCONFLICT_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bit 0 - 1 If the Bus Connected to APORT0X is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport0xconflict(&self) -> APORT0XCONFLICT_R {
        APORT0XCONFLICT_R::new((self.bits & 0x01) != 0)
    }
    #[doc = "Bit 1 - 1 If the Bus Connected to APORT0Y is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport0yconflict(&self) -> APORT0YCONFLICT_R {
        APORT0YCONFLICT_R::new(((self.bits >> 1) & 0x01) != 0)
    }
    #[doc = "Bit 2 - 1 If the Bus Connected to APORT1X is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport1xconflict(&self) -> APORT1XCONFLICT_R {
        APORT1XCONFLICT_R::new(((self.bits >> 2) & 0x01) != 0)
    }
    #[doc = "Bit 3 - 1 If the Bus Connected to APORT1X is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport1yconflict(&self) -> APORT1YCONFLICT_R {
        APORT1YCONFLICT_R::new(((self.bits >> 3) & 0x01) != 0)
    }
    #[doc = "Bit 4 - 1 If the Bus Connected to APORT2X is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport2xconflict(&self) -> APORT2XCONFLICT_R {
        APORT2XCONFLICT_R::new(((self.bits >> 4) & 0x01) != 0)
    }
    #[doc = "Bit 5 - 1 If the Bus Connected to APORT2Y is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport2yconflict(&self) -> APORT2YCONFLICT_R {
        APORT2YCONFLICT_R::new(((self.bits >> 5) & 0x01) != 0)
    }
    #[doc = "Bit 6 - 1 If the Bus Connected to APORT3X is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport3xconflict(&self) -> APORT3XCONFLICT_R {
        APORT3XCONFLICT_R::new(((self.bits >> 6) & 0x01) != 0)
    }
    #[doc = "Bit 7 - 1 If the Bus Connected to APORT3Y is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport3yconflict(&self) -> APORT3YCONFLICT_R {
        APORT3YCONFLICT_R::new(((self.bits >> 7) & 0x01) != 0)
    }
    #[doc = "Bit 8 - 1 If the Bus Connected to APORT4X is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport4xconflict(&self) -> APORT4XCONFLICT_R {
        APORT4XCONFLICT_R::new(((self.bits >> 8) & 0x01) != 0)
    }
    #[doc = "Bit 9 - 1 If the Bus Connected to APORT4Y is in Conflict With Another Peripheral"]
    #[inline(always)]
    pub fn aport4yconflict(&self) -> APORT4YCONFLICT_R {
        APORT4YCONFLICT_R::new(((self.bits >> 9) & 0x01) != 0)
    }
}