Hack

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:HACK:TOUT
CONFigure:WCDMa:SIGNaling<Instance>:HACK:HARQ
CONFigure:WCDMa:SIGNaling<Instance>:HACK:REPetition
CONFigure:WCDMa:SIGNaling<Instance>:HACK:MSFRames
class Hack[source]

Hack commands group definition. 5 total commands, 1 Sub-groups, 4 group commands

get_harq()RsCmwWcdmaSig.enums.MonitoredHarq[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HACK:HARQ
value: enums.MonitoredHarq = driver.configure.hack.get_harq()

Selects either a single H-ARQ process (numbered 0 to 7) to be monitored or specifies that all processes are to be monitored.

return

monitored_harq: ALL | H0 | H1 | H2 | H3 | H4 | H5 | H6 | H7

get_ms_frames()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HACK:MSFRames
value: int = driver.configure.hack.get_ms_frames()

Defines the number of HSDPA subframes to be measured per measurement cycle (statistics cycle) .

return

meas_sub_frames: Range: 100 to 1E+6

get_repetition()RsCmwWcdmaSig.enums.Repeat[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HACK:REPetition
value: enums.Repeat = driver.configure.hack.get_repetition()

Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single-shot or repeated continuously. Use method RsCmwWcdmaSig.Configure.Hack.msFrames to determine the number of HSDPA subframes to be measured per single shot.

return

repetition: SINGleshot | CONTinuous SINGleshot: Single-shot measurement CONTinuous: Continuous measurement

get_timeout()float[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HACK:TOUT
value: float = driver.configure.hack.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_harq(monitored_harq: RsCmwWcdmaSig.enums.MonitoredHarq)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HACK:HARQ
driver.configure.hack.set_harq(monitored_harq = enums.MonitoredHarq.ALL)

Selects either a single H-ARQ process (numbered 0 to 7) to be monitored or specifies that all processes are to be monitored.

param monitored_harq

ALL | H0 | H1 | H2 | H3 | H4 | H5 | H6 | H7

set_ms_frames(meas_sub_frames: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HACK:MSFRames
driver.configure.hack.set_ms_frames(meas_sub_frames = 1)

Defines the number of HSDPA subframes to be measured per measurement cycle (statistics cycle) .

param meas_sub_frames

Range: 100 to 1E+6

set_repetition(repetition: RsCmwWcdmaSig.enums.Repeat)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:HACK:REPetition
driver.configure.hack.set_repetition(repetition = enums.Repeat.CONTinuous)

Specifies the repetition mode of the measurement. The repetition mode specifies whether the measurement is stopped after a single-shot or repeated continuously. Use method RsCmwWcdmaSig.Configure.Hack.msFrames to determine the number of HSDPA subframes to be measured per single shot.

param repetition

SINGleshot | CONTinuous SINGleshot: Single-shot measurement CONTinuous: Continuous measurement

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

Subgroups