12-22-2023 09:29 AM
is there any resources for the prologix GPIB-ETH that use TCP please?
12-22-2023 10:36 AM
The attached C# code fragment may help you out.
12-27-2023 08:01 AM
thanks Karl for your quick response
just I have another question
if this Prologix is connected to a Keithly , How can communicate with keithley , because when I read keithly DataSheet it looks that he has it specific commands , for example to read the current I need those commands I think (:SENSe[1]:CURRent:RANGe:AUTO ON
: READ?),
So can I write those commands via the Prologix and then get a response ?
01-11-2024 02:59 AM
All the Prologix interfaces simply interpret all commands that have ++ prepended as commands for itself and otherwise sends anything else transparently through to the currently selected device.
So whatever stream interface you are using (VISA Serial, VISA TCP or LabVIEW native TCP) you first send those commands
"++addr {address}" to tell the Prologix what GPIB address to use for all subsequent communication
"++mode 1" set the interface into controller mode
"++auto 0" disable read after write, needed if a device has commands that do not produce a response to avoid unterminated query errors being generated
You can find an explanation for those commands here: https://prologix.biz/downloads/PrologixGpibUsbManual-6.0.pdf
Then once you setup the Prologix as required for your device, you simply send the commands that your device requires and receive its response if any.
01-11-2024 03:12 AM
Oh Great thanks Rolfk
it is so clear for me now