-
Notifications
You must be signed in to change notification settings - Fork 953
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add board file for Pimoroni Pico Plus 2 W #2092
Add board file for Pimoroni Pico Plus 2 W #2092
Conversation
This board is an iteration from pimoroni_pico_plus2_rp2350. I cannot reuse the same header file as this one does not have a direct wire to the LED, similar to pico_w it depends on the WiFi chip for it (compatibility, presumably).
This is missing a Seems unlikely that Comparing this to https://github.com/raspberrypi/pico-sdk/blob/develop/src/boards/include/boards/pico2_w.h , this seem to be missing |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Going to merge this as is for 2.1.0 release; it's likely better than nothing
fixed all of these |
Thanks, I initially did this off |
Ah yes, please review my latest change, as I'm about to merge to catch 2.1.0 release |
@kilograham checking the first few defines, the SPCE connector is not present in the Plus 2 W. These should be removed
These are OK
|
ah, then can you remove them and fix up the SPI pins to be correct |
@kilograham done. can you check if it looks fine for you? |
You say "default SPI to the same as pico2_w" ... no reason to assume that they are the same as Pico2 W - are there any SPI pins exposed on the Pico Plus 2 W? I don't have the schematic |
actually i looked on the website and this seems reasonable; i'm gonna merge |
@kilograham great, thanks for pushing this through! |
Thanks for jumping on this, and nice timing. I got a bit too caught up getting the wireless stuff working in MicroPython and trying to get a single build for our W and "non-W" variants. (Since both support wireless in theory) |
See the board details here: Pimoroni Pico Plus 2 W
This board is similar to pimoroni_pico_plus2_rp2350. I cannot reuse the same header file as this one does not have a direct wire to the LED, similar to pico_w it depends on the WiFi chip for it (compatibility, presumably).
I have no affiliation with Pimoroni, I just purchased a board and I'm using it with this modifications. I see that @ZodiusInfuser has posted some PRs for Pimoroni boards in the past so maybe they can chime in for review?
Fixes #2091
Thanks!