-
Notifications
You must be signed in to change notification settings - Fork 6.9k
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
Supporting Pimoroni Pico Plus2 #77859
base: main
Are you sure you want to change the base?
Conversation
The following west manifest projects have changed revision in this Pull Request:
⛔ DNM label due to: 1 project with PR revision Note: This message is automatically posted and updated by the Manifest GitHub Action. |
Supported Features | ||
================== | ||
|
||
The rpi_pico board configuration supports the following |
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.
board name as used by west with `` around it and board target, not configuration
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.
Completely rewritten, please check again.
}; | ||
}; | ||
|
||
clocks_default: clocks_default { |
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.
empty can go
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.
Same as above.
808ef8a
to
cf60d51
Compare
af1da91
to
8eadd4c
Compare
86c14e5
to
b43d605
Compare
0a752ce
to
40f7d5e
Compare
40f7d5e
to
11c503c
Compare
6cbe33d
to
a43db7f
Compare
resources { | ||
compatible = "test-gpio-basic-api"; | ||
out-gpios = <&pico_header 14 GPIO_ACTIVE_HIGH>; | ||
in-gpios = <&pico_header 15 GPIO_ACTIVE_HIGH>; |
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.
This will clash with the external pulldown resistor tests, which is why in ajf58@0b86b90 I use a different pair of pins. I think you should do the same, otherwise everyone needs to either run a subset of tests at a time, and swap wires round in between, or similar.
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.
Thank you for your pointing out.
I have addressed this in #83427.
a72a3bd
to
ee2c58c
Compare
Update hal_rpi_pico to fix CI failure Signed-off-by: TOKITA Hiroshi <[email protected]>
Add XIP-cache codes that are referenced from the flash driver. Signed-off-by: TOKITA Hiroshi <[email protected]>
Reorganize for easy reference from other boards. - Reorganized PIO documentation, creating a dedicated "PIO Based Features" section - Updated "Debug Probe and Host Tools" to list supported debug interfaces. - Simplified and standardized flashing and debugging instructions. - Removed redundant J-Link debugging commands in favor of `west debug` usage. - Ensured consistent use of OpenOCD and UF2 flashing descriptions. - Added `:ref:` links for key components such as RP2040 SoC and Infineon CYW43439. Signed-off-by: TOKITA Hiroshi <[email protected]>
As the RP2350B has more than 32 GPIO pins, we changed the configuration so that it is split into two ports. To do this, we created a `raspberrypi,pico-gpio-port` node and moved the previous `raspberrypi,pico-gpio-port` functions to it. This became a child node of `raspberrypi,pico-gpio-port`, and `raspberrypi,pico-gpio-port` will remain a gpio mapper. Signed-off-by: TOKITA Hiroshi <[email protected]>
RP2350B is a rich IO variant in the RP2350 series. Signed-off-by: TOKITA Hiroshi <[email protected]>
Pinoroni Pico Plus2 is an RP2350B based board that has more rich I/O, RAM, and Flash than the original Raspberry Pi Pico2. Signed-off-by: TOKITA Hiroshi <[email protected]>
ee2c58c
to
7f74ad9
Compare
Add support Pimoroni Pico Plus2 https://shop.pimoroni.com/products/pimoroni-pico-plus-2?variant=42092668289107
and RP2350B.
Note: #84974 need to be addressed first.