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
use super::*;
/// Const assert hack
struct Assert<const L: u8, const R: u8>;
impl<const L: u8, const R: u8> Assert<L, R> {
pub const LESS: u8 = R - L - 1;
}
impl<MODE, HL, const P: char, const N: u8> Pin<MODE, HL, P, N> {
fn set_alternate<const A: u8>(&mut self) {
#[allow(path_statements, clippy::no_effect)]
{
Assert::<A, 16>::LESS;
}
let offset = 2 * { N };
unsafe {
if N < 8 {
let offset2 = 4 * { N };
(*Gpio::<P>::ptr()).afrl.modify(|r, w| {
w.bits((r.bits() & !(0b1111 << offset2)) | ((A as u32) << offset2))
});
} else {
let offset2 = 4 * { N - 8 };
(*Gpio::<P>::ptr()).afrh.modify(|r, w| {
w.bits((r.bits() & !(0b1111 << offset2)) | ((A as u32) << offset2))
});
}
(*Gpio::<P>::ptr())
.moder
.modify(|r, w| w.bits((r.bits() & !(0b11 << offset)) | (0b10 << offset)));
}
}
/// Configures the pin to operate alternate mode
pub fn into_alternate<const A: u8>(
mut self,
_moder: &mut MODER<P>,
_otyper: &mut OTYPER<P>,
_afr: &mut Afr<HL, P>,
) -> Pin<Alternate<PushPull, A>, HL, P, N> {
self.set_alternate::<A>();
Pin::new()
}
/// Configures the pin to operate alternate mode (alias for `into_alternate`)
pub fn into_alternate_push_pull<const A: u8>(
self,
moder: &mut MODER<P>,
otyper: &mut OTYPER<P>,
afr: &mut Afr<HL, P>,
) -> Pin<Alternate<PushPull, A>, HL, P, N> {
self.into_alternate::<A>(moder, otyper, afr)
}
/// Configures the pin to operate in alternate open drain mode
#[allow(path_statements)]
pub fn into_alternate_open_drain<const A: u8>(
self,
moder: &mut MODER<P>,
otyper: &mut OTYPER<P>,
afr: &mut Afr<HL, P>,
) -> Pin<Alternate<OpenDrain, A>, HL, P, N> {
self.into_alternate::<A>(moder, otyper, afr)
.set_open_drain()
}
/// Configures the pin to operate as a floating input pin
pub fn into_floating_input(
mut self,
_moder: &mut MODER<P>,
_pupdr: &mut PUPDR<P>,
) -> Pin<Input<Floating>, HL, P, N> {
self.mode::<Input<Floating>>();
Pin::new()
}
/// Configures the pin to operate as a pulled down input pin
pub fn into_pull_down_input(
mut self,
_moder: &mut MODER<P>,
_pupdr: &mut PUPDR<P>,
) -> Pin<Input<PullDown>, HL, P, N> {
self.mode::<Input<PullDown>>();
Pin::new()
}
/// Configures the pin to operate as a pulled up input pin
pub fn into_pull_up_input(
mut self,
_moder: &mut MODER<P>,
_pupdr: &mut PUPDR<P>,
) -> Pin<Input<PullUp>, HL, P, N> {
self.mode::<Input<PullUp>>();
Pin::new()
}
/// Configures the pin to operate as an open drain output pin
/// Initial state will be low.
pub fn into_open_drain_output(
mut self,
_moder: &mut MODER<P>,
_otyper: &mut OTYPER<P>,
) -> Pin<Output<OpenDrain>, HL, P, N> {
self.mode::<Output<OpenDrain>>();
Pin::new()
}
/// Configures the pin to operate as an open-drain output pin.
/// `initial_state` specifies whether the pin should be initially high or low.
pub fn into_open_drain_output_in_state(
mut self,
_moder: &mut MODER<P>,
_otyper: &mut OTYPER<P>,
initial_state: PinState,
) -> Pin<Output<OpenDrain>, HL, P, N> {
self._set_state(initial_state);
self.mode::<Output<OpenDrain>>();
Pin::new()
}
/// Configures the pin to operate as an push pull output pin
/// Initial state will be low.
pub fn into_push_pull_output(
mut self,
_moder: &mut MODER<P>,
_otyper: &mut OTYPER<P>,
) -> Pin<Output<PushPull>, HL, P, N> {
self._set_low();
self.mode::<Output<PushPull>>();
Pin::new()
}
/// Configures the pin to operate as an push-pull output pin.
/// `initial_state` specifies whether the pin should be initially high or low.
pub fn into_push_pull_output_in_state(
mut self,
_moder: &mut MODER<P>,
_otyper: &mut OTYPER<P>,
initial_state: PinState,
) -> Pin<Output<PushPull>, HL, P, N> {
self._set_state(initial_state);
self.mode::<Output<PushPull>>();
Pin::new()
}
/// Configures the pin to operate as an analog input pin
pub fn into_analog(
mut self,
_moder: &mut MODER<P>,
_pupdr: &mut PUPDR<P>,
) -> Pin<Analog, HL, P, N> {
self.mode::<Analog>();
Pin::new()
}
/// Puts `self` into mode `M`.
///
/// This violates the type state constraints from `MODE`, so callers must
/// ensure they use this properly.
#[inline(always)]
fn mode<M: PinMode>(&mut self) {
let offset = 2 * N;
unsafe {
(*Gpio::<P>::ptr())
.pupdr
.modify(|r, w| w.bits((r.bits() & !(0b11 << offset)) | (M::PUPDR << offset)));
if let Some(otyper) = M::OTYPER {
(*Gpio::<P>::ptr())
.otyper
.modify(|r, w| w.bits(r.bits() & !(0b1 << N) | (otyper << N)));
}
(*Gpio::<P>::ptr())
.moder
.modify(|r, w| w.bits((r.bits() & !(0b11 << offset)) | (M::MODER << offset)));
}
}
}
impl<MODE, HL, const P: char, const N: u8> Pin<MODE, HL, P, N>
where
MODE: PinMode,
{
fn with_mode<M, F, R>(&mut self, f: F) -> R
where
M: PinMode,
F: FnOnce(&mut Pin<M, HL, P, N>) -> R,
{
self.mode::<M>();
// This will reset the pin back to the original mode when dropped.
// (so either when `with_mode` returns or when `f` unwinds)
let _resetti = ResetMode { pin: self };
let mut witness = Pin::new();
f(&mut witness)
}
/// Temporarily configures this pin as a floating input.
///
/// The closure `f` is called with the reconfigured pin. After it returns,
/// the pin will be configured back.
pub fn with_floating_input<R>(
&mut self,
f: impl FnOnce(&mut Pin<Input<Floating>, HL, P, N>) -> R,
) -> R {
self.with_mode(f)
}
/// Temporarily configures this pin as a pulled-down input.
///
/// The closure `f` is called with the reconfigured pin. After it returns,
/// the pin will be configured back.
pub fn with_pull_down_input<R>(
&mut self,
f: impl FnOnce(&mut Pin<Input<PullDown>, HL, P, N>) -> R,
) -> R {
self.with_mode(f)
}
/// Temporarily configures this pin as a pulled-up input.
///
/// The closure `f` is called with the reconfigured pin. After it returns,
/// the pin will be configured back.
pub fn with_pull_up_input<R>(
&mut self,
f: impl FnOnce(&mut Pin<Input<PullUp>, HL, P, N>) -> R,
) -> R {
self.with_mode(f)
}
/// Temporarily configures this pin as an analog pin.
///
/// The closure `f` is called with the reconfigured pin. After it returns,
/// the pin will be configured back.
pub fn with_analog<R>(&mut self, f: impl FnOnce(&mut Pin<Analog, HL, P, N>) -> R) -> R {
self.with_mode(f)
}
/// Temporarily configures this pin as an open drain output.
///
/// The closure `f` is called with the reconfigured pin. After it returns,
/// the pin will be configured back.
/// The value of the pin after conversion is undefined. If you
/// want to control it, use `with_open_drain_output_in_state`
pub fn with_open_drain_output<R>(
&mut self,
f: impl FnOnce(&mut Pin<Output<OpenDrain>, HL, P, N>) -> R,
) -> R {
self.with_mode(f)
}
/// Temporarily configures this pin as an open drain output .
///
/// The closure `f` is called with the reconfigured pin. After it returns,
/// the pin will be configured back.
/// Note that the new state is set slightly before conversion
/// happens. This can cause a short output glitch if switching
/// between output modes
pub fn with_open_drain_output_in_state<R>(
&mut self,
state: PinState,
f: impl FnOnce(&mut Pin<Output<OpenDrain>, HL, P, N>) -> R,
) -> R {
self._set_state(state);
self.with_mode(f)
}
/// Temporarily configures this pin as a push-pull output.
///
/// The closure `f` is called with the reconfigured pin. After it returns,
/// the pin will be configured back.
/// The value of the pin after conversion is undefined. If you
/// want to control it, use `with_push_pull_output_in_state`
pub fn with_push_pull_output<R>(
&mut self,
f: impl FnOnce(&mut Pin<Output<PushPull>, HL, P, N>) -> R,
) -> R {
self.with_mode(f)
}
/// Temporarily configures this pin as a push-pull output.
///
/// The closure `f` is called with the reconfigured pin. After it returns,
/// the pin will be configured back.
/// Note that the new state is set slightly before conversion
/// happens. This can cause a short output glitch if switching
/// between output modes
pub fn with_push_pull_output_in_state<R>(
&mut self,
state: PinState,
f: impl FnOnce(&mut Pin<Output<PushPull>, HL, P, N>) -> R,
) -> R {
self._set_state(state);
self.with_mode(f)
}
}
struct ResetMode<'a, ORIG: PinMode, HL, const P: char, const N: u8> {
pin: &'a mut Pin<ORIG, HL, P, N>,
}
impl<'a, ORIG: PinMode, HL, const P: char, const N: u8> Drop for ResetMode<'a, ORIG, HL, P, N> {
fn drop(&mut self) {
self.pin.mode::<ORIG>();
}
}
/// Marker trait for valid pin modes (type state).
///
/// It can not be implemented by outside types.
pub trait PinMode: crate::Sealed {
// These constants are used to implement the pin configuration code.
// They are not part of public API.
#[doc(hidden)]
const PUPDR: u32;
#[doc(hidden)]
const MODER: u32;
#[doc(hidden)]
const OTYPER: Option<u32> = None;
}
impl crate::Sealed for Input<Floating> {}
impl PinMode for Input<Floating> {
const PUPDR: u32 = 0b00;
const MODER: u32 = 0b00;
}
impl crate::Sealed for Input<PullDown> {}
impl PinMode for Input<PullDown> {
const PUPDR: u32 = 0b10;
const MODER: u32 = 0b00;
}
impl crate::Sealed for Input<PullUp> {}
impl PinMode for Input<PullUp> {
const PUPDR: u32 = 0b01;
const MODER: u32 = 0b00;
}
impl crate::Sealed for Analog {}
impl PinMode for Analog {
const PUPDR: u32 = 0b00;
const MODER: u32 = 0b11;
}
impl crate::Sealed for Output<OpenDrain> {}
impl PinMode for Output<OpenDrain> {
const PUPDR: u32 = 0b00;
const MODER: u32 = 0b01;
const OTYPER: Option<u32> = Some(0b1);
}
impl crate::Sealed for Output<PushPull> {}
impl PinMode for Output<PushPull> {
const PUPDR: u32 = 0b00;
const MODER: u32 = 0b01;
const OTYPER: Option<u32> = Some(0b0);
}