atsamd51g/sdhc0/
mccar.rs

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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
#[doc = "Register `MCCAR` reader"]
pub type R = crate::R<MccarSpec>;
#[doc = "Maximum Current for 3.3V\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Maxcur33vselect {
    #[doc = "0: Get information via another method"]
    Other = 0,
    #[doc = "1: 4mA"]
    _4ma = 1,
    #[doc = "2: 8mA"]
    _8ma = 2,
    #[doc = "3: 12mA"]
    _12ma = 3,
}
impl From<Maxcur33vselect> for u8 {
    #[inline(always)]
    fn from(variant: Maxcur33vselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Maxcur33vselect {
    type Ux = u8;
}
impl crate::IsEnum for Maxcur33vselect {}
#[doc = "Field `MAXCUR33V` reader - Maximum Current for 3.3V"]
pub type Maxcur33vR = crate::FieldReader<Maxcur33vselect>;
impl Maxcur33vR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<Maxcur33vselect> {
        match self.bits {
            0 => Some(Maxcur33vselect::Other),
            1 => Some(Maxcur33vselect::_4ma),
            2 => Some(Maxcur33vselect::_8ma),
            3 => Some(Maxcur33vselect::_12ma),
            _ => None,
        }
    }
    #[doc = "Get information via another method"]
    #[inline(always)]
    pub fn is_other(&self) -> bool {
        *self == Maxcur33vselect::Other
    }
    #[doc = "4mA"]
    #[inline(always)]
    pub fn is_4ma(&self) -> bool {
        *self == Maxcur33vselect::_4ma
    }
    #[doc = "8mA"]
    #[inline(always)]
    pub fn is_8ma(&self) -> bool {
        *self == Maxcur33vselect::_8ma
    }
    #[doc = "12mA"]
    #[inline(always)]
    pub fn is_12ma(&self) -> bool {
        *self == Maxcur33vselect::_12ma
    }
}
#[doc = "Maximum Current for 3.0V\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Maxcur30vselect {
    #[doc = "0: Get information via another method"]
    Other = 0,
    #[doc = "1: 4mA"]
    _4ma = 1,
    #[doc = "2: 8mA"]
    _8ma = 2,
    #[doc = "3: 12mA"]
    _12ma = 3,
}
impl From<Maxcur30vselect> for u8 {
    #[inline(always)]
    fn from(variant: Maxcur30vselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Maxcur30vselect {
    type Ux = u8;
}
impl crate::IsEnum for Maxcur30vselect {}
#[doc = "Field `MAXCUR30V` reader - Maximum Current for 3.0V"]
pub type Maxcur30vR = crate::FieldReader<Maxcur30vselect>;
impl Maxcur30vR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<Maxcur30vselect> {
        match self.bits {
            0 => Some(Maxcur30vselect::Other),
            1 => Some(Maxcur30vselect::_4ma),
            2 => Some(Maxcur30vselect::_8ma),
            3 => Some(Maxcur30vselect::_12ma),
            _ => None,
        }
    }
    #[doc = "Get information via another method"]
    #[inline(always)]
    pub fn is_other(&self) -> bool {
        *self == Maxcur30vselect::Other
    }
    #[doc = "4mA"]
    #[inline(always)]
    pub fn is_4ma(&self) -> bool {
        *self == Maxcur30vselect::_4ma
    }
    #[doc = "8mA"]
    #[inline(always)]
    pub fn is_8ma(&self) -> bool {
        *self == Maxcur30vselect::_8ma
    }
    #[doc = "12mA"]
    #[inline(always)]
    pub fn is_12ma(&self) -> bool {
        *self == Maxcur30vselect::_12ma
    }
}
#[doc = "Maximum Current for 1.8V\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum Maxcur18vselect {
    #[doc = "0: Get information via another method"]
    Other = 0,
    #[doc = "1: 4mA"]
    _4ma = 1,
    #[doc = "2: 8mA"]
    _8ma = 2,
    #[doc = "3: 12mA"]
    _12ma = 3,
}
impl From<Maxcur18vselect> for u8 {
    #[inline(always)]
    fn from(variant: Maxcur18vselect) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for Maxcur18vselect {
    type Ux = u8;
}
impl crate::IsEnum for Maxcur18vselect {}
#[doc = "Field `MAXCUR18V` reader - Maximum Current for 1.8V"]
pub type Maxcur18vR = crate::FieldReader<Maxcur18vselect>;
impl Maxcur18vR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Option<Maxcur18vselect> {
        match self.bits {
            0 => Some(Maxcur18vselect::Other),
            1 => Some(Maxcur18vselect::_4ma),
            2 => Some(Maxcur18vselect::_8ma),
            3 => Some(Maxcur18vselect::_12ma),
            _ => None,
        }
    }
    #[doc = "Get information via another method"]
    #[inline(always)]
    pub fn is_other(&self) -> bool {
        *self == Maxcur18vselect::Other
    }
    #[doc = "4mA"]
    #[inline(always)]
    pub fn is_4ma(&self) -> bool {
        *self == Maxcur18vselect::_4ma
    }
    #[doc = "8mA"]
    #[inline(always)]
    pub fn is_8ma(&self) -> bool {
        *self == Maxcur18vselect::_8ma
    }
    #[doc = "12mA"]
    #[inline(always)]
    pub fn is_12ma(&self) -> bool {
        *self == Maxcur18vselect::_12ma
    }
}
impl R {
    #[doc = "Bits 0:7 - Maximum Current for 3.3V"]
    #[inline(always)]
    pub fn maxcur33v(&self) -> Maxcur33vR {
        Maxcur33vR::new((self.bits & 0xff) as u8)
    }
    #[doc = "Bits 8:15 - Maximum Current for 3.0V"]
    #[inline(always)]
    pub fn maxcur30v(&self) -> Maxcur30vR {
        Maxcur30vR::new(((self.bits >> 8) & 0xff) as u8)
    }
    #[doc = "Bits 16:23 - Maximum Current for 1.8V"]
    #[inline(always)]
    pub fn maxcur18v(&self) -> Maxcur18vR {
        Maxcur18vR::new(((self.bits >> 16) & 0xff) as u8)
    }
}
#[doc = "Maximum Current Capabilities\n\nYou can [`read`](crate::Reg::read) this register and get [`mccar::R`](R). See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct MccarSpec;
impl crate::RegisterSpec for MccarSpec {
    type Ux = u32;
}
#[doc = "`read()` method returns [`mccar::R`](R) reader structure"]
impl crate::Readable for MccarSpec {}
#[doc = "`reset()` method sets MCCAR to value 0"]
impl crate::Resettable for MccarSpec {
    const RESET_VALUE: u32 = 0;
}