01-26-2015 12:24 AM
I have a project that simulate the LabVIEW to command parser (example SCPI) via TCP/IP.
Including two ways communication between host (LabVIEW) and client (LabVIEW, C++, C#,...) .
It's look like an instrument that support SCPI.
What is the best LabVIEW achitecture or tool for delvelop above requirements?
Thank you.
PS. Sorry for my little English.
01-26-2015 02:14 PM
Just to clarify,
Are you looking to develop a LabVIEW code which will simulate SCPI command instrument hardware?
01-27-2015 07:11 AM
I would use 3 different loops: TCP/IP Read, TCP/IP Write, and general processing. Use queues to send data between the loops.
01-20-2016 02:32 PM - edited 01-20-2016 02:33 PM
Just to clarify, Are you looking to develop a LabVIEW code which will simulate SCPI command instrument hardware?
I'm not the OP but I found this post because I have a similar project in mind where I want a piece of LabVIEW code to simulate a SCPI device. This includes paring incomming SCPI commands and performing actions upon it and sending back proper responses (to be defined by me.)
What is available out there for this, if anything?
01-21-2016 05:16 PM
There are several TCP example VI’s that ship with LabVIEW if you are interested in taking a look at those. You might be able to simulate your desired functionality that way. If you navigate to Help, Find Examples, and double-click on the Networking folder you will see the TCP and UDP example VI’s.
01-21-2016 05:31 PM
I was hoping there was an open source implementation of a SCPI Command Parser writtin in LabVIEW much like this 'C' implementation https://github.com/j123b567/scpi-parser
01-21-2016 07:26 PM