SelCall

SCPI Command:

CONFigure:AFRF:MEASurement<instance>:MEValuation:TONes:SELCall:DTLength
CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:CFGenerator
CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:SLENgth
CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:STANdard
CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:MACCuracy
class SelCallCls[source]

SelCall commands group definition. 8 total commands, 2 Subgroups, 5 group commands

get_cfgenerator() bool[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:CFGenerator
value: bool = driver.configure.afRf.measurement.multiEval.tones.selCall.get_cfgenerator()

Couples the SelCall tone settings of the analyzer to the corresponding generator settings.

return:

conf_from_gen: OFF | ON

get_dt_length() float[source]
# SCPI: CONFigure:AFRF:MEASurement<instance>:MEValuation:TONes:SELCall:DTLength
value: float = driver.configure.afRf.measurement.multiEval.tones.selCall.get_dt_length()

Sets the minimum length of a single tone that the dialing measurement can detect.

return:

dt_length: No help available

get_maccuracy() MeasAccuracy[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:MACCuracy
value: enums.MeasAccuracy = driver.configure.afRf.measurement.multiEval.tones.selCall.get_maccuracy()

Configures the accuracy of the analysis of SelCall tone sequences.

return:

meas_accuracy: NORMal | HIGH NORMal: lower tone detection accuracy / minimum pause length HIGH: higher tone detection accuracy / minimum pause length

get_slength() int[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:SLENgth
value: int = driver.configure.afRf.measurement.multiEval.tones.selCall.get_slength()

Specifies the expected length of the analyzed SelCall tone sequence (number of digits) . By default, the user-defined tone definition is disabled, and the length is fixed (five digits) . If the user-defined tone definition is enabled, you can configure the length.

return:

seq_length: Range: 2 to 42

get_standard() SelCallStandard[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:STANdard
value: enums.SelCallStandard = driver.configure.afRf.measurement.multiEval.tones.selCall.get_standard()

Selects a selective-calling standard for SelCall tone sequence analysis.

return:

sel_call_standard: CCIR | EEA | EIA | ZVEI1 | ZVEI2 | ZVEI3 | DZVei | PZVei

set_cfgenerator(conf_from_gen: bool) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:CFGenerator
driver.configure.afRf.measurement.multiEval.tones.selCall.set_cfgenerator(conf_from_gen = False)

Couples the SelCall tone settings of the analyzer to the corresponding generator settings.

param conf_from_gen:

OFF | ON

set_dt_length(dt_length: float) None[source]
# SCPI: CONFigure:AFRF:MEASurement<instance>:MEValuation:TONes:SELCall:DTLength
driver.configure.afRf.measurement.multiEval.tones.selCall.set_dt_length(dt_length = 1.0)

Sets the minimum length of a single tone that the dialing measurement can detect.

param dt_length:

numeric value Range: 0.02 to 0.03 , Unit: s

set_maccuracy(meas_accuracy: MeasAccuracy) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:MACCuracy
driver.configure.afRf.measurement.multiEval.tones.selCall.set_maccuracy(meas_accuracy = enums.MeasAccuracy.HIGH)

Configures the accuracy of the analysis of SelCall tone sequences.

param meas_accuracy:

NORMal | HIGH NORMal: lower tone detection accuracy / minimum pause length HIGH: higher tone detection accuracy / minimum pause length

set_slength(seq_length: int) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:SLENgth
driver.configure.afRf.measurement.multiEval.tones.selCall.set_slength(seq_length = 1)

Specifies the expected length of the analyzed SelCall tone sequence (number of digits) . By default, the user-defined tone definition is disabled, and the length is fixed (five digits) . If the user-defined tone definition is enabled, you can configure the length.

param seq_length:

Range: 2 to 42

set_standard(sel_call_standard: SelCallStandard) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:SELCall:STANdard
driver.configure.afRf.measurement.multiEval.tones.selCall.set_standard(sel_call_standard = enums.SelCallStandard.CCIR)

Selects a selective-calling standard for SelCall tone sequence analysis.

param sel_call_standard:

CCIR | EEA | EIA | ZVEI1 | ZVEI2 | ZVEI3 | DZVei | PZVei

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.afRf.measurement.multiEval.tones.selCall.clone()

Subgroups