Skip to content
This repository was archived by the owner on Aug 31, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 5 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
1 change: 1 addition & 0 deletions mu/modes/circuitpython.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class CircuitPythonMode(MicroPythonMode):
(0x239A, 0x80AC, None, "Unexpected Maker FeatherS2"),
(0x303A, 0x8002, None, "Unexpected Maker TinyS2"),
(0x054C, 0x0BC2, None, "Spresense"),
(0x16d0, 0x08c7, None, "Tiny 2040")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe the tests are failing because the black formatter wants a comma here.
You can run the test locally with make check (although if you are using Python 3.5 black won't run as it is not available)

]
# Modules built into CircuitPython which mustn't be used as file names
# for source code.
Expand Down
1 change: 1 addition & 0 deletions mu/modes/pico.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ class PicoMode(ESPMode):
valid_boards = [
# VID , PID, Manufacturer string, Device name
(0x2E8A, 0x0005, None, "Raspberry Pi Pico"),
(0x16d0, 0x08c7, None, "Tiny 2040")
]

def api(self):
Expand Down