是德科技
直播中

刘璇

7年用户 176经验值
私信 关注
[问答]

如何关闭扫窗?

亲爱的所有...当我执行chan.Single(True)时,有一个扫视窗口显示两者。
有没有办法在扫视窗户时无法在触发器中显示它?
(Delphi)代码如下... chan:= app.ActiveChannel;
trigSetup:= app.TriggerSetup;
trigSetup.Scope:= naChannelTrigger;
chan.TriggerMode:= 0;
chan.TestPortPower [1]:= -10;
chan.Single(True);编辑:linyi027于2013年10月29日凌晨3:01发表

以上来自于谷歌翻译


     以下为原文

  Dear All...

When I execute chan.Single (True) when there is a sweeping window showed off both.
Is there a way I can not show it in the Trigger when sweeping windows do?


(Delphi)
The code is as follows ...  

chan:=app.ActiveChannel;
trigSetup:= app.TriggerSetup;
trigSetup.Scope:= naChannelTrigger;  
chan.TriggerMode := 0 ;
chan.TestPortPower[1]:= -10;
chan.Single(True);

Edited by: linyi027 on Oct 29, 2013 3:01 AM   
附件

回帖(2)

刘璇

2019-2-20 16:22:19
这是连续测试视频。编辑:linyi027于2013年11月3日下午7:00

以上来自于谷歌翻译


     以下为原文

  This is the continuous test video  .

Edited by: linyi027 on Nov 3, 2013 7:00 PM
举报

仲娜娜

2019-2-20 16:37:42
引用: djiwqljd 发表于 2019-2-20 19:46
这是连续测试视频。编辑:linyi027于2013年11月3日下午7:00

以上来自于谷歌翻译

您可以使用SCPI发送“Single”命令。
这避免了额外的对话框:scpi:= app.ScpiStringParser scpi.Execute(“SENS1:SWE:MODE SING; * OPC?”)旁注:我使用了ScpiStringParse.Execute而不是ScpiStringParser.Parse。
那是因为如果SCPI错误队列出现任何错误,Parse将返回错误。
在其他情况下,这是正确的行为。
但是,在您的情况下,您只对执行等效的Single感兴趣 - 并且您不想查询SCPI错误队列。编辑:johanericsson于2013年11月4日上午9:32

以上来自于谷歌翻译


     以下为原文

  You can send the "Single" command using SCPI. That avoids the extra dialog:

scpi:=app.ScpiStringParser
scpi.Execute("SENS1:SWE:MODE SING;*OPC?")

Sidenote: I used ScpiStringParse.Execute instead of ScpiStringParser.Parse. That's because Parse will return an error if there is any error on the SCPI error queue. In other circumstances, that's the right behavior. But, in your case, you are just interested in performing the equivalent of Single - and you don't want to query the SCPI error queue.

Edited by: johanericsson on Nov 4, 2013 9:32 AM
举报

更多回帖

发帖
×
20
完善资料,
赚取积分