Measurement

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:FRANge:BRATe:MEASurement
class MeasurementCls[source]

Measurement commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class MeasurementStruct[source]

Response structure. Fields:

  • Left_Channel: int: numeric Left adjacent channel relative to the EUT center TX channel Range: 1 to 5

  • Right_Channel: int: numeric Right adjacent channel relative to the EUT center TX channel Range: 1 to 5

  • Threshold: float: numeric Threshold for the spectral power density drop to search the frequencies fL and fH Specification defines - 80 dBm/Hz for equivalent isotropically radiated power or - 30 dBm if measured in a 100 kHz bandwidth. Range: -80 dBm to 40 dBm

get() MeasurementStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:FRANge:BRATe:MEASurement
value: MeasurementStruct = driver.configure.multiEval.frange.brate.measurement.get()

Specifies the number of 1 MHz channels to be measured below and above the current measured channel. The threshold is the level that needs to be crossed to search the frequencies fL and fH.

return:

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

set(left_channel: int, right_channel: int, threshold: float) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:FRANge:BRATe:MEASurement
driver.configure.multiEval.frange.brate.measurement.set(left_channel = 1, right_channel = 1, threshold = 1.0)

Specifies the number of 1 MHz channels to be measured below and above the current measured channel. The threshold is the level that needs to be crossed to search the frequencies fL and fH.

param left_channel:

numeric Left adjacent channel relative to the EUT center TX channel Range: 1 to 5

param right_channel:

numeric Right adjacent channel relative to the EUT center TX channel Range: 1 to 5

param threshold:

numeric Threshold for the spectral power density drop to search the frequencies fL and fH Specification defines - 80 dBm/Hz for equivalent isotropically radiated power or - 30 dBm if measured in a 100 kHz bandwidth. Range: -80 dBm to 40 dBm