rp/gpio: fix wrong io _bank calc
This commit is contained in:
parent
377e58e408
commit
6734f52676
1 changed files with 1 additions and 1 deletions
|
@ -815,7 +815,7 @@ pub(crate) mod sealed {
|
|||
|
||||
#[inline]
|
||||
fn _bank(&self) -> Bank {
|
||||
match self.pin_bank() & 0x20 {
|
||||
match self.pin_bank() >> 5 {
|
||||
#[cfg(feature = "qspi-as-gpio")]
|
||||
1 => Bank::Qspi,
|
||||
_ => Bank::Bank0,
|
||||
|
|
Loading…
Reference in a new issue