Skip to content

Commit

Permalink
tests/psoc6/timer.py: Skipped until fix.
Browse files Browse the repository at this point in the history
Signed-off-by: enriquezgarc <enriquezgarcia.external@infineon.com>
  • Loading branch information
jaenrig-ifx authored and actions-user committed Feb 10, 2024
1 parent 0e5bdec commit 227259e
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions tests/psoc6/timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,16 @@
from machine import Timer
import os

machine = os.uname().machine
if "CY8CPROTO-063-BLE" in machine:
# TODO: Not working for this board. Neither the timer timing is correct
print("SKIP")
raise SystemExit
# machine = os.uname().machine
# if "CY8CPROTO-063-BLE" in machine:
# TODO: Not working correctly. Neither the timer timing is correct.
# TODO: Review test and module.
print("SKIP")
raise SystemExit

t = Timer(0)
t.init(period=2000, mode=Timer.ONE_SHOT, callback=lambda t: print("Oneshot Timer"))
time.sleep(3)
time.sleep(30)
t.deinit()


Expand Down

0 comments on commit 227259e

Please sign in to comment.