Limit

SCPI Commands :

CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:PVTime
CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:FSTability
class LimitCls[source]

Limit commands group definition. 7 total commands, 3 Subgroups, 2 group commands

class FstabilityStruct[source]

Structure for setting input parameters. Fields:

  • Wi: float: No parameter help available

  • Wi_W_0: float: No parameter help available

  • W_0_Max: float: No parameter help available

  • Wi_Enabled: List[bool]: No parameter help available

  • Wi_Wo_Enabled: List[bool]: No parameter help available

  • W_0_Max_Enabled: List[bool]: No parameter help available

class PowerVsTimeStruct[source]

Structure for setting input parameters. Fields:

  • Dpsk_Minus_Gfsk_Low: float: No parameter help available

  • Dpsk_Minus_Gfsk_Upp: float: No parameter help available

  • Guard_Period_Low: float: No parameter help available

  • Guard_Period_Upp: float: No parameter help available

  • Dpsk_Minus_Gfsk_Enable: List[bool]: No parameter help available

  • Guard_Period_Enable: List[bool]: No parameter help available

get_fstability() FstabilityStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:FSTability
value: FstabilityStruct = driver.configure.hdr.limit.get_fstability()

No command help available

return:

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

get_power_vs_time() PowerVsTimeStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:PVTime
value: PowerVsTimeStruct = driver.configure.hdr.limit.get_power_vs_time()

No command help available

return:

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

set_fstability(value: FstabilityStruct) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:FSTability
structure = driver.configure.hdr.limit.FstabilityStruct()
structure.Wi: float = 1.0
structure.Wi_W_0: float = 1.0
structure.W_0_Max: float = 1.0
structure.Wi_Enabled: List[bool] = [True, False, True]
structure.Wi_Wo_Enabled: List[bool] = [True, False, True]
structure.W_0_Max_Enabled: List[bool] = [True, False, True]
driver.configure.hdr.limit.set_fstability(value = structure)

No command help available

param value:

see the help for FstabilityStruct structure arguments.

set_power_vs_time(value: PowerVsTimeStruct) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:PVTime
structure = driver.configure.hdr.limit.PowerVsTimeStruct()
structure.Dpsk_Minus_Gfsk_Low: float = 1.0
structure.Dpsk_Minus_Gfsk_Upp: float = 1.0
structure.Guard_Period_Low: float = 1.0
structure.Guard_Period_Upp: float = 1.0
structure.Dpsk_Minus_Gfsk_Enable: List[bool] = [True, False, True]
structure.Guard_Period_Enable: List[bool] = [True, False, True]
driver.configure.hdr.limit.set_power_vs_time(value = structure)

No command help available

param value:

see the help for PowerVsTimeStruct structure arguments.

Cloning the Group

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

Subgroups