Skip to content

Commit

Permalink
Update esp-hal/src/gpio/mod.rs
Browse files Browse the repository at this point in the history
Co-authored-by: Scott Mabin <scott@mabez.dev>
  • Loading branch information
plaes and MabezDev authored Aug 25, 2024
1 parent c07352c commit 410521c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion esp-hal/src/gpio/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,11 @@ pub(crate) use crate::{touch_common, touch_into};
// TODO: Let's keep applications using `gpio::any_pin::{*}` working, as
// we currently cannot mark specific import path as deprecated.
#[doc(hidden)]
pub mod any_pin;
mod any_pin;
mod dummy_pin;

pub use any_pin::{AnyInputOnlyPin, AnyPin};
pub use dummy_pin::DummyPin;
pub use any_pin::{AnyInputOnlyPin, AnyPin};
pub mod dummy_pin;

Expand Down

0 comments on commit 410521c

Please sign in to comment.