Also known as: RP2040
RP2040 is a low-cost, dual-core microcontroller designed in-house by Raspberry Pi, built on two ARM Cortex-M0+ cores.1
Overview
Its signature feature is PIO (programmable I/O): small state machines that can be programmed to bit-bang custom digital protocols at high speed, freeing the main cores from timing-critical work. The chip pairs 264 KB of on-chip SRAM with external QSPI flash and offers the usual GPIO, UART, SPI, I²C, PWM, and ADC peripherals. It is programmed in C/C++ via the Pico SDK, in MicroPython, or in Rust.
Where it fits
The RP2040 first shipped on the Raspberry Pi Pico board, but it is sold as a bare chip and now appears in boards from many vendors and in the wireless Pico W. PIO makes it unusually good at driving LED strips, generating waveforms, or implementing odd interfaces — work that would otherwise need an STM32 or external logic.