File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
2121### Removed
2222
23+ - Removed ` NoPinType ` in favour of ` DummyPin ` . (#2068 )
24+
2325## [ 0.20.1] - 2024-08-30
2426
2527### Fixed
Original file line number Diff line number Diff line change @@ -87,11 +87,8 @@ pub mod lp_io;
8787#[ cfg( all( rtc_io, not( esp32) ) ) ]
8888pub mod rtc_io;
8989
90- /// Convenience type-alias for a no-pin / don't care - pin
91- pub type NoPinType = Gpio0 ;
92-
9390/// Convenience constant for `Option::None` pin
94- pub const NO_PIN : Option < NoPinType > = None ;
91+ pub const NO_PIN : Option < DummyPin > = None ;
9592
9693static USER_INTERRUPT_HANDLER : Mutex < Cell < Option < InterruptHandler > > > = Mutex :: new ( Cell :: new ( None ) ) ;
9794
You can’t perform that action at this time.
0 commit comments