stm32f1_staging/stm32f102/i2c1/
cr2.rs

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
///Register `CR2` reader
pub type R = crate::R<CR2rs>;
///Register `CR2` writer
pub type W = crate::W<CR2rs>;
///Field `FREQ` reader - Peripheral clock frequency
pub type FREQ_R = crate::FieldReader;
///Field `FREQ` writer - Peripheral clock frequency
pub type FREQ_W<'a, REG> = crate::FieldWriter<'a, REG, 6>;
/**Error interrupt enable

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ITERREN {
    ///0: Error interrupt disabled
    Disabled = 0,
    ///1: Error interrupt enabled
    Enabled = 1,
}
impl From<ITERREN> for bool {
    #[inline(always)]
    fn from(variant: ITERREN) -> Self {
        variant as u8 != 0
    }
}
///Field `ITERREN` reader - Error interrupt enable
pub type ITERREN_R = crate::BitReader<ITERREN>;
impl ITERREN_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> ITERREN {
        match self.bits {
            false => ITERREN::Disabled,
            true => ITERREN::Enabled,
        }
    }
    ///Error interrupt disabled
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == ITERREN::Disabled
    }
    ///Error interrupt enabled
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == ITERREN::Enabled
    }
}
///Field `ITERREN` writer - Error interrupt enable
pub type ITERREN_W<'a, REG> = crate::BitWriter<'a, REG, ITERREN>;
impl<'a, REG> ITERREN_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    ///Error interrupt disabled
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(ITERREN::Disabled)
    }
    ///Error interrupt enabled
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(ITERREN::Enabled)
    }
}
/**Event interrupt enable

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ITEVTEN {
    ///0: Event interrupt disabled
    Disabled = 0,
    ///1: Event interrupt enabled
    Enabled = 1,
}
impl From<ITEVTEN> for bool {
    #[inline(always)]
    fn from(variant: ITEVTEN) -> Self {
        variant as u8 != 0
    }
}
///Field `ITEVTEN` reader - Event interrupt enable
pub type ITEVTEN_R = crate::BitReader<ITEVTEN>;
impl ITEVTEN_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> ITEVTEN {
        match self.bits {
            false => ITEVTEN::Disabled,
            true => ITEVTEN::Enabled,
        }
    }
    ///Event interrupt disabled
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == ITEVTEN::Disabled
    }
    ///Event interrupt enabled
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == ITEVTEN::Enabled
    }
}
///Field `ITEVTEN` writer - Event interrupt enable
pub type ITEVTEN_W<'a, REG> = crate::BitWriter<'a, REG, ITEVTEN>;
impl<'a, REG> ITEVTEN_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    ///Event interrupt disabled
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(ITEVTEN::Disabled)
    }
    ///Event interrupt enabled
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(ITEVTEN::Enabled)
    }
}
/**Buffer interrupt enable

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum ITBUFEN {
    ///0: TxE=1 or RxNE=1 does not generate any interrupt
    Disabled = 0,
    ///1: TxE=1 or RxNE=1 generates Event interrupt
    Enabled = 1,
}
impl From<ITBUFEN> for bool {
    #[inline(always)]
    fn from(variant: ITBUFEN) -> Self {
        variant as u8 != 0
    }
}
///Field `ITBUFEN` reader - Buffer interrupt enable
pub type ITBUFEN_R = crate::BitReader<ITBUFEN>;
impl ITBUFEN_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> ITBUFEN {
        match self.bits {
            false => ITBUFEN::Disabled,
            true => ITBUFEN::Enabled,
        }
    }
    ///TxE=1 or RxNE=1 does not generate any interrupt
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == ITBUFEN::Disabled
    }
    ///TxE=1 or RxNE=1 generates Event interrupt
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == ITBUFEN::Enabled
    }
}
///Field `ITBUFEN` writer - Buffer interrupt enable
pub type ITBUFEN_W<'a, REG> = crate::BitWriter<'a, REG, ITBUFEN>;
impl<'a, REG> ITBUFEN_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    ///TxE=1 or RxNE=1 does not generate any interrupt
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(ITBUFEN::Disabled)
    }
    ///TxE=1 or RxNE=1 generates Event interrupt
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(ITBUFEN::Enabled)
    }
}
/**DMA requests enable

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DMAEN {
    ///0: DMA requests disabled
    Disabled = 0,
    ///1: DMA request enabled when TxE=1 or RxNE=1
    Enabled = 1,
}
impl From<DMAEN> for bool {
    #[inline(always)]
    fn from(variant: DMAEN) -> Self {
        variant as u8 != 0
    }
}
///Field `DMAEN` reader - DMA requests enable
pub type DMAEN_R = crate::BitReader<DMAEN>;
impl DMAEN_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> DMAEN {
        match self.bits {
            false => DMAEN::Disabled,
            true => DMAEN::Enabled,
        }
    }
    ///DMA requests disabled
    #[inline(always)]
    pub fn is_disabled(&self) -> bool {
        *self == DMAEN::Disabled
    }
    ///DMA request enabled when TxE=1 or RxNE=1
    #[inline(always)]
    pub fn is_enabled(&self) -> bool {
        *self == DMAEN::Enabled
    }
}
///Field `DMAEN` writer - DMA requests enable
pub type DMAEN_W<'a, REG> = crate::BitWriter<'a, REG, DMAEN>;
impl<'a, REG> DMAEN_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    ///DMA requests disabled
    #[inline(always)]
    pub fn disabled(self) -> &'a mut crate::W<REG> {
        self.variant(DMAEN::Disabled)
    }
    ///DMA request enabled when TxE=1 or RxNE=1
    #[inline(always)]
    pub fn enabled(self) -> &'a mut crate::W<REG> {
        self.variant(DMAEN::Enabled)
    }
}
/**DMA last transfer

Value on reset: 0*/
#[cfg_attr(feature = "defmt", derive(defmt::Format))]
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum LAST {
    ///0: Next DMA EOT is not the last transfer
    NotLast = 0,
    ///1: Next DMA EOT is the last transfer
    Last = 1,
}
impl From<LAST> for bool {
    #[inline(always)]
    fn from(variant: LAST) -> Self {
        variant as u8 != 0
    }
}
///Field `LAST` reader - DMA last transfer
pub type LAST_R = crate::BitReader<LAST>;
impl LAST_R {
    ///Get enumerated values variant
    #[inline(always)]
    pub const fn variant(&self) -> LAST {
        match self.bits {
            false => LAST::NotLast,
            true => LAST::Last,
        }
    }
    ///Next DMA EOT is not the last transfer
    #[inline(always)]
    pub fn is_not_last(&self) -> bool {
        *self == LAST::NotLast
    }
    ///Next DMA EOT is the last transfer
    #[inline(always)]
    pub fn is_last(&self) -> bool {
        *self == LAST::Last
    }
}
///Field `LAST` writer - DMA last transfer
pub type LAST_W<'a, REG> = crate::BitWriter<'a, REG, LAST>;
impl<'a, REG> LAST_W<'a, REG>
where
    REG: crate::Writable + crate::RegisterSpec,
{
    ///Next DMA EOT is not the last transfer
    #[inline(always)]
    pub fn not_last(self) -> &'a mut crate::W<REG> {
        self.variant(LAST::NotLast)
    }
    ///Next DMA EOT is the last transfer
    #[inline(always)]
    pub fn last(self) -> &'a mut crate::W<REG> {
        self.variant(LAST::Last)
    }
}
impl R {
    ///Bits 0:5 - Peripheral clock frequency
    #[inline(always)]
    pub fn freq(&self) -> FREQ_R {
        FREQ_R::new((self.bits & 0x3f) as u8)
    }
    ///Bit 8 - Error interrupt enable
    #[inline(always)]
    pub fn iterren(&self) -> ITERREN_R {
        ITERREN_R::new(((self.bits >> 8) & 1) != 0)
    }
    ///Bit 9 - Event interrupt enable
    #[inline(always)]
    pub fn itevten(&self) -> ITEVTEN_R {
        ITEVTEN_R::new(((self.bits >> 9) & 1) != 0)
    }
    ///Bit 10 - Buffer interrupt enable
    #[inline(always)]
    pub fn itbufen(&self) -> ITBUFEN_R {
        ITBUFEN_R::new(((self.bits >> 10) & 1) != 0)
    }
    ///Bit 11 - DMA requests enable
    #[inline(always)]
    pub fn dmaen(&self) -> DMAEN_R {
        DMAEN_R::new(((self.bits >> 11) & 1) != 0)
    }
    ///Bit 12 - DMA last transfer
    #[inline(always)]
    pub fn last(&self) -> LAST_R {
        LAST_R::new(((self.bits >> 12) & 1) != 0)
    }
}
impl core::fmt::Debug for R {
    fn fmt(&self, f: &mut core::fmt::Formatter) -> core::fmt::Result {
        f.debug_struct("CR2")
            .field("last", &self.last())
            .field("dmaen", &self.dmaen())
            .field("itbufen", &self.itbufen())
            .field("itevten", &self.itevten())
            .field("iterren", &self.iterren())
            .field("freq", &self.freq())
            .finish()
    }
}
impl W {
    ///Bits 0:5 - Peripheral clock frequency
    #[inline(always)]
    #[must_use]
    pub fn freq(&mut self) -> FREQ_W<CR2rs> {
        FREQ_W::new(self, 0)
    }
    ///Bit 8 - Error interrupt enable
    #[inline(always)]
    #[must_use]
    pub fn iterren(&mut self) -> ITERREN_W<CR2rs> {
        ITERREN_W::new(self, 8)
    }
    ///Bit 9 - Event interrupt enable
    #[inline(always)]
    #[must_use]
    pub fn itevten(&mut self) -> ITEVTEN_W<CR2rs> {
        ITEVTEN_W::new(self, 9)
    }
    ///Bit 10 - Buffer interrupt enable
    #[inline(always)]
    #[must_use]
    pub fn itbufen(&mut self) -> ITBUFEN_W<CR2rs> {
        ITBUFEN_W::new(self, 10)
    }
    ///Bit 11 - DMA requests enable
    #[inline(always)]
    #[must_use]
    pub fn dmaen(&mut self) -> DMAEN_W<CR2rs> {
        DMAEN_W::new(self, 11)
    }
    ///Bit 12 - DMA last transfer
    #[inline(always)]
    #[must_use]
    pub fn last(&mut self) -> LAST_W<CR2rs> {
        LAST_W::new(self, 12)
    }
}
/**Control register 2

You can [`read`](crate::Reg::read) this register and get [`cr2::R`](R). You can [`reset`](crate::Reg::reset), [`write`](crate::Reg::write), [`write_with_zero`](crate::Reg::write_with_zero) this register using [`cr2::W`](W). You can also [`modify`](crate::Reg::modify) this register. See [API](https://docs.rs/svd2rust/#read--modify--write-api).

See register [structure](https://stm32-rs.github.io/stm32-rs/STM32F102.html#I2C1:CR2)*/
pub struct CR2rs;
impl crate::RegisterSpec for CR2rs {
    type Ux = u32;
}
///`read()` method returns [`cr2::R`](R) reader structure
impl crate::Readable for CR2rs {}
///`write(|w| ..)` method takes [`cr2::W`](W) writer structure
impl crate::Writable for CR2rs {
    type Safety = crate::Unsafe;
    const ZERO_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
    const ONE_TO_MODIFY_FIELDS_BITMAP: u32 = 0;
}
///`reset()` method sets CR2 to value 0
impl crate::Resettable for CR2rs {
    const RESET_VALUE: u32 = 0;
}