During the COVID-19 crisis we remains fully operational, working under modified conditions. Call +91 9677048963

SCPI Automation of Signal Hound Spectrum Analyzers

We often get asked whether we support SCPI programming with our spectrum analyzers. The short answer is yes!

What is SCPI?

SCPI, which stands for “Standard Commands for Programmable Instruments”, specifies a programming “language” that is designed for controlling test instruments. It provides a common syntax, command structure, and data interchange format which can be used across multiple SCPI compatible test and measurement instruments. Commands are hierarchical using easily understood English based instructions. SCPI commands are sent to instruments over many interfaces, commonly GPIB, VXI, USB, Ethernet, etc. SCPI is intended to give the test system programmer a standardized environment for writing test instrument automation scripts, reducing implementation time by eliminating the need to learn a new proprietary software syntax.

Signal Hound offers remote interface and control capabilities using SCPI compatibility commands for its spectrum analyzers via its Spike software. Our Spike software provides control of all Signal Hound spectrum analyzers using a common Graphical User Interface (GUI) to offer advanced signal analysis measurements and display. They can be remotely operated by sending SCPI commands to Spike through a TCP/IP link. You can connect and interface the Spike software through any VISA implementation or any programming language that allows SOCKET programming.

Setting up a VISA socket connection

The Spike software will accept a single network connection in which it can receive SCPI commands and send responses. Instrument control is performed by connecting to the Spike software on a TCP/IP port. On this port, a user can send and receive raw SCPI commands. It is not necessary to use an I/O library like VISA to communicate with the Spike software, but it can simplify several operations. It is possible to communicate directly over the socket with socket programming. The computer that is communicating with the Spike software does not have to be the same computer running the Spike software and does not have to be a Windows platform.

SCPI code running in an IDE
Figure 1 – Automated phase noise measurements using C++ and VISA

It is recommended to use a VISA library if available. Several implementations of VISA exist. Commonly used options include Keysight’s I/O libraries and NI’s VISA libraries. You can also use VISA implementations that exist in other languages/environments such as MATLAB, LabVIEW, and Python.

Connecting to the socket interface using VISA looks like this:

viOpen(rm, “TCPIP::localhost::5025:SOCKET”, VI_NULL, VI_NULL, &inst);

Additionally, when using a VISA library, it is necessary to set the VI_ATTR_TERMCHAR_EN attribute to true. This will terminate the read operation when the termination character is received. The termination character should be set to the newline (‘\n’) character if it is not set by default. The code for this is:

viSetAttribute(inst, VI_ATTR_TERMCHAR_EN, VI_TRUE);
viSetAttribute(inst, VI_ATTR_TERMCHAR, '\n');

Only one connection to the Spike software can be active at a time. The connection can be terminated by closing the socket connection, either through the socket library you are using, the viClose function if you are using a VISA library, or by closing your application. Spike will immediately begin waiting for another socket connection when the previous one has ended.

Supported SCPI commands

Spike’s current set of SCPI commands cover the most common spectrum analyzer/receiver functions within the Spike software.

SCPI commands being sent to Signal Hound's Spike software
Figure 2 – Remote commands can be sent to a device, such as the *IDN? command which identifies the currently connected spectrum analyzer

The table below details which functionality is covered under the current SCPI command set. Additional functionality will be added over time. If the functionality you need is not available, please contact us at aj@signalhound.com to make requests.

Functionality Supported
Swept Analysis – Sweep Settings Yes
Swept Analysis – Trace controls Yes
Swept Analysis – Marker controls Yes
Swept Analysis – Channel power, occupied bandwidth Yes
Swept Analysis – Peak table No
Swept Analysis – Sweep recording/playback No
Path Loss Tables No
Limit Lines Yes
Spectrogram/Waterfall plot controls No
Persistence display controls No
Real-Time (Since real-time shares several controls with swept analysis, any functionality provided for swept analysis will be available for real-time measurement mode) Partial
Zero-Span No
Harmonic Measurements Yes
Scalar Network Analysis Yes
Phase Noise Measurements Yes
Digital Modulation Analysis Yes
EMC Precompliance No
Analog Demodulation Yes
Interference Hunting No

Programming alternatives

All Signal Hound spectrum analyzers, including the SM200, BB60, SA44, and SA124, can be programmed using three methods (Figure 3). The first two employ SCPI commands via Spike software either locally or remotely over the internet. The third is through fast, direct API programming using a device-specific, local API. API’s are available at no cost for all Signal Hound spectrum analyzers.

Since a TCP/IP SOCKET link is used for the SCPI commands, you can control the Spike software from any PC/operating system. For example, a Windows PC runs Spike, but remote control of Spike on the Windows PC can occur on a Linux or Apple system. Traditional programming using Signal Hound-supplied, device-specific API’s remains available for fast, direct device control. The device specific API’s use a C interface, and the functions can be called from most modern programming languages and environments such as C/C++, C#, Python, Java, LabVIEW, and MATLAB.

Figure 3 – Signal Hound spectrum analyzers can be programmed using three methods: two employ SCPI commands via Spike software either locally or remotely over the internet; the third is through fast, direct API programming using a device-specific, local API.

For more info

The Signal Hound Software Development Kit (SDK) includes example programs using SCPI to automate the Spike software for several measurement procedures. These programs can provide a basis on which you can build custom programs for automating Signal Hound spectrum analyzers.

The SCPI functionality for Spike is available immediately, at no cost, as part of the Spike software download. The Spike SCPI programming manual and examples are available as a part of the Signal Hound SDK.  The manual covers the basics of SCPI commands, how to get started programming the Spike software, and will cover the full SCPI command set implemented by the Spike software. SCPI commands can and will change as the Spike software evolves. It is recommended that when you update Spike in an installation that is controlled via SCPI, you review the version notes and determine if any functionality needs to be updated.

Posted in Company Updates, How-To