diff --git a/rp2040-hal/src/gpio/pin.rs b/rp2040-hal/src/gpio/pin.rs index 75f73a9..1da9edf 100644 --- a/rp2040-hal/src/gpio/pin.rs +++ b/rp2040-hal/src/gpio/pin.rs @@ -259,7 +259,7 @@ impl Sealed for Output {} pub type PushPullOutput = Output; /// Type-level variant of [`PinMode`] for readable push-pull output mode -type ReadableOutput = Output; +pub type ReadableOutput = Output; impl ValidPinMode for Output {}