Pencoding

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:EDRate:PENCoding
class PencodingCls[source]

Pencoding commands group definition. 2 total commands, 1 Subgroups, 1 group commands

class PencodingStruct[source]

Response structure. Fields:

  • Phase_Encoding: float: numeric Lower limit as percentage of received fault free packets. Range: 0 to 1

  • Phase_Encod_Enable: bool: OFF | ON Disable or enable limit check for the phase encoding.

get() PencodingStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:EDRate:PENCoding
value: PencodingStruct = driver.configure.multiEval.limit.edrate.pencoding.get()

Defines the limit for the phase encoding measurement.

return:

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

set(phase_encoding: float, phase_encod_enable: bool) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:EDRate:PENCoding
driver.configure.multiEval.limit.edrate.pencoding.set(phase_encoding = 1.0, phase_encod_enable = False)

Defines the limit for the phase encoding measurement.

param phase_encoding:

numeric Lower limit as percentage of received fault free packets. Range: 0 to 1

param phase_encod_enable:

OFF | ON Disable or enable limit check for the phase encoding.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.multiEval.limit.edrate.pencoding.clone()

Subgroups