From db212811293f91e0f1147eb57e5f6d5df2db10ef Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Mon, 29 Nov 2010 23:07:46 +0100 Subject: digital/avr/modules/twi: cleanup TWI module, refs #29, closes #90 - use contexts - changed interface - merge test programs - share polling mechanism - prepare place for other drivers - add callback system - use english comments --- digital/avr/modules/twi/test/test_twi_host.py | 29 --------------------------- 1 file changed, 29 deletions(-) delete mode 100644 digital/avr/modules/twi/test/test_twi_host.py (limited to 'digital/avr/modules/twi/test/test_twi_host.py') diff --git a/digital/avr/modules/twi/test/test_twi_host.py b/digital/avr/modules/twi/test/test_twi_host.py deleted file mode 100644 index 94cd9628..00000000 --- a/digital/avr/modules/twi/test/test_twi_host.py +++ /dev/null @@ -1,29 +0,0 @@ -import os, signal, time - -from mex.hub import Hub -from mex.msg import Msg -from mex.node import Node -from utils.forked import Forked - -def log (x): - print x - -h = Hub (min_clients = 3, log = log) -fh = Forked (h.wait) - -n = Node () -def nf (): - while True: - time.sleep (1) - n.wait (n.date + 1) -fn = Forked (nf) - -slave = os.popen ('./test_twi_sl.host', 'w') - -try: - os.system ('./test_twi_master.host') -finally: - fn.kill () - fh.kill () - slave.close () - time.sleep (1) -- cgit v1.2.3