PowerUp

SCPI Commands

CONFigure:POWerup:PATH
CONFigure:POWerup:RESet
class PowerUp[source]

PowerUp commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

get_path() str[source]
# SCPI: CONFigure:POWerup:PATH
value: str = driver.configure.powerUp.get_path()

Sets or queries the switch-on action that determines, which path (if any) is switched after booting the instrument. This RC command is equivalent to the ‘Switch-On Action’ in the ‘General’ configuration dialog of the user interface. The query returns the currently set switch-on action.

return

path_name: String parameter to specify the path name (see method RsOsp.Route.Path.Define.set) of the path to be switched at power-up. If you specify a path name that does not exist, the command has no effect. If you specify an empty path name string (‘’) , the Switch-On Action is set to None. The switch unit does not switch any path after being booted.

get_reset() bool[source]
# SCPI: CONFigure:POWerup:RESet
value: bool = driver.configure.powerUp.get_reset()

Sets or queries the Power Up reset condition of switch modules with latching relays. This setting determines, how latching relays behave after booting the switch unit. Note that this command does NOT reset the module OSP B104, which is designed for controlling external latching relays.

INTRO_CMD_HELP: The following rules apply for identifying positions of latching SPDT relays:

  • On the relays’ front plates, the positions are labeled as 2 and 1, with 2 being the default position

  • In the graphical user interface (GUI) , the positions are 0 and 1, with 0 being the default position

  • In a remote control command (SCPI) , the positions are 00 and 01, with 00 being the default value

Hence, if you take the front-plate port labels of a latching SPDT relay, subtract 1 to get the position values that the software uses for this relay. The query returns the current reset condition.

return

state: - 1 | ON: At Power Up, the switch unit handles latching relays as follows:It sets all latching SPDT relays to the default ports labeled 2, which are represented in the software by position 0.It sets all latching SPxT relays to the open state. - 0 | OFF: At Power Up, the switch unit leaves all latching relays keep their previous state.

set_path(path_name: str) None[source]
# SCPI: CONFigure:POWerup:PATH
driver.configure.powerUp.set_path(path_name = '1')

Sets or queries the switch-on action that determines, which path (if any) is switched after booting the instrument. This RC command is equivalent to the ‘Switch-On Action’ in the ‘General’ configuration dialog of the user interface. The query returns the currently set switch-on action.

param path_name

String parameter to specify the path name (see method RsOsp.Route.Path.Define.set) of the path to be switched at power-up. If you specify a path name that does not exist, the command has no effect. If you specify an empty path name string (‘’) , the Switch-On Action is set to None. The switch unit does not switch any path after being booted.

set_reset(state: bool) None[source]
# SCPI: CONFigure:POWerup:RESet
driver.configure.powerUp.set_reset(state = False)

Sets or queries the Power Up reset condition of switch modules with latching relays. This setting determines, how latching relays behave after booting the switch unit. Note that this command does NOT reset the module OSP B104, which is designed for controlling external latching relays.

INTRO_CMD_HELP: The following rules apply for identifying positions of latching SPDT relays:

  • On the relays’ front plates, the positions are labeled as 2 and 1, with 2 being the default position

  • In the graphical user interface (GUI) , the positions are 0 and 1, with 0 being the default position

  • In a remote control command (SCPI) , the positions are 00 and 01, with 00 being the default value

Hence, if you take the front-plate port labels of a latching SPDT relay, subtract 1 to get the position values that the software uses for this relay. The query returns the current reset condition.

param state
  • 1 | ON: At Power Up, the switch unit handles latching relays as follows:It sets all latching SPDT relays to the default ports labeled 2, which are represented in the software by position 0.It sets all latching SPxT relays to the open state.

  • 0 | OFF: At Power Up, the switch unit leaves all latching relays keep their previous state.