Skip to content
This repository was archived by the owner on Aug 31, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions mu/modes/pico.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,15 @@ class PicoMode(ESPMode):

name = _("RP2040")
short_name = "pico"
board_name = "Raspberry Pi Pico"
description = _("Write MicroPython directly on a Raspberry Pi Pico.")
board_name = "Raspberry Pi RP2040"
description = _("Write MicroPython directly on a Raspberry Pi Pico or other RP2040 board.")
icon = "pico"
fs = None

valid_boards = [
# VID , PID, Manufacturer string, Device name
(0x2E8A, 0x0005, None, "Raspberry Pi Pico"),
(0x1FFB, 0x2043, None, "Pololu 3pi+ 2040 Robot"),
]

def api(self):
Expand Down