Cmwd

SCPI Commands :

INITiate:CMWD
STOP:CMWD
ABORt:CMWD
FETCh:CMWD
class CmwdCls[source]

Cmwd commands group definition. 5 total commands, 1 Subgroups, 4 group commands

abort() None[source]
# SCPI: ABORt:CMWD
driver.cmwd.abort()

No command help available

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

No command help available

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

param opc_timeout_ms:

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

fetch() str[source]
# SCPI: FETCh:CMWD
value: str = driver.cmwd.fetch()

No command help available

Use RsCmwBase.reliability.last_value to read the updated reliability indicator.

return:

result_string: No help available

initiate() None[source]
# SCPI: INITiate:CMWD
driver.cmwd.initiate()

No command help available

initiate_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: INITiate:CMWD
driver.cmwd.initiate_with_opc()

No command help available

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

param opc_timeout_ms:

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

stop() None[source]
# SCPI: STOP:CMWD
driver.cmwd.stop()

No command help available

stop_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: STOP:CMWD
driver.cmwd.stop_with_opc()

No command help available

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

param opc_timeout_ms:

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

Cloning the Group

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

Subgroups