OoSync

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:OOSYnc:AADPchlevel
CONFigure:WCDMa:MEASurement<Instance>:OOSYnc:TOUT
class OoSync[source]

OoSync commands group definition. 5 total commands, 1 Sub-groups, 2 group commands

get_aa_dpch_level()bool[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:OOSYnc:AADPchlevel
value: bool = driver.configure.ooSync.get_aa_dpch_level()

Enables or disables automatic activation of DPCH level sequence, provided by WCDMA signaling application. With auto execution, the sequence is activated by starting the measurement.

return

enable: OFF | ON

get_timeout()float[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:OOSYnc:TOUT
value: float = driver.configure.ooSync.get_timeout()

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually ([ON | OFF] key or [RESTART | STOP] key) . When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

return

timeout: numeric Unit: s

set_aa_dpch_level(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:OOSYnc:AADPchlevel
driver.configure.ooSync.set_aa_dpch_level(enable = False)

Enables or disables automatic activation of DPCH level sequence, provided by WCDMA signaling application. With auto execution, the sequence is activated by starting the measurement.

param enable

OFF | ON

set_timeout(timeout: float)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:OOSYnc:TOUT
driver.configure.ooSync.set_timeout(timeout = 1.0)

Defines a timeout for the measurement. The timer is started when the measurement is initiated via a READ or INIT command. It is not started if the measurement is initiated manually ([ON | OFF] key or [RESTART | STOP] key) . When the measurement has completed the first measurement cycle (first single shot) , the statistical depth is reached and the timer is reset. If the first measurement cycle has not been completed when the timer expires, the measurement is stopped. The measurement state changes to RDY. The reliability indicator is set to 1, indicating that a measurement timeout occurred. Still running READ, FETCh or CALCulate commands are completed, returning the available results. At least for some results, there are no values at all or the statistical depth has not been reached. A timeout of 0 s corresponds to an infinite measurement timeout.

param timeout

numeric Unit: s

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.ooSync.clone()

Subgroups