summaryrefslogtreecommitdiff
path: root/cesar
diff options
context:
space:
mode:
authorschodet2009-02-19 22:13:36 +0000
committerschodet2009-02-19 22:13:36 +0000
commit43d0ff63abafa9e44085643d12871b5b0eb6d512 (patch)
tree4f4dbb234a2760e8911a9a4574268bf053a82e28 /cesar
parent875e57f3d30da8dc34da96b76dcd7dfdaff91afc (diff)
* hal/phy/test/phy/py/valid:
- added cont.4. git-svn-id: svn+ssh://pessac/svn/cesar/trunk@4053 017c9cb6-072f-447c-8318-d5b54f68fe89
Diffstat (limited to 'cesar')
-rw-r--r--cesar/hal/phy/test/phy/py/valid/cont.4.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/cesar/hal/phy/test/phy/py/valid/cont.4.py b/cesar/hal/phy/test/phy/py/valid/cont.4.py
new file mode 100644
index 0000000000..7e4972c9a8
--- /dev/null
+++ b/cesar/hal/phy/test/phy/py/valid/cont.4.py
@@ -0,0 +1,15 @@
+"""cont.4 - Check that if preample is found before access timer, access timer
+is cancelled."""
+
+import common
+import test_phy
+
+t1, t2 = common.begin (test_phy, 2)
+
+common.step ()
+t2.access (timer_preamble_stop = True, timer_preamble_stop_sender = True)
+t1.access (timer_preamble_stop = True)
+print 't1:', t1.result ()
+print 't2:', t2.result ()
+
+common.end (t1, t2)