The *general purpose interface bus* (GPIB), also known as *IEEE-488*, is a standard short range digital communication bus. It is used in the test & measurement industry to control the equipment.

learn more… | top users | synonyms

0
votes
1answer
12 views

Controlling GPIB device on remote computer

I am trying to connect to two devices connected via GPIB on a remote computer connected directly via a Ethernet cable. I am using a JPIB library I found, but I am having difficulty determining how to ...
0
votes
0answers
21 views

GPIB connection to external deviced using JAVA on windows

i'm new to this forum as well as to the GPIB interface. I'm planning to use JPIB to develop java code. i've downloaded the JPIB jar file & installed as per the insructions: jpib.dll in jre bin ...
0
votes
1answer
89 views

PyVISA IV sweep with Keithley

I'm trying to do a IV curve measurement with Keithley and PyVISA. I found a Matlab example on Keithley website, but there's one section that I could not understand. % Used the serail poll function ...
0
votes
0answers
27 views

GPIB reads two times for the first time

I am reading data from a HP5313A frequency counter. I read using a simple HP5313A.ask command For the first time, the command is reading two frequency values and this is causing a problem in my later ...
0
votes
0answers
183 views

Communication via GPIB and RS232/Com using SCPI

I am currently looking for different possibilities to communicate with SCPI-compatible devices via C#. I've written my first code in LabWindows/CVI (Language: C) via COM-Interface and did it quite ...
0
votes
0answers
78 views

Communication issue with pyvisa 1.3

I created a python application to list instruments connected in GPIB. It functionned but today is an other day. I have connected 1 instrument, and I can see this instrument with NI MAX and IO Agilent. ...
2
votes
1answer
215 views

Python visa serial polling function

I have an issue with one of my GPIB instruments. It is quite an old one and it is stated as IEEE-488-1978. I have been trying to get the reference manual for that version of IEEE-488 but it has not ...
0
votes
1answer
126 views

Parsing string containing ascii codes to float

I'm using pyvisa to control a Signal recovery sr7225 lockin amplifier. Almost everything works as expected. There is only one problem, when the queried value is exactly zero and one queries in the ...
0
votes
1answer
344 views

Agilent Power Supply Programming using GPIB

On looking at the examples provided in the documentation of the Power supply. The Programming has been done by adding two libraries AgilentRMLib and VisComLib in the C#. When i try to add the ...
0
votes
0answers
143 views

How to configure a GBip-Ethernet adapter on Linux [closed]

It is a prologix Gpib-ethernet apadter with commands like addr auto etc. Architecture I have embedded system with gbip to ethernet adapater. The ethernet socket has fixed IP addr, say, ...
0
votes
1answer
111 views

Flush queued GPIB responses

Architecture ->GBIP from external interface is connected to target ( linux) system via gpib bus. Inside Linux box , there is ethernet cable from GPIB to motherboard. The PIC_GPIB card on external ...
0
votes
1answer
387 views

C# Visual Studios GPIB Commands

What commands do you use to talk to a GPIB instrument in C#, visual studios? I need to be able to write commands to the instrument and read the output.
2
votes
1answer
155 views

What can cause a GPIB to be unresponsive

I have a GPIB device that I'm communicating with using a National Instruments USB to GPIB. the USB to GPIB works great. I am wondering what can cause a GPIB device to be unresponsive? If I Turn ...
2
votes
2answers
959 views

Using visa to interface with GPIB always gives me VisaIOError

I'm trying to import visa in Python and interface with GPIB to control a device. The name of device I'm using is "GPIB0::9::INSTR", and I think there should be no problem with this. I ran the ...
2
votes
3answers
306 views

converting GPIB to USB using NI-488.2

I need to convert the GPIB to USB using NI-488.2 from national instrument and I need to create a software complete with GUI using python. The old machine that my company use for measuring is Model ...
4
votes
1answer
265 views

Creating an arbitrary waveform in MATLAB and downloading to arbitrary function generator (agilent AG33220A)

I am getting the following error: ??? Error using ==> icdevice.connect at 117 GPIB: AGILENT: The specified board is not installed or configured properly. If this error is not an instrument error, use ...
1
vote
1answer
174 views

numpy and scanf equivalents, turning binary output stream into an array

I am using linux-gpib library to talk to bench equipment. I can ask the device for output from it's buffer, and it streams to std out. I use something like: import gpib ...
1
vote
2answers
1k views

Python GPIB commands

I have a working gpib interface and Linux-GPIB package installed and working. I only know two commands at the moment, x.write and x.find. I don't know much about Python but I recognize the dot ...
1
vote
1answer
747 views

Opening and closing a NI device over GPIB

I'm currently working on a project where we're doing some automated testing. We're using a Rohde and Schwarz Vector Network Analyzer to do our testing, and the interface it provides for communication ...
2
votes
1answer
63 views

pipe out the contents directed to /dev/hpib

I have a hpib device connected to my system under /dev/hpib. Is it possible to redirect the GPIB commands which are sent to this device? Are there any methods where I can sniff out what low level ...
3
votes
1answer
497 views

Interfacing GPIB with Qt

I was wondering if it is possible to interface with GPIB Instruments by using C++ and Qt. If it is possible, can anyone tell me how easy it would be and/or point me in a direction for a tutorial or ...
3
votes
1answer
255 views

Agilent E4426B signal generator locks up during multiple GPIB *SAV operations

I have a test fixture with an Agilent E4426B RF signal generator connected to a PC via a National Instrument Ethernet-to-GPIB bridge. My software is attempting to sanitize the instrument by presetting ...
1
vote
1answer
811 views

GPIB connection to external device using MATLAB

Is there a way to establish a GPIB connection using MATLAB without the instrument control Tool box? (I don't have it). Also is there a way for MATLAB to know what the external device's RS232 parameter ...
0
votes
2answers
723 views

Python, sending command to GPIB instrument

I need to send a command to a GPIB instrument and I can do it like this: power.write("volt 0.01"). This command sets the output of my power source to 0.01V, however, I'm trying to take an I-V curve ...