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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#[doc = "Register `OVER` reader"]
pub struct R(crate::R<OVER_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<OVER_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<OVER_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<OVER_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Field `OVRE0` reader - Overrun Error 0"]
pub type OVRE0_R = crate::BitReader<bool>;
#[doc = "Field `OVRE1` reader - Overrun Error 1"]
pub type OVRE1_R = crate::BitReader<bool>;
#[doc = "Field `OVRE2` reader - Overrun Error 2"]
pub type OVRE2_R = crate::BitReader<bool>;
#[doc = "Field `OVRE3` reader - Overrun Error 3"]
pub type OVRE3_R = crate::BitReader<bool>;
#[doc = "Field `OVRE4` reader - Overrun Error 4"]
pub type OVRE4_R = crate::BitReader<bool>;
#[doc = "Field `OVRE5` reader - Overrun Error 5"]
pub type OVRE5_R = crate::BitReader<bool>;
#[doc = "Field `OVRE6` reader - Overrun Error 6"]
pub type OVRE6_R = crate::BitReader<bool>;
#[doc = "Field `OVRE7` reader - Overrun Error 7"]
pub type OVRE7_R = crate::BitReader<bool>;
#[doc = "Field `OVRE8` reader - Overrun Error 8"]
pub type OVRE8_R = crate::BitReader<bool>;
#[doc = "Field `OVRE9` reader - Overrun Error 9"]
pub type OVRE9_R = crate::BitReader<bool>;
#[doc = "Field `OVRE10` reader - Overrun Error 10"]
pub type OVRE10_R = crate::BitReader<bool>;
#[doc = "Field `OVRE11` reader - Overrun Error 11"]
pub type OVRE11_R = crate::BitReader<bool>;
#[doc = "Field `OVRE12` reader - Overrun Error 12"]
pub type OVRE12_R = crate::BitReader<bool>;
#[doc = "Field `OVRE13` reader - Overrun Error 13"]
pub type OVRE13_R = crate::BitReader<bool>;
#[doc = "Field `OVRE14` reader - Overrun Error 14"]
pub type OVRE14_R = crate::BitReader<bool>;
#[doc = "Field `OVRE15` reader - Overrun Error 15"]
pub type OVRE15_R = crate::BitReader<bool>;
impl R {
    #[doc = "Bit 0 - Overrun Error 0"]
    #[inline(always)]
    pub fn ovre0(&self) -> OVRE0_R {
        OVRE0_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Overrun Error 1"]
    #[inline(always)]
    pub fn ovre1(&self) -> OVRE1_R {
        OVRE1_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Overrun Error 2"]
    #[inline(always)]
    pub fn ovre2(&self) -> OVRE2_R {
        OVRE2_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Overrun Error 3"]
    #[inline(always)]
    pub fn ovre3(&self) -> OVRE3_R {
        OVRE3_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - Overrun Error 4"]
    #[inline(always)]
    pub fn ovre4(&self) -> OVRE4_R {
        OVRE4_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Overrun Error 5"]
    #[inline(always)]
    pub fn ovre5(&self) -> OVRE5_R {
        OVRE5_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Overrun Error 6"]
    #[inline(always)]
    pub fn ovre6(&self) -> OVRE6_R {
        OVRE6_R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Overrun Error 7"]
    #[inline(always)]
    pub fn ovre7(&self) -> OVRE7_R {
        OVRE7_R::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bit 8 - Overrun Error 8"]
    #[inline(always)]
    pub fn ovre8(&self) -> OVRE8_R {
        OVRE8_R::new(((self.bits >> 8) & 1) != 0)
    }
    #[doc = "Bit 9 - Overrun Error 9"]
    #[inline(always)]
    pub fn ovre9(&self) -> OVRE9_R {
        OVRE9_R::new(((self.bits >> 9) & 1) != 0)
    }
    #[doc = "Bit 10 - Overrun Error 10"]
    #[inline(always)]
    pub fn ovre10(&self) -> OVRE10_R {
        OVRE10_R::new(((self.bits >> 10) & 1) != 0)
    }
    #[doc = "Bit 11 - Overrun Error 11"]
    #[inline(always)]
    pub fn ovre11(&self) -> OVRE11_R {
        OVRE11_R::new(((self.bits >> 11) & 1) != 0)
    }
    #[doc = "Bit 12 - Overrun Error 12"]
    #[inline(always)]
    pub fn ovre12(&self) -> OVRE12_R {
        OVRE12_R::new(((self.bits >> 12) & 1) != 0)
    }
    #[doc = "Bit 13 - Overrun Error 13"]
    #[inline(always)]
    pub fn ovre13(&self) -> OVRE13_R {
        OVRE13_R::new(((self.bits >> 13) & 1) != 0)
    }
    #[doc = "Bit 14 - Overrun Error 14"]
    #[inline(always)]
    pub fn ovre14(&self) -> OVRE14_R {
        OVRE14_R::new(((self.bits >> 14) & 1) != 0)
    }
    #[doc = "Bit 15 - Overrun Error 15"]
    #[inline(always)]
    pub fn ovre15(&self) -> OVRE15_R {
        OVRE15_R::new(((self.bits >> 15) & 1) != 0)
    }
}
#[doc = "Overrun Status Register\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 [over](index.html) module"]
pub struct OVER_SPEC;
impl crate::RegisterSpec for OVER_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [over::R](R) reader structure"]
impl crate::Readable for OVER_SPEC {
    type Reader = R;
}
#[doc = "`reset()` method sets OVER to value 0"]
impl crate::Resettable for OVER_SPEC {
    const RESET_VALUE: Self::Ux = 0;
}