通过 VISA 卡接口(GPIB接口/ TCP协议)发送命令或查询到仪器或设备
#include <Visa.au3>
_viFindGpib ( ByRef $a_descriptor_list, ByRef $a_idn_list [, $f_show_search_results = 0] )
$a_descriptor_list(ByRef) | 返回 GPIB 总线设备 VISA 资源描述的数组 (更多信息见 _viExecCommand 备注) |
$a_idn_list(ByRef) | 返回 GPIB 总线设备 (例如复合名) IDN 数组 |
$f_show_search_results | [可选参数] 如为 1, 则显示搜索结果消息框. 默认为 0, 不显示结果 |
成功: | 返回设备数(0 或更多) |
失败: | 返回一个负值,设置@error:to 1 |
; 该示例执行一个GPIB总线上的搜索并在消息框中显示结果
#include <Visa.au3>
Local $a_descriptor_list[1], $a_idn_list[1]
_viFindGpib($a_descriptor_list, $a_idn_list, 1)