summaryrefslogtreecommitdiff
path: root/tests/pyb/timer.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-02-23 13:18:33 +0000
committerDamien George <damien.p.george@gmail.com>2015-02-23 13:18:33 +0000
commit626ee90ce194616f72eb49750f007e1604e3309c (patch)
tree2003b664ac51d7c7977deb676bc3effdc9600310 /tests/pyb/timer.py
parentd38939e676d0c36d81b1763fa3fbfcb53c649710 (diff)
tests: Add more tests for pyb.Timer class.
Diffstat (limited to 'tests/pyb/timer.py')
-rw-r--r--tests/pyb/timer.py20
1 files changed, 2 insertions, 18 deletions
diff --git a/tests/pyb/timer.py b/tests/pyb/timer.py
index 45cb8550d..61320690a 100644
--- a/tests/pyb/timer.py
+++ b/tests/pyb/timer.py
@@ -1,3 +1,5 @@
+# check basic functionality of the timer class
+
import pyb
from pyb import Timer
@@ -9,21 +11,3 @@ tim.prescaler(300)
print(tim.prescaler())
tim.period(400)
print(tim.period())
-
-tim = Timer(4, freq=1)
-tim.init(freq=2000)
-def f(t):
- print(1)
- t.callback(None)
-tim.callback(f)
-pyb.delay(10)
-
-# f3 closes over f2.y
-def f2(x):
- y = x
- def f3(t):
- print(2, y)
- t.callback(None)
- return f3
-tim.callback(f2(3))
-pyb.delay(10)