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
#[doc = "Register `SIE_STATUS` reader"]
pub type R = crate::R<SIE_STATUS_SPEC>;
#[doc = "Register `SIE_STATUS` writer"]
pub type W = crate::W<SIE_STATUS_SPEC>;
#[doc = "Field `VBUS_DETECTED` reader - Device: VBUS Detected"]
pub type VBUS_DETECTED_R = crate::BitReader;
#[doc = "Field `LINE_STATE` reader - USB bus line state"]
pub type LINE_STATE_R = crate::FieldReader<LINE_STATE_A>;
#[doc = "USB bus line state  

Value on reset: 0"]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[repr(u8)]
pub enum LINE_STATE_A {
    #[doc = "0: SE0"]
    SE0 = 0,
    #[doc = "1: J"]
    J = 1,
    #[doc = "2: K"]
    K = 2,
    #[doc = "3: SE1"]
    SE1 = 3,
}
impl From<LINE_STATE_A> for u8 {
    #[inline(always)]
    fn from(variant: LINE_STATE_A) -> Self {
        variant as _
    }
}
impl crate::FieldSpec for LINE_STATE_A {
    type Ux = u8;
}
impl LINE_STATE_R {
    #[doc = "Get enumerated values variant"]
    #[inline(always)]
    pub const fn variant(&self) -> LINE_STATE_A {
        match self.bits {
            0 => LINE_STATE_A::SE0,
            1 => LINE_STATE_A::J,
            2 => LINE_STATE_A::K,
            3 => LINE_STATE_A::SE1,
            _ => unreachable!(),
        }
    }
    #[doc = "SE0"]
    #[inline(always)]
    pub fn is_se0(&self) -> bool {
        *self == LINE_STATE_A::SE0
    }
    #[doc = "J"]
    #[inline(always)]
    pub fn is_j(&self) -> bool {
        *self == LINE_STATE_A::J
    }
    #[doc = "K"]
    #[inline(always)]
    pub fn is_k(&self) -> bool {
        *self == LINE_STATE_A::K
    }
    #[doc = "SE1"]
    #[inline(always)]
    pub fn is_se1(&self) -> bool {
        *self == LINE_STATE_A::SE1
    }
}
#[doc = "Field `SUSPENDED` reader - Bus in suspended state. Valid for device and host. Host and device will go into suspend if neither Keep Alive / SOF frames are enabled."]
pub type SUSPENDED_R = crate::BitReader;
#[doc = "Field `SUSPENDED` writer - Bus in suspended state. Valid for device and host. Host and device will go into suspend if neither Keep Alive / SOF frames are enabled."]
pub type SUSPENDED_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `SPEED` reader - Host: device speed. Disconnected = 00, LS = 01, FS = 10"]
pub type SPEED_R = crate::FieldReader;
#[doc = "Field `SPEED` writer - Host: device speed. Disconnected = 00, LS = 01, FS = 10"]
pub type SPEED_W<'a, REG> = crate::FieldWriter<'a, REG, 2>;
#[doc = "Field `VBUS_OVER_CURR` reader - VBUS over current detected"]
pub type VBUS_OVER_CURR_R = crate::BitReader;
#[doc = "Field `RESUME` reader - Host: Device has initiated a remote resume. Device: host has initiated a resume."]
pub type RESUME_R = crate::BitReader;
#[doc = "Field `RESUME` writer - Host: Device has initiated a remote resume. Device: host has initiated a resume."]
pub type RESUME_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `CONNECTED` reader - Device: connected"]
pub type CONNECTED_R = crate::BitReader;
#[doc = "Field `CONNECTED` writer - Device: connected"]
pub type CONNECTED_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `SETUP_REC` reader - Device: Setup packet received"]
pub type SETUP_REC_R = crate::BitReader;
#[doc = "Field `SETUP_REC` writer - Device: Setup packet received"]
pub type SETUP_REC_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `TRANS_COMPLETE` reader - Transaction complete.  

 Raised by device if:  

 * An IN or OUT packet is sent with the `LAST_BUFF` bit set in the buffer control register  

 Raised by host if:  

 * A setup packet is sent when no data in or data out transaction follows * An IN packet is received and the `LAST_BUFF` bit is set in the buffer control register * An IN packet is received with zero length * An OUT packet is sent and the `LAST_BUFF` bit is set"]
pub type TRANS_COMPLETE_R = crate::BitReader;
#[doc = "Field `TRANS_COMPLETE` writer - Transaction complete.  

 Raised by device if:  

 * An IN or OUT packet is sent with the `LAST_BUFF` bit set in the buffer control register  

 Raised by host if:  

 * A setup packet is sent when no data in or data out transaction follows * An IN packet is received and the `LAST_BUFF` bit is set in the buffer control register * An IN packet is received with zero length * An OUT packet is sent and the `LAST_BUFF` bit is set"]
pub type TRANS_COMPLETE_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `BUS_RESET` reader - Device: bus reset received"]
pub type BUS_RESET_R = crate::BitReader;
#[doc = "Field `BUS_RESET` writer - Device: bus reset received"]
pub type BUS_RESET_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `CRC_ERROR` reader - CRC Error. Raised by the Serial RX engine."]
pub type CRC_ERROR_R = crate::BitReader;
#[doc = "Field `CRC_ERROR` writer - CRC Error. Raised by the Serial RX engine."]
pub type CRC_ERROR_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `BIT_STUFF_ERROR` reader - Bit Stuff Error. Raised by the Serial RX engine."]
pub type BIT_STUFF_ERROR_R = crate::BitReader;
#[doc = "Field `BIT_STUFF_ERROR` writer - Bit Stuff Error. Raised by the Serial RX engine."]
pub type BIT_STUFF_ERROR_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `RX_OVERFLOW` reader - RX overflow is raised by the Serial RX engine if the incoming data is too fast."]
pub type RX_OVERFLOW_R = crate::BitReader;
#[doc = "Field `RX_OVERFLOW` writer - RX overflow is raised by the Serial RX engine if the incoming data is too fast."]
pub type RX_OVERFLOW_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `RX_TIMEOUT` reader - RX timeout is raised by both the host and device if an ACK is not received in the maximum time specified by the USB spec."]
pub type RX_TIMEOUT_R = crate::BitReader;
#[doc = "Field `RX_TIMEOUT` writer - RX timeout is raised by both the host and device if an ACK is not received in the maximum time specified by the USB spec."]
pub type RX_TIMEOUT_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `NAK_REC` reader - Host: NAK received"]
pub type NAK_REC_R = crate::BitReader;
#[doc = "Field `NAK_REC` writer - Host: NAK received"]
pub type NAK_REC_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `STALL_REC` reader - Host: STALL received"]
pub type STALL_REC_R = crate::BitReader;
#[doc = "Field `STALL_REC` writer - Host: STALL received"]
pub type STALL_REC_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `ACK_REC` reader - ACK received. Raised by both host and device."]
pub type ACK_REC_R = crate::BitReader;
#[doc = "Field `ACK_REC` writer - ACK received. Raised by both host and device."]
pub type ACK_REC_W<'a, REG> = crate::BitWriter1C<'a, REG>;
#[doc = "Field `DATA_SEQ_ERROR` reader - Data Sequence Error.  

 The device can raise a sequence error in the following conditions:  

 * A SETUP packet is received followed by a DATA1 packet (data phase should always be DATA0) * An OUT packet is received from the host but doesn't match the data pid in the buffer control register read from DPSRAM  

 The host can raise a data sequence error in the following conditions:  

 * An IN packet from the device has the wrong data PID"]
pub type DATA_SEQ_ERROR_R = crate::BitReader;
#[doc = "Field `DATA_SEQ_ERROR` writer - Data Sequence Error.  

 The device can raise a sequence error in the following conditions:  

 * A SETUP packet is received followed by a DATA1 packet (data phase should always be DATA0) * An OUT packet is received from the host but doesn't match the data pid in the buffer control register read from DPSRAM  

 The host can raise a data sequence error in the following conditions:  

 * An IN packet from the device has the wrong data PID"]
pub type DATA_SEQ_ERROR_W<'a, REG> = crate::BitWriter1C<'a, REG>;
impl R {
    #[doc = "Bit 0 - Device: VBUS Detected"]
    #[inline(always)]
    pub fn vbus_detected(&self) -> VBUS_DETECTED_R {
        VBUS_DETECTED_R::new((self.bits & 1) != 0)
    }
    #[doc = "Bits 2:3 - USB bus line state"]
    #[inline(always)]
    pub fn line_state(&self) -> LINE_STATE_R {
        LINE_STATE_R::new(((self.bits >> 2) & 3) as u8)
    }
    #[doc = "Bit 4 - Bus in suspended state. Valid for device and host. Host and device will go into suspend if neither Keep Alive / SOF frames are enabled."]
    #[inline(always)]
    pub fn suspended(&self) -> SUSPENDED_R {
        SUSPENDED_R::new(((self.bits >> 4) & 1) != 0)
    }
    #[doc = "Bits 8:9 - Host: device speed. Disconnected = 00, LS = 01, FS = 10"]
    #[inline(always)]
    pub fn speed(&self) -> SPEED_R {
        SPEED_R::new(((self.bits >> 8) & 3) as u8)
    }
    #[doc = "Bit 10 - VBUS over current detected"]
    #[inline(always)]
    pub fn vbus_over_curr(&self) -> VBUS_OVER_CURR_R {
        VBUS_OVER_CURR_R::new(((self.bits >> 10) & 1) != 0)
    }
    #[doc = "Bit 11 - Host: Device has initiated a remote resume. Device: host has initiated a resume."]
    #[inline(always)]
    pub fn resume(&self) -> RESUME_R {
        RESUME_R::new(((self.bits >> 11) & 1) != 0)
    }
    #[doc = "Bit 16 - Device: connected"]
    #[inline(always)]
    pub fn connected(&self) -> CONNECTED_R {
        CONNECTED_R::new(((self.bits >> 16) & 1) != 0)
    }
    #[doc = "Bit 17 - Device: Setup packet received"]
    #[inline(always)]
    pub fn setup_rec(&self) -> SETUP_REC_R {
        SETUP_REC_R::new(((self.bits >> 17) & 1) != 0)
    }
    #[doc = "Bit 18 - Transaction complete.  

 Raised by device if:  

 * An IN or OUT packet is sent with the `LAST_BUFF` bit set in the buffer control register  

 Raised by host if:  

 * A setup packet is sent when no data in or data out transaction follows * An IN packet is received and the `LAST_BUFF` bit is set in the buffer control register * An IN packet is received with zero length * An OUT packet is sent and the `LAST_BUFF` bit is set"]
    #[inline(always)]
    pub fn trans_complete(&self) -> TRANS_COMPLETE_R {
        TRANS_COMPLETE_R::new(((self.bits >> 18) & 1) != 0)
    }
    #[doc = "Bit 19 - Device: bus reset received"]
    #[inline(always)]
    pub fn bus_reset(&self) -> BUS_RESET_R {
        BUS_RESET_R::new(((self.bits >> 19) & 1) != 0)
    }
    #[doc = "Bit 24 - CRC Error. Raised by the Serial RX engine."]
    #[inline(always)]
    pub fn crc_error(&self) -> CRC_ERROR_R {
        CRC_ERROR_R::new(((self.bits >> 24) & 1) != 0)
    }
    #[doc = "Bit 25 - Bit Stuff Error. Raised by the Serial RX engine."]
    #[inline(always)]
    pub fn bit_stuff_error(&self) -> BIT_STUFF_ERROR_R {
        BIT_STUFF_ERROR_R::new(((self.bits >> 25) & 1) != 0)
    }
    #[doc = "Bit 26 - RX overflow is raised by the Serial RX engine if the incoming data is too fast."]
    #[inline(always)]
    pub fn rx_overflow(&self) -> RX_OVERFLOW_R {
        RX_OVERFLOW_R::new(((self.bits >> 26) & 1) != 0)
    }
    #[doc = "Bit 27 - RX timeout is raised by both the host and device if an ACK is not received in the maximum time specified by the USB spec."]
    #[inline(always)]
    pub fn rx_timeout(&self) -> RX_TIMEOUT_R {
        RX_TIMEOUT_R::new(((self.bits >> 27) & 1) != 0)
    }
    #[doc = "Bit 28 - Host: NAK received"]
    #[inline(always)]
    pub fn nak_rec(&self) -> NAK_REC_R {
        NAK_REC_R::new(((self.bits >> 28) & 1) != 0)
    }
    #[doc = "Bit 29 - Host: STALL received"]
    #[inline(always)]
    pub fn stall_rec(&self) -> STALL_REC_R {
        STALL_REC_R::new(((self.bits >> 29) & 1) != 0)
    }
    #[doc = "Bit 30 - ACK received. Raised by both host and device."]
    #[inline(always)]
    pub fn ack_rec(&self) -> ACK_REC_R {
        ACK_REC_R::new(((self.bits >> 30) & 1) != 0)
    }
    #[doc = "Bit 31 - Data Sequence Error.  

 The device can raise a sequence error in the following conditions:  

 * A SETUP packet is received followed by a DATA1 packet (data phase should always be DATA0) * An OUT packet is received from the host but doesn't match the data pid in the buffer control register read from DPSRAM  

 The host can raise a data sequence error in the following conditions:  

 * An IN packet from the device has the wrong data PID"]
    #[inline(always)]
    pub fn data_seq_error(&self) -> DATA_SEQ_ERROR_R {
        DATA_SEQ_ERROR_R::new(((self.bits >> 31) & 1) != 0)
    }
}
impl W {
    #[doc = "Bit 4 - Bus in suspended state. Valid for device and host. Host and device will go into suspend if neither Keep Alive / SOF frames are enabled."]
    #[inline(always)]
    #[must_use]
    pub fn suspended(&mut self) -> SUSPENDED_W<SIE_STATUS_SPEC> {
        SUSPENDED_W::new(self, 4)
    }
    #[doc = "Bits 8:9 - Host: device speed. Disconnected = 00, LS = 01, FS = 10"]
    #[inline(always)]
    #[must_use]
    pub fn speed(&mut self) -> SPEED_W<SIE_STATUS_SPEC> {
        SPEED_W::new(self, 8)
    }
    #[doc = "Bit 11 - Host: Device has initiated a remote resume. Device: host has initiated a resume."]
    #[inline(always)]
    #[must_use]
    pub fn resume(&mut self) -> RESUME_W<SIE_STATUS_SPEC> {
        RESUME_W::new(self, 11)
    }
    #[doc = "Bit 16 - Device: connected"]
    #[inline(always)]
    #[must_use]
    pub fn connected(&mut self) -> CONNECTED_W<SIE_STATUS_SPEC> {
        CONNECTED_W::new(self, 16)
    }
    #[doc = "Bit 17 - Device: Setup packet received"]
    #[inline(always)]
    #[must_use]
    pub fn setup_rec(&mut self) -> SETUP_REC_W<SIE_STATUS_SPEC> {
        SETUP_REC_W::new(self, 17)
    }
    #[doc = "Bit 18 - Transaction complete.  

 Raised by device if:  

 * An IN or OUT packet is sent with the `LAST_BUFF` bit set in the buffer control register  

 Raised by host if:  

 * A setup packet is sent when no data in or data out transaction follows * An IN packet is received and the `LAST_BUFF` bit is set in the buffer control register * An IN packet is received with zero length * An OUT packet is sent and the `LAST_BUFF` bit is set"]
    #[inline(always)]
    #[must_use]
    pub fn trans_complete(&mut self) -> TRANS_COMPLETE_W<SIE_STATUS_SPEC> {
        TRANS_COMPLETE_W::new(self, 18)
    }
    #[doc = "Bit 19 - Device: bus reset received"]
    #[inline(always)]
    #[must_use]
    pub fn bus_reset(&mut self) -> BUS_RESET_W<SIE_STATUS_SPEC> {
        BUS_RESET_W::new(self, 19)
    }
    #[doc = "Bit 24 - CRC Error. Raised by the Serial RX engine."]
    #[inline(always)]
    #[must_use]
    pub fn crc_error(&mut self) -> CRC_ERROR_W<SIE_STATUS_SPEC> {
        CRC_ERROR_W::new(self, 24)
    }
    #[doc = "Bit 25 - Bit Stuff Error. Raised by the Serial RX engine."]
    #[inline(always)]
    #[must_use]
    pub fn bit_stuff_error(&mut self) -> BIT_STUFF_ERROR_W<SIE_STATUS_SPEC> {
        BIT_STUFF_ERROR_W::new(self, 25)
    }
    #[doc = "Bit 26 - RX overflow is raised by the Serial RX engine if the incoming data is too fast."]
    #[inline(always)]
    #[must_use]
    pub fn rx_overflow(&mut self) -> RX_OVERFLOW_W<SIE_STATUS_SPEC> {
        RX_OVERFLOW_W::new(self, 26)
    }
    #[doc = "Bit 27 - RX timeout is raised by both the host and device if an ACK is not received in the maximum time specified by the USB spec."]
    #[inline(always)]
    #[must_use]
    pub fn rx_timeout(&mut self) -> RX_TIMEOUT_W<SIE_STATUS_SPEC> {
        RX_TIMEOUT_W::new(self, 27)
    }
    #[doc = "Bit 28 - Host: NAK received"]
    #[inline(always)]
    #[must_use]
    pub fn nak_rec(&mut self) -> NAK_REC_W<SIE_STATUS_SPEC> {
        NAK_REC_W::new(self, 28)
    }
    #[doc = "Bit 29 - Host: STALL received"]
    #[inline(always)]
    #[must_use]
    pub fn stall_rec(&mut self) -> STALL_REC_W<SIE_STATUS_SPEC> {
        STALL_REC_W::new(self, 29)
    }
    #[doc = "Bit 30 - ACK received. Raised by both host and device."]
    #[inline(always)]
    #[must_use]
    pub fn ack_rec(&mut self) -> ACK_REC_W<SIE_STATUS_SPEC> {
        ACK_REC_W::new(self, 30)
    }
    #[doc = "Bit 31 - Data Sequence Error.  

 The device can raise a sequence error in the following conditions:  

 * A SETUP packet is received followed by a DATA1 packet (data phase should always be DATA0) * An OUT packet is received from the host but doesn't match the data pid in the buffer control register read from DPSRAM  

 The host can raise a data sequence error in the following conditions:  

 * An IN packet from the device has the wrong data PID"]
    #[inline(always)]
    #[must_use]
    pub fn data_seq_error(&mut self) -> DATA_SEQ_ERROR_W<SIE_STATUS_SPEC> {
        DATA_SEQ_ERROR_W::new(self, 31)
    }
    #[doc = r" Writes raw bits to the register."]
    #[doc = r""]
    #[doc = r" # Safety"]
    #[doc = r""]
    #[doc = r" Passing incorrect value can cause undefined behaviour. See reference manual"]
    #[inline(always)]
    pub unsafe fn bits(&mut self, bits: u32) -> &mut Self {
        self.bits = bits;
        self
    }
}
#[doc = "SIE status register  

You can [`read`](crate::generic::Reg::read) this register and get [`sie_status::R`](R).  You can [`reset`](crate::generic::Reg::reset), [`write`](crate::generic::Reg::write), [`write_with_zero`](crate::generic::Reg::write_with_zero) this register using [`sie_status::W`](W). You can also [`modify`](crate::generic::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api)."]
pub struct SIE_STATUS_SPEC;
impl crate::RegisterSpec for SIE_STATUS_SPEC {
    type Ux = u32;
}
#[doc = "`read()` method returns [`sie_status::R`](R) reader structure"]
impl crate::Readable for SIE_STATUS_SPEC {}
#[doc = "`write(|w| ..)` method takes [`sie_status::W`](W) writer structure"]
impl crate::Writable for SIE_STATUS_SPEC {
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0xff0f_0b10;
}
#[doc = "`reset()` method sets SIE_STATUS to value 0"]
impl crate::Resettable for SIE_STATUS_SPEC {
    const RESET_VALUE: u32 = 0;
}