Standard Commands for Programmable Instruments

From Wikipedia, the free encyclopedia
Rear-panel of Tektronix TDS210 digital oscilloscope showing RS-232 (DE9) and IEEE-488 connectors that accept remote SCPI commands.[1]
Rear-panel of Rigol DS1074Z digital oscilloscope showing USB-B and Ethernet (RJ45) connectors that accept remote SCPI commands.[2]

The Standard Commands for Programmable Instruments (SCPI; often pronounced "skippy") defines a standard for syntax and commands to use in controlling programmable test and measurement devices, such as automatic test equipment and electronic test equipment.[3]

Overview[edit]

SCPI was defined as an additional layer on top of the IEEE 488.2-1987 specification "Standard Codes, Formats, Protocols, and Common Commands".[4] The standard specifies a common syntax, command structure, and data formats, to be used with all instruments. It introduced generic commands (such as CONFigure and MEASure) that could be used with any instrument. These commands are grouped into subsystems. SCPI also defines several classes of instruments. For example, any controllable power supply would implement the same DCPSUPPLY base functionality class. Instrument classes specify which subsystems they implement, as well as any instrument-specific features.

The physical hardware communications link is not defined by SCPI. While it was originally created for the IEEE-488.1 (GPIB) bus, SCPI can also be used with RS-232, RS-422, Ethernet, USB, VXIbus, HiSLIP, etc.

SCPI commands are ASCII textual strings, which are sent to the instrument over the physical layer (e.g., IEEE-488.1). Commands are a series of one or more keywords, many of which take parameters. In the specification, keywords are written CONFigure: The entire keyword can be used, or it can be abbreviated to just the uppercase portion. Responses to query commands are typically ASCII strings. However, for bulk data, binary formats can be used.[3]

The SCPI specification consists of four volumes: Volume 1: "Syntax and Style", Volume 2: "Command Reference", Volume 3: "Data Interchange Format", Volume 4: "Instrument Classes".[3] The specification was originally released as non-free printed manuals, then later as a free PDF file.

SCPI history[edit]

First released in 1990,[3][5] SCPI originated as an additional layer for IEEE-488. IEEE-488.1 specified the physical and electrical bus, and IEEE-488.2 specified protocol and data format, but neither specified instrument commands. Different manufacturers, and even different models, of the same type of instrument would use different command sets. SCPI created a standard which could be common across all manufacturers and models. It requires use of the IEEE-488.2 data formats, but does not mandate the IEEE-488.1 bus.[6]

In 2002-2003, the SCPI Consortium voted to become part of the IVI Foundation (Interchangeable Virtual Instruments).[6]

IEEE 488.2 history[edit]

In 1987, IEEE introduced IEEE 488.2-1987 specification "Standard Codes, Formats, Protocols, and Common Commands", it was later revised in 1992 as IEEE 488.2-1992.[7]

While IEEE 488.2 provided a device-independent syntax, there was still no standard for instrument-specific commands. Commands to control the same class of instrument, e.g., multimeters, would vary between manufacturers and even models. The United States Air Force,[8] and later Hewlett-Packard, recognized this problem. In 1989, HP developed their TML language[9] which was the forerunner to SCPI.

The IEC developed their own standards in parallel with the IEEE, with IEC 60625-2-1993 (IEC 625). In 2004, the IEEE and IEC combined their respective standards into a "dual logo" IEEE/IEC standard IEC 60488-2-2004, Part 2: Codes, Formats, Protocols and Common Commands,[10] replaces IEEE 488.2-1992 and IEC 60625-2-1993.[11]

Command syntax[edit]

SCPI commands to an instrument may either perform a set operation (e.g. switching a power supply on) or a query operation (e.g. reading a voltage). Queries are issued to an instrument by appending a question-mark to the end of a command. Some commands can be used for both setting and querying an instrument. For example, the data-acquisition mode of an instrument could be set by using the ACQuire:MODe command or it could be queried by using the ACQuire:MODe? command. Some commands can both set and query an instrument at once. For example, the *CAL? command runs a self-calibration routine on some equipment, and then returns the results of the calibration.

Similar commands are grouped into a hierarchy or "tree" structure.[3] For example, any instruction to read a measurement from an instrument will begin with "MEASure". Specific sub-commands within the hierarchy are nested with a colon (:) character. For example, the command to "Measure a DC voltage" would take the form MEASure:VOLTage:DC?, and the command to "Measure an AC current" would take the form MEASure:CURRent:AC?.

   :MEASure
       :VOLTage
            :DC?
            :AC?
       :CURRent
            :DC?
            :AC?
              ...

Abbreviating commands[edit]

The command syntax shows some characters in a mixture of upper and lower case. Abbreviating the command to only sending the upper case has the same meaning as sending the upper and lower case command.[3]

For example, the command “SYSTem:COMMunicate:SERial:BAUD 2400” would set an RS-232 serial communications interface to 2400 bit/s. This could also alternatively be abbreviated “SYST:COMM:SER:BAUD 2400”. The query command “SYSTem:COMMunicate:SERial:BAUD?” or “SYST:COMM:SER:BAUD?” would instruct the instrument to report its current baud rate.

Concatenating commands[edit]

Multiple commands can be issued to an instrument in a single string. They are made of simple commands separated by a semicolon character (;). For example, the command to "Measure a DC voltage then measure an AC current" would be issued as MEASure:VOLTage:DC?;:MEASure:CURRent:AC?.

Simple commands which start with a colon (:) are interpreted with respect to the root of the command tree. Otherwise, they refer implicitly to the last node of the previous command (unless they already begin with an asterisk). For example,

   :SOURce:FREQuency:STARt 100;STOP 200

is a shorthand for the message

   :SOURce:FREQuency:STARt 100;:SOURce:FREQuency:STOP 200

Arguments[edit]

Some commands accept or require one or more additional arguments. Arguments are given after the command, and are separated from the command using a space.[3] For example, the command to set the trigger mode of an instrument to "normal" may be given as "TRIGger:MODe NORMal". Here, the word "NORMal" is used as the argument to the "TRIGger:MODe" command. When multiple arguments are provided, the arguments are written as a comma-separated list. For example, a query command that performs an AC Volts measurement on a digital multimeter, using the meter's 10 VRMS measurement range, and displaying the measured voltage value with 4-1/2 digits of resolution, would be written as "MEASure:VOLTage:AC? 10,4".

Integer arguments[edit]

For commands that accept integer arguments, values may be specified in multiple computer number formats: decimal, hexadecimal, octal, binary. The last three formats are defined by IEEE 488.2,[10] which SCPI is based upon.[3] Decimal numbers (radix 10) aren't prefixed, hexadecimal numbers (radix 16) are prefixed with #H or #h, octal numbers (radix 8) with #Q or #q, and binary numbers (radix 2) with #B or #b. Hexadecimal digits may use either uppercase letters (ABCDEF), or lowercase letters (abcdef), or mixed case letters (aBcDeF). For octal, the letter "Q" was chosen instead of the letter "O" to minimize the visual confusion with the number "0" (zero).[10]

The following argument examples are numerically equivalent:

  • Decimal: 26
  • Hexadecimal: #H1A or #h1a
  • Octal: #Q32 or #q32
  • Binary: #B11010 or #b11010

See also[edit]

References[edit]

  1. ^ Tektronix TDS2010 Digital Oscilloscope Programmer Manual; 2020; 291 pages.
  2. ^ Rigol DS1074Z Oscilloscope Programmer Manual; 2019; 264 pages.
  3. ^ a b c d e f g h SCPI-1999 Specification; SCPI Consortium.
  4. ^ ni.com - History of GPIB - Developer Zone
  5. ^ "History of GPIB". National Instruments. Retrieved 2010-02-06. In 1990, the IEEE 488.2 specification included the Standard Commands for Programmable Instrumentation (SCPI) document.
  6. ^ a b "SCPI". IVI Foundation. Retrieved 2010-06-02.
  7. ^ IEEE Standard Codes, Formats, Protocols, and Common Commands for Use With IEEE Std 488.1-1987, IEEE Standard Digital Interface for Programmable Instrumentation, Institute of Electrical and Electronics Engineers, 1992, ISBN 1-55937-238-9, IEEE Std 488.2-1992
  8. ^ Project Mate in 1985
  9. ^ "GPIB 101, A Tutorial of the GPIB Bus". ICS Electronics. p. 5, paragraph=SCPI Commands.
  10. ^ a b c Standard Digital Interface for Programmable Instrumentation- Part 2: Codes, Formats, Protocols and Common Commands (Adoption of (IEEE Std 488.2-1992). IEEE. doi:10.1109/IEEESTD.2004.95390. hdl:11059/14380. ISBN 978-0-7381-4100-8.
  11. ^ "Replaced or Withdrawn Publications". IEC. Archived from the original on 2012-04-17. Retrieved 2010-02-06.

External links[edit]

Specifications
  • SCPI-1999, Volume 1-4, free, 819 page PDF file. (doesn't include * commands, because they are specified in IEEE 488.2)
  • IEEE 488.2-1992, USD$49 cost in 2024, available as 254 page PDF file. (replaces IEEE 488.2-1987, both superseded by IEEE/IEC 60488-2-2004)
  • IEEE/IEC 60488-2-2004, USD$354 cost in 2024, available as 264 page PDF file. (replaces IEC 60625-2-1993 / IEEE 488.2-1992 / IEEE 488.2-1987)

Programming Manual Examples[edit]

Multimeters
Oscilloscopes