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 been successful.
The issue regards the fact that in order to read the Status Register of the instrument its requires a Serial Polling Function (as its reference manual says). I do not know how can I do so in Python using PyVISA.
For example, what I am using to read from the device is _instrument.ask("RV")_, where _RV_ means _Read Version_. Also, for writing a parameter like temperature, I do _instrument.write("ST20.00")_, where _ST20.00_ means _Set Temperature to 20.00 Celcious_.
I have been trying to find an ASCII command to send to the instrument with the _ask_ Python/VISA command and get in return the _Status Register Byte_, but seems to be nothing feasible.
If anybody has a suggestion, regarding how to pass a serial polling function with Python/VISA, that could solve my issue. Any input is welcome.
Thanks in advance.