diff options
| -rw-r--r-- | tests/extmod/machine_soft_timer.py (renamed from tests/extmod/machine_timer.py) | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/extmod/machine_timer.py b/tests/extmod/machine_soft_timer.py index 1be01d184..bff9af5b8 100644 --- a/tests/extmod/machine_timer.py +++ b/tests/extmod/machine_soft_timer.py @@ -1,4 +1,11 @@ -# test machine.Timer +# test "soft" machine.Timer (no hardware ID) +import sys + + +if sys.platform == "esp32": + print("SKIP") # TODO: Implement soft timers for esp32 port + raise SystemExit + try: import time, machine as machine |
