Identification

SCPI Commands :

SYSTem:IDENtification:PRESet
SYSTem:IDENtification
Commands in total: 2
Subgroups: 0
Direct child commands: 2
get_value() AutoUser[source]
# SYSTem:IDENtification
value: enums.AutoUser = driver.system.identification.get_value()

Selects the mode to determine the ‘IDN String’ and the ‘OPT String’ for the instrument, selected with command method RsSmw.system.language() . Note: While working in an emulation mode, the R&S SMW200A specific command set is disabled, that is, the SCPI command method RsSmw.system.identification.value() is discarded.

Returns:

identification: AUTO | USER AUTO Automatically determines the strings. USER User-defined strings can be selected.

preset() None[source]
# SYSTem:IDENtification:PRESet
driver.system.identification.preset()

Sets the *IDN and *OPT strings in user defined mode to default values.

preset_with_opc(opc_timeout_ms: int = -1) None[source]
# SYSTem:IDENtification:PRESet
driver.system.identification.preset_with_opc()

Sets the *IDN and *OPT strings in user defined mode to default values.

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

Parameters:

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

set_value(identification: AutoUser) None[source]
# SYSTem:IDENtification
driver.system.identification.set_value(identification = enums.AutoUser.AUTO)

Selects the mode to determine the ‘IDN String’ and the ‘OPT String’ for the instrument, selected with command method RsSmw.system.language() . Note: While working in an emulation mode, the R&S SMW200A specific command set is disabled, that is, the SCPI command method RsSmw.system.identification.value() is discarded.

Parameters:

identification – AUTO | USER AUTO Automatically determines the strings. USER User-defined strings can be selected.