Hcqi

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:HCQI:TOUT
CONFigure:WCDMa:SIGNaling<Instance>:HCQI:TCASe
class Hcqi[source]

Hcqi commands group definition. 9 total commands, 3 Sub-groups, 2 group commands

get_tcase()RsCmwWcdmaSig.enums.TestCase[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HCQI:TCASe
value: enums.TestCase = driver.configure.hcqi.get_tcase()

Selects either AWGN or fading test case.

return

test_case: AWGN | FADing

get_timeout()float[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HCQI:TOUT
value: float = driver.configure.hcqi.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: Unit: s

set_tcase(test_case: RsCmwWcdmaSig.enums.TestCase)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HCQI:TCASe
driver.configure.hcqi.set_tcase(test_case = enums.TestCase.AWGN)

Selects either AWGN or fading test case.

param test_case

AWGN | FADing

set_timeout(timeout: float)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HCQI:TOUT
driver.configure.hcqi.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

Unit: s

Cloning the Group

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

Subgroups