File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
9
9
10
10
### Added
11
11
12
+ - ` AnyPin ` alias for ` ErasedPin `
12
13
- ` new ` constructors for ` Input ` , ` Output ` , ` Analog `
13
14
- Add ` f469disc-lcd-test ` with color/BER test pattern LCD output [ #789 ]
14
15
- Port ` dsihost ` implementation from stm32h7xx-hal [ #786 ]
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ pub use convert::PinMode;
63
63
mod partially_erased;
64
64
pub use partially_erased:: { PEPin , PartiallyErasedPin } ;
65
65
mod erased;
66
- pub use erased:: { EPin , ErasedPin } ;
66
+ pub use erased:: { AnyPin , ErasedPin } ;
67
67
mod exti;
68
68
pub use exti:: ExtiPin ;
69
69
mod dynamic;
Original file line number Diff line number Diff line change 1
1
use super :: * ;
2
2
3
- pub use ErasedPin as EPin ;
3
+ pub use ErasedPin as AnyPin ;
4
4
5
5
/// Fully erased pin
6
6
///
You can’t perform that action at this time.
0 commit comments