stm32/gpio: Implement eh1::digital::InputPin for OutputOpenDrain

Pins in open-drain mode are outputs and inputs simultaneously.
This commit is contained in:
Gabriel Górski 2023-10-04 18:20:25 +02:00
parent 59f706ee2f
commit c6513f93fe

View File

@ -974,6 +974,18 @@ mod eh1 {
type Error = Infallible;
}
impl<'d, T: Pin> InputPin for OutputOpenDrain<'d, T> {
#[inline]
fn is_high(&self) -> Result<bool, Self::Error> {
Ok(self.is_high())
}
#[inline]
fn is_low(&self) -> Result<bool, Self::Error> {
Ok(self.is_low())
}
}
impl<'d, T: Pin> OutputPin for OutputOpenDrain<'d, T> {
#[inline]
fn set_high(&mut self) -> Result<(), Self::Error> {