summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPeter Harper <peter.harper@raspberrypi.com>2024-10-01 15:35:43 +0100
committerDamien George <damien@micropython.org>2024-12-19 16:54:30 +1100
commita93762a7623c235d24a3fe806774078c50067555 (patch)
tree42cb3ca351de84fa8b8135c48e2cbbc92f053ff9 /tests
parent32b98d3e66c46b83dc0030e1fa679923557748bd (diff)
rp2/modmachine: Fix USB sleep on RP2350 MCUs.
Signed-off-by: Peter Harper <peter.harper@raspberrypi.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/ports/rp2/rp2_lightsleep.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/ports/rp2/rp2_lightsleep.py b/tests/ports/rp2/rp2_lightsleep.py
index 5ce5696e0..63f31940a 100644
--- a/tests/ports/rp2/rp2_lightsleep.py
+++ b/tests/ports/rp2/rp2_lightsleep.py
@@ -16,12 +16,6 @@ try:
except ImportError:
print("SKIP")
raise SystemExit
-
-# RP2350 currently fails this test, needs further investigation.
-if "RP2350" in sys.implementation._machine:
- print("SKIP")
- raise SystemExit
-
try:
led = Pin(Pin.board.LED, Pin.OUT)
except AttributeError: