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
use core::{
convert::{TryFrom, TryInto as _},
task::Poll,
};
use embedded_hal::timer;
use embedded_time::duration::Nanoseconds;
use crate::traits::SetStepMode;
use super::{Driver, Error};
pub struct SetStepModeFuture<'r, T: SetStepMode, Timer> {
step_mode: T::StepMode,
driver: &'r mut Driver<T>,
timer: &'r mut Timer,
state: State,
}
impl<'r, T, Timer> SetStepModeFuture<'r, T, Timer>
where
T: SetStepMode,
Timer: timer::CountDown,
Timer::Time: TryFrom<Nanoseconds>,
{
pub(super) fn new(
step_mode: T::StepMode,
driver: &'r mut Driver<T>,
timer: &'r mut Timer,
) -> Self {
Self {
step_mode,
driver,
timer,
state: State::Initial,
}
}
pub fn poll(
&mut self,
) -> Poll<
Result<
(),
Error<
T::Error,
<Timer::Time as TryFrom<Nanoseconds>>::Error,
Timer::Error,
>,
>,
> {
match self.state {
State::Initial => {
self.driver
.inner
.apply_mode_config(self.step_mode)
.map_err(|err| Error::Pin(err))?;
let ticks: Timer::Time = T::SETUP_TIME
.try_into()
.map_err(|err| Error::TimeConversion(err))?;
self.timer
.try_start(ticks)
.map_err(|err| Error::Timer(err))?;
self.state = State::ApplyingConfig;
Poll::Pending
}
State::ApplyingConfig => match self.timer.try_wait() {
Ok(()) => {
self.driver
.inner
.enable_driver()
.map_err(|err| Error::Pin(err))?;
let ticks: Timer::Time = T::HOLD_TIME
.try_into()
.map_err(|err| Error::TimeConversion(err))?;
self.timer
.try_start(ticks)
.map_err(|err| Error::Timer(err))?;
self.state = State::EnablingDriver;
Poll::Ready(Ok(()))
}
Err(nb::Error::Other(err)) => {
self.state = State::Finished;
Poll::Ready(Err(Error::Timer(err)))
}
Err(nb::Error::WouldBlock) => Poll::Pending,
},
State::EnablingDriver => match self.timer.try_wait() {
Ok(()) => {
self.state = State::Finished;
Poll::Ready(Ok(()))
}
Err(nb::Error::Other(err)) => {
self.state = State::Finished;
Poll::Ready(Err(Error::Timer(err)))
}
Err(nb::Error::WouldBlock) => Poll::Pending,
},
State::Finished => Poll::Ready(Ok(())),
}
}
pub fn wait(
&mut self,
) -> Result<
(),
Error<
T::Error,
<Timer::Time as TryFrom<Nanoseconds>>::Error,
Timer::Error,
>,
> {
loop {
if let Poll::Ready(result) = self.poll() {
return result;
}
}
}
}
enum State {
Initial,
ApplyingConfig,
EnablingDriver,
Finished,
}