RlPer

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:RXQuality:RLPer:MPSent
CONFigure:EVDO:SIGNaling<Instance>:RXQuality:RLPer:SCONdition
class RlPer[source]

RlPer commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

get_mp_sent()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RXQuality:RLPer:MPSent
value: int = driver.configure.rxQuality.rlPer.get_mp_sent()

Defines the length of a single shot reverse link PER measurement, i.e. the maximum number of test packets sent by the AT.

return

max_packets_sent: Range: 1 to 10000

get_scondition()RsCmwEvdoSig.enums.PerStopCondition[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RXQuality:RLPer:SCONdition
value: enums.PerStopCondition = driver.configure.rxQuality.rlPer.get_scondition()

Qualifies whether the measurement is stopped after a failed limit check or continued. SLFail means that the measurement is stopped and reaches the RDY state when one of the results exceeds the limits.

return

stop_condition: NONE | ALEXceeded | MCLexceeded | MPERexceeded NONE: Continue measurement irrespective of the limit check ALEXceeded: Stop if any limit is exceeded MCLexceeded: Stop if minimum confidence level is exceeded MPERexceeded: Stop if max. PER is exceeded

set_mp_sent(max_packets_sent: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RXQuality:RLPer:MPSent
driver.configure.rxQuality.rlPer.set_mp_sent(max_packets_sent = 1)

Defines the length of a single shot reverse link PER measurement, i.e. the maximum number of test packets sent by the AT.

param max_packets_sent

Range: 1 to 10000

set_scondition(stop_condition: RsCmwEvdoSig.enums.PerStopCondition)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:RXQuality:RLPer:SCONdition
driver.configure.rxQuality.rlPer.set_scondition(stop_condition = enums.PerStopCondition.ALEXceeded)

Qualifies whether the measurement is stopped after a failed limit check or continued. SLFail means that the measurement is stopped and reaches the RDY state when one of the results exceeds the limits.

param stop_condition

NONE | ALEXceeded | MCLexceeded | MPERexceeded NONE: Continue measurement irrespective of the limit check ALEXceeded: Stop if any limit is exceeded MCLexceeded: Stop if minimum confidence level is exceeded MPERexceeded: Stop if max. PER is exceeded