AmStep

SCPI Commands :

PULSe:MOP:AMSTep:CLEar
PULSe:MOP:AMSTep:COUNt
PULSe:MOP:AMSTep:DELete
PULSe:MOP:AMSTep:DURation
PULSe:MOP:AMSTep:INSert
PULSe:MOP:AMSTep:LEVel
PULSe:MOP:AMSTep:SELect
class AmStepCls[source]

AmStep commands group definition. 8 total commands, 1 Subgroups, 7 group commands

clear() None[source]
# SCPI: PULSe:MOP:AMSTep:CLEar
driver.pulse.mop.amStep.clear()

Deletes all items from the list or the table.

clear_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: PULSe:MOP:AMSTep:CLEar
driver.pulse.mop.amStep.clear_with_opc()

Deletes all items from the list or the table.

Same as clear, but waits for the operation to complete before continuing further. Use the RsPulseSeq.utilities.opc_timeout_set() to set the timeout value.

param opc_timeout_ms:

Maximum time to wait in milliseconds, valid only for this call.

delete(delete: float) None[source]
# SCPI: PULSe:MOP:AMSTep:DELete
driver.pulse.mop.amStep.delete(delete = 1.0)

Deletes the particular item.

param delete:

float

get_count() float[source]
# SCPI: PULSe:MOP:AMSTep:COUNt
value: float = driver.pulse.mop.amStep.get_count()

Queries the number of existing items.

return:

count: integer

get_duration() float[source]
# SCPI: PULSe:MOP:AMSTep:DURation
value: float = driver.pulse.mop.amStep.get_duration()

Sets the step time.

return:

duration: float Range: 0 to 3600, Unit: s

get_level() float[source]
# SCPI: PULSe:MOP:AMSTep:LEVel
value: float = driver.pulse.mop.amStep.get_level()

Sets the step level.

return:

level: float Range: -100 to 0

get_select() float[source]
# SCPI: PULSe:MOP:AMSTep:SELect
value: float = driver.pulse.mop.amStep.get_select()

Selects the item to which the subsequent commands apply.

return:

select: float Item number within the range 1 to …:COUNt. For example, method RsPulseSeq.Sequence.Item.count. Range: 1 to 4096

set_duration(duration: float) None[source]
# SCPI: PULSe:MOP:AMSTep:DURation
driver.pulse.mop.amStep.set_duration(duration = 1.0)

Sets the step time.

param duration:

float Range: 0 to 3600, Unit: s

set_insert(insert: float) None[source]
# SCPI: PULSe:MOP:AMSTep:INSert
driver.pulse.mop.amStep.set_insert(insert = 1.0)

Inserts a new item before the selected one.

param insert:

float

set_level(level: float) None[source]
# SCPI: PULSe:MOP:AMSTep:LEVel
driver.pulse.mop.amStep.set_level(level = 1.0)

Sets the step level.

param level:

float Range: -100 to 0

set_select(select: float) None[source]
# SCPI: PULSe:MOP:AMSTep:SELect
driver.pulse.mop.amStep.set_select(select = 1.0)

Selects the item to which the subsequent commands apply.

param select:

float Item number within the range 1 to …:COUNt. For example, method RsPulseSeq.Sequence.Item.count. Range: 1 to 4096

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.pulse.mop.amStep.clone()

Subgroups