07-06-2016 12:21 PM
Hello!
First of all, I am a real beginner in the "world of LV Real-Time". I am in the beginning of a new project where one part of the system consists of a PXI system with RT OS including a GPIB interface. This interface will be connected to several Keithley picoamp meters (model 6485 & 6487). The RT code must read data from the Keithley devices, and also perform some commands on the devices (like zero them, turn on/off high voltage, etc.). The other part of the PXI RT application will have a TCP/IP connection to a Siemens S7 system, and send data there plus recieve incoming commands to be executed on the Keithleys. Anyway, interfacing the Siemens via TCP/IP is another nice challenge, and might be a topic of another future post. Right now I just wanna deal with the GPIB part...
I would like to ask people familiar with PXI RT (and possibly with GPIB on these platforms) for best practice & advices:
Any advice and suggestions are welcomed,
thanks!
Solved! Go to Solution.
07-06-2016 07:59 PM
1. DLLs are compibled for Windows. So that will not work on the RT OS, whether it is Pharlap, VxWorks, or RT Linux. You will need to make your own driver using VISA calls.
2. Since you have to handle different Keithley instruments, I highly recommend going with an OOP approach. Most of the similar instruments should have the same commands, so I doubt you will have a deep hierarchy.
My advice right now is to do all of your driver creation and testing on a Windows machine. All of the code your develop should work just find when you take it to an RT system. It is the command structure that matters more than anything.