PowerVsTime

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy[:LE1M]:PVTime
class PowerVsTimeCls[source]

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

class PowerVsTimeStruct[source]

Response structure. Fields:

  • Avg_Pow_Lower: float: numeric Range: -99.99 dBm to 99.99 dBm

  • Avg_Pow_Upper: float: numeric Range: -99.99 dBm to 99.99 dBm

  • Pkm_Avg_Pow_Upper: float: numeric Range: -99.99 dBm to 99.99 dBm

  • Avg_Pow_Enabled: List[bool]: OFF | ON Disables or enables the limit check for the average power, 4 values, corresponding to the current, average, maximum and minimum results.

  • Pkm_Avg_Pow_Enable: List[bool]: OFF | ON Disables or enables the limit check for the ‘peak minus average power’, 4 values, corresponding to the current, average, maximum and minimum results.

get() PowerVsTimeStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy[:LE1M]:PVTime
value: PowerVsTimeStruct = driver.configure.multiEval.limit.lowEnergy.le1M.powerVsTime.get()

Defines the power limits: lower and upper average power limits, upper limit for ‘peak minus average power’, limit check enabling. 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 PowerVsTimeStruct structure arguments.

set(avg_pow_lower: float, avg_pow_upper: float, pkm_avg_pow_upper: float, avg_pow_enabled: List[bool], pkm_avg_pow_enable: List[bool]) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:MEValuation:LIMit:LENergy[:LE1M]:PVTime
driver.configure.multiEval.limit.lowEnergy.le1M.powerVsTime.set(avg_pow_lower = 1.0, avg_pow_upper = 1.0, pkm_avg_pow_upper = 1.0, avg_pow_enabled = [True, False, True], pkm_avg_pow_enable = [True, False, True])

Defines the power limits: lower and upper average power limits, upper limit for ‘peak minus average power’, limit check enabling. Commands for uncoded LE 1M PHY (..:LE1M..) , LE 2M PHY (..:LE2M..) , and LE coded PHY (..:LRANge.. ) are available.

param avg_pow_lower:

numeric Range: -99.99 dBm to 99.99 dBm

param avg_pow_upper:

numeric Range: -99.99 dBm to 99.99 dBm

param pkm_avg_pow_upper:

numeric Range: -99.99 dBm to 99.99 dBm

param avg_pow_enabled:

OFF | ON Disables or enables the limit check for the average power, 4 values, corresponding to the current, average, maximum and minimum results.

param pkm_avg_pow_enable:

OFF | ON Disables or enables the limit check for the ‘peak minus average power’, 4 values, corresponding to the current, average, maximum and minimum results.