嗨Derek,是的,你可以!
有一个命令可以使用SCPI接口读取文件的内容。
命令是MMEM:DATA?
这里有一小段如何使用它(IO库是VISA-COM):N6705A.WriteString“MMEM:DATA?”“internal: default.dlog”“”filedata()= N6705A.ReadIEEEBlock(BinaryType_UI1)你
然后将存档数据保存在PC上的文件中。
您可以通过LAN,USB或GPIB执行此操作。
需要注意的是,使用此方法传输大文件需要非常长的时间。
以上来自于谷歌翻译
以下为原文
Hi Derek,
Yes you can! There is a command to read the contents of a file out using the SCPI interface. The command is MMEM:DATA? Here is a little snippet of how to use it (the IO library is VISA-COM):
N6705A.WriteString "MMEM:DATA? ""internal:default.dlog"""
filedata() = N6705A.ReadIEEEBlock(BinaryType_UI1)
You would then save the filedata in a file on your PC.
You can do this via LAN, USB, or GPIB. One caveat is that a large file is going to take a very, very long time to transfer using this method.
嗨Derek,是的,你可以!
有一个命令可以使用SCPI接口读取文件的内容。
命令是MMEM:DATA?
这里有一小段如何使用它(IO库是VISA-COM):N6705A.WriteString“MMEM:DATA?”“internal: default.dlog”“”filedata()= N6705A.ReadIEEEBlock(BinaryType_UI1)你
然后将存档数据保存在PC上的文件中。
您可以通过LAN,USB或GPIB执行此操作。
需要注意的是,使用此方法传输大文件需要非常长的时间。
以上来自于谷歌翻译
以下为原文
Hi Derek,
Yes you can! There is a command to read the contents of a file out using the SCPI interface. The command is MMEM:DATA? Here is a little snippet of how to use it (the IO library is VISA-COM):
N6705A.WriteString "MMEM:DATA? ""internal:default.dlog"""
filedata() = N6705A.ReadIEEEBlock(BinaryType_UI1)
You would then save the filedata in a file on your PC.
You can do this via LAN, USB, or GPIB. One caveat is that a large file is going to take a very, very long time to transfer using this method.
举报