Dqpsk

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:EDRate:DQPSk:DEVM
class DqpskCls[source]

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

class DevmStruct[source]

Structure for setting input parameters. Fields:

  • Rms: float: numeric Limit for RMS DEVM (π/4 DQPSK) Range: 0 to 1

  • Peak: float: numeric Limit for peak DEVM (π/4 DQPSK) Range: 0 to 1

  • P_99: float: numeric Limit for 99% DEVM (π/4 DQPSK) Range: 0 to 1

  • Rms_Enabled: List[bool]: OFF | ON Disable or enable limit check for current, average, and maximum results (3 values) .

  • Peak_Enabled: List[bool]: OFF | ON Disable or enable limit check for current, average, and maximum results (3 values) .

  • P_99_Enabled: bool: OFF | ON Disable or enable limit check for current result (1 value) .

get_devm() DevmStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:EDRate:DQPSk:DEVM
value: DevmStruct = driver.configure.multiEval.limit.edrate.dqpsk.get_devm()

Defines and activates upper limits for the differential error vector magnitude for π/4 DQPSK modulated packets (2-DHx) .

return:

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

set_devm(value: DevmStruct) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:EDRate:DQPSk:DEVM
structure = driver.configure.multiEval.limit.edrate.dqpsk.DevmStruct()
structure.Rms: float = 1.0
structure.Peak: float = 1.0
structure.P_99: float = 1.0
structure.Rms_Enabled: List[bool] = [True, False, True]
structure.Peak_Enabled: List[bool] = [True, False, True]
structure.P_99_Enabled: bool = False
driver.configure.multiEval.limit.edrate.dqpsk.set_devm(value = structure)

Defines and activates upper limits for the differential error vector magnitude for π/4 DQPSK modulated packets (2-DHx) .

param value:

see the help for DevmStruct structure arguments.