diff --git a/script/local.py b/script/local.py index 4433f17..af13fea 100644 --- a/script/local.py +++ b/script/local.py @@ -13,16 +13,7 @@ import sys, inspect, os, traceback class TestingTool: """ Common tools for running the test - """ - def __init__(self): - """ - Init class with no test data - """ - self.deviceName = '' - self.testName = '' - self.testPath = '' - self.testParams = '' - + """ def __init__(self, testName, testPath, deviceName, testParams): """ Init class with test data @@ -165,6 +156,7 @@ class Interlock: import binascii udp = UDPDatagram() msg = self._msgWrite() + print binascii.hexlify(msg) modebytes = array('B', mode) msg.extend(modebytes) print binascii.hexlify(msg)