Specifications

2 Command System RIGOL
DS2000 Programming Guide
2-555
Note: when the return format of the waveform data is set to ASCii (refer to
the
:WAVeform:FORMat command), the query returns the actual voltage of each
point of the waveform on the screen in scientific notation.
C# Test Program
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
using System.Threading;
using System.IO;
namespace FalconWavQuery
{
class Program
{
static void Main(string[] args)
{
Int32 viDef = 0;
Int32 viSession = 0;
Int32 s32ReadByte;
if (args.Length < 2)
{
Console.WriteLine( "Invalid Input! FalconWavQuery CHAN1
fileName" );
return;
}
Stopwatch stpWatch = new Stopwatch();
InitVisa( out viDef );
if (ConnectDevice(viDef, out viSession) == true)
{
}
else
{
Console.WriteLine( "Connect fail!" );
return;