GitXplorerGitXplorer
K

VXI11.jl

public
2 stars
3 forks
0 issues

Commits

List of commits on branch master.
Verified
367b15223891d9a040034046162d49bbff9c6fbc

update for Julia 1 (#2)

nnotinaboat committed a year ago
Unverified
279808d3f0a99e5d09da028dd322692087f7bf27

Implement VXI11 protocol

KKeno committed 7 years ago
Unverified
73c1dc8c3a51ea944594c581b2d4308b78998285

ONCRPC.jl generated files.

KKeno committed 7 years ago
Unverified
37732ab205d4c808604b8af97030b0cf2f60c568

initial empty commit

KKeno committed 7 years ago

README

The README file for this repository.

VXI11 - Instrument Network Interface

Build Status

VXI-11 is a specification for addressing networked test and measurement equipment. The specification is available on the VxiBus website.

The specification builds on the ONC RPC protocol, of which this package contains a simplified implementation.

Usage

In this example, I'll be connecting to a Tektronix TDS2000 oscilloscope. However, you may prefer using a higher level package such as Instruments.jl instead of this package.

julia> using VXI11

julia> l = VXI11.Link(ip"192.168.1.199", 961)

julia> write(l, "*IDN?")
5

julia> String(read(l))
"TEKTRONIX,TBS2104,C020205,CF:91.1CT FV:v1.23; FPGA:v1.21; \n"