Plug: we have designed a range of RP2040 based dev boards for different tasks which make prototyping/evaluating the platform a breeze - and it's an exciting platform with what it offers for the price. The PIO especially is an extremely interesting feature.<p>- Tiny2040 - a super small USB-C dev board with up to 8MB flash: <a href="https://shop.pimoroni.com/products/tiny-2040" rel="nofollow">https://shop.pimoroni.com/products/tiny-2040</a><p>- PicoSystem - a handheld gaming console with 240x240 colour IPS display, audio, and classic controls: <a href="https://shop.pimoroni.com/products/picosystem" rel="nofollow">https://shop.pimoroni.com/products/picosystem</a><p>- Keybow2040 - a 16 key macro keypad with per-key RGB lighting: <a href="https://shop.pimoroni.com/products/keybow-2040" rel="nofollow">https://shop.pimoroni.com/products/keybow-2040</a><p>- Plasma2040 - designed for driving WS2812/APA102 LED strips: <a href="https://shop.pimoroni.com/products/plasma-2040" rel="nofollow">https://shop.pimoroni.com/products/plasma-2040</a><p>- Interstate 75 - for driving LED matrices like those used in giant outdoor screens: <a href="https://shop.pimoroni.com/products/interstate-75" rel="nofollow">https://shop.pimoroni.com/products/interstate-75</a><p>We also have a heap of accessories for the official Raspberry Pi Pico development board: <a href="https://shop.pimoroni.com/collections/pico" rel="nofollow">https://shop.pimoroni.com/collections/pico</a>
I haven’t come across an RP2040 I couldn’t overclock to 250+ MHz. Couple that with DMA into the PIO state machines and it smashes through stuff like the weird WS281X timings, HUB75 matrix scanning and even DVI and usually has a whole spare CPU core to actually do something with whatever device you’re driving.<p>It feels like it sits nicely between regular MCUs and the quirky every-peripheral-is-emulated-in-a-core awesomeness of the Parallax Propeller and - though I’m probably biased by experience and necessity - I love it.
I am an embedded developer and have used a lot of different microcontrollers in the past and present. The RP2xxx series is a very exciting microcontroller series. Currently only the RP2040 exists, but I expect to see other versions with more ram, integrated flash, maybe a M4 instead of M0+ core.<p>The truely exciting things about the RP2040 are:<p>- Market availability<p>- Low price<p>- 2 x Cortex M0+ cores<p>- Possibility to overclock<p>- Flexible PIO Programmable State Machines with FIFOs<p>- High GPIO count<p>- Excellent documentation (!)<p>- Lots of examples<p>I think the RP2040 is even totally overpowered / underutilized for most of the tasks I see in most projects.<p>What I would love to see in the future, is a version with integrated flash (with possibility to expand with external QSPI flash), a cortex M4 core with FPU and the ability to attach PSRAM to expand the usable memory (and map it into the memory map of the RP2xxx).
I've been toying with porting a tiny subset of Unix to the Raspberry Pico ever since I bought a pair of these cute little buggers. But memory at 264KB remains an issue. How easy is it to wire up SPI to some external RAM chips maybe on a breadboard?