Ber

SCPI Commands

READ:GSM:MEASurement<Instance>:MEValuation:BER
FETCh:GSM:MEASurement<Instance>:MEValuation:BER
class Ber[source]

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

class FetchStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Ber: float or bool: float % bit error rate Range: 0 % to 100 %, Unit: %

  • Ber_Absolute: int or bool: float Total number of detected bit errors The BER measurement evaluates 114 data bits per GMSK-modulated normal burst, 306 data bits per 8PSK-modulated burst. Range: 0 to no. of measured bits

  • Ber_Count: int or bool: float Total number of evaluated bits Range: 0 to no. of measured bits

class ReadStruct[source]

Response structure. Fields:

  • Reliability: int: decimal ‘Reliability Indicator’

  • Ber: float or bool: float % bit error rate Range: 0 % to 100 %, Unit: %

  • Ber_Absolute: List[float or bool]: float Total number of detected bit errors The BER measurement evaluates 114 data bits per GMSK-modulated normal burst, 306 data bits per 8PSK-modulated burst. Range: 0 to no. of measured bits

  • Ber_Count: List[float or bool]: float Total number of evaluated bits Range: 0 to no. of measured bits

fetch()FetchStruct[source]
# SCPI: FETCh:GSM:MEASurement<Instance>:MEValuation:BER
value: FetchStruct = driver.multiEval.ber.fetch()

Returns the measured bit error rate. The BER measurement must be enabled using method RsCmwGsmMeas.Configure.MultiEval. Result.ber.

return

structure: for return value, see the help for FetchStruct structure arguments.

read()ReadStruct[source]
# SCPI: READ:GSM:MEASurement<Instance>:MEValuation:BER
value: ReadStruct = driver.multiEval.ber.read()

Returns the measured bit error rate. The BER measurement must be enabled using method RsCmwGsmMeas.Configure.MultiEval. Result.ber.

return

structure: for return value, see the help for ReadStruct structure arguments.