summaryrefslogtreecommitdiff
path: root/libvxi11client/perlbits/testscript.pl
diff options
context:
space:
mode:
authorMichael J. Chudobiak <mjc@avtechpulse.com>2013-01-23 14:21:06 -0500
committerMichael J. Chudobiak <mjc@avtechpulse.com>2013-01-23 14:21:06 -0500
commit38c1a469e5931763e9775e0046e47fc4ba836a46 (patch)
tree80619e8678b8dbca2d5d03ae53f0afba34a2ec0c /libvxi11client/perlbits/testscript.pl
parentb80de22fb9303609c23366b709319e3354661edb (diff)
make vxi_write accept the datastring as an unnamed parameter
Diffstat (limited to 'libvxi11client/perlbits/testscript.pl')
-rwxr-xr-x[-rw-r--r--]libvxi11client/perlbits/testscript.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/libvxi11client/perlbits/testscript.pl b/libvxi11client/perlbits/testscript.pl
index 9ba7053..f7e9e42 100644..100755
--- a/libvxi11client/perlbits/testscript.pl
+++ b/libvxi11client/perlbits/testscript.pl
@@ -7,10 +7,10 @@ use VXI11::Client;
vxi_startinterruptserver();
-my $instr = vxi_open("roi", 0);
+my $instr = vxi_open("192.168.0.62", 0);
$instr->vxi_lock(0);
-$instr->vxi_write(data => "*IDN?");
+$instr->vxi_write("*idn?");
my ($bytes, $buff, $reason) = $instr->vxi_read();
print "got " . $bytes . ";" . $buff . " reason " . $reason ."\n";