pio
pio copied to clipboard
Programmable I/O API for RP2040.
I'm trying to port the [pico unicorn library](https://github.com/pimoroni/pimoroni-pico/tree/main/libraries/pico_unicorn) to tinygo now that pio is supported but [it uses DMA channels](https://github.com/pimoroni/pimoroni-pico/blob/main/libraries/pico_unicorn/pico_unicorn.cpp#L182-L184) in a way that I'm not sure is currently allowed...
Congratulations Patricio! I've already managed to do some tests on the Raspberry Pico with the WS281B example. Thank you. _https://github.com/tinygo-org/pio/tree/main/rp2-pio/examples/ws2812_ But I found some things that need correction or change....
Looks to solve https://github.com/tinygo-org/pio/issues/7 @deadprogram do you think you can take it from here? Note: I did notice something odd in the usage of the StateMachine.Exec method and left a...
It would be really great to implement HUB75 support like what this does https://github.com/raspberrypi/pico-examples/blob/master/pio/hub75/Readme.md What I'd *really* like to do is have a PIO implementation that is the same interface...
Changing any .pio code in any example and running `go generate` will encounter the dependency of a special version of `pioasm` which is not mentioned in the readme but available...
I'm struggling to get the examples to work. I changed line 11 in blink_pio.go to sm.SetPindirsConsecutive(pin, 1, true) and I got it to work. I suspect the API morphed after...