stm32: add note about Output/OutputOpenDrain drop behavior

This commit is contained in:
Josh Junon 2023-08-06 05:58:38 +02:00
parent 766b5fc6f6
commit 7b3d7a3826

View File

@ -351,6 +351,10 @@ impl From<Level> for bool {
}
/// GPIO output driver.
///
/// Note that pins will **return to their floating state** when `Output` is dropped.
/// If pins should retain their state indefinitely, either keep ownership of the
/// `Output`, or pass it to [`core::mem::forget`].
pub struct Output<'d, T: Pin> {
pub(crate) pin: Flex<'d, T>,
}
@ -418,6 +422,10 @@ impl<'d, T: Pin> Output<'d, T> {
}
/// GPIO output open-drain driver.
///
/// Note that pins will **return to their floating state** when `OutputOpenDrain` is dropped.
/// If pins should retain their state indefinitely, either keep ownership of the
/// `OutputOpenDrain`, or pass it to [`core::mem::forget`].
pub struct OutputOpenDrain<'d, T: Pin> {
pub(crate) pin: Flex<'d, T>,
}