RxQuality

SCPI Commands

CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:REPetition
CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:TOUT
CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:SCONdition
CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:IQSDump
class RxQuality[source]

RxQuality commands group definition. 113 total commands, 10 Sub-groups, 4 group commands

get_iqsdump()bool[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:IQSDump
value: bool = driver.configure.rxQuality.get_iqsdump()

Enables or disables dumping of the Rx IQ events received from the EUT via HCI.

return

dump_iq_pairs: OFF | ON

get_repetition()RsCmwBluetoothSig.enums.Repeat[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:REPetition
value: enums.Repeat = driver.configure.rxQuality.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 CONFigure:BLUetooth:SIGN<i>:RXQuality or method RsCmwBluetoothSig.Configure. RxQuality.Packets.bedr to determine the number of transport blocks per single shot.

return

repetition: SINGleshot | CONTinuous SINGleshot: single-shot measurement CONTinuous: continuous measurement

get_scondition()int[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:SCONdition
value: int = driver.configure.rxQuality.get_scondition()

No command help available

return

condition: No help available

get_timeout()float[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:TOUT
value: float = driver.configure.rxQuality.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: numeric Unit: s

set_iqsdump(dump_iq_pairs: bool)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:IQSDump
driver.configure.rxQuality.set_iqsdump(dump_iq_pairs = False)

Enables or disables dumping of the Rx IQ events received from the EUT via HCI.

param dump_iq_pairs

OFF | ON

set_repetition(repetition: RsCmwBluetoothSig.enums.Repeat)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:REPetition
driver.configure.rxQuality.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 CONFigure:BLUetooth:SIGN<i>:RXQuality or method RsCmwBluetoothSig.Configure. RxQuality.Packets.bedr to determine the number of transport blocks per single shot.

param repetition

SINGleshot | CONTinuous SINGleshot: single-shot measurement CONTinuous: continuous measurement

set_scondition(condition: int)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:SCONdition
driver.configure.rxQuality.set_scondition(condition = 1)

No command help available

param condition

No help available

set_timeout(timeout: float)None[source]
# SCPI: CONFigure:BLUetooth:SIGNaling<Instance>:RXQuality:TOUT
driver.configure.rxQuality.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

numeric Unit: s

Cloning the Group

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

Subgroups