State

SCPI Command :

SYSTem:SHIMmediate:STATe
class StateCls[source]

State commands group definition. 1 total commands, 0 Subgroups, 1 group commands

get() bool[source]
# SCPI: SYSTem:SHIMmediate:STATe
value: bool = driver.system.shImmediate.state.get()

Determines when the remote commands that change hardware settings on the FSW are executed. Regardless of this setting, the firmware automatically sets the hardware when a sweep is started. This setting is not changed by the preset function.

return

state: ON | OFF | 0 | 1 OFF | 0 Remote commands that cause changes to the hardware are only executed when the SYSTem:SHIMmediate ONCE command is executed. ON | 1 Remote commands are always executed immediately when they are received by the instrument.

set(state: bool) None[source]
# SCPI: SYSTem:SHIMmediate:STATe
driver.system.shImmediate.state.set(state = False)

Determines when the remote commands that change hardware settings on the FSW are executed. Regardless of this setting, the firmware automatically sets the hardware when a sweep is started. This setting is not changed by the preset function.

param state

ON | OFF | 0 | 1 OFF | 0 Remote commands that cause changes to the hardware are only executed when the SYSTem:SHIMmediate ONCE command is executed. ON | 1 Remote commands are always executed immediately when they are received by the instrument.