From 73e2c6921fba8783b67441382e75440923376228 Mon Sep 17 00:00:00 2001 From: Wilfried Chauveau Date: Wed, 27 Oct 2021 08:41:58 +0100 Subject: [PATCH] Make ReadableOutput public to match the visibility of other Type-level variant of PinMode. --- rp2040-hal/src/gpio/pin.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {}