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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#[doc = "Reader of register OVER"]
pub type R = crate::R<u32, super::OVER>;
#[doc = "Reader of field `OVRE0`"]
pub type OVRE0_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE1`"]
pub type OVRE1_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE2`"]
pub type OVRE2_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE3`"]
pub type OVRE3_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE4`"]
pub type OVRE4_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE5`"]
pub type OVRE5_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE6`"]
pub type OVRE6_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE7`"]
pub type OVRE7_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE8`"]
pub type OVRE8_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE9`"]
pub type OVRE9_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE10`"]
pub type OVRE10_R = crate::R<bool, bool>;
#[doc = "Reader of field `OVRE11`"]
pub type OVRE11_R = crate::R<bool, bool>;
impl R {
    #[doc = "Bit 0 - Overrun Error 0"]
    #[inline(always)]
    pub fn ovre0(&self) -> OVRE0_R {
        OVRE0_R::new((self.bits & 0x01) != 0)
    }
    #[doc = "Bit 1 - Overrun Error 1"]
    #[inline(always)]
    pub fn ovre1(&self) -> OVRE1_R {
        OVRE1_R::new(((self.bits >> 1) & 0x01) != 0)
    }
    #[doc = "Bit 2 - Overrun Error 2"]
    #[inline(always)]
    pub fn ovre2(&self) -> OVRE2_R {
        OVRE2_R::new(((self.bits >> 2) & 0x01) != 0)
    }
    #[doc = "Bit 3 - Overrun Error 3"]
    #[inline(always)]
    pub fn ovre3(&self) -> OVRE3_R {
        OVRE3_R::new(((self.bits >> 3) & 0x01) != 0)
    }
    #[doc = "Bit 4 - Overrun Error 4"]
    #[inline(always)]
    pub fn ovre4(&self) -> OVRE4_R {
        OVRE4_R::new(((self.bits >> 4) & 0x01) != 0)
    }
    #[doc = "Bit 5 - Overrun Error 5"]
    #[inline(always)]
    pub fn ovre5(&self) -> OVRE5_R {
        OVRE5_R::new(((self.bits >> 5) & 0x01) != 0)
    }
    #[doc = "Bit 6 - Overrun Error 6"]
    #[inline(always)]
    pub fn ovre6(&self) -> OVRE6_R {
        OVRE6_R::new(((self.bits >> 6) & 0x01) != 0)
    }
    #[doc = "Bit 7 - Overrun Error 7"]
    #[inline(always)]
    pub fn ovre7(&self) -> OVRE7_R {
        OVRE7_R::new(((self.bits >> 7) & 0x01) != 0)
    }
    #[doc = "Bit 8 - Overrun Error 8"]
    #[inline(always)]
    pub fn ovre8(&self) -> OVRE8_R {
        OVRE8_R::new(((self.bits >> 8) & 0x01) != 0)
    }
    #[doc = "Bit 9 - Overrun Error 9"]
    #[inline(always)]
    pub fn ovre9(&self) -> OVRE9_R {
        OVRE9_R::new(((self.bits >> 9) & 0x01) != 0)
    }
    #[doc = "Bit 10 - Overrun Error 10"]
    #[inline(always)]
    pub fn ovre10(&self) -> OVRE10_R {
        OVRE10_R::new(((self.bits >> 10) & 0x01) != 0)
    }
    #[doc = "Bit 11 - Overrun Error 11"]
    #[inline(always)]
    pub fn ovre11(&self) -> OVRE11_R {
        OVRE11_R::new(((self.bits >> 11) & 0x01) != 0)
    }
}