Raspberry Pi's $7 Pico 2 W Microcontroller Board Adds Wireless Connectivity (engadget.com) 14
Raspberry Pi has announced the Pico 2 W, a wireless version of its Pico 2 microcontroller board built for hobbyists and industrial applications. From a report: At $7, it's a relatively inexpensive way to control electronic devices like smart home gadgets and robots. With the new version, users will be able to securely link to remote sources to send and receive data, either via Bluetooth 5.2 or Wi-Fi 802.11n.
As with the Pico 2, the wireless variant is built around the RP2350 microcontroller built in-house by Raspberry Pi. it offers more speed and memory than the original RP2040 chip, along with a security model built around Arm's TrustZone for Cortex-M. Users can program it using C, C++ and MicroPython, and choose between Arm Cortex-M33 or RISC-V cores.
As with the Pico 2, the wireless variant is built around the RP2350 microcontroller built in-house by Raspberry Pi. it offers more speed and memory than the original RP2040 chip, along with a security model built around Arm's TrustZone for Cortex-M. Users can program it using C, C++ and MicroPython, and choose between Arm Cortex-M33 or RISC-V cores.
Comparison (Score:2)
Re: (Score:2)
I use ST devices because the motor control timers are awesome. Tensilica stuff doesn't come close. RP MCUs have a PIO state machines that can be adapted to many high speed IO applications. Peripherals, then, are a reason to look beyond ESP et al. Don't have any other big reasons.
Re: (Score:3)
There's not much comparison. The Pico 2 is a much more capable microcontroller. The ESP32 line is more comparable, both in price and features, and the choice basically comes down to which set of peripherals you like best, and whether you want ARM or not.
Both can be programed through the Arduino IDE using Arduino libraries.
What's the market? (Score:3)
Re:What's the market? (Score:5, Informative)
For one thing, a zero 2w has about 45ma zombie power draw and over 400ma under load.
A pico 2w is 10ua in deep sleep... I can't find specs for the 2w (but it's supposed to be more efficient than the w), but the pico w is 100ma peak draw and 2ma in
light sleep. You can do mild tasks on a 2032 battery for a bit, even (although an Arduino is going to last about 1000x as long).
So... slots in between an Arduino and Pi Zero for tasks. Not for everybody, but I could see some people wanting a faster microcontroller like this.
Re: (Score:2)
Re: (Score:2)
What's the value proposition here? I can buy the pico 2 w, which is a dual-core 133MHz chip for $7, or I can buy a Zero 2W which is a quad-core 64-bit 1GHz for $15.
Chainsaw vs. laser cutter -- each does things the other can't.
The Zero 2W can run a standard, full-blown operating system with full TCP/IP stack, USB, HDMI and all that, and install software with apt-get, but its GPIO functionality is pretty limited and slowish.
The Picos on the other hand are programmed for a specific purpose, and have excellent GPIO functionality, thanks to their PIO peripheral which gives you dedicated state-machines with DMA to handle heavy-load and timing-critical I/O functions.
I mostly
trustzone (Score:1)
Re: (Score:2)
Well it's a British company, so if you commit a sinister act they send around Dame Judy Dench from the James Bond franchise to whip your backside!
Curiously it includes two cores on the one die - the TrustZone stuff is presumably disabled when you enter Risc-V.
Low Power Solution (Score:1)
Re: (Score:2)
Re: (Score:2)
Why is speed always brought up in microcontrollers?
Because that is all tech "journalists" can "understand".
Incidentally, the RP2050 has a known bug with its GPIO and hence staying on the RP2040 may be advisable in most cases.