bin/gpib_detect

changeset 86
96e30b092f70
parent 85
b55977dcc311
child 87
59a0946aa3d1
--- a/bin/gpib_detect	Thu Apr 02 16:58:24 2009 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,39 +0,0 @@
-#!/usr/bin/python
-import sys
-import os
-import signal
-import time
-
-try:
-    from pygpibtoolkit.gpibcontroller import GPIBController
-except ImportError:
-    sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), ".."))
-    from pygpibtoolkit.gpibcontroller import GPIBController
-import pygpibtoolkit.HP3562A
-from pygpibtoolkit.prologix import GPIB
-def main():
-    import optparse
-    opt = optparse.OptionParser("A simple tool for detecting connected GPIB devices")
-    opt.add_option('-d', '--device', default="/dev/ttyUSB0",
-                   dest="device",
-                   help="Device of connected Prologix GPIB bundle [/dev/ttyUSB0]",)
-    options, argv = opt.parse_args(sys.argv)
-
-    print "Detecting GPIB devices on the bus. Please wait until completion."
-    cnx = GPIB(device=options.device)
-    c = GPIBController(cnx)
-    
-    signal.signal(signal.SIGINT, c.stop)
-    signal.signal(signal.SIGQUIT, c.stop)
-    
-    time.sleep(1)
-    devices = c.detect_devices()
-    c.stop()
-    
-    print "GPIB devices:"
-    for k in sorted(devices.keys()):
-        print "%-3d: %s"%(k, devices[k])
-    return c, devices
-if __name__ == "__main__":
-    c, dev = main()
-    

mercurial