- Notifications
You must be signed in to change notification settings - Fork1.3k
Add W55RP20-EVB-Pico, W6300-EVB-Pico2 Board#10610
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
base:main
Are you sure you want to change the base?
Uh oh!
There was an error while loading.Please reload this page.
Conversation
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 the PR!
Why do you need a native PIO_SPI object? It seems you are only using this from the Python driver. The PIOASM library has an example of implementing a busio-like UART via PIO all from Python here:https://github.com/adafruit/Adafruit_CircuitPython_PIOASM/blob/main/examples/pioasm_rxuart.py
Want to split out the board definitions from thewiznet module addition? I'm happy to take the new board defs as we sort out the PIO stuff.
wizhannah commentedOct 2, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Sorry for the late reply, and thank you for the feedback.
for this use case I found that a native PIO_SPI provides the performance and stability needed. |
The W6300 will need library changes for the extra pins to take advantage of the quad SPI? |
Did you try the Python-only version first? I'm worried this is a lot of specific code for us to maintain. Having it in a library of yours using rp2pio directly means you can maintain it easier. |
wizhannah commentedNov 4, 2025 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Thanks again for the thoughtful feedback. I wanted to clarify why I proposed a native PIO SPI implementation and ask whether you’d consider accepting it (or advising on the right shape for it). The design closely follows the Raspberry Pi SDK’s PIO SPI used by the CYW43 Wi-Fi driver, combining PIO state machines with DMA-backed transfers. This architecture is already validated for continuous, high-speed register access on RP2040 and gives deterministic inter-byte timing that WIZnet parts are sensitive to. That reference was key in shaping this design. However, since there was no complete example available for implementing a full PIO SPI interface purely in Python, it was difficult to achieve precise byte-level timing control or continuous DMA-based transfers using Python alone. |
Add support for W55RP20-EVB-Pico and WIZNET_PIO_SPI communication (#10440).
Additionally, add support for the W6300-EVB-Pico2 board with Quad SPI functionality.
Tested with example code and libraries below.