P4H

SCPI Commands :

CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:P4H:DEVM
CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:P4H:SGACp
class P4HCls[source]

P4H commands group definition. 2 total commands, 0 Subgroups, 2 group commands

class DevmStruct[source]

Structure for setting input parameters. Fields:

  • Rms: float: No parameter help available

  • Peak: float: No parameter help available

  • P_99: float: No parameter help available

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

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

  • P_99_Enabled: bool: No parameter help available

class SgacpStruct[source]

Structure for setting input parameters. Fields:

  • Ptx_Rel_Limit: float: No parameter help available

  • Ptx_Abs_Limit_1: float: No parameter help available

  • Ptx_Abs_Limit_2: float: No parameter help available

  • Ptx_Rel_Enable: bool: No parameter help available

  • Ptx_Abs_1_Enable: bool: No parameter help available

  • Ptx_Abs_2_Enable: bool: No parameter help available

get_devm() DevmStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:P4H:DEVM
value: DevmStruct = driver.configure.hdr.limit.p4H.get_devm()

No command help available

return:

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

get_sgacp() SgacpStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:P4H:SGACp
value: SgacpStruct = driver.configure.hdr.limit.p4H.get_sgacp()

No command help available

return:

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

set_devm(value: DevmStruct) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:P4H:DEVM
structure = driver.configure.hdr.limit.p4H.DevmStruct()
structure.Rms: float = 1.0
structure.Peak: float = 1.0
structure.P_99: float = 1.0
structure.Rms_Enabled: List[bool] = [True, False, True]
structure.Peak_Enabled: List[bool] = [True, False, True]
structure.P_99_Enabled: bool = False
driver.configure.hdr.limit.p4H.set_devm(value = structure)

No command help available

param value:

see the help for DevmStruct structure arguments.

set_sgacp(value: SgacpStruct) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:HDR:LIMit:P4H:SGACp
structure = driver.configure.hdr.limit.p4H.SgacpStruct()
structure.Ptx_Rel_Limit: float = 1.0
structure.Ptx_Abs_Limit_1: float = 1.0
structure.Ptx_Abs_Limit_2: float = 1.0
structure.Ptx_Rel_Enable: bool = False
structure.Ptx_Abs_1_Enable: bool = False
structure.Ptx_Abs_2_Enable: bool = False
driver.configure.hdr.limit.p4H.set_sgacp(value = structure)

No command help available

param value:

see the help for SgacpStruct structure arguments.