Dminimum

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy:DMINimum
class DminimumCls[source]

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

class DminimumStruct[source]

Response structure. Fields:

  • Freq_Dev_F_1_Lower: float: numeric Range: 0 Hz to 500 kHz

  • Freq_Dev_F_1_Upper: float: numeric Range: 0 Hz to 500 kHz

  • Freq_Dev_F_1_Enable: List[bool]: OFF | ON Disable or enable limits for current, average, maximum, and minimum results (4 values)

get() DminimumStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy:DMINimum
value: DminimumStruct = driver.configure.multiEval.limit.lowEnergy.dminimum.get()

Defines the lower and upper Δf1 frequency deviation limits for LE 1M PHY. The mnemonics DAVerage, DMINimum, DMAXimum distinguish average, minimum and maximum frequency deviations.

return:

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

set(freq_dev_f_1_lower: float, freq_dev_f_1_upper: float, freq_dev_f_1_enable: List[bool]) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy:DMINimum
driver.configure.multiEval.limit.lowEnergy.dminimum.set(freq_dev_f_1_lower = 1.0, freq_dev_f_1_upper = 1.0, freq_dev_f_1_enable = [True, False, True])

Defines the lower and upper Δf1 frequency deviation limits for LE 1M PHY. The mnemonics DAVerage, DMINimum, DMAXimum distinguish average, minimum and maximum frequency deviations.

param freq_dev_f_1_lower:

numeric Range: 0 Hz to 500 kHz

param freq_dev_f_1_upper:

numeric Range: 0 Hz to 500 kHz

param freq_dev_f_1_enable:

OFF | ON Disable or enable limits for current, average, maximum, and minimum results (4 values)

Cloning the Group

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

Subgroups