EasyManua.ls Logo

Keysight Technologies J-BERT M8020A

Keysight Technologies J-BERT M8020A
502 pages
To Next Page IconTo Next Page
To Next Page IconTo Next Page
To Previous Page IconTo Previous Page
To Previous Page IconTo Previous Page
Loading...
68 Keysight M8070A Programming Guide
3 Programming Examples
PJ Example
N4903B PJ Example
#region PJ
public override bool getPJEnabled()
// SOUR8:PER?
{
if ((int.Parse(this.Query(":SOUR8:PER?"))) == 1)
return true;
else
return false;
}
public override double getPJFreq()
// SOUR8:PER:FREQ?
{
return double.Parse(this.Query(":SOUR8:PER:FREQ?"));
}
public override double getPJFreqMax()
// SOUR8:PER:FREQ? MIN MAX
{
return double.Parse(this.Query(":SOUR8:PER:FREQ? MAX"));
}
public override double getPJFreqMin()
// SOUR8:PER:FREQ? MIN MAX
{
return double.Parse(this.Query(":SOUR8:PER:FREQ? MIN"));
}
public override List<string> setPJEnabled(bool b)
// SOUR8:PER 1 ==> ON
// SOUR8:PER 0 ==> OFF
{
string strValue = "";
if (b) strValue = "1";
else strValue = "0";
return this.Send(":SOUR8:PER: " + strValue);
}

Table of Contents

Other manuals for Keysight Technologies J-BERT M8020A

Related product manuals