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
#[doc = "Register `C2SCR` reader"]
pub struct R(crate::R<C2SCR_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<C2SCR_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<C2SCR_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<C2SCR_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Register `C2SCR` writer"]
pub struct W(crate::W<C2SCR_SPEC>);
impl core::ops::Deref for W {
    type Target = crate::W<C2SCR_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl core::ops::DerefMut for W {
    #[inline(always)]
    fn deref_mut(&mut self) -> &mut Self::Target {
        &mut self.0
    }
}
impl From<crate::W<C2SCR_SPEC>> for W {
    #[inline(always)]
    fn from(writer: crate::W<C2SCR_SPEC>) -> Self {
        W(writer)
    }
}
#[doc = "CH1C\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CH1C_A {
    #[doc = "0: No action"]
    NoAction = 0,
    #[doc = "1: Processor receive channel n status bit clear"]
    Clear = 1,
}
impl From<CH1C_A> for bool {
    #[inline(always)]
    fn from(variant: CH1C_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CH1C` reader - CH1C"]
pub type CH1C_R = crate::BitReader<CH1C_A>;
impl CH1C_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CH1C_A {
        match self.bits {
            false => CH1C_A::NoAction,
            true => CH1C_A::Clear,
        }
    }
    #[doc = "Checks if the value of the field is `NoAction`"]
    #[inline(always)]
    pub fn is_no_action(&self) -> bool {
        *self == CH1C_A::NoAction
    }
    #[doc = "Checks if the value of the field is `Clear`"]
    #[inline(always)]
    pub fn is_clear(&self) -> bool {
        *self == CH1C_A::Clear
    }
}
#[doc = "Field `CH1C` writer - CH1C"]
pub type CH1C_W<'a, const O: u8> = crate::BitWriter<'a, u32, C2SCR_SPEC, CH1C_A, O>;
impl<'a, const O: u8> CH1C_W<'a, O> {
    #[doc = "No action"]
    #[inline(always)]
    pub fn no_action(self) -> &'a mut W {
        self.variant(CH1C_A::NoAction)
    }
    #[doc = "Processor receive channel n status bit clear"]
    #[inline(always)]
    pub fn clear(self) -> &'a mut W {
        self.variant(CH1C_A::Clear)
    }
}
#[doc = "CH2C"]
pub use CH1C_A as CH2C_A;
#[doc = "CH3C"]
pub use CH1C_A as CH3C_A;
#[doc = "CH4C"]
pub use CH1C_A as CH4C_A;
#[doc = "CH5C"]
pub use CH1C_A as CH5C_A;
#[doc = "CH6C"]
pub use CH1C_A as CH6C_A;
#[doc = "Field `CH2C` reader - CH2C"]
pub use CH1C_R as CH2C_R;
#[doc = "Field `CH3C` reader - CH3C"]
pub use CH1C_R as CH3C_R;
#[doc = "Field `CH4C` reader - CH4C"]
pub use CH1C_R as CH4C_R;
#[doc = "Field `CH5C` reader - CH5C"]
pub use CH1C_R as CH5C_R;
#[doc = "Field `CH6C` reader - CH6C"]
pub use CH1C_R as CH6C_R;
#[doc = "Field `CH2C` writer - CH2C"]
pub use CH1C_W as CH2C_W;
#[doc = "Field `CH3C` writer - CH3C"]
pub use CH1C_W as CH3C_W;
#[doc = "Field `CH4C` writer - CH4C"]
pub use CH1C_W as CH4C_W;
#[doc = "Field `CH5C` writer - CH5C"]
pub use CH1C_W as CH5C_W;
#[doc = "Field `CH6C` writer - CH6C"]
pub use CH1C_W as CH6C_W;
#[doc = "CH1S\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum CH1S_A {
    #[doc = "0: No action"]
    NoAction = 0,
    #[doc = "1: Processor transmit channel n status bit set"]
    Set = 1,
}
impl From<CH1S_A> for bool {
    #[inline(always)]
    fn from(variant: CH1S_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `CH1S` reader - CH1S"]
pub type CH1S_R = crate::BitReader<CH1S_A>;
impl CH1S_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> CH1S_A {
        match self.bits {
            false => CH1S_A::NoAction,
            true => CH1S_A::Set,
        }
    }
    #[doc = "Checks if the value of the field is `NoAction`"]
    #[inline(always)]
    pub fn is_no_action(&self) -> bool {
        *self == CH1S_A::NoAction
    }
    #[doc = "Checks if the value of the field is `Set`"]
    #[inline(always)]
    pub fn is_set(&self) -> bool {
        *self == CH1S_A::Set
    }
}
#[doc = "Field `CH1S` writer - CH1S"]
pub type CH1S_W<'a, const O: u8> = crate::BitWriter<'a, u32, C2SCR_SPEC, CH1S_A, O>;
impl<'a, const O: u8> CH1S_W<'a, O> {
    #[doc = "No action"]
    #[inline(always)]
    pub fn no_action(self) -> &'a mut W {
        self.variant(CH1S_A::NoAction)
    }
    #[doc = "Processor transmit channel n status bit set"]
    #[inline(always)]
    pub fn set(self) -> &'a mut W {
        self.variant(CH1S_A::Set)
    }
}
#[doc = "CH2S"]
pub use CH1S_A as CH2S_A;
#[doc = "CH3S"]
pub use CH1S_A as CH3S_A;
#[doc = "CH4S"]
pub use CH1S_A as CH4S_A;
#[doc = "CH5S"]
pub use CH1S_A as CH5S_A;
#[doc = "CH6S"]
pub use CH1S_A as CH6S_A;
#[doc = "Field `CH2S` reader - CH2S"]
pub use CH1S_R as CH2S_R;
#[doc = "Field `CH3S` reader - CH3S"]
pub use CH1S_R as CH3S_R;
#[doc = "Field `CH4S` reader - CH4S"]
pub use CH1S_R as CH4S_R;
#[doc = "Field `CH5S` reader - CH5S"]
pub use CH1S_R as CH5S_R;
#[doc = "Field `CH6S` reader - CH6S"]
pub use CH1S_R as CH6S_R;
#[doc = "Field `CH2S` writer - CH2S"]
pub use CH1S_W as CH2S_W;
#[doc = "Field `CH3S` writer - CH3S"]
pub use CH1S_W as CH3S_W;
#[doc = "Field `CH4S` writer - CH4S"]
pub use CH1S_W as CH4S_W;
#[doc = "Field `CH5S` writer - CH5S"]
pub use CH1S_W as CH5S_W;
#[doc = "Field `CH6S` writer - CH6S"]
pub use CH1S_W as CH6S_W;
impl R {
    #[doc = "Bit 0 - CH1C"]
    #[inline(always)]
    pub fn ch1c(&self) -> CH1C_R {
        CH1C_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bit 1 - CH2C"]
    #[inline(always)]
    pub fn ch2c(&self) -> CH2C_R {
        CH2C_R::new(((self.bits >> 1) & 1) != 0)
    }
    #[doc = "Bit 2 - CH3C"]
    #[inline(always)]
    pub fn ch3c(&self) -> CH3C_R {
        CH3C_R::new(((self.bits >> 2) & 1) != 0)
    }
    #[doc = "Bit 3 - CH4C"]
    #[inline(always)]
    pub fn ch4c(&self) -> CH4C_R {
        CH4C_R::new(((self.bits >> 3) & 1) != 0)
    }
    #[doc = "Bit 4 - CH5C"]
    #[inline(always)]
    pub fn ch5c(&self) -> CH5C_R {
        CH5C_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - CH6C"]
    #[inline(always)]
    pub fn ch6c(&self) -> CH6C_R {
        CH6C_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bit 16 - CH1S"]
    #[inline(always)]
    pub fn ch1s(&self) -> CH1S_R {
        CH1S_R::new(((self.bits >> 16) & 1) != 0)
    }
    #[doc = "Bit 17 - CH2S"]
    #[inline(always)]
    pub fn ch2s(&self) -> CH2S_R {
        CH2S_R::new(((self.bits >> 17) & 1) != 0)
    }
    #[doc = "Bit 18 - CH3S"]
    #[inline(always)]
    pub fn ch3s(&self) -> CH3S_R {
        CH3S_R::new(((self.bits >> 18) & 1) != 0)
    }
    #[doc = "Bit 19 - CH4S"]
    #[inline(always)]
    pub fn ch4s(&self) -> CH4S_R {
        CH4S_R::new(((self.bits >> 19) & 1) != 0)
    }
    #[doc = "Bit 20 - CH5S"]
    #[inline(always)]
    pub fn ch5s(&self) -> CH5S_R {
        CH5S_R::new(((self.bits >> 20) & 1) != 0)
    }
    #[doc = "Bit 21 - CH6S"]
    #[inline(always)]
    pub fn ch6s(&self) -> CH6S_R {
        CH6S_R::new(((self.bits >> 21) & 1) != 0)
    }
}
impl W {
    #[doc = "Bit 0 - CH1C"]
    #[inline(always)]
    pub fn ch1c(&mut self) -> CH1C_W<0> {
        CH1C_W::new(self)
    }
    #[doc = "Bit 1 - CH2C"]
    #[inline(always)]
    pub fn ch2c(&mut self) -> CH2C_W<1> {
        CH2C_W::new(self)
    }
    #[doc = "Bit 2 - CH3C"]
    #[inline(always)]
    pub fn ch3c(&mut self) -> CH3C_W<2> {
        CH3C_W::new(self)
    }
    #[doc = "Bit 3 - CH4C"]
    #[inline(always)]
    pub fn ch4c(&mut self) -> CH4C_W<3> {
        CH4C_W::new(self)
    }
    #[doc = "Bit 4 - CH5C"]
    #[inline(always)]
    pub fn ch5c(&mut self) -> CH5C_W<4> {
        CH5C_W::new(self)
    }
    #[doc = "Bit 5 - CH6C"]
    #[inline(always)]
    pub fn ch6c(&mut self) -> CH6C_W<5> {
        CH6C_W::new(self)
    }
    #[doc = "Bit 16 - CH1S"]
    #[inline(always)]
    pub fn ch1s(&mut self) -> CH1S_W<16> {
        CH1S_W::new(self)
    }
    #[doc = "Bit 17 - CH2S"]
    #[inline(always)]
    pub fn ch2s(&mut self) -> CH2S_W<17> {
        CH2S_W::new(self)
    }
    #[doc = "Bit 18 - CH3S"]
    #[inline(always)]
    pub fn ch3s(&mut self) -> CH3S_W<18> {
        CH3S_W::new(self)
    }
    #[doc = "Bit 19 - CH4S"]
    #[inline(always)]
    pub fn ch4s(&mut self) -> CH4S_W<19> {
        CH4S_W::new(self)
    }
    #[doc = "Bit 20 - CH5S"]
    #[inline(always)]
    pub fn ch5s(&mut self) -> CH5S_W<20> {
        CH5S_W::new(self)
    }
    #[doc = "Bit 21 - CH6S"]
    #[inline(always)]
    pub fn ch6s(&mut self) -> CH6S_W<21> {
        CH6S_W::new(self)
    }
    #[doc = "Writes raw bits to the register."]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.0.bits(bits);
        self
    }
}
#[doc = "Reading this register will always return 0x0000 0000.\n\nThis register you can [`read`](crate::generic::Reg::read), [`write_with_zero`](crate::generic::Reg::write_with_zero), [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`modify`](crate::generic::Reg::modify). See [API](https://docs.rs/svd2rust/#read--modify--write-api).\n\nFor information about available fields see [c2scr](index.html) module"]
pub struct C2SCR_SPEC;
impl crate::RegisterSpec for C2SCR_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [c2scr::R](R) reader structure"]
impl crate::Readable for C2SCR_SPEC {
    type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [c2scr::W](W) writer structure"]
impl crate::Writable for C2SCR_SPEC {
    type Writer = W;
}
#[doc = "`reset()` method sets C2SCR to value 0"]
impl crate::Resettable for C2SCR_SPEC {
    #[inline(always)]
    fn reset_value() -> Self::Ux {
        0
    }
}