mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
Add new lines between SIO methods
The commit adds new lines between the SIO functions which at least for me improves readability and is consistent with the other methods in the trait.
This commit is contained in:
parent
d0fe9af458
commit
4b0dca1802
@ -190,12 +190,15 @@ pub(crate) mod sealed {
|
||||
};
|
||||
block.gpio(self.pin() as _)
|
||||
}
|
||||
|
||||
fn sio_out(&self) -> pac::sio::Gpio {
|
||||
SIO.gpio_out(self.bank() as _)
|
||||
}
|
||||
|
||||
fn sio_oe(&self) -> pac::sio::Gpio {
|
||||
SIO.gpio_oe(self.bank() as _)
|
||||
}
|
||||
|
||||
fn sio_in(&self) -> Reg<u32, RW> {
|
||||
SIO.gpio_in(self.bank() as _)
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user