We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17068bd commit a7d4253Copy full SHA for a7d4253
tests/ports/psoc6/board_only_hw/single/timer.py
@@ -1,3 +1,4 @@
1
+import os
2
from machine import Timer
3
import time
4
@@ -76,3 +77,11 @@ def test_multiple_timers():
76
77
test_periodic()
78
print("*****Multiple Timers Execution*****")
79
test_multiple_timers()
80
+
81
+ # TODO: Timer tests need to be refined.
82
+ # The current implementation is not reliable.
83
+ # After this tests CY8CPROTO-063-BLE board is not able to the subsequent test.
84
+ # This workaround works for
85
+ board = os.uname().machine
86
+ if "CY8CPROTO-063-BLE" in board:
87
+ time.sleep(3)
0 commit comments