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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
#[doc = "Register `PROCON2` reader"]
pub type R = crate::R<PROCON2_SPEC>;
#[doc = "Sector 0 Locked Forever by User 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum S0ROM_A {
    #[doc = "0: No ROM functionality configured for sector n."]
    CONST_0 = 0,
    #[doc = "1: ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    CONST_1 = 1,
}
impl From<S0ROM_A> for bool {
    #[inline(always)]
    fn from(variant: S0ROM_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `S0ROM` reader - Sector 0 Locked Forever by User 2"]
pub type S0ROM_R = crate::BitReader<S0ROM_A>;
impl S0ROM_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> S0ROM_A {
        match self.bits {
            false => S0ROM_A::CONST_0,
            true => S0ROM_A::CONST_1,
        }
    }
    #[doc = "No ROM functionality configured for sector n."]
    #[inline(always)]
    pub fn is_const_0(&self) -> bool {
        *self == S0ROM_A::CONST_0
    }
    #[doc = "ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    #[inline(always)]
    pub fn is_const_1(&self) -> bool {
        *self == S0ROM_A::CONST_1
    }
}
#[doc = "Sector 1 Locked Forever by User 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum S1ROM_A {
    #[doc = "0: No ROM functionality configured for sector n."]
    CONST_0 = 0,
    #[doc = "1: ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    CONST_1 = 1,
}
impl From<S1ROM_A> for bool {
    #[inline(always)]
    fn from(variant: S1ROM_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `S1ROM` reader - Sector 1 Locked Forever by User 2"]
pub type S1ROM_R = crate::BitReader<S1ROM_A>;
impl S1ROM_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> S1ROM_A {
        match self.bits {
            false => S1ROM_A::CONST_0,
            true => S1ROM_A::CONST_1,
        }
    }
    #[doc = "No ROM functionality configured for sector n."]
    #[inline(always)]
    pub fn is_const_0(&self) -> bool {
        *self == S1ROM_A::CONST_0
    }
    #[doc = "ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    #[inline(always)]
    pub fn is_const_1(&self) -> bool {
        *self == S1ROM_A::CONST_1
    }
}
#[doc = "Sector 2 Locked Forever by User 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum S2ROM_A {
    #[doc = "0: No ROM functionality configured for sector n."]
    CONST_0 = 0,
    #[doc = "1: ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    CONST_1 = 1,
}
impl From<S2ROM_A> for bool {
    #[inline(always)]
    fn from(variant: S2ROM_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `S2ROM` reader - Sector 2 Locked Forever by User 2"]
pub type S2ROM_R = crate::BitReader<S2ROM_A>;
impl S2ROM_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> S2ROM_A {
        match self.bits {
            false => S2ROM_A::CONST_0,
            true => S2ROM_A::CONST_1,
        }
    }
    #[doc = "No ROM functionality configured for sector n."]
    #[inline(always)]
    pub fn is_const_0(&self) -> bool {
        *self == S2ROM_A::CONST_0
    }
    #[doc = "ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    #[inline(always)]
    pub fn is_const_1(&self) -> bool {
        *self == S2ROM_A::CONST_1
    }
}
#[doc = "Sector 3 Locked Forever by User 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum S3ROM_A {
    #[doc = "0: No ROM functionality configured for sector n."]
    CONST_0 = 0,
    #[doc = "1: ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    CONST_1 = 1,
}
impl From<S3ROM_A> for bool {
    #[inline(always)]
    fn from(variant: S3ROM_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `S3ROM` reader - Sector 3 Locked Forever by User 2"]
pub type S3ROM_R = crate::BitReader<S3ROM_A>;
impl S3ROM_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> S3ROM_A {
        match self.bits {
            false => S3ROM_A::CONST_0,
            true => S3ROM_A::CONST_1,
        }
    }
    #[doc = "No ROM functionality configured for sector n."]
    #[inline(always)]
    pub fn is_const_0(&self) -> bool {
        *self == S3ROM_A::CONST_0
    }
    #[doc = "ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    #[inline(always)]
    pub fn is_const_1(&self) -> bool {
        *self == S3ROM_A::CONST_1
    }
}
#[doc = "Sector 4 Locked Forever by User 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum S4ROM_A {
    #[doc = "0: No ROM functionality configured for sector n."]
    CONST_0 = 0,
    #[doc = "1: ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    CONST_1 = 1,
}
impl From<S4ROM_A> for bool {
    #[inline(always)]
    fn from(variant: S4ROM_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `S4ROM` reader - Sector 4 Locked Forever by User 2"]
pub type S4ROM_R = crate::BitReader<S4ROM_A>;
impl S4ROM_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> S4ROM_A {
        match self.bits {
            false => S4ROM_A::CONST_0,
            true => S4ROM_A::CONST_1,
        }
    }
    #[doc = "No ROM functionality configured for sector n."]
    #[inline(always)]
    pub fn is_const_0(&self) -> bool {
        *self == S4ROM_A::CONST_0
    }
    #[doc = "ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    #[inline(always)]
    pub fn is_const_1(&self) -> bool {
        *self == S4ROM_A::CONST_1
    }
}
#[doc = "Sector 5 Locked Forever by User 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum S5ROM_A {
    #[doc = "0: No ROM functionality configured for sector n."]
    CONST_0 = 0,
    #[doc = "1: ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    CONST_1 = 1,
}
impl From<S5ROM_A> for bool {
    #[inline(always)]
    fn from(variant: S5ROM_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `S5ROM` reader - Sector 5 Locked Forever by User 2"]
pub type S5ROM_R = crate::BitReader<S5ROM_A>;
impl S5ROM_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> S5ROM_A {
        match self.bits {
            false => S5ROM_A::CONST_0,
            true => S5ROM_A::CONST_1,
        }
    }
    #[doc = "No ROM functionality configured for sector n."]
    #[inline(always)]
    pub fn is_const_0(&self) -> bool {
        *self == S5ROM_A::CONST_0
    }
    #[doc = "ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    #[inline(always)]
    pub fn is_const_1(&self) -> bool {
        *self == S5ROM_A::CONST_1
    }
}
#[doc = "Sector 6 Locked Forever by User 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum S6ROM_A {
    #[doc = "0: No ROM functionality configured for sector n."]
    CONST_0 = 0,
    #[doc = "1: ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    CONST_1 = 1,
}
impl From<S6ROM_A> for bool {
    #[inline(always)]
    fn from(variant: S6ROM_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `S6ROM` reader - Sector 6 Locked Forever by User 2"]
pub type S6ROM_R = crate::BitReader<S6ROM_A>;
impl S6ROM_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> S6ROM_A {
        match self.bits {
            false => S6ROM_A::CONST_0,
            true => S6ROM_A::CONST_1,
        }
    }
    #[doc = "No ROM functionality configured for sector n."]
    #[inline(always)]
    pub fn is_const_0(&self) -> bool {
        *self == S6ROM_A::CONST_0
    }
    #[doc = "ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    #[inline(always)]
    pub fn is_const_1(&self) -> bool {
        *self == S6ROM_A::CONST_1
    }
}
#[doc = "Sector 7 Locked Forever by User 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum S7ROM_A {
    #[doc = "0: No ROM functionality configured for sector n."]
    CONST_0 = 0,
    #[doc = "1: ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    CONST_1 = 1,
}
impl From<S7ROM_A> for bool {
    #[inline(always)]
    fn from(variant: S7ROM_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `S7ROM` reader - Sector 7 Locked Forever by User 2"]
pub type S7ROM_R = crate::BitReader<S7ROM_A>;
impl S7ROM_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> S7ROM_A {
        match self.bits {
            false => S7ROM_A::CONST_0,
            true => S7ROM_A::CONST_1,
        }
    }
    #[doc = "No ROM functionality configured for sector n."]
    #[inline(always)]
    pub fn is_const_0(&self) -> bool {
        *self == S7ROM_A::CONST_0
    }
    #[doc = "ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    #[inline(always)]
    pub fn is_const_1(&self) -> bool {
        *self == S7ROM_A::CONST_1
    }
}
#[doc = "Sector 8 Locked Forever by User 2\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum S8ROM_A {
    #[doc = "0: No ROM functionality configured for sector n."]
    CONST_0 = 0,
    #[doc = "1: ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    CONST_1 = 1,
}
impl From<S8ROM_A> for bool {
    #[inline(always)]
    fn from(variant: S8ROM_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `S8ROM` reader - Sector 8 Locked Forever by User 2"]
pub type S8ROM_R = crate::BitReader<S8ROM_A>;
impl S8ROM_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> S8ROM_A {
        match self.bits {
            false => S8ROM_A::CONST_0,
            true => S8ROM_A::CONST_1,
        }
    }
    #[doc = "No ROM functionality configured for sector n."]
    #[inline(always)]
    pub fn is_const_0(&self) -> bool {
        *self == S8ROM_A::CONST_0
    }
    #[doc = "ROM functionality is configured for sector n. Re-programming of this sector is no longer possible."]
    #[inline(always)]
    pub fn is_const_1(&self) -> bool {
        *self == S8ROM_A::CONST_1
    }
}
impl R {
    #[doc = "Bit 0 - Sector 0 Locked Forever by User 2"]
    #[inline(always)]
    pub fn s0rom(&self) -> S0ROM_R {
        S0ROM_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - Sector 1 Locked Forever by User 2"]
    #[inline(always)]
    pub fn s1rom(&self) -> S1ROM_R {
        S1ROM_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - Sector 2 Locked Forever by User 2"]
    #[inline(always)]
    pub fn s2rom(&self) -> S2ROM_R {
        S2ROM_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - Sector 3 Locked Forever by User 2"]
    #[inline(always)]
    pub fn s3rom(&self) -> S3ROM_R {
        S3ROM_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - Sector 4 Locked Forever by User 2"]
    #[inline(always)]
    pub fn s4rom(&self) -> S4ROM_R {
        S4ROM_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - Sector 5 Locked Forever by User 2"]
    #[inline(always)]
    pub fn s5rom(&self) -> S5ROM_R {
        S5ROM_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 6 - Sector 6 Locked Forever by User 2"]
    #[inline(always)]
    pub fn s6rom(&self) -> S6ROM_R {
        S6ROM_R::new(((self.bits >> 6) & 1) != 0)
    }
    #[doc = "Bit 7 - Sector 7 Locked Forever by User 2"]
    #[inline(always)]
    pub fn s7rom(&self) -> S7ROM_R {
        S7ROM_R::new(((self.bits >> 7) & 1) != 0)
    }
    #[doc = "Bit 8 - Sector 8 Locked Forever by User 2"]
    #[inline(always)]
    pub fn s8rom(&self) -> S8ROM_R {
        S8ROM_R::new(((self.bits >> 8) & 1) != 0)
    }
}
#[doc = "Flash Protection Configuration Register User 2\n\nYou can [`read`](crate::generic::Reg::read) this register and get [`procon2::R`](R).  See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct PROCON2_SPEC;
impl crate::RegisterSpec for PROCON2_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`procon2::R`](R) reader structure"]
impl crate::Readable for PROCON2_SPEC {}
#[doc = "`reset()` method sets PROCON2 to value 0"]
impl crate::Resettable for PROCON2_SPEC {
    const RESET_VALUE: u32 = 0;
}