Keysight Technologies J-BERT M8020A Programming Manual page 71

M8000 series of ber test solutions
Hide thumbs Also See for J-BERT M8020A:
Table of Contents

Advertisement

public override double getPJFreqMin()
// M8020A - checked
{
string retString = "";
double val = 0.0;
retString = this.Query(":SOUR:JITT:HFR:PER1:FREQ? " + m_PG_channel + ",MIN");
val = double.Parse(retString);
return val;
}
public override List<string> setPJEnabled(bool b)
// M8020A - checked
{
string strValue = "";
if (b) strValue = "ON";
else strValue = "OFF";
return this.Send(":SOUR:JITT:HFR:PER1:STAT " + m_PG_channel + "," + strValue);
}
public override List<string> setPJFreq(double PJFreq)
// M8020A - checked
{
string strValue = "";
PJFreq = Math.Round(PJFreq, 3);
if ((this.getPJFreqMax() > PJFreq) && (this.getPJFreqMin() <= PJFreq))
else if (this.getPJFreqMax() < PJFreq)
else if (this.getPJFreqMin() > PJFreq)
else
return this.Send(":SOUR:JITT:HFR:PER1:FREQ " + m_PG_channel + "," + strValue + "Hz");
}
Keysight M8070A Programming Guide
strValue = PJFreq.ToString();
strValue = this.getPJFreqMax().ToString();
strValue = this.getPJFreqMin().ToString();
strValue = this.getPJFreq().ToString();
Programming Examples
3
71

Hide quick links:

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the J-BERT M8020A and is the answer not in the manual?

Subscribe to Our Youtube Channel

This manual is also suitable for:

J-bert m8030aJ-bert m8040a

Table of Contents