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

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
Milk-V Jupiter is the first ITX RISC-V board I've tested

The latest RISC-V computer I've tested is the Milk-V Jupiter. It's pokey at Intel Core 2 Duo levels of performanceâat least according to Geekbench.
But performance is only one aspect that interests me. This is the first RISC-V Mini ITX motherboard I've tested, which means it can be installed in a PC case or rackmount enclosure, and it is much more featureful than a typical credit-card-sized SBC.
It includes niceties like front panel IO
Fixing curl install failures with Ansible on Red Hat-derivative OSes
Over the past few months, I've noticed some of my automation failing on Red Hat-derivative OSes like Rocky Linux and AlmaLinux. The reason for this has to do with the inclusion of a curl-minimal package in some distros, which conflicts with curl if you try installing the full package.
Unfortunately, the fix for this is a little strange, and so only ends up in Ansible's dnf module, not in the more cross-compatible package module.
The error I was seeing is like:
Hacking Pi firmware to get the fastest overclock

Since boosting my Pi 5 from the default 2.4 GHz clock to 3.14 GHz on Pi Day , I've wanted to go faster. Especially since many other users have topped my Geekbench scores since then :)
In March, Raspberry Pi introduced new firmware that unlocked frequencies above 3,000 MHz for overclocking. This summer, NUMA Emulation patches boosted performance another 5-10% through memory access optimizations.
But even with a golden sample Pi 5, I haven't seen anybody
Getting Started with Meshtastic
After seeing the Meshtastic booth at Open Sauce, my Dad and I thought it would be fun to learn more about the low power radio tech by getting our own radios and experimenting.

Then, we were contacted by Simon from Muzi Works , and he offered to send a few units of R1 and H1, his company's pre-built Meshtastic nodes.
What's a node, and what is Meshtastic? Excellent question.
What is Meshtastic?
Simply putâand copied shamelessly from the official
The state of Docker on popular RISC-V platforms
I've been testing a Milk-V Jupiter this week, and have tested a number of other RISC-V development boards over the past two years.
As with any new CPU architecture, software support and ease of adoption are extremely important if you want to reach a wider audience. I wouldn't expect every developer and SBC hobbyist to be able to compile the Linux kernel, and the need to compile much of anything these days is getting rare. So having any instance where one has to know how to
Where is Qualcomm's Snapdragon X Elite Dev Kit?
Update - September 26 : Today my Dev Kit finally arrived! And of course, the first thing I did was tear it downâcheck out my teardown photos of the Snapdragon Dev Kit internals here .
Update 2 - October 17 : Today Qualcomm cancelled all remaining orders, and will no longer support the Dev Kit .
I signed up to buy a Qualcomm Snapdragon X Dev Kit the second I found out about it. It's supposed to be the Mac mini killer for Windows .

They even promoted
NUMA Emulation speeds up Pi 5 (and other improvements)
Recently an Igalia engineer posted a NUMA Emulation patch for the Pi 5 to the Linux Kernel mailing list. He said it could improve performance of Geekbench 6 scores up to 6% for single-core, and 18% for multicore.
My testing didn't quite match those numbers, but I did see a significant and consistent performance increase across both Geekbench 6:

And High Performance Linpack:
If AI chatbots are the future, I hate it

About a week ago, my home Internet (AT&T Fiber) went from the ~1 Gbps I pay for down to about 100 Mbps ( see how I monitor my home Internet with a Pi ). It wasn't too inconvenient, and I considered waiting it out to see if the speed recovered at some point, because latency was fine.
But as you can see around 7/7 on that graph, the 100 Mbps went down to about eight , and that's the
Installing Ansible on a RISC-V computer
Ansible runs on Python, and Python runs on... well pretty much everything . Including newer RISC-V machines.
But Ansible has a lot of dependencies, and some of these dependencies have caused frustration from time to time on x86 and Arm (so having issues with a dependency is just a way of life when you enter dependency hell )... but in this case, for the past few months, I've never had luck installing Ansible from PyPI (Python's Package Index)