Ehich

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:EHICh:TOUT
CONFigure:WCDMa:SIGNaling<Instance>:EHICh:REPetition
CONFigure:WCDMa:SIGNaling<Instance>:EHICh:MFRames
CONFigure:WCDMa:SIGNaling<Instance>:EHICh:LIMit
class Ehich[source]

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

get_limit()float[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EHICh:LIMit
value: float = driver.configure.ehich.get_limit()

Specifies limits for the results of the E-HICH measurement.

return

false_ratio: Upper limit for E-HICH reception ‘False Ratio’ result Range: 0 % to 100 %, Unit: %

get_mframes()int[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EHICh:MFRames
value: int = driver.configure.ehich.get_mframes()

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

return

meas_frames: Range: 100 to 1E+6

get_repetition()RsCmwWcdmaSig.enums.Repeat[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EHICh:REPetition
value: enums.Repeat = driver.configure.ehich.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.Ehich.mframes to define the number of 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>:EHICh:TOUT
value: float = driver.configure.ehich.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_limit(false_ratio: float)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EHICh:LIMit
driver.configure.ehich.set_limit(false_ratio = 1.0)

Specifies limits for the results of the E-HICH measurement.

param false_ratio

Upper limit for E-HICH reception ‘False Ratio’ result Range: 0 % to 100 %, Unit: %

set_mframes(meas_frames: int)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EHICh:MFRames
driver.configure.ehich.set_mframes(meas_frames = 1)

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

param meas_frames

Range: 100 to 1E+6

set_repetition(repetition: RsCmwWcdmaSig.enums.Repeat)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:EHICh:REPetition
driver.configure.ehich.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.Ehich.mframes to define the number of 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>:EHICh:TOUT
driver.configure.ehich.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.ehich.clone()

Subgroups