SkillAgentSearch skills...

Ivi

Go-based implementation of the Interchangeable Virtual Instrument (IVI) standard

Install / Use

/learn @gotmc/Ivi

README

ivi

Go-based implementation of the Interchangeable Virtual Instrument (IVI) standard.

GoDoc Go Report Card License Badge

Overview

The IVI Specifications developed by the IVI Foundation provide standardized APIs for programming test instruments. This package is a partial, Go-based implementation of the IVI Specifications.

The main advantage of the ivi package is not having to learn the SCPI commands for each individual piece of test equipment. For instance, by using the ivi package both the Agilent 33220A and the Stanford Research Systems DS345 function generators can be programmed using one standard API. The only requirement for this is having an IVI driver for the desired test equipment.

If an ivi driver doesn't exist for a peice of test equipment that you want to use, please open an issue and/or submit a pull request. The IVI Specifications don't provide APIs for every type of test equipment (e.g., they don't specify an API for electronic loads) in which case a set of APIs will be developed as needed for new types of test equipment.

Development focus is currently on solidifying the APIs and creating a few IVI drivers for each instrument type.

IVI Driver Goal

Per Section 2.6 Capability Groups in IVI-3.1 Driver Architecture Specification:

The fundamental goal of IVI drivers is to allow test developers to change the instrumentation hardware on their test systems without changing test program source code, recompiling, or re-linking. To achieve this goal, instrument drivers must have a standard programming interface...Because instruments do not have identical functionality or capability, it is impossible to create a single programming interface that covers all features of all instruments in a class. For this reason, the IVI Foundation recognizes different types of capabilities – Inherent Capabilities, Base Class Capabilities, Class Extension Capabilities and Instrument Specific Capabilities.

IVI Specification Deviation

TL;DR: When developing the Go-based IVI drivers, follow the .NET methods and prototypes as much as possible.

As stated in Section 1.5 Conformance Requirements of the IVI-3.1: Driver Architecture Specification, Revision 3.8, "IVI drivers can be developed with a COM, ANSI-C, or .NET API." In general, the Go method signatures try to be as close to the .NET signatures as possible. However, given the desire to write idiomatic Go, where necessary and where it makes sense, the Go-based IVI drivers deviate from the detailed IVI Specifications at times.

For instance, since Go does not provide method overloading, the .NET method prototypes cannot be followed in all cases. For example, in the IVI-4.2 IviDmm Class Specification, the .NET method prototypes show two Configure methods with different function signatures based on whether auto-range is specified or a manual range value is provided.

void Configure(MeasurementFunction measurementFunction,
               Auto autoRange,
               Double resolution);

void Configure(MeasurementFunction measurementFunction,
               Double range,

               Double resolution);

However, Go isn't C, so the Go-based IVI drivers don't have to rely on defined values, such as specific negative numbers representing auto-range (e.g., -1.0 = auto range on) and positive numbers representing the user specified manual range. Using the same example, below is the C prototype for Configure, where Range is a ViReal64 and negative values provided defined values.

ViStatus IviDmm_ConfigureMeasurement (ViSession Vi,
                                      ViInt32 Function,
                                      ViReal64 Range,
                                      ViReal64 Resolution);

Because of these differences, the Go function signatures may deviate from the IVI Specifications, when required and where it makes sense to enable writing idiomatic Go. Using the same example, below is the function signature for ConfigureMeasurement in Go.

ConfigureMeasurement(
    msrFunc MeasurementFunction,
    autoRange AutoRange,
    rangeValue float64,
    resolution float64,
) error

MeasurementFunction and AutoRange are user-defined types with enumerated constant values. Note: the function parameter rangeValue is used instead of range, since range is a reserved keyword and cannot be used as an identifier in Go.

type MeaurementFunction int

const (
	DCVolts MeasurementFunction = iota
	ACVolts
    ...
	Period
	Temperature
)

type AutoRange int

const (
	AutoOn AutoRange = iota
	AutoOff
	AutoOnce
)

Installation

$ go get github.com/gotmc/ivi

Usage

The ivi package requires receiving an Instrument interface. The following gotmc packages meet the Instrument interface:

  • visa — Calls lxi or usbtmc as needed, so that you can identify instruments using a VISA resource address string.
  • lxi — Used to control LXI enabled instruments via Ethernet.
  • usbtmc — Used to control USBTMC compliant instruments via USB.
  • prologix — Used to communicate with instruments using a Prologix GPIB controller.
  • asrl — Used to control intstruments via serial.

Examples

Examples can be found at https://github.com/gotmc/ivi-examples.

For timeout usage examples, see the timeout examples in the ivi-examples repository.

Documentation

Documentation can be found at either:

Timeout Support

Timeout support is provided via Go's standard context.Context. The Command and Query methods on the Instrument interface accept a context.Context as their first parameter, allowing per-operation timeout control.

// Create a context with a specific timeout
ctx, cancel := context.WithTimeout(context.Background(), 2*time.Second)
defer cancel()

// Use context with any Command or Query call
manufacturer, err := dmm.InstrumentManufacturer(ctx)
if errors.Is(err, context.DeadlineExceeded) {
    log.Println("Query timed out")
}

The ivi.DefaultTimeout constant (10 seconds) is provided as a convenience for creating timeout contexts.

Proper Cleanup and Local Control

When working with instruments, it's important to properly clean up connections and optionally return instruments to local control so their front panels remain operational after your program ends.

Basic Cleanup Pattern

// Create and use your instrument
dmm, err := key3446x.New(inst, false)
if err != nil {
    log.Fatal(err)
}

// Always defer Close() to ensure proper cleanup
defer func() {
    if err := dmm.Close(); err != nil {
        log.Printf("Error during cleanup: %v", err)
    }
}()

// Use the instrument...
ctx := context.Background()
manufacturer, _ := dmm.InstrumentManufacturer(ctx)

By default, Close() returns the instrument to local control (front panel regains control) before closing the connection.

Controlling Local Return Behavior

You can control whether the instrument returns to local control:

// Disable automatic return to local control
dmm.SetReturnToLocal(false)

// Re-enable it later if needed
dmm.SetReturnToLocal(true)

// Check current setting
if dmm.IsReturnToLocal() {
    fmt.Println("Will return to local control on Close/Disable")
}

Manual Local Control

If you need to return an instrument to local control without closing the connection:

// Return to local control (front panel regains control)
ctx := context.Background()
err := dmm.Disable(ctx)
if err != nil {
    log.Printf("Error returning to local: %v", err)
}

Use Cases

Keep Remote Control (set ReturnToLocal to false):

  • Automated test systems where instruments should stay in remote mode
  • Continuous monitoring applications
  • When switching between multiple controlling applications

Return to Local (default, ReturnToLocal is true):

  • Development and debugging
  • Manual testing with occasional automation
  • Single-use scripts
  • Educational environments

Contributing

Contributions are welcome! To contribute please:

  1. Fork the repository
  2. Create a feature branch
  3. Code
  4. Submit a pull request

Testing

Prior to submitting a pull request, please run:

$ just check
$ just lint

To update and view the test coverage report:

$ just cover

License

ivi is released under the MIT license. Please see the LICENSE.txt file for more information.

View on GitHub
GitHub Stars20
CategoryProduct
Updated12h ago
Forks7

Languages

Go

Security Score

95/100

Audited on Mar 30, 2026

No findings