SmSetting<Instrument>

RepCap Settings

# Range: Nr1 .. Nr4
rc = driver.applications.k10Xlte.trigger.sequence.smSetting.repcap_instrument_get()
driver.applications.k10Xlte.trigger.sequence.smSetting.repcap_instrument_set(repcap.Instrument.Nr1)

SCPI Command :

TRIGger[:SEQuence]:SMSetting<ant>
class SmSettingCls[source]

SmSetting commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Instrument, default value after init: Instrument.Nr1

get(instrument=Instrument.Default) bool[source]
# SCPI: TRIGger[:SEQuence]:SMSetting<ant>
value: bool = driver.applications.k10Xlte.trigger.sequence.smSetting.get(instrument = repcap.Instrument.Default)

Selects the trigger configuration for secondary analyzers in a MIMO setup.

param instrument

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘SmSetting’)

return

state: ON | 1 Uses the same trigger configuration as the primary analyzer. OFF | 0 Uses a custom trigger configuration for the selected analyzer.

set(state: bool, instrument=Instrument.Default) None[source]
# SCPI: TRIGger[:SEQuence]:SMSetting<ant>
driver.applications.k10Xlte.trigger.sequence.smSetting.set(state = False, instrument = repcap.Instrument.Default)

Selects the trigger configuration for secondary analyzers in a MIMO setup.

param state

ON | 1 Uses the same trigger configuration as the primary analyzer. OFF | 0 Uses a custom trigger configuration for the selected analyzer.

param instrument

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘SmSetting’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.applications.k10Xlte.trigger.sequence.smSetting.clone()