Filler

SCPI Commands :

SEQuence:ITEM:FILLer:MODE
SEQuence:ITEM:FILLer:SIGNal
class FillerCls[source]

Filler commands group definition. 5 total commands, 1 Subgroups, 2 group commands

get_mode() FillerMode[source]
# SCPI: SEQuence:ITEM:FILLer:MODE
value: enums.FillerMode = driver.sequence.item.filler.get_mode()

Sets how the filler duration is determined.

return:

mode: DURation| TSYNc

get_signal() FillerSignal[source]
# SCPI: SEQuence:ITEM:FILLer:SIGNal
value: enums.FillerSignal = driver.sequence.item.filler.get_signal()

Sets the signal type.

return:

signal: BLANk | | CW| HOLD

set_mode(mode: FillerMode) None[source]
# SCPI: SEQuence:ITEM:FILLer:MODE
driver.sequence.item.filler.set_mode(mode = enums.FillerMode.DURation)

Sets how the filler duration is determined.

param mode:

DURation| TSYNc

set_signal(signal: FillerSignal) None[source]
# SCPI: SEQuence:ITEM:FILLer:SIGNal
driver.sequence.item.filler.set_signal(signal = enums.FillerSignal.BLANk)

Sets the signal type.

param signal:

BLANk | | CW| HOLD

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.sequence.item.filler.clone()

Subgroups