SelCall

SCPI Command:

SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:STANdard
SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:SEQuence
SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:SREPeat
SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:SPAuse
SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:DTIMe
SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:DPAuse
SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:DREPeat
class SelCallCls[source]

SelCall commands group definition. 10 total commands, 2 Subgroups, 7 group commands

get_dpause() float[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:DPAuse
value: float = driver.source.afRf.generator.dialing.selCall.get_dpause()

Defines the duration of the pause between two digits of a SelCall sequence.

return:

digit_pause: Range: 0 s to 3 s, Unit: s

get_drepeat() bool[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:DREPeat
value: bool = driver.source.afRf.generator.dialing.selCall.get_drepeat()

Enables or disables the usage of the repeat digit for the tone mode SelCall.

return:

digit_repeat: OFF | ON

get_dtime() float[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:DTIMe
value: float = driver.source.afRf.generator.dialing.selCall.get_dtime()

Defines the duration of a single digit of a SelCall sequence.

return:

digit_time: Range: 0.02 s to 3 s, Unit: s

get_sequence() str[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:SEQuence
value: str = driver.source.afRf.generator.dialing.selCall.get_sequence()

Specifies a digit sequence for the dialing mode SelCall.

return:

sel_call_sequence: String with five digits - allowed digits are 0 to 9 and A to F If the user-defined tone definition is enabled, you can define 1 to 42 digits and also use the digit m.

get_spause() float[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:SPAuse
value: float = driver.source.afRf.generator.dialing.selCall.get_spause()

Defines the duration of a pause between two repetitions of a SelCall sequence.

return:

sequence_pause: Range: 0 s to 10 s, Unit: s

get_srepeat() int[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:SREPeat
value: int = driver.source.afRf.generator.dialing.selCall.get_srepeat()

Defines how often a SelCall sequence is repeated.

return:

sequence_repeat: Range: 1 to 100

get_standard() SelCallStandard[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:STANdard
value: enums.SelCallStandard = driver.source.afRf.generator.dialing.selCall.get_standard()

Selects the SelCall standard and thus the tone definition.

return:

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

set_dpause(digit_pause: float) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:DPAuse
driver.source.afRf.generator.dialing.selCall.set_dpause(digit_pause = 1.0)

Defines the duration of the pause between two digits of a SelCall sequence.

param digit_pause:

Range: 0 s to 3 s, Unit: s

set_drepeat(digit_repeat: bool) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:DREPeat
driver.source.afRf.generator.dialing.selCall.set_drepeat(digit_repeat = False)

Enables or disables the usage of the repeat digit for the tone mode SelCall.

param digit_repeat:

OFF | ON

set_dtime(digit_time: float) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:DTIMe
driver.source.afRf.generator.dialing.selCall.set_dtime(digit_time = 1.0)

Defines the duration of a single digit of a SelCall sequence.

param digit_time:

Range: 0.02 s to 3 s, Unit: s

set_sequence(sel_call_sequence: str) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:SEQuence
driver.source.afRf.generator.dialing.selCall.set_sequence(sel_call_sequence = '1')

Specifies a digit sequence for the dialing mode SelCall.

param sel_call_sequence:

String with five digits - allowed digits are 0 to 9 and A to F If the user-defined tone definition is enabled, you can define 1 to 42 digits and also use the digit m.

set_spause(sequence_pause: float) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:SPAuse
driver.source.afRf.generator.dialing.selCall.set_spause(sequence_pause = 1.0)

Defines the duration of a pause between two repetitions of a SelCall sequence.

param sequence_pause:

Range: 0 s to 10 s, Unit: s

set_srepeat(sequence_repeat: int) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:SREPeat
driver.source.afRf.generator.dialing.selCall.set_srepeat(sequence_repeat = 1)

Defines how often a SelCall sequence is repeated.

param sequence_repeat:

Range: 1 to 100

set_standard(sel_call_standard: SelCallStandard) None[source]
# SCPI: SOURce:AFRF:GENerator<Instance>:DIALing:SELCall:STANdard
driver.source.afRf.generator.dialing.selCall.set_standard(sel_call_standard = enums.SelCallStandard.CCIR)

Selects the SelCall standard and thus the tone definition.

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.source.afRf.generator.dialing.selCall.clone()

Subgroups