Signal

SCPI Commands :

SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:SIGNal:CATalog
SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:SIGNal
SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:SIGNal:ALL
class SignalCls[source]

Signal commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get(index: int) str[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:SIGNal
value: str = driver.source.sequencer.listPy.signal.get(index = 1)

Defines or queries the signal type for the sequencer list entry with the selected <Index>. A complete list of all supported strings can be queried using method RsCmwGprfGen.Source.Sequencer.ListPy.Signal.catalog.

param index:

integer

return:

signal: string Signal type

get_all() List[str][source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:SIGNal:ALL
value: List[str] = driver.source.sequencer.listPy.signal.get_all()

Defines the signal types for all sequencer list entries. A complete list of all supported strings can be queried using method RsCmwGprfGen.Source.Sequencer.ListPy.Signal.catalog.

return:

signal: string Comma-separated list of strings, one string per list entry

get_catalog() List[str][source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:SIGNal:CATalog
value: List[str] = driver.source.sequencer.listPy.signal.get_catalog()

Queries all available signal types. The available types depend on the ARB file pool.

return:

signal_types: string Comma-separated list of strings, one string per supported signal type

set(index: int, signal: str) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:SIGNal
driver.source.sequencer.listPy.signal.set(index = 1, signal = 'abc')

Defines or queries the signal type for the sequencer list entry with the selected <Index>. A complete list of all supported strings can be queried using method RsCmwGprfGen.Source.Sequencer.ListPy.Signal.catalog.

param index:

integer

param signal:

string Signal type

set_all(signal: List[str]) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:SIGNal:ALL
driver.source.sequencer.listPy.signal.set_all(signal = ['abc1', 'abc2', 'abc3'])

Defines the signal types for all sequencer list entries. A complete list of all supported strings can be queried using method RsCmwGprfGen.Source.Sequencer.ListPy.Signal.catalog.

param signal:

string Comma-separated list of strings, one string per list entry