mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 22:32:29 +00:00
Merge pull request #3017 from lucasgranberg/main
add set_as_analog to stm32 gpio Flex
This commit is contained in:
commit
50210e8cdc
@ -128,6 +128,15 @@ impl<'d> Flex<'d> {
|
||||
});
|
||||
}
|
||||
|
||||
/// Put the pin into analog mode
|
||||
///
|
||||
/// This mode is used by ADC and COMP but usually there is no need to set this manually
|
||||
/// as the mode change is handled by the driver.
|
||||
#[inline]
|
||||
pub fn set_as_analog(&mut self) {
|
||||
self.pin.set_as_analog();
|
||||
}
|
||||
|
||||
/// Put the pin into AF mode, unchecked.
|
||||
///
|
||||
/// This puts the pin into the AF mode, with the requested number, pull and speed. This is
|
||||
|
Loading…
Reference in New Issue
Block a user