Marker

SCPI Commands :

SCENario:OUTPut:MARKer:ENABle
SCENario:OUTPut:MARKer:FLAGs
class MarkerCls[source]

Marker commands group definition. 4 total commands, 1 Subgroups, 2 group commands

get_enable() bool[source]
# SCPI: SCENario:OUTPut:MARKer:ENABle
value: bool = driver.scenario.output.marker.get_enable()

Enables that markers are considered by the generation of the output waveform file.

return:

enable: ON| OFF| 1| 0

get_flags() float[source]
# SCPI: SCENario:OUTPut:MARKer:FLAGs
value: float = driver.scenario.output.marker.get_flags()

Enables up to four markers.

return:

flags: int Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

set_enable(enable: bool) None[source]
# SCPI: SCENario:OUTPut:MARKer:ENABle
driver.scenario.output.marker.set_enable(enable = False)

Enables that markers are considered by the generation of the output waveform file.

param enable:

ON| OFF| 1| 0

set_flags(flags: float) None[source]
# SCPI: SCENario:OUTPut:MARKer:FLAGs
driver.scenario.output.marker.set_flags(flags = 1.0)

Enables up to four markers.

param flags:

int Binary value, where: M1 = 1 M1 = 2 M1 = 4 M1 = 8 Range: 0 to 15

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.scenario.output.marker.clone()

Subgroups