Sync

SCPI Command :

SYSTem:SRECorder:SYNC
Commands in total: 1
Subgroups: 0
Direct child commands: 1
get() bool[source]
# SYSTem:SRECorder:SYNC
value: bool = driver.system.srecorder.sync.get()

If enabled, additional commands are included in the script to synchronize the recorded commands when necessary. For instance, when a measurement is started, a *WAI command is inserted to ensure that the next command is only executed after the measurement has finished.

Returns:

state: ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

set(state: bool) None[source]
# SYSTem:SRECorder:SYNC
driver.system.srecorder.sync.set(state = False)

If enabled, additional commands are included in the script to synchronize the recorded commands when necessary. For instance, when a measurement is started, a *WAI command is inserted to ensure that the next command is only executed after the measurement has finished.

Parameters:

state – ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on