Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for Pololu 3pi+ 2040 Robot #2406

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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