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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
#[doc = "Register `UCBxCTLW1` reader"]
pub struct R(crate::R<UCBXCTLW1_SPEC>);
impl core::ops::Deref for R {
    type Target = crate::R<UCBXCTLW1_SPEC>;
    #[inline(always)]
    fn deref(&self) -> &Self::Target {
        &self.0
    }
}
impl From<crate::R<UCBXCTLW1_SPEC>> for R {
    #[inline(always)]
    fn from(reader: crate::R<UCBXCTLW1_SPEC>) -> Self {
        R(reader)
    }
}
#[doc = "Register `UCBxCTLW1` writer"]
pub struct W(crate::W<UCBXCTLW1_SPEC>);
impl core::ops::Deref for W {
    type Target = crate::W<UCBXCTLW1_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<UCBXCTLW1_SPEC>> for W {
    #[inline(always)]
    fn from(writer: crate::W<UCBXCTLW1_SPEC>) -> Self {
        W(writer)
    }
}
#[doc = "Deglitch time\n\nValue on reset: 3"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum UCGLIT_A {
    #[doc = "0: 50 ns"]
    UCGLIT_0 = 0,
    #[doc = "1: 25 ns"]
    UCGLIT_1 = 1,
    #[doc = "2: 12.5 ns"]
    UCGLIT_2 = 2,
    #[doc = "3: 6.25 ns"]
    UCGLIT_3 = 3,
}
impl From<UCGLIT_A> for u8 {
    #[inline(always)]
    fn from(variant: UCGLIT_A) -> Self {
        variant as _
    }
}
#[doc = "Field `UCGLIT` reader - Deglitch time"]
pub type UCGLIT_R = crate::FieldReader<u8, UCGLIT_A>;
impl UCGLIT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> UCGLIT_A {
        match self.bits {
            0 => UCGLIT_A::UCGLIT_0,
            1 => UCGLIT_A::UCGLIT_1,
            2 => UCGLIT_A::UCGLIT_2,
            3 => UCGLIT_A::UCGLIT_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `UCGLIT_0`"]
    #[inline(always)]
    pub fn is_ucglit_0(&self) -> bool {
        *self == UCGLIT_A::UCGLIT_0
    }
    #[doc = "Checks if the value of the field is `UCGLIT_1`"]
    #[inline(always)]
    pub fn is_ucglit_1(&self) -> bool {
        *self == UCGLIT_A::UCGLIT_1
    }
    #[doc = "Checks if the value of the field is `UCGLIT_2`"]
    #[inline(always)]
    pub fn is_ucglit_2(&self) -> bool {
        *self == UCGLIT_A::UCGLIT_2
    }
    #[doc = "Checks if the value of the field is `UCGLIT_3`"]
    #[inline(always)]
    pub fn is_ucglit_3(&self) -> bool {
        *self == UCGLIT_A::UCGLIT_3
    }
}
#[doc = "Field `UCGLIT` writer - Deglitch time"]
pub type UCGLIT_W<'a, const O: u8> =
    crate::FieldWriterSafe<'a, u16, UCBXCTLW1_SPEC, u8, UCGLIT_A, 2, O>;
impl<'a, const O: u8> UCGLIT_W<'a, O> {
    #[doc = "50 ns"]
    #[inline(always)]
    pub fn ucglit_0(self) -> &'a mut W {
        self.variant(UCGLIT_A::UCGLIT_0)
    }
    #[doc = "25 ns"]
    #[inline(always)]
    pub fn ucglit_1(self) -> &'a mut W {
        self.variant(UCGLIT_A::UCGLIT_1)
    }
    #[doc = "12.5 ns"]
    #[inline(always)]
    pub fn ucglit_2(self) -> &'a mut W {
        self.variant(UCGLIT_A::UCGLIT_2)
    }
    #[doc = "6.25 ns"]
    #[inline(always)]
    pub fn ucglit_3(self) -> &'a mut W {
        self.variant(UCGLIT_A::UCGLIT_3)
    }
}
#[doc = "Automatic STOP condition generation\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum UCASTP_A {
    #[doc = "0: No automatic STOP generation. The STOP condition is generated after the user sets the UCTXSTP bit. The value in UCBxTBCNT is a don't care."]
    UCASTP_0 = 0,
    #[doc = "1: UCBCNTIFG is set with the byte counter reaches the threshold defined in UCBxTBCNT"]
    UCASTP_1 = 1,
    #[doc = "2: A STOP condition is generated automatically after the byte counter value reached UCBxTBCNT. UCBCNTIFG is set with the byte counter reaching the threshold"]
    UCASTP_2 = 2,
}
impl From<UCASTP_A> for u8 {
    #[inline(always)]
    fn from(variant: UCASTP_A) -> Self {
        variant as _
    }
}
#[doc = "Field `UCASTP` reader - Automatic STOP condition generation"]
pub type UCASTP_R = crate::FieldReader<u8, UCASTP_A>;
impl UCASTP_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> Option<UCASTP_A> {
        match self.bits {
            0 => Some(UCASTP_A::UCASTP_0),
            1 => Some(UCASTP_A::UCASTP_1),
            2 => Some(UCASTP_A::UCASTP_2),
            _ => None,
        }
    }
    #[doc = "Checks if the value of the field is `UCASTP_0`"]
    #[inline(always)]
    pub fn is_ucastp_0(&self) -> bool {
        *self == UCASTP_A::UCASTP_0
    }
    #[doc = "Checks if the value of the field is `UCASTP_1`"]
    #[inline(always)]
    pub fn is_ucastp_1(&self) -> bool {
        *self == UCASTP_A::UCASTP_1
    }
    #[doc = "Checks if the value of the field is `UCASTP_2`"]
    #[inline(always)]
    pub fn is_ucastp_2(&self) -> bool {
        *self == UCASTP_A::UCASTP_2
    }
}
#[doc = "Field `UCASTP` writer - Automatic STOP condition generation"]
pub type UCASTP_W<'a, const O: u8> =
    crate::FieldWriter<'a, u16, UCBXCTLW1_SPEC, u8, UCASTP_A, 2, O>;
impl<'a, const O: u8> UCASTP_W<'a, O> {
    #[doc = "No automatic STOP generation. The STOP condition is generated after the user sets the UCTXSTP bit. The value in UCBxTBCNT is a don't care."]
    #[inline(always)]
    pub fn ucastp_0(self) -> &'a mut W {
        self.variant(UCASTP_A::UCASTP_0)
    }
    #[doc = "UCBCNTIFG is set with the byte counter reaches the threshold defined in UCBxTBCNT"]
    #[inline(always)]
    pub fn ucastp_1(self) -> &'a mut W {
        self.variant(UCASTP_A::UCASTP_1)
    }
    #[doc = "A STOP condition is generated automatically after the byte counter value reached UCBxTBCNT. UCBCNTIFG is set with the byte counter reaching the threshold"]
    #[inline(always)]
    pub fn ucastp_2(self) -> &'a mut W {
        self.variant(UCASTP_A::UCASTP_2)
    }
}
#[doc = "SW or HW ACK control\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum UCSWACK_A {
    #[doc = "0: The address acknowledge of the slave is controlled by the eUSCI_B module"]
    UCSWACK_0 = 0,
    #[doc = "1: The user needs to trigger the sending of the address ACK by issuing UCTXACK"]
    UCSWACK_1 = 1,
}
impl From<UCSWACK_A> for bool {
    #[inline(always)]
    fn from(variant: UCSWACK_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `UCSWACK` reader - SW or HW ACK control"]
pub type UCSWACK_R = crate::BitReader<UCSWACK_A>;
impl UCSWACK_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> UCSWACK_A {
        match self.bits {
            false => UCSWACK_A::UCSWACK_0,
            true => UCSWACK_A::UCSWACK_1,
        }
    }
    #[doc = "Checks if the value of the field is `UCSWACK_0`"]
    #[inline(always)]
    pub fn is_ucswack_0(&self) -> bool {
        *self == UCSWACK_A::UCSWACK_0
    }
    #[doc = "Checks if the value of the field is `UCSWACK_1`"]
    #[inline(always)]
    pub fn is_ucswack_1(&self) -> bool {
        *self == UCSWACK_A::UCSWACK_1
    }
}
#[doc = "Field `UCSWACK` writer - SW or HW ACK control"]
pub type UCSWACK_W<'a, const O: u8> = crate::BitWriter<'a, u16, UCBXCTLW1_SPEC, UCSWACK_A, O>;
impl<'a, const O: u8> UCSWACK_W<'a, O> {
    #[doc = "The address acknowledge of the slave is controlled by the eUSCI_B module"]
    #[inline(always)]
    pub fn ucswack_0(self) -> &'a mut W {
        self.variant(UCSWACK_A::UCSWACK_0)
    }
    #[doc = "The user needs to trigger the sending of the address ACK by issuing UCTXACK"]
    #[inline(always)]
    pub fn ucswack_1(self) -> &'a mut W {
        self.variant(UCSWACK_A::UCSWACK_1)
    }
}
#[doc = "ACK all master bytes\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum UCSTPNACK_A {
    #[doc = "0: Send a non-acknowledge before the STOP condition as a master receiver (conform to I2C standard)"]
    UCSTPNACK_0 = 0,
    #[doc = "1: All bytes are acknowledged by the eUSCI_B when configured as master receiver"]
    UCSTPNACK_1 = 1,
}
impl From<UCSTPNACK_A> for bool {
    #[inline(always)]
    fn from(variant: UCSTPNACK_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `UCSTPNACK` reader - ACK all master bytes"]
pub type UCSTPNACK_R = crate::BitReader<UCSTPNACK_A>;
impl UCSTPNACK_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> UCSTPNACK_A {
        match self.bits {
            false => UCSTPNACK_A::UCSTPNACK_0,
            true => UCSTPNACK_A::UCSTPNACK_1,
        }
    }
    #[doc = "Checks if the value of the field is `UCSTPNACK_0`"]
    #[inline(always)]
    pub fn is_ucstpnack_0(&self) -> bool {
        *self == UCSTPNACK_A::UCSTPNACK_0
    }
    #[doc = "Checks if the value of the field is `UCSTPNACK_1`"]
    #[inline(always)]
    pub fn is_ucstpnack_1(&self) -> bool {
        *self == UCSTPNACK_A::UCSTPNACK_1
    }
}
#[doc = "Field `UCSTPNACK` writer - ACK all master bytes"]
pub type UCSTPNACK_W<'a, const O: u8> = crate::BitWriter<'a, u16, UCBXCTLW1_SPEC, UCSTPNACK_A, O>;
impl<'a, const O: u8> UCSTPNACK_W<'a, O> {
    #[doc = "Send a non-acknowledge before the STOP condition as a master receiver (conform to I2C standard)"]
    #[inline(always)]
    pub fn ucstpnack_0(self) -> &'a mut W {
        self.variant(UCSTPNACK_A::UCSTPNACK_0)
    }
    #[doc = "All bytes are acknowledged by the eUSCI_B when configured as master receiver"]
    #[inline(always)]
    pub fn ucstpnack_1(self) -> &'a mut W {
        self.variant(UCSTPNACK_A::UCSTPNACK_1)
    }
}
#[doc = "Clock low timeout select\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
#[repr(u8)]
pub enum UCCLTO_A {
    #[doc = "0: Disable clock low timeout counter"]
    UCCLTO_0 = 0,
    #[doc = "1: 135 000 SYSCLK cycles (approximately 28 ms)"]
    UCCLTO_1 = 1,
    #[doc = "2: 150 000 SYSCLK cycles (approximately 31 ms)"]
    UCCLTO_2 = 2,
    #[doc = "3: 165 000 SYSCLK cycles (approximately 34 ms)"]
    UCCLTO_3 = 3,
}
impl From<UCCLTO_A> for u8 {
    #[inline(always)]
    fn from(variant: UCCLTO_A) -> Self {
        variant as _
    }
}
#[doc = "Field `UCCLTO` reader - Clock low timeout select"]
pub type UCCLTO_R = crate::FieldReader<u8, UCCLTO_A>;
impl UCCLTO_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> UCCLTO_A {
        match self.bits {
            0 => UCCLTO_A::UCCLTO_0,
            1 => UCCLTO_A::UCCLTO_1,
            2 => UCCLTO_A::UCCLTO_2,
            3 => UCCLTO_A::UCCLTO_3,
            _ => unreachable!(),
        }
    }
    #[doc = "Checks if the value of the field is `UCCLTO_0`"]
    #[inline(always)]
    pub fn is_ucclto_0(&self) -> bool {
        *self == UCCLTO_A::UCCLTO_0
    }
    #[doc = "Checks if the value of the field is `UCCLTO_1`"]
    #[inline(always)]
    pub fn is_ucclto_1(&self) -> bool {
        *self == UCCLTO_A::UCCLTO_1
    }
    #[doc = "Checks if the value of the field is `UCCLTO_2`"]
    #[inline(always)]
    pub fn is_ucclto_2(&self) -> bool {
        *self == UCCLTO_A::UCCLTO_2
    }
    #[doc = "Checks if the value of the field is `UCCLTO_3`"]
    #[inline(always)]
    pub fn is_ucclto_3(&self) -> bool {
        *self == UCCLTO_A::UCCLTO_3
    }
}
#[doc = "Field `UCCLTO` writer - Clock low timeout select"]
pub type UCCLTO_W<'a, const O: u8> =
    crate::FieldWriterSafe<'a, u16, UCBXCTLW1_SPEC, u8, UCCLTO_A, 2, O>;
impl<'a, const O: u8> UCCLTO_W<'a, O> {
    #[doc = "Disable clock low timeout counter"]
    #[inline(always)]
    pub fn ucclto_0(self) -> &'a mut W {
        self.variant(UCCLTO_A::UCCLTO_0)
    }
    #[doc = "135 000 SYSCLK cycles (approximately 28 ms)"]
    #[inline(always)]
    pub fn ucclto_1(self) -> &'a mut W {
        self.variant(UCCLTO_A::UCCLTO_1)
    }
    #[doc = "150 000 SYSCLK cycles (approximately 31 ms)"]
    #[inline(always)]
    pub fn ucclto_2(self) -> &'a mut W {
        self.variant(UCCLTO_A::UCCLTO_2)
    }
    #[doc = "165 000 SYSCLK cycles (approximately 34 ms)"]
    #[inline(always)]
    pub fn ucclto_3(self) -> &'a mut W {
        self.variant(UCCLTO_A::UCCLTO_3)
    }
}
#[doc = "Early UCTXIFG0\n\nValue on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq)]
pub enum UCETXINT_A {
    #[doc = "0: UCTXIFGx is set after an address match with UCxI2COAx and the direction bit indicating slave transmit"]
    UCETXINT_0 = 0,
    #[doc = "1: UCTXIFG0 is set for each START condition"]
    UCETXINT_1 = 1,
}
impl From<UCETXINT_A> for bool {
    #[inline(always)]
    fn from(variant: UCETXINT_A) -> Self {
        variant as u8 != 0
    }
}
#[doc = "Field `UCETXINT` reader - Early UCTXIFG0"]
pub type UCETXINT_R = crate::BitReader<UCETXINT_A>;
impl UCETXINT_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub fn variant(&self) -> UCETXINT_A {
        match self.bits {
            false => UCETXINT_A::UCETXINT_0,
            true => UCETXINT_A::UCETXINT_1,
        }
    }
    #[doc = "Checks if the value of the field is `UCETXINT_0`"]
    #[inline(always)]
    pub fn is_ucetxint_0(&self) -> bool {
        *self == UCETXINT_A::UCETXINT_0
    }
    #[doc = "Checks if the value of the field is `UCETXINT_1`"]
    #[inline(always)]
    pub fn is_ucetxint_1(&self) -> bool {
        *self == UCETXINT_A::UCETXINT_1
    }
}
#[doc = "Field `UCETXINT` writer - Early UCTXIFG0"]
pub type UCETXINT_W<'a, const O: u8> = crate::BitWriter<'a, u16, UCBXCTLW1_SPEC, UCETXINT_A, O>;
impl<'a, const O: u8> UCETXINT_W<'a, O> {
    #[doc = "UCTXIFGx is set after an address match with UCxI2COAx and the direction bit indicating slave transmit"]
    #[inline(always)]
    pub fn ucetxint_0(self) -> &'a mut W {
        self.variant(UCETXINT_A::UCETXINT_0)
    }
    #[doc = "UCTXIFG0 is set for each START condition"]
    #[inline(always)]
    pub fn ucetxint_1(self) -> &'a mut W {
        self.variant(UCETXINT_A::UCETXINT_1)
    }
}
impl R {
    #[doc = "Bits 0:1 - Deglitch time"]
    #[inline(always)]
    pub fn ucglit(&self) -> UCGLIT_R {
        UCGLIT_R::new((self.bits & 3) as u8)
    }
    #[doc = "Bits 2:3 - Automatic STOP condition generation"]
    #[inline(always)]
    pub fn ucastp(&self) -> UCASTP_R {
        UCASTP_R::new(((self.bits >> 2) & 3) as u8)
    }
    #[doc = "Bit 4 - SW or HW ACK control"]
    #[inline(always)]
    pub fn ucswack(&self) -> UCSWACK_R {
        UCSWACK_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bit 5 - ACK all master bytes"]
    #[inline(always)]
    pub fn ucstpnack(&self) -> UCSTPNACK_R {
        UCSTPNACK_R::new(((self.bits >> 5) & 1) != 0)
    }
    #[doc = "Bits 6:7 - Clock low timeout select"]
    #[inline(always)]
    pub fn ucclto(&self) -> UCCLTO_R {
        UCCLTO_R::new(((self.bits >> 6) & 3) as u8)
    }
    #[doc = "Bit 8 - Early UCTXIFG0"]
    #[inline(always)]
    pub fn ucetxint(&self) -> UCETXINT_R {
        UCETXINT_R::new(((self.bits >> 8) & 1) != 0)
    }
}
impl W {
    #[doc = "Bits 0:1 - Deglitch time"]
    #[inline(always)]
    pub fn ucglit(&mut self) -> UCGLIT_W<0> {
        UCGLIT_W::new(self)
    }
    #[doc = "Bits 2:3 - Automatic STOP condition generation"]
    #[inline(always)]
    pub fn ucastp(&mut self) -> UCASTP_W<2> {
        UCASTP_W::new(self)
    }
    #[doc = "Bit 4 - SW or HW ACK control"]
    #[inline(always)]
    pub fn ucswack(&mut self) -> UCSWACK_W<4> {
        UCSWACK_W::new(self)
    }
    #[doc = "Bit 5 - ACK all master bytes"]
    #[inline(always)]
    pub fn ucstpnack(&mut self) -> UCSTPNACK_W<5> {
        UCSTPNACK_W::new(self)
    }
    #[doc = "Bits 6:7 - Clock low timeout select"]
    #[inline(always)]
    pub fn ucclto(&mut self) -> UCCLTO_W<6> {
        UCCLTO_W::new(self)
    }
    #[doc = "Bit 8 - Early UCTXIFG0"]
    #[inline(always)]
    pub fn ucetxint(&mut self) -> UCETXINT_W<8> {
        UCETXINT_W::new(self)
    }
    #[doc = "Writes raw bits to the register."]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u16) -> &mut Self {
        self.0.bits(bits);
        self
    }
}
#[doc = "eUSCI_Bx Control Word Register 1\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 [ucbx_ctlw1](index.html) module"]
pub struct UCBXCTLW1_SPEC;
impl crate::RegisterSpec for UCBXCTLW1_SPEC {
    type Ux = u16;
}
#[doc = "`read()` method returns [ucbx_ctlw1::R](R) reader structure"]
impl crate::Readable for UCBXCTLW1_SPEC {
    type Reader = R;
}
#[doc = "`write(|w| ..)` method takes [ucbx_ctlw1::W](W) writer structure"]
impl crate::Writable for UCBXCTLW1_SPEC {
    type Writer = W;
}
#[doc = "`reset()` method sets UCBxCTLW1 to value 0x03"]
impl crate::Resettable for UCBXCTLW1_SPEC {
    #[inline(always)]
    fn reset_value() -> Self::Ux {
        0x03
    }
}