Identification
SCPI Commands :
SYSTem:IDENtification:PRESet
SYSTem:IDENtification
- class IdentificationCls[source]
Identification commands group definition. 2 total commands, 0 Subgroups, 2 group commands
- get_value() RsSmbv.enums.AutoUser [source]
# SCPI: 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 RsSmbv.System.language. Note: While working in an emulation mode, the R&S SMBV100B specific command set is disabled, that is, the SCPI command method RsSmbv.System.Identification.value is discarded.
- return
identification: AUTO| USER AUTO Automatically determines the strings. USER User-defined strings can be selected.
- preset() None [source]
# SCPI: 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]
# SCPI: 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 RsSmbv.utilities.opc_timeout_set() to set the timeout value.
- param opc_timeout_ms
Maximum time to wait in milliseconds, valid only for this call.
- set_value(identification: RsSmbv.enums.AutoUser) None [source]
# SCPI: 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 RsSmbv.System.language. Note: While working in an emulation mode, the R&S SMBV100B specific command set is disabled, that is, the SCPI command method RsSmbv.System.Identification.value is discarded.
- param identification
AUTO| USER AUTO Automatically determines the strings. USER User-defined strings can be selected.