Pswitched

SCPI Commands

CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:TOUT
CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:MMODe
CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:SCONdition
CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:SCOunt
class Pswitched[source]

Pswitched commands group definition. 7 total commands, 1 Sub-groups, 4 group commands

get_mmode()RsCmwGsmSig.enums.BerPsMeasMode[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:MMODe
value: enums.BerPsMeasMode = driver.configure.ber.pswitched.get_mmode()

Defines the measurement mode for BER PS measurements.

return

mode: BDBLer | MBEP | UBONly BDBLer: BER/DBLER MBEP: mean BEP UBONly: USF BLER only

get_scondition()int[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:SCONdition
value: int = driver.configure.ber.pswitched.get_scondition()

Qualifies whether the measurement is stopped after a failed limit check or continued. When the measurement is stopped, it reaches the RDY state.

return

condition: NONE | FLIMit NONE: Continue measurement irrespective of the limit check FLIMit: Stop measurement on first limit failure

get_scount()int[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:SCOunt
value: int = driver.configure.ber.pswitched.get_scount()

Defines the number of RLC data blocks or radio blocks to be transmitted per measurement cycle (statistics cycle) .

return

frames: Range: 1 to 500E+3

get_timeout()float[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:TOUT
value: float = driver.configure.ber.pswitched.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_mmode(mode: RsCmwGsmSig.enums.BerPsMeasMode)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:MMODe
driver.configure.ber.pswitched.set_mmode(mode = enums.BerPsMeasMode.BDBLer)

Defines the measurement mode for BER PS measurements.

param mode

BDBLer | MBEP | UBONly BDBLer: BER/DBLER MBEP: mean BEP UBONly: USF BLER only

set_scondition(condition: int)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:SCONdition
driver.configure.ber.pswitched.set_scondition(condition = 1)

Qualifies whether the measurement is stopped after a failed limit check or continued. When the measurement is stopped, it reaches the RDY state.

param condition

NONE | FLIMit NONE: Continue measurement irrespective of the limit check FLIMit: Stop measurement on first limit failure

set_scount(frames: int)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:SCOunt
driver.configure.ber.pswitched.set_scount(frames = 1)

Defines the number of RLC data blocks or radio blocks to be transmitted per measurement cycle (statistics cycle) .

param frames

Range: 1 to 500E+3

set_timeout(timeout: float)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:BER:PSWitched:TOUT
driver.configure.ber.pswitched.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.ber.pswitched.clone()

Subgroups