Set

SCPI Command :

SYSTem:TIME:HRTimer:ABSolute:SET
class SetCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Year: int: No parameter help available

  • Month: int: No parameter help available

  • Day: int: No parameter help available

  • Hour: int: No parameter help available

  • Min_Py: int: No parameter help available

  • Sec: float: No parameter help available

  • Msec: int: No parameter help available

get() GetStruct[source]
# SCPI: SYSTem:TIME:HRTimer:ABSolute:SET
value: GetStruct = driver.system.time.hrTimer.absolute.set.get()

This command sets a timestamp with the current system time. A timer can be started with a timeout relative to this timestamp, see method RsCmwBase.System.Time.HrTimer.Absolute.value. An existing timestamp is overwritten.

return:

structure: for return value, see the help for GetStruct structure arguments.

set() None[source]
# SCPI: SYSTem:TIME:HRTimer:ABSolute:SET
driver.system.time.hrTimer.absolute.set.set()

This command sets a timestamp with the current system time. A timer can be started with a timeout relative to this timestamp, see method RsCmwBase.System.Time.HrTimer.Absolute.value. An existing timestamp is overwritten.

set_with_opc(opc_timeout_ms: int = -1) None[source]
# SCPI: SYSTem:TIME:HRTimer:ABSolute:SET
driver.system.time.hrTimer.absolute.set.set_with_opc()

This command sets a timestamp with the current system time. A timer can be started with a timeout relative to this timestamp, see method RsCmwBase.System.Time.HrTimer.Absolute.value. An existing timestamp is overwritten.

Same as set, 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.