Raspberry Pi Pico 2 - RP2350 adds more PIO, RISC-V cores (2024)

Raspberry Pi Pico 2 - RP2350 adds more PIO, RISC-V cores (1)

The $5 Raspberry Pi Pico 2 was announced today, with a new chip, the RP2350. This silicon improves on almost every aspect of the RP2040:

  • 3 PIOs instead of 2
  • 150 MHz instead of 133 MHz base clock
  • Faster Arm Cortex M33 cores and RISC-V Hazard3 cores

I've had access to pre-release hardware and good news: even though the new chip is faster and has more features, it actually uses less power than RP2040, meaning if you run one of these things off a battery, it'll last longer.

I'll talk more about power later, but first, here's the specs.

Raspberry Pi Pico 2 - RP2350 adds more PIO, RISC-V cores (2)

The layout is nearly identical. It has the same castellated edges, so you can solder the board down onto your project. The top has the same BOOTSEL button, micro USB port, and LED. And the chip is the same size and pinout. The bottom is identical except there's one extra test pad in the middle of the board. So the Pico 2 is a drop-in replacement, and the RP2350 chip on top is almost a drop-in replacement for the RP2040 (it has 4 more pins, and a slightly adjusted pinout).

But now we'll get to the differences:

  • This chip has a faster base clock, 150 MHz, and I haven't tested overclocking it yet, but it should be easy to do that.
  • PIO, or Programmable I/O, lets you build your own communication interfaces using GPIO pins, and the RP2350 adds an extra PIO interface—so now there are 3 PIOs with 12 state machines.
  • The Pico had 2 Arm Cortex M0+ cores, and the Pico 2 upgrades to 2 Cortex-M33. And it adds on two Hazard3 RISC-V cores. (More on how that works, later.)
  • The Pico 2 doubles the original Pico's SRAM from 264 to 520 kiB.
  • The Pico consumed around 100 mW at idle, the Pico 2 only about 80.
  • The RP2040 came in one package size, with 4 ADCs and 30 total GPIO pins. The RP2350 comes in two package sizes, and the bigger one has 48 GPIO pins.
  • The RP2350 includes 8 kiB of OTP (One-Time Programmable) storage
  • The RP2350 ships in variants including built-in flash (saving on your BoM if you're building a custom project integrating the RP2350).
  • The Pico 2 is $1 more expensive than the original Pico ($5 vs $4), and I'm guessing other variants will adjust their pricing similarly.

There's a lot more in the datasheet I can't cover here, but the fact is, Raspberry Pi's improved every aspect of their first chip, which is still very popular, and they solved some of the most annoying problems people had with it.

Raspberry Pi Pico 2 - RP2350 adds more PIO, RISC-V cores (3)

Maintaining the same Pico form factor and base RP2040 footprint means you can quickly upgrade your projects to the newer hardware, assuming you adjust your software.

Pico Projects

And that's a wise decision, as it allows the huge ecosystem of RP2040-based projects to carry on in the Pi ecosystem with minimal disruption.

Raspberry Pi Pico 2 - RP2350 adds more PIO, RISC-V cores (4)

There are thousands of projects out there that already made good use of RP2040. Like the PicoBoy V2—as chance would have it, I was contacted by HalloSpaceBoy5 last week, asking if I'd like to take a look at it.

It's a custom handheld console built on the RP2040, with Python ports of classic games like Breakout, Pac Man, Space Invaders, and Flappy Bird. Okay, well that last one isn't quite a classic...

But this is just one of the many projects that caught my eye over the past year:

There's a mod chip for the Nintendo Switch called the PicoFly, Pimoroni makes their own gamepad called the PicoSystem, and of course, the Pico runs DOOM... on a LEGO brick!.

But games are one thing, someone built a Logic Analyzer, a portable serial terminal, and even a full SDR receiver called PiccoloSDR!

There's even a rackmount monitor for homelabs and businesses called Axe Effect, made by YouTuber Craft Computing—I've yet to test the beta unit Jeff sent me (sorry about that!).

Retro enthusiasts are all over the RP2040, I've seen it used to build custom N64 flash carts, emulate a full classic Macintosh, and almost everyone with one of these old Macs has a BlueSCSI v2 to emulate hard drives and CD-ROMs.

Then there's the ISA Blaster, and the ZX Spectrum emulator...

And that's before we get into places where you might never notice there's an RP2040 unless you look closely. Like the MNT reform I tested early this year, the trackball is run on a 2040. And the Radxa X4 marries an RP2040 to an Intel N100 for the first SBC with Intel + Arm microcontroller for GPIO. I've been testing the X4 and will post more on it later.

Raspberry Pi knocked the RP2040 and the original Pico out of the park. I don't think anyone could've predicted how popular it would become. It introduced the world of microcontrollers to a lot of people who never got into them before, myself included.

But it wasn't without its flaws: one of the main ones was power consumption.

Power

Raspberry Pi Pico 2 - RP2350 adds more PIO, RISC-V cores (5)

RP2040 doesn't really do a deep sleep down to the µA range—the best I could find is around 1 mA. My own tests with MicroPython shows the Pi going down to 2 mA.

The RP2040's way better than a full Pi running Linux, of course, but in microcontroller-land, milliamps aren't impressive. Like this ESP32 can get down to 5 µA in deep sleep. That means battery life could be measured in months instead of days or weeks. Is the Pico 2 better than the Pico?

Here are my informal test results:

State Pico Pico 2
Idle, base clock 20 mA (100 mW) 16 mA (80 mW)
MicroPython lightsleep state 2 mA (10 mW) 4 mA (20 mW)*
MicroPython deepsleep state N/A DNF

The sleep states... well, let's just say I'm still a noob at C (so I couldn't get the hello_sleep.c code ported to Pico 2 in time for this post), and the MicroPython build I had seemed to flake out when messing with sleep states.

So I'll post a follow-up when I can get more power testing in. For MicroPython, I've opened up one issue for machine.lightsleep(), and another for machine.deepsleep(). For now, I'll refer you to the RP2350 datasheet, which states:

Extended low-power sleep states with optional SRAM retention: as low as 10 μA DVDD

Realistically, my guess is we'll see somewhere between 10-100 μA, but looking at the SDK, it seems like it won't take as much effort to get the RP2350 into a dormant state (and to wake it back up, e.g. for periodic sensors—without an external trigger).

Pi goes RISC-V

Screenshot of Hazard3 RISC-V core layout from bitlog.it's RISC-V CPU Core ASIC roundup:

Raspberry Pi Pico 2 - RP2350 adds more PIO, RISC-V cores (6)

The other headline feature is the inclusion of two Hazard3 RISC-V cores. What does that mean? Well the Arm cores are proprietary.

Raspberry Pi pays Arm some money, Arm sends them the designs, and Raspberry Pi can use the Arm cores in their chip.

The RISC-V cores aren't really 'owned'. They're open source, meaning Raspberry Pi can just clone this git repository, use the designs, and that's it. No licensing, no proprietary specs. That doesn't mean the Hazard3 cores are faster or more efficient, just that they're open.

Including both sets of cores allows you to choose between Arm and RISC-V, and you can even build a 'universal binary' that works on either set of cores at runtime.

There are a couple caveats:

  1. You can't run all four cores at the same time, it's either-or.
  2. There's a lot less code out there that works low-level with RISC-V, so for most people, especially casual programmers just running MicroPython, you'll probably stick to the Arm cores.

But the way Raspberry Pi's doing this, I have to wonder: is it a signal that people should start transitioning their code to RISC-V? We'll see. EspressIf's had RISC-V versions of their ESP32s one out for a while. It's nice to see Raspberry Pi joining the party.

Conclusion

That's the Pico 2 and everything that's changed. A Pico 2 W will be arriving later this year. But bottom line, the RP2350 and its bigger B variant are going to be appearing in a ton of new devices.

Watch the video that goes along with this blog post:

Raspberry Pi Pico 2 - RP2350 adds more PIO, RISC-V cores (2024)

References

Top Articles
Colour Blind Tests - Do You See Colours As They Really Are?
What Does It Mean to Be Color Blind?
Funny Roblox Id Codes 2023
Golden Abyss - Chapter 5 - Lunar_Angel
Www.paystubportal.com/7-11 Login
Joi Databas
DPhil Research - List of thesis titles
Shs Games 1V1 Lol
Evil Dead Rise Showtimes Near Massena Movieplex
Steamy Afternoon With Handsome Fernando
Which aspects are important in sales |#1 Prospection
Detroit Lions 50 50
18443168434
Newgate Honda
Zürich Stadion Letzigrund detailed interactive seating plan with seat & row numbers | Sitzplan Saalplan with Sitzplatz & Reihen Nummerierung
Grace Caroline Deepfake
978-0137606801
Nwi Arrests Lake County
Justified Official Series Trailer
London Ups Store
Committees Of Correspondence | Encyclopedia.com
Pizza Hut In Dinuba
Jinx Chapter 24: Release Date, Spoilers & Where To Read - OtakuKart
How Much You Should Be Tipping For Beauty Services - American Beauty Institute
Free Online Games on CrazyGames | Play Now!
Sizewise Stat Login
VERHUURD: Barentszstraat 12 in 'S-Gravenhage 2518 XG: Woonhuis.
Jet Ski Rental Conneaut Lake Pa
Unforeseen Drama: The Tower of Terror’s Mysterious Closure at Walt Disney World
Ups Print Store Near Me
C&T Wok Menu - Morrisville, NC Restaurant
How Taraswrld Leaks Exposed the Dark Side of TikTok Fame
University Of Michigan Paging System
Dashboard Unt
Access a Shared Resource | Computing for Arts + Sciences
Speechwire Login
Healthy Kaiserpermanente Org Sign On
Restored Republic
3473372961
Craigslist Gigs Norfolk
Moxfield Deck Builder
Senior Houses For Sale Near Me
Whitehall Preparatory And Fitness Academy Calendar
Jail View Sumter
Nancy Pazelt Obituary
Birmingham City Schools Clever Login
Thotsbook Com
Funkin' on the Heights
Vci Classified Paducah
Www Pig11 Net
Ty Glass Sentenced
Latest Posts
Article information

Author: Neely Ledner

Last Updated:

Views: 6589

Rating: 4.1 / 5 (42 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Neely Ledner

Birthday: 1998-06-09

Address: 443 Barrows Terrace, New Jodyberg, CO 57462-5329

Phone: +2433516856029

Job: Central Legal Facilitator

Hobby: Backpacking, Jogging, Magic, Driving, Macrame, Embroidery, Foraging

Introduction: My name is Neely Ledner, I am a bright, determined, beautiful, adventurous, adventurous, spotless, calm person who loves writing and wants to share my knowledge and understanding with you.