Fill

SCPI Commands :

SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:FILL:SINDex
SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:FILL:RANGe
class FillCls[source]

Fill commands group definition. 12 total commands, 4 Subgroups, 2 group commands

get_range() int[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:FILL:RANGe
value: int = driver.source.sequencer.listPy.fill.get_range()

Specifies the number of entries to be filled. The maximum is limited by 2000 minus the start index of the sequence.

return:

range_py: integer Range: 1 to 2000

get_sindex() int[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:FILL:SINDex
value: int = driver.source.sequencer.listPy.fill.get_sindex()

Selects the first index of the sequence to be filled. The maximum value is limited by the index of the highest existing entry plus 1.

return:

start_index: integer Range: 0 to 1999

set_range(range_py: int) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:FILL:RANGe
driver.source.sequencer.listPy.fill.set_range(range_py = 1)

Specifies the number of entries to be filled. The maximum is limited by 2000 minus the start index of the sequence.

param range_py:

integer Range: 1 to 2000

set_sindex(start_index: int) None[source]
# SCPI: SOURce:GPRF:GENerator<Instance>:SEQuencer:LIST:FILL:SINDex
driver.source.sequencer.listPy.fill.set_sindex(start_index = 1)

Selects the first index of the sequence to be filled. The maximum value is limited by the index of the highest existing entry plus 1.

param start_index:

integer Range: 0 to 1999

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.sequencer.listPy.fill.clone()

Subgroups