Dpsk

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:EDRate:DPSK:DEVM
class DpskCls[source]

Dpsk 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 (8DPSK) Range: 0 to 1

  • Peak: float: numeric Limit for peak DEVM (8DPSK) Range: 0 to 1

  • P_99: float: numeric Limit for 99% DEVM (8DPSK) 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:DPSK:DEVM
value: DevmStruct = driver.configure.multiEval.limit.edrate.dpsk.get_devm()

Defines and activates upper limits for the differential error vector magnitude for 8DPSK modulated packets (3-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:DPSK:DEVM
structure = driver.configure.multiEval.limit.edrate.dpsk.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.dpsk.set_devm(value = structure)

Defines and activates upper limits for the differential error vector magnitude for 8DPSK modulated packets (3-DHx) .

param value:

see the help for DevmStruct structure arguments.