07-22-2014 09:16 AM
Hello, I am communicating via GPIB with a Lakeshore Model 7300 VSM. This hardware is old, and I constructed a Labview program to control it via GPIB. Unfortunately, the only command that will not work is to remotely send (via GPIB) a SCAN command. This command is, according to the manual, supposed to remotely start a VSM sweep. Unfortunately, this feature is not working properly (in only works about 1 out of every 7 tries). I am wondering if maybe whenever I send the command, the VSM is still in "talk" mode, and it will not respond to the command? Is there a way to force the VSM into listen mode over GPIB so that the command is definitely received? Thanks, and any help is appreciated!
07-22-2014 11:01 AM
Are you sending several commands at once (setup and then scan)? You may need to add delays between your commands to allow the instrument to actually perform the command before it will accept the next one.
07-31-2014 11:17 AM
Hi, I have already been using the pauses between commands. My issue was data flow. I was not sending an error line through the commands I was hoping to access. Therefore, unless I precisely timed my command send, the command would not be sent during the present iteration of the while loop, and the command would be lost. By forcing the commands into the data flow, I now require the proper commands to be sent.