-
I note that on the OpenDeck 3.1.0, RP2040 pin 9, GPIO 7, is marked SPI_CLK. However, looking at the GPIO Functions table in the RP2040 datasheet, it's GPIO6 that's the SPI clock. Is this an error? Datasheets used:
Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
paradajz
Jan 28, 2023
Replies: 1 comment
-
It is not an error. I am using bit banged SPI implementation so that I (or anyone else) can use any pins on a supported microcontroller for SPI parts such as the MAX led driver. Flexibility always comes with some downsides. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
paradajz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is not an error. I am using bit banged SPI implementation so that I (or anyone else) can use any pins on a supported microcontroller for SPI parts such as the MAX led driver. Flexibility always comes with some downsides.