Skip to content
forked from gotmc/usbtmc

Go library to communicate with a USB Test and Measurement Class (USBTMC) interface

License

Notifications You must be signed in to change notification settings

yuyuan2453/usbtmc

 
 

Repository files navigation

usbtmc

Go library to communicate with a USB Test and Measurement Class (USBTMC) enabled USB device.

GoDoc Go Report Card Build Status License Badge

Overview

USBTMC is a USB device class specification for test equiment and instrumentation devices, such as oscilloscopes, digital multimeters, and function generators. USBTMC requires three endpoints:

  • Control endpoint
  • Bulk-OUT endpoint
  • Bulk-IN endpoint

Additionally, the USBTMC subclass USB488 has an Interrupt-IN endpoint.

USBTMC Descriptors

  • Interface class = 0xFE (application-secific)
  • Interface subclass = 0x03 (indicates USBTMC)

Installation

$ go get github.com/gotmc/usbtmc

Usage

To use the usbtmc package, you must register which Go-based libusb interface library should be used. libusb is "a C library that provides generic access to USB devices." There are two Go-based libusb hardware interface libraries available:

You'll need to install one of the above libraries using:

$ go get -v github.com/google/gousb
$ go get -v github.com/gotmc/gotmc

To indicate which libusb interface library should be used, include one of the following blank imports:

import _ "github.com/gotmc/usbtmc/driver/google"
import _ "github.com/gotmc/usbtmc/driver/gotmc"

Documentation

Documentation can be found at either:

Contributing

To contribute, please fork the repository, create a feature branch, and then submit a pull request.

Testing

Prior to submitting a pull request, please run:

$ make check

To update and view the test coverage report:

$ make cover

Disclosure and Call for Help

While this package works, it does not fully implement the USBTMC specification. Please submit pull requests as needed to increase functionality, maintainability, or reliability.

License

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

About

Go library to communicate with a USB Test and Measurement Class (USBTMC) interface

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.0%
  • Makefile 1.0%