mcxa-pac 0.3.0

Peripheral Access Crate for MCXA256 devices
Documentation
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
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#[doc = "Register `MISCCTRL` reader"]
pub type R = crate::R<MiscctrlSpec>;
#[doc = "Register `MISCCTRL` writer"]
pub type W = crate::W<MiscctrlSpec>;
#[doc = "Dynamic SOF Threshold Compare mode\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Sofdynthld {
    #[doc = "0: When the byte-times SOF threshold is reached"]
    UseDynSofThreshold = 0,
    #[doc = "1: When 8 byte-times SOF threshold is reached or overstepped"]
    UseFixedSofThreshold = 1,
}
impl From<Sofdynthld> for bool {
    #[inline(always)]
    fn from(variant: Sofdynthld) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `SOFDYNTHLD` reader - Dynamic SOF Threshold Compare mode"]
pub type SofdynthldR = crate::BitReader<Sofdynthld>;
impl SofdynthldR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Sofdynthld {
        match self.bits {
            false => Sofdynthld::UseDynSofThreshold,
            true => Sofdynthld::UseFixedSofThreshold,
        }
    }
    #[doc = "When the byte-times SOF threshold is reached"]
    #[inline(always)]
    pub fn is_use_dyn_sof_threshold(&self) -> bool {
        *self == Sofdynthld::UseDynSofThreshold
    }
    #[doc = "When 8 byte-times SOF threshold is reached or overstepped"]
    #[inline(always)]
    pub fn is_use_fixed_sof_threshold(&self) -> bool {
        *self == Sofdynthld::UseFixedSofThreshold
    }
}
#[doc = "Field `SOFDYNTHLD` writer - Dynamic SOF Threshold Compare mode"]
pub type SofdynthldW<'a, REG> = crate::BitWriter<'a, REG, Sofdynthld>;
impl<'a, REG> SofdynthldW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "When the byte-times SOF threshold is reached"]
    #[inline(always)]
    pub fn use_dyn_sof_threshold(self) -> &'a mut crate::W<REG> {
        self.variant(Sofdynthld::UseDynSofThreshold)
    }
    #[doc = "When 8 byte-times SOF threshold is reached or overstepped"]
    #[inline(always)]
    pub fn use_fixed_sof_threshold(self) -> &'a mut crate::W<REG> {
        self.variant(Sofdynthld::UseFixedSofThreshold)
    }
}
#[doc = "SOF_TOK Interrupt Generation Mode Select\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Sofbusset {
    #[doc = "0: According to the SOF threshold value"]
    SofTokIntFromThreshold = 0,
    #[doc = "1: When the SOF counter reaches 0"]
    SofTokIntCounter0 = 1,
}
impl From<Sofbusset> for bool {
    #[inline(always)]
    fn from(variant: Sofbusset) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `SOFBUSSET` reader - SOF_TOK Interrupt Generation Mode Select"]
pub type SofbussetR = crate::BitReader<Sofbusset>;
impl SofbussetR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Sofbusset {
        match self.bits {
            false => Sofbusset::SofTokIntFromThreshold,
            true => Sofbusset::SofTokIntCounter0,
        }
    }
    #[doc = "According to the SOF threshold value"]
    #[inline(always)]
    pub fn is_sof_tok_int_from_threshold(&self) -> bool {
        *self == Sofbusset::SofTokIntFromThreshold
    }
    #[doc = "When the SOF counter reaches 0"]
    #[inline(always)]
    pub fn is_sof_tok_int_counter_0(&self) -> bool {
        *self == Sofbusset::SofTokIntCounter0
    }
}
#[doc = "Field `SOFBUSSET` writer - SOF_TOK Interrupt Generation Mode Select"]
pub type SofbussetW<'a, REG> = crate::BitWriter<'a, REG, Sofbusset>;
impl<'a, REG> SofbussetW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "According to the SOF threshold value"]
    #[inline(always)]
    pub fn sof_tok_int_from_threshold(self) -> &'a mut crate::W<REG> {
        self.variant(Sofbusset::SofTokIntFromThreshold)
    }
    #[doc = "When the SOF counter reaches 0"]
    #[inline(always)]
    pub fn sof_tok_int_counter_0(self) -> &'a mut crate::W<REG> {
        self.variant(Sofbusset::SofTokIntCounter0)
    }
}
#[doc = "OWN Error Detect for ISO IN and ISO OUT Disable\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum Ownerrisodis {
    #[doc = "0: Enable"]
    DisOwnErrorDetectIso = 0,
    #[doc = "1: Disable"]
    EnOwnErrorDetectIso = 1,
}
impl From<Ownerrisodis> for bool {
    #[inline(always)]
    fn from(variant: Ownerrisodis) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `OWNERRISODIS` reader - OWN Error Detect for ISO IN and ISO OUT Disable"]
pub type OwnerrisodisR = crate::BitReader<Ownerrisodis>;
impl OwnerrisodisR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> Ownerrisodis {
        match self.bits {
            false => Ownerrisodis::DisOwnErrorDetectIso,
            true => Ownerrisodis::EnOwnErrorDetectIso,
        }
    }
    #[doc = "Enable"]
    #[inline(always)]
    pub fn is_dis_own_error_detect_iso(&self) -> bool {
        *self == Ownerrisodis::DisOwnErrorDetectIso
    }
    #[doc = "Disable"]
    #[inline(always)]
    pub fn is_en_own_error_detect_iso(&self) -> bool {
        *self == Ownerrisodis::EnOwnErrorDetectIso
    }
}
#[doc = "Field `OWNERRISODIS` writer - OWN Error Detect for ISO IN and ISO OUT Disable"]
pub type OwnerrisodisW<'a, REG> = crate::BitWriter<'a, REG, Ownerrisodis>;
impl<'a, REG> OwnerrisodisW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "Enable"]
    #[inline(always)]
    pub fn dis_own_error_detect_iso(self) -> &'a mut crate::W<REG> {
        self.variant(Ownerrisodis::DisOwnErrorDetectIso)
    }
    #[doc = "Disable"]
    #[inline(always)]
    pub fn en_own_error_detect_iso(self) -> &'a mut crate::W<REG> {
        self.variant(Ownerrisodis::EnOwnErrorDetectIso)
    }
}
#[doc = "VREGIN Rising Edge Interrupt Enable\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum VredgEn {
    #[doc = "0: Disable"]
    DisVreginReInt = 0,
    #[doc = "1: Enable"]
    EnVreginReInt = 1,
}
impl From<VredgEn> for bool {
    #[inline(always)]
    fn from(variant: VredgEn) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `VREDG_EN` reader - VREGIN Rising Edge Interrupt Enable"]
pub type VredgEnR = crate::BitReader<VredgEn>;
impl VredgEnR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> VredgEn {
        match self.bits {
            false => VredgEn::DisVreginReInt,
            true => VredgEn::EnVreginReInt,
        }
    }
    #[doc = "Disable"]
    #[inline(always)]
    pub fn is_dis_vregin_re_int(&self) -> bool {
        *self == VredgEn::DisVreginReInt
    }
    #[doc = "Enable"]
    #[inline(always)]
    pub fn is_en_vregin_re_int(&self) -> bool {
        *self == VredgEn::EnVreginReInt
    }
}
#[doc = "Field `VREDG_EN` writer - VREGIN Rising Edge Interrupt Enable"]
pub type VredgEnW<'a, REG> = crate::BitWriter<'a, REG, VredgEn>;
impl<'a, REG> VredgEnW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "Disable"]
    #[inline(always)]
    pub fn dis_vregin_re_int(self) -> &'a mut crate::W<REG> {
        self.variant(VredgEn::DisVreginReInt)
    }
    #[doc = "Enable"]
    #[inline(always)]
    pub fn en_vregin_re_int(self) -> &'a mut crate::W<REG> {
        self.variant(VredgEn::EnVreginReInt)
    }
}
#[doc = "VREGIN Falling Edge Interrupt Enable\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum VfedgEn {
    #[doc = "0: Disable"]
    DisVreginFeInt = 0,
    #[doc = "1: Enable"]
    EnVreginFeInt = 1,
}
impl From<VfedgEn> for bool {
    #[inline(always)]
    fn from(variant: VfedgEn) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `VFEDG_EN` reader - VREGIN Falling Edge Interrupt Enable"]
pub type VfedgEnR = crate::BitReader<VfedgEn>;
impl VfedgEnR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> VfedgEn {
        match self.bits {
            false => VfedgEn::DisVreginFeInt,
            true => VfedgEn::EnVreginFeInt,
        }
    }
    #[doc = "Disable"]
    #[inline(always)]
    pub fn is_dis_vregin_fe_int(&self) -> bool {
        *self == VfedgEn::DisVreginFeInt
    }
    #[doc = "Enable"]
    #[inline(always)]
    pub fn is_en_vregin_fe_int(&self) -> bool {
        *self == VfedgEn::EnVreginFeInt
    }
}
#[doc = "Field `VFEDG_EN` writer - VREGIN Falling Edge Interrupt Enable"]
pub type VfedgEnW<'a, REG> = crate::BitWriter<'a, REG, VfedgEn>;
impl<'a, REG> VfedgEnW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "Disable"]
    #[inline(always)]
    pub fn dis_vregin_fe_int(self) -> &'a mut crate::W<REG> {
        self.variant(VfedgEn::DisVreginFeInt)
    }
    #[doc = "Enable"]
    #[inline(always)]
    pub fn en_vregin_fe_int(self) -> &'a mut crate::W<REG> {
        self.variant(VfedgEn::EnVreginFeInt)
    }
}
#[doc = "USB Peripheral Mode Stall Adjust Enable\n\nValue on reset: 0"]
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum StlAdjEn {
    #[doc = "0: If ENDPTn\\[END_STALL\\] = 1, both IN and OUT directions for the associated endpoint stalls."]
    StallBothInOut = 0,
    #[doc = "1: If ENDPTn\\[END_STALL\\] = 1, the STALL_xx_DIS registers control which directions for the associated endpoint stalls."]
    StallSingleDirection = 1,
}
impl From<StlAdjEn> for bool {
    #[inline(always)]
    fn from(variant: StlAdjEn) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `STL_ADJ_EN` reader - USB Peripheral Mode Stall Adjust Enable"]
pub type StlAdjEnR = crate::BitReader<StlAdjEn>;
impl StlAdjEnR {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> StlAdjEn {
        match self.bits {
            false => StlAdjEn::StallBothInOut,
            true => StlAdjEn::StallSingleDirection,
        }
    }
    #[doc = "If ENDPTn\\[END_STALL\\] = 1, both IN and OUT directions for the associated endpoint stalls."]
    #[inline(always)]
    pub fn is_stall_both_in_out(&self) -> bool {
        *self == StlAdjEn::StallBothInOut
    }
    #[doc = "If ENDPTn\\[END_STALL\\] = 1, the STALL_xx_DIS registers control which directions for the associated endpoint stalls."]
    #[inline(always)]
    pub fn is_stall_single_direction(&self) -> bool {
        *self == StlAdjEn::StallSingleDirection
    }
}
#[doc = "Field `STL_ADJ_EN` writer - USB Peripheral Mode Stall Adjust Enable"]
pub type StlAdjEnW<'a, REG> = crate::BitWriter<'a, REG, StlAdjEn>;
impl<'a, REG> StlAdjEnW<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    #[doc = "If ENDPTn\\[END_STALL\\] = 1, both IN and OUT directions for the associated endpoint stalls."]
    #[inline(always)]
    pub fn stall_both_in_out(self) -> &'a mut crate::W<REG> {
        self.variant(StlAdjEn::StallBothInOut)
    }
    #[doc = "If ENDPTn\\[END_STALL\\] = 1, the STALL_xx_DIS registers control which directions for the associated endpoint stalls."]
    #[inline(always)]
    pub fn stall_single_direction(self) -> &'a mut crate::W<REG> {
        self.variant(StlAdjEn::StallSingleDirection)
    }
}
impl R {
    #[doc = "Bit 0 - Dynamic SOF Threshold Compare mode"]
    #[inline(always)]
    pub fn sofdynthld(&self) -> SofdynthldR {
        SofdynthldR::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - SOF_TOK Interrupt Generation Mode Select"]
    #[inline(always)]
    pub fn sofbusset(&self) -> SofbussetR {
        SofbussetR::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - OWN Error Detect for ISO IN and ISO OUT Disable"]
    #[inline(always)]
    pub fn ownerrisodis(&self) -> OwnerrisodisR {
        OwnerrisodisR::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - VREGIN Rising Edge Interrupt Enable"]
    #[inline(always)]
    pub fn vredg_en(&self) -> VredgEnR {
        VredgEnR::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - VREGIN Falling Edge Interrupt Enable"]
    #[inline(always)]
    pub fn vfedg_en(&self) -> VfedgEnR {
        VfedgEnR::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 7 - USB Peripheral Mode Stall Adjust Enable"]
    #[inline(always)]
    pub fn stl_adj_en(&self) -> StlAdjEnR {
        StlAdjEnR::new(((self.bits >> 7) & 1) != 0)
    }
}
#[cfg(feature = "debug")]
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("MISCCTRL")
            .field("sofdynthld", &self.sofdynthld())
            .field("sofbusset", &self.sofbusset())
            .field("ownerrisodis", &self.ownerrisodis())
            .field("vredg_en", &self.vredg_en())
            .field("vfedg_en", &self.vfedg_en())
            .field("stl_adj_en", &self.stl_adj_en())
            .finish()
    }
}
impl W {
    #[doc = "Bit 0 - Dynamic SOF Threshold Compare mode"]
    #[inline(always)]
    pub fn sofdynthld(&mut self) -> SofdynthldW<'_, MiscctrlSpec> {
        SofdynthldW::new(self, 0)
    }
    #[doc = "Bit 1 - SOF_TOK Interrupt Generation Mode Select"]
    #[inline(always)]
    pub fn sofbusset(&mut self) -> SofbussetW<'_, MiscctrlSpec> {
        SofbussetW::new(self, 1)
    }
    #[doc = "Bit 2 - OWN Error Detect for ISO IN and ISO OUT Disable"]
    #[inline(always)]
    pub fn ownerrisodis(&mut self) -> OwnerrisodisW<'_, MiscctrlSpec> {
        OwnerrisodisW::new(self, 2)
    }
    #[doc = "Bit 3 - VREGIN Rising Edge Interrupt Enable"]
    #[inline(always)]
    pub fn vredg_en(&mut self) -> VredgEnW<'_, MiscctrlSpec> {
        VredgEnW::new(self, 3)
    }
    #[doc = "Bit 4 - VREGIN Falling Edge Interrupt Enable"]
    #[inline(always)]
    pub fn vfedg_en(&mut self) -> VfedgEnW<'_, MiscctrlSpec> {
        VfedgEnW::new(self, 4)
    }
    #[doc = "Bit 7 - USB Peripheral Mode Stall Adjust Enable"]
    #[inline(always)]
    pub fn stl_adj_en(&mut self) -> StlAdjEnW<'_, MiscctrlSpec> {
        StlAdjEnW::new(self, 7)
    }
}
#[doc = "Miscellaneous Control\n\nYou can [`read`](crate::Reg::read) this register and get [`miscctrl::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`miscctrl::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct MiscctrlSpec;
impl crate::RegisterSpec for MiscctrlSpec {
    type Ux = u8;
}
#[doc = "`read()` method returns [`miscctrl::R`](R) reader structure"]
impl crate::Readable for MiscctrlSpec {}
#[doc = "`write(|w| ..)` method takes [`miscctrl::W`](W) writer structure"]
impl crate::Writable for MiscctrlSpec {
    type Safety = crate::Unsafe;
}
#[doc = "`reset()` method sets MISCCTRL to value 0"]
impl crate::Resettable for MiscctrlSpec {}