Test Instrument Control Tidbits

By: Bertrand Zauhar, VE2ZAZ
Last updated: 08/03/2013


On this page, I gather the various tricks, ideas and pieces of software code I have come up with to easily control test instruments remotely.

The software source code on this page is published under the GNU GPLv3 license. Please refer to the following web site
for more detail on the licence agreement: http://www.gnu.org/licenses/gpl-3.0.html

PYTHON SCRIPTS FOR TEST INSTRUMENT CONTROL

Python is a very easy to learn, multi-platform, free-to-use programming language. It is especially suitable for Linux platform programming. It became obvious that it would be the right programming language for instrument control when I decided to migrate from Windows to Linux. When paired with QT4 Designer-produced user interface windows, it makes a very flexible, powerful and portable toolset for controlling test instrument remotely (GPIB, Ethernet or Serial).

The following is a series of scripts I want to share for the benefit of other test instrument amateurs. By no mean do I want to show these as examples of good programming practices. Still, they may be helpful to get started in test instrument control.


HP/Agilent E4406A Span Concatenator

The HP / Agilent E4406A VSA Transmitter Tester is a very versatile spectrum analyzer. That unit has one major limitation, in that it only works on spans of no more than 10 MHz. To make up for that drawback, I have developed a Python 2.7 script that automates the capture and control for wider spans. The script concatenates a series of 10 MHz spans that cover the range specified by the user. Even a 0 Hz - 4 GHz range can be specified; this will concatenate 400 10 MHz spans. The script saves the final span plot in .PNG format, and raw data can also be saved in a text file for further analysis. Access and control is done via the Ethernet port. The speed at which the concatenation occurs is surprisingly fast. Doing a full 0-4 GHz 400-span capture takes less than 90 seconds.

The script does not alter any settings the user may have set into the instrument. All it does is change the center frequency and span values in order to capture the required span plots. In other words, the user first sets the instrument to his liking (resolution bandwidth, reference value, averaging, scale/division, ...), and then executes the script. So for example, it the user elects to capture the average plot, but averaging is not enabled in the instrument, the output will be erroneous.

The various values entered in the script window are saved and recovered the next time the script is launched.

The script uses the PyQt4 python library and a Qt4 Designer window design. For plotting, it uses PyChart, a charting python library, which in turn needs ghostscript for .PNG rendering. I have proven the script on both Linux Ubuntu and Windows (2000 and XP). I have every reason to believe that the script will work on all versions of Windows, as well as on the Macintosh platform.

In order to execute the E4406A Span Concatenator script, you need the following setup:

For Linux Users
  • Pyhon 2.7, usually pre-installed with most full-size Linux distros, such as Ubuntu. Make sure is is installed, otherwise get it from the standard installation tools (apt-get, Synaptic, etc.).
  • Install Pyqt4 (python-qt4) library.
  • Install ghostscript, 32-bit version (may also have been part of your Linux distro).
  • Install PyChart (python-pychart).
These packages are all available via the standard installation tools (apt-get, Synaptic, etc.).

For Windows Users
On Windows, the installation is a little bit more complex.
  • First, install Python 2.7 (https://www.python.org/download/releases).
  • Then install the appropriate PyQt4 package for Python 2.7 (http://www.riverbankcomputing.co.uk/software/pyqt/download) .
  • Next, install ghostscript, 32-bit version (http://www.ghostscript.com/download/gsdnld.html).
  • Also download and unzip the PyChart library (http://download.gna.org/pychart). Take the "pychart" directory and place it in the same directory as the Span Concatenator script files.
  • In order for PyChart to locate the ghostscript directory, you must add the ghostscript "bin" directory path to the Windows "Path" environment variable. For example, after modification the Path value may look like: C:\Python27\Lib\site-packages\PyQt4;%SystemRoot%\system32;...;C:\VXIpnp\WinNT\Bin;C:\Program Files\gs\gs9.14\bin  Invoking the window to modify environment variables is slightly different from one version of Windows to another. Please consult the web for instructions on how to perform this. Make sure you reboot your PC after changing an environment variable, otherwise the change will not take effect.



VirtualBox (Windows guest) to Linux (Host) GPIB PCI card Bridge


This came as an obvious requirement when I migrated from Windows 2000 to Linux. I realized that all the VIs (virtual instruments) I had developed in NI Labview 6i that used my
GPIB PCI card would become useless under Linux. I discovered Oracle's Virtual Box software, which allows to run another operating system in a window within Linux. This wonderful piece of free software allows, for example, to run Windows as a guest OS while within Linux (Xubuntu 12.04 LTS in my case). In the guest OS, you can share the USB ports, the serial ports, disk drives and have network connectivity with the host PC's Linux OS. Unfortunately, you cannot install Windows drivers to support a specialized PCI card such as a GPIB card. This is where my piece of Python code comes in handy.

This script bridges one of the Windows VirtualBox (guest-defined) COM ports to a Linux's (host-defined) GPIB PCI card.  As an example, this would make Labview (running in a Windows VirtualBox) able to use a GPIB card located in a Linux host PC via a Windows COM port. This script will be running endlessly in Linux once launched from an X-terminal. The X-terminal window can display I/O activity for troubleshooting purpose.

To use the bridge, you send ASCII string commands to the Windows COM port and read back the results from the same COM port. The Python script runs on the Linux host. It performs the command translation and sends the commands to the GPIB PCI card, reads back the data from the GPIB card and sends the data back to the Windows COM port.
Examples of COM port commands and read backs would be:

CDEV 3<LF>
TRIG 3<LF>
READ 3,20<LF>
F +9.9999696E+3<LF>
TRIG 3<LF>
READ 3,20<LF>
F +9.9999696E+3<LF>
.
.
.
DDEV 3<LF>
Creates a GPIB device with GPIB address 3.
Sends trigger to device
with GPIB address 3.
Sends the command to read 20 bytes from device 3.
Device responds with reading.
Sends Trigger to device with GPIB address 3.
Sends the command to read 20 bytes
from device 3.
Device responds with reading.
.
.
.
Deletes device with GPIB address 3.

A list of available commands and their syntax is included in the Python script file.


The following are prerequisites to using this Python script.
  • The script uses the "Linux-GPIB" drivers on the linux host PC and it imports its python bindings (Gpib.py) file. See http://linux-gpib.sourceforge.net/ for more detail.
  • The "Pyserial" python bindings must be installed on the linux host PC. See http://pyserial.sourceforge.net/ for more detail.
  • A virtual (piped) COM port must be created when defining the Windows guest OS in Oracle VirtualBox configuration. This is well documented in the VirtualBox documentation. See http://www.virtualbox.org/manual/ch03.html#serialports for more detail.
  • The virtual port must be defined as "/tmp/ttyGPIB" in VirtualBox in order for this script to work as written.
  • The linux "socat" port bridging tool must be installed on the host PC to bridge the guest OS's piped serial device "/tmp/ttyGPIB" to linux serial device "/tmp/ttyGPIB2" . See http://www.dest-unreach.org/socat/ for more detail.
  • Full operation of the GPIB PCI card with test instruments must be verified in Linux before venturing into this...

National Instruments GPIB-232CT Support in Python

I have created a Python header file that provides the Serial port commands for using the NI GPIB-232CT controller box. This is the old generation Serial-GPIB Controller, not the GPIB-232CT-A box. The box looks like this. The manual can be found here . Not all commands are defined; only those the most commonly used. You may want to augment it with more commands. Note that the Pyserial module must be installed on the PC.

GPIB232CT_Functs.py

Here is an example Python script that uses the above header file. It is used to interface to a Hewlett-Packard 3478A Digital Multimeter. A QT4-Designer window (not provided) invokes this script.

  HP_3478A_Read_And_Average_GPIB232CT.py


Labview VI's FOR TEST INSTRUMENT CONTROL

The following is a series of Labview Virtual Instrument files (called VI's) I developed over the years to remotely control various instruments I have own. These were developed in Labview version 6i and under Windows 2000. 
I want to share these for the benefit of other test instrument amateurs. By no mean do I want to show these as examples of good programming practices. Still, they may be helpful to get started in test instrument control.


National Instruments GPIB-232CT VI's.zip
HP 3455 Read VI's.zip
HP 3478_READ_AVERAGE VI's.zip
HP 3488_TEST VI's.zip
HP 3586_READ_&_WRITE VI's.zip
HP 5370_AUTOMATED READ VI.vi
HP 8753_DATA_S-PARAM_DUMP VI's.zip
HP 59501_Control VI.vi
Marconi_2019_test VI.vi