forked from rust-embedded/embedded-hal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdigital.rs
208 lines (179 loc) · 5.25 KB
/
digital.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
//! Digital I/O
extern crate embedded_hal as hal_v03;
/// Single digital push-pull output pin
pub trait OutputPin {
/// Drives the pin low
///
/// *NOTE* the actual electrical state of the pin may not actually be low, e.g. due to external
/// electrical sources
fn set_low(&mut self);
/// Drives the pin high
///
/// *NOTE* the actual electrical state of the pin may not actually be high, e.g. due to external
/// electrical sources
fn set_high(&mut self);
}
/// Implementation of v0.3 fallible OutputPin for v0.2 traits
impl hal_v03::digital::OutputPin for OutputPin
{
type Error = ();
/// Toggle pin output
fn set_low(&mut self) -> Result<(), Self::Error> {
Ok(self.set_low())
}
fn set_high(&mut self) -> Result<(), Self::Error> {
Ok(self.set_high())
}
}
/// Implementation of v0.2 OutputPin trait for v0.3 fallible output pins
impl OutputPin for hal_v03::digital::OutputPin<Error=()> {
fn set_low(&mut self) {
self.set_low().unwrap()
}
fn set_high(&mut self) {
self.set_high().unwrap()
}
}
/// Push-pull output pin that can read its output state
///
/// *This trait is available if embedded-hal is built with the `"unproven"` feature.*
#[cfg(feature = "unproven")]
pub trait StatefulOutputPin {
/// Is the pin in drive high mode?
///
/// *NOTE* this does *not* read the electrical state of the pin
fn is_set_high(&self) -> bool;
/// Is the pin in drive low mode?
///
/// *NOTE* this does *not* read the electrical state of the pin
fn is_set_low(&self) -> bool;
}
/// Implementation of v0.3 fallible StatefulOutputPin for v0.2 traits
#[cfg(feature = "not-sure-how")]
impl hal_v03::digital::StatefulOutputPin for StatefulOutputPin
{
type Error = ();
/// Toggle pin output
fn is_set_low(&self) -> Result<(), Self::Error> {
Ok(self.is_set_low())
}
fn is_set_high(&self) -> Result<(), Self::Error> {
Ok(self.is_set_high())
}
}
/// Implementation of v0.2 StatefulOutputPin trait for v0.3 fallible pins
#[cfg(feature = "unproven")]
impl StatefulOutputPin for hal_v03::digital::StatefulOutputPin<Error=()> {
fn is_set_low(&self) -> bool {
self.is_set_low().unwrap()
}
fn is_set_high(&self) -> bool {
self.is_set_high().unwrap()
}
}
/// Output pin that can be toggled
///
/// *This trait is available if embedded-hal is built with the `"unproven"` feature.*
///
/// See [toggleable](toggleable) to use a software implementation if
/// both [OutputPin](trait.OutputPin.html) and
/// [StatefulOutputPin](trait.StatefulOutputPin.html) are
/// implemented. Otherwise, implement this using hardware mechanisms.
#[cfg(feature = "unproven")]
pub trait ToggleableOutputPin {
/// Toggle pin output.
fn toggle(&mut self);
}
/// If you can read **and** write the output state, a pin is
/// toggleable by software.
///
/// ```
/// use embedded_hal::digital::{OutputPin, StatefulOutputPin, ToggleableOutputPin};
/// use embedded_hal::digital::toggleable;
///
/// /// A virtual output pin that exists purely in software
/// struct MyPin {
/// state: bool
/// }
///
/// impl OutputPin for MyPin {
/// fn set_low(&mut self) {
/// self.state = false;
/// }
/// fn set_high(&mut self) {
/// self.state = true;
/// }
/// }
///
/// impl StatefulOutputPin for MyPin {
/// fn is_set_low(&self) -> bool {
/// !self.state
/// }
/// fn is_set_high(&self) -> bool {
/// self.state
/// }
/// }
///
/// /// Opt-in to the software implementation.
/// impl toggleable::Default for MyPin {}
///
/// let mut pin = MyPin { state: false };
/// pin.toggle();
/// assert!(pin.is_set_high());
/// pin.toggle();
/// assert!(pin.is_set_low());
/// ```
#[cfg(feature = "unproven")]
pub mod toggleable {
use super::{OutputPin, StatefulOutputPin, ToggleableOutputPin};
/// Software-driven `toggle()` implementation.
///
/// *This trait is available if embedded-hal is built with the `"unproven"` feature.*
pub trait Default: OutputPin + StatefulOutputPin {}
impl<P> ToggleableOutputPin for P
where
P: Default,
{
/// Toggle pin output
fn toggle(&mut self) {
if self.is_set_low() {
self.set_high();
} else {
self.set_low();
}
}
}
}
/// Single digital input pin
///
/// *This trait is available if embedded-hal is built with the `"unproven"` feature.*
#[cfg(feature = "unproven")]
pub trait InputPin {
/// Is the input pin high?
fn is_high(&self) -> bool;
/// Is the input pin low?
fn is_low(&self) -> bool;
}
/// Implementation of v0.3 fallible InputPin for v0.2 traits
#[cfg(feature = "unproven")]
impl hal_v03::digital::InputPin for InputPin
{
type Error = ();
/// Toggle pin output
fn is_low(&self) -> Result<bool, Self::Error> {
Ok(self.is_low())
}
fn is_high(&self) -> Result<bool, Self::Error> {
Ok(self.is_high())
}
}
/// Implementation of v0.2 InputPin trait for v0.3 fallible pins
#[cfg(feature = "unproven")]
impl InputPin for hal_v03::digital::InputPin<Error=()> {
fn is_low(&self) -> bool {
self.is_low().unwrap()
}
fn is_high(&self) -> bool {
self.is_high().unwrap()
}
}