Adafruit
Adafruit Metro RP2350 with PSRAM
· MPN: ADA6267
The Adafruit Metro RP2350 with PSRAM upgrades the Metro RP2350 with an additional 8 MB of QSPI PSRAM for projects that need extra dynamic memory. Powered by ...
Get notified when back in stock
The Adafruit Metro RP2350 with PSRAM upgrades the Metro RP2350 with an additional 8 MB of QSPI PSRAM for projects that need extra dynamic memory. Powered by the Raspberry Pi RP2350 dual-core ARM Cortex-M33 at 150 MHz with 520 KB SRAM, 16 MB flash, and a 5V buck converter supporting up to 2A output, this is a seriously capable development board in the standard Metro/UNO shield-compatible form factor.
The board features a 22-pin HSTX FPC port for DVI video output (or 12 extra GPIO), USB host breakout pads, a microSD card slot, and full support for CircuitPython, Arduino, MicroPython, and C/C++.
Key Features
- RP2350 Dual-Core ARM Cortex-M33 @ 150 MHz – Also supports dual RISC-V cores, with floating point unit
- 520 KB SRAM + 8 MB PSRAM – Massive memory for buffers, images, and complex applications
- 16 MB QSPI Flash – ~14 MB available for CircuitPython files
- 37 Available GPIO – 23 on headers, 12 on HSTX port, 2 for USB host; 6 analogue inputs
- MicroSD Card Socket – SPI-connected with additional SDIO pins
- 22-Pin HSTX FPC Port – 3-lane differential for DVI video output or 12 extra GPIO (Pi 5-compatible pinout)
- USB Host Breakout Pads – Controllable 5V power with D+/D− for bitbang USB host
- 5V Buck Converter (TPS563201) – 6–17V DC input, up to 2A output
- UNO Shield Compatible – Standard Metro form factor
- USB-C – Power and data
- 6–17V DC Jack – With on/off switch
- STEMMA QT / Qwiic Port – Solderless I2C connection
- RX/TX Switch – Swap D0/D1 assignments for Arduino UART or RP2350 native order
- PicoProbe Debug Port – 3-pin JST SH compatible
- UF2 Bootloader – Hold BOOTSEL during boot for drag-and-drop firmware updates
- Hardware Security – SHA-256 accelerator, TRNG, optional boot signing with OTP storage
RP2350 Peripherals
- 2× UART, 2× SPI, 2× I2C controllers
- 24× PWM channels
- USB 1.1 controller with host and device support
- 12× PIO state machines (3 PIO blocks × 4)
- DMA controller (16 channels, 4 IRQ)
Ideal For
- Memory-intensive CircuitPython and MicroPython projects
- DVI video output via the HSTX port
- USB host applications
- Data logging and image processing with ample RAM and storage
Package Contents
- 1× Adafruit Metro RP2350 with PSRAM (with headers)
Resources
Jargon buster
Plain-language definitions for the technical terms used above.
- Arm Cortex-M33
- A 32-bit, low-power Arm microcontroller core designed for real-time, timing-sensitive control tasks such as reading sensors or driving motors. It can act as a chip's main controller, or in some systems-on-chip run alongside larger application cores that handle an operating system like Linux.
- Bootloader
- Small starter software on a microcontroller that lets new code be uploaded before the main program runs. Knowing how to enter bootloader mode matters when you need to program the board or recover it after a faulty sketch.
- breakout
- A breakout board carries a small or fine-pitched component and brings its connections out to standard, breadboard- and header-friendly pins. Describing a part as a breakout means it can be wired into a project without soldering directly to the component's tiny contacts.
- Buck converter
- A power circuit that reduces a higher DC voltage to a lower DC voltage. It is useful when your supply voltage is too high for a module or microcontroller and you want less heat and better efficiency than a simple linear regulator.
- CircuitPython
- A beginner-friendly version of Python designed to run directly on microcontroller boards. If a product supports CircuitPython, you can often program it by copying code files onto the board rather than setting up a more complex toolchain.
- DC
- DC means direct current, where electricity flows in one constant direction, as supplied by batteries, USB ports and many plug-pack power supplies. When a product specifies DC, it runs from a DC supply rather than mains AC, so you need to provide the correct voltage and polarity.
- FPC
- FPC stands for flexible printed circuit, a thin flat flexible cable or connector style often used where space is tight or some movement is needed, commonly for displays, cameras and other high-density connections. Connecting to an FPC connector generally needs a matching cable with the correct pin count, pitch and contact orientation.
- GPIO
- General-purpose input/output pins are microcontroller pins you can set in software to read signals, switch devices on and off, or connect to peripherals. The number of GPIO pins matters because it limits how many buttons, LEDs, sensors, and other parts you can wire directly to the board.
- Headers
- Rows of connector contacts on a fixed pitch (commonly 2.54 mm) used to link a board to a breadboard, jumper wires, or another board. They come as male pin headers and female socket headers; when a module ships with pre-soldered headers it can be used straight away, whereas bare pads require soldering the pins yourself.
- HSTX
- HSTX is a high-speed transmit interface on RP2350-based boards for sending fast digital signals such as video-style data. It matters because it uses carefully routed high-speed signal pairs rather than ordinary low-speed wiring.
- I2C
- I2C is a two-wire communication bus used by many sensors and small modules. It matters because several I2C devices can share the same two wires, but each device needs a compatible address and your controller must support I2C.
- IRQ
- IRQ (interrupt request) is a signal line a device uses to alert a microcontroller that something needs attention, so the microcontroller does not have to poll continuously. Wiring an IRQ pin to a free input lets code respond promptly to events such as new data being ready.
- MicroPython
- A version of the Python programming language made to run on microcontrollers. It matters because it lets beginners write readable code to control LEDs, sensors, motors and displays without needing to start with lower-level languages.
- microSD card
- A microSD card is a small removable flash memory card used to store data such as audio, images, logs or program files. Its capacity and formatting (often FAT32 or exFAT) affect how much can be stored and whether the card needs preparing before use.
- PWM
- Pulse Width Modulation is a way for a digital pin to simulate variable output power by switching on and off very quickly. It matters for controlling things like LED brightness, motor speed, or servo-style signals from a microcontroller pin.
- Qwiic
- Qwiic is a plug-in connector system for I2C devices that uses small 4-pin cables, so you can connect compatible sensors without soldering. It matters because your controller or adapter also needs Qwiic, or you will need a cable or breakout to wire it up.
- RAM
- RAM (random-access memory) is fast, temporary memory a device uses for working data while it is running; in its common volatile form, its contents are lost when power is removed. Some devices offer a mode that applies settings to RAM only, which is handy for testing changes temporarily because they are not stored permanently and disappear at power-off.
- RISC-V
- RISC-V is an open, royalty-free processor instruction-set architecture used in chips ranging from tiny microcontrollers to Linux-capable application processors. The choice of RISC-V determines which compilers, software tools, and performance or low-power features are available, separate from the more common Arm or x86 architectures.
- RP2350
- A microcontroller chip from Raspberry Pi used as the main processor on some development boards. Knowing the board is built around an RP2350 helps you check software support, pin capabilities and whether it suits MicroPython projects.
- RX
- RX means receive, usually showing data being received by the board. An RX indicator LED can help with troubleshooting USB or serial communication.
- Shield
- An add-on board that plugs into a main controller board to give it extra features such as sensing, motor control or communication. Knowing a product supports shields helps you judge whether it can connect neatly into an existing maker-board setup.
- SPI
- A fast serial communication bus often used for displays, memory cards, and sensors. It matters because SPI devices need specific pins for clock and data, plus a separate chip-select line for each device.
- SRAM
- Fast temporary memory used by a processor while a program is running. More SRAM helps with projects that handle larger data buffers, networking, displays, or more complex code.
- STEMMA QT
- A small plug-in connector system for I2C boards that lets you connect compatible sensors and controllers without soldering. It matters because it can make wiring faster and less error-prone, especially when adding several small modules to a project.
- TX
- TX means transmit, usually showing data being sent from the board. A TX indicator LED can help you see when the board is communicating or uploading code.
- UART
- UART is a simple asynchronous serial interface that sends data over separate transmit and receive wires, usually labelled TX and RX, with both ends set to the same baud rate. It is a common way for microcontrollers and other serial devices to exchange data.
- USB 1.1
- USB 1.1 is an older USB standard with much slower data transfer than USB 2.0 and later versions. Compatibility with it allows connection to very old computers, though data-heavy tasks such as video may be limited at that speed.
- USB host
- A USB host is the side of a USB connection that controls attached devices, like a computer talking to a keyboard or flash drive. This matters because most microcontroller boards are normally USB devices, so adding USB host support lets them use common USB peripherals.
- USB-C
- USB-C is a small, reversible USB connector that can carry power, data and, on some devices, video over a single cable. The same connector can range from charging only to high-speed data, so the functions a given port actually supports vary.
Find this product in
Brands
Microcontrollers
welcome to circuitpython
Circuit Diagram · 10.6 MB · Click any page to view full size
rp2040 arduino with the earlephilhower core
Example Code · 964.5 KB · Click any page to view full size
Resources & Downloads
Guides, code examples, and more
Related Tutorials
Free guides on learn.littlebird.com.au