在那里,在PNA中,我可以使用C#编程字符串cmd =“SYST:COMM:GPIB:RDEV:OPEN”+ bussAddr +“,”+ deviceAddr +“,”+
timeOutmSecs.ToString()创建一个带有以下命令的会话
;
PNA.IOPort.Output(CMD);
我正在尝试为ENA创建一个类似的驱动程序。
看看ENA支持的SCPI,它不支持上面的SCPI。
如何建立GPIB连接并在C#中为ENA创建会话。
仅供参考,我正在为E5072A开发ENA驱动程序
以上来自于谷歌翻译
以下为原文
HI there,
In PNA, I can create a session with the command below in C# programming
string cmd = "SYST:COMM:GPIB:RDEV:OPEN " + bussAddr + "," + deviceAddr + "," + timeOutmSecs.ToString();
PNA.IOPort.Output(cmd);
I'm trying to create a similar driver for ENA.
Looking at SCPI supported by ENA, it doesn't support the SCPI above.
How do I establish a GPIB connection and create a session in C# for ENA.
FYI, I'm developing ENA driver for E5072A
Thanks in advance