Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.08 KB

README.md

File metadata and controls

26 lines (23 loc) · 1.08 KB

QInsControlCore

Stable Dev Build Status Coverage

This package is used to resolve conflicts when multiple coprocesses send commands to the same instrument simultaneously.

install

before you install this package, you must make sure that you have installed the NI VISA.

julia> ]
(@v1.9) pkg> add https://github.com/FaresX/QInsControlCore.jl.git

usage

using QInsControlCore
cpu = Processor()
ct = Controller("VirtualInstr", "VirtualAddress")
login!(cpu, ct)
start!(cpu)
idn = ct(query, cpu, "*IDN?", Val(:query))
logout!(cpu, ct)
stop!(cpu)