bin/q3562

Thu, 28 Feb 2008 18:16:52 +0100

author
David Douard <david.douard@logilab.fr>
date
Thu, 28 Feb 2008 18:16:52 +0100
changeset 60
5297b8707096
parent 43
a250bd7a2022
permissions
-rwxr-xr-x

Added commands for HP356X devices. Added STA, IS and AS as commands (instead of constants).

#!/usr/bin/python

import sys, os
try:
    from pygpibtoolkit.HP3562A.q3562A import main
except ImportError:
    sys.path.append(os.path.join(os.path.dirname(os.path.abspath(__file__)), ".."))
    from pygpibtoolkit.HP3562A.q3562A import main
main()

mercurial