Dcs

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:DCS:ECWord
CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:DCS:IMODulation
class DcsCls[source]

Dcs commands group definition. 3 total commands, 1 Subgroups, 2 group commands

get_ec_word() str[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:DCS:ECWord
value: str = driver.configure.afRf.measurement.multiEval.tones.dcs.get_ec_word()

Specifies the expected DCS code number.

return:

exp_code_word: DCS code number as octal number Not allowed octal numbers are automatically rounded to the closest allowed value, see method RsCma.Source.AfRf.Generator.Tones.Dcs.cword. Range: #Q20 to #Q777

get_imodulation() bool[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:DCS:IMODulation
value: bool = driver.configure.afRf.measurement.multiEval.tones.dcs.get_imodulation()

Enables or disables the inversion of the FSK demodulation polarity.

return:

imodulation: OFF | ON

set_ec_word(exp_code_word: str) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:DCS:ECWord
driver.configure.afRf.measurement.multiEval.tones.dcs.set_ec_word(exp_code_word = r1)

Specifies the expected DCS code number.

param exp_code_word:

DCS code number as octal number Not allowed octal numbers are automatically rounded to the closest allowed value, see method RsCma.Source.AfRf.Generator.Tones.Dcs.cword. Range: #Q20 to #Q777

set_imodulation(imodulation: bool) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:MEValuation:TONes:DCS:IMODulation
driver.configure.afRf.measurement.multiEval.tones.dcs.set_imodulation(imodulation = False)

Enables or disables the inversion of the FSK demodulation polarity.

param imodulation:

OFF | ON

Cloning the Group

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

Subgroups