Instrument

SCPI Commands :

INSTrument:ABORt
INSTrument:DELete
class InstrumentCls[source]

Instrument commands group definition. 32 total commands, 8 Subgroups, 2 group commands

abort() None[source]
# SCPI: INSTrument:ABORt
driver.instrument.abort()

No command help available

abort_with_opc(opc_timeout_ms: int = - 1) None[source]
# SCPI: INSTrument:ABORt
driver.instrument.abort_with_opc()

No command help available

Same as abort, but waits for the operation to complete before continuing further. Use the RsFsw.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(channel_name: str) None[source]
# SCPI: INSTrument:DELete
driver.instrument.delete(channel_name = rawAbc)

Deletes a channel. If you delete the last channel, the default ‘Spectrum’ channel is activated.

param channel_name

String containing the name of the channel you want to delete. A channel must exist to delete it.

Cloning the Group

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

Subgroups