Merge pull request #2590 from andelf/fix/rp-io-bank
rp: Fix wrong io _bank calc
This commit is contained in:
commit
c7e3eca98c
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