Le1M

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy[:LE1M]:FDRift
class Le1MCls[source]

Le1M commands group definition. 6 total commands, 5 Subgroups, 1 group commands

class FdriftStruct[source]

Structure for setting input parameters. Fields:

  • Frequency_Drift: float: numeric Range: 0 Hz to 250 kHz

  • Max_Drift_Rate: float: numeric Range: 0 Hz to 250 kHz

  • Initl_Freq_Drift: float: numeric Range: 0 Hz to 250 kHz

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

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

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

get_fdrift() FdriftStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy[:LE1M]:FDRift
value: FdriftStruct = driver.configure.multiEval.limit.lowEnergy.le1M.get_fdrift()

Sets and enables limits for frequency drift, maximum drift rate and initial frequency drift. Commands for uncoded LE 1M PHY (..:LE1M..) , LE 2M PHY (..:LE2M..) , and LE coded PHY (..:LRANge..) are available.

return:

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

set_fdrift(value: FdriftStruct) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy[:LE1M]:FDRift
structure = driver.configure.multiEval.limit.lowEnergy.le1M.FdriftStruct()
structure.Frequency_Drift: float = 1.0
structure.Max_Drift_Rate: float = 1.0
structure.Initl_Freq_Drift: float = 1.0
structure.Freq_Drift_Enable: List[bool] = [True, False, True]
structure.Max_Drift_Rate_Enb: List[bool] = [True, False, True]
structure.Init_Freq_Drift_En: List[bool] = [True, False, True]
driver.configure.multiEval.limit.lowEnergy.le1M.set_fdrift(value = structure)

Sets and enables limits for frequency drift, maximum drift rate and initial frequency drift. Commands for uncoded LE 1M PHY (..:LE1M..) , LE 2M PHY (..:LE2M..) , and LE coded PHY (..:LRANge..) are available.

param value:

see the help for FdriftStruct structure arguments.

Cloning the Group

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

Subgroups