mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-21 22:32:29 +00:00
Implement Output::is_set_low for embassy-rp
This commit implements a suggestion for the method is_set_low which is currently a 'todo', by reading last value written to GPIO_OUT.
This commit is contained in:
parent
69e0f9f0fe
commit
6d4a49bca8
@ -127,8 +127,8 @@ impl<'d, T: Pin> Output<'d, T> {
|
||||
|
||||
/// Is the output pin set as low?
|
||||
pub fn is_set_low(&self) -> bool {
|
||||
// todo
|
||||
true
|
||||
// Reading from SIO: GPIO_OUT gives the last value written.
|
||||
unsafe { self.pin.sio_out().value().read() == 0 }
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user